DeskTop.js 758 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1456. ];
  1457. //stia
  1458. U.MD.D.I.stiaTeacherDeskIcon = [
  1459. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1460. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1461. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1462. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1463. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1466. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1468. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1469. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1470. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1471. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1472. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1473. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1474. ];
  1475. //stia
  1476. U.MD.D.I.stiaStudentDeskIcon = [
  1477. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1478. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1479. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. ];
  1482. //szdjg
  1483. U.MD.D.I.szdjgTeacherDeskIcon = [
  1484. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1485. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. ];
  1487. //szdjg
  1488. U.MD.D.I.szdjgStudentDeskIcon = [
  1489. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1490. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1491. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. ];
  1494. //010607
  1495. U.MD.D.I.x010607TeacherDeskIcon = [
  1496. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1497. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1499. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1500. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1503. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1504. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1505. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1506. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1507. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1508. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1511. ];
  1512. //010607
  1513. U.MD.D.I.x010607StudentDeskIcon = [
  1514. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //010608
  1520. U.MD.D.I.x010608TeacherDeskIcon = [
  1521. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. ];
  1536. //010608
  1537. U.MD.D.I.x010608StudentDeskIcon = [
  1538. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //xhly
  1544. U.MD.D.I.xhlyTeacherDeskIcon = [
  1545. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. ];
  1547. //010608
  1548. U.MD.D.I.xhlyStudentDeskIcon = [
  1549. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. ];
  1551. //北师大
  1552. U.MD.D.I.BSDNSteacherDeskIcon = [
  1553. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1554. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1556. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1557. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1560. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1561. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1563. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1564. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1565. ];
  1566. //北师大
  1567. U.MD.D.I.BSDNSstudentDeskIcon = [
  1568. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1573. ];
  1574. //CUHK_EDU
  1575. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1576. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1577. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1579. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1580. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1581. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1582. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1583. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1586. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1587. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1588. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1589. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1590. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1591. ];
  1592. //CUHK_EDU
  1593. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1594. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1595. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1598. ];
  1599. //010503
  1600. U.MD.D.I.x010503TeacherDeskIcon = [
  1601. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1602. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1603. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1604. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1605. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1606. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1607. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1608. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1609. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1610. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1611. ];
  1612. //010503
  1613. U.MD.D.I.x010503StudentDeskIcon = [
  1614. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1615. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1616. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1617. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1618. ];
  1619. //SPROUT Lab
  1620. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1621. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1622. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1623. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1624. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1625. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1626. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1627. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1628. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1629. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1630. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1631. ];
  1632. //SPROUT Lab
  1633. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1634. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1635. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1636. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1637. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1638. ];
  1639. //010204
  1640. U.MD.D.I.x010204TeacherDeskIcon = [
  1641. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1642. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1643. ];
  1644. //010204
  1645. U.MD.D.I.x010204StudentDeskIcon = [
  1646. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1649. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. ];
  1651. //trail
  1652. U.MD.D.I.trailTeacherDeskIcon = [
  1653. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1654. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1655. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1656. ];
  1657. //trail
  1658. U.MD.D.I.trailStudentDeskIcon = [
  1659. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1660. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1661. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1662. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1663. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1664. ];
  1665. //trial
  1666. U.MD.D.I.trialTeacherDeskIcon = [
  1667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1671. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1672. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1673. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1674. ];
  1675. //trial
  1676. U.MD.D.I.trialStudentDeskIcon = [
  1677. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1678. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1679. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1680. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1681. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1682. ];
  1683. //010504
  1684. U.MD.D.I.x010504TeacherDeskIcon = [
  1685. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1686. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1687. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1688. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1689. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1690. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1691. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1692. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1694. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1695. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1696. ];
  1697. //010504
  1698. U.MD.D.I.x010504StudentDeskIcon = [
  1699. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1703. ];
  1704. //010505
  1705. U.MD.D.I.x010505TeacherDeskIcon = [
  1706. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1707. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1708. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1709. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1710. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1712. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1714. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1715. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1717. ];
  1718. //010505
  1719. U.MD.D.I.x010505StudentDeskIcon = [
  1720. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1721. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1723. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1724. ];
  1725. //SCNUET
  1726. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1727. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1728. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1729. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1731. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1732. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1733. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1734. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1735. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1736. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1737. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1738. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1739. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1740. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1741. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1742. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1743. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1744. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1745. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1746. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1747. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1749. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1750. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1751. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1752. ];
  1753. //SCNUET
  1754. U.MD.D.I.SCNUETAdminDeskIcon = [
  1755. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1756. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1757. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1759. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1760. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1761. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1762. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1765. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1766. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1767. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1768. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1769. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1770. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1771. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1772. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1773. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1774. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1775. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1776. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1777. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1778. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1779. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1780. ];
  1781. //SCNUET
  1782. U.MD.D.I.SCNUETStudentDeskIcon = [
  1783. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1784. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1786. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1787. ];
  1788. //x020201
  1789. U.MD.D.I.x020201TeacherDeskIcon = [
  1790. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1791. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1792. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1793. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1794. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1795. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1796. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1797. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1800. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1801. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1802. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1803. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1804. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1805. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1806. ];
  1807. //x020201
  1808. U.MD.D.I.x020201AdminDeskIcon = [
  1809. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1810. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1811. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1812. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1813. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1814. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1815. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1816. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1818. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1819. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1820. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1821. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1822. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1823. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1824. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1825. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1826. ];
  1827. //020201
  1828. U.MD.D.I.x020201StudentDeskIcon = [
  1829. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1830. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1831. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1832. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1833. ];
  1834. //010611
  1835. U.MD.D.I.x010611TeacherDeskIcon = [
  1836. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1837. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1838. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1839. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1840. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1841. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1842. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1843. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1844. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1845. ];
  1846. //010611
  1847. U.MD.D.I.x010611StudentDeskIcon = [
  1848. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1849. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1850. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1851. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1852. ];
  1853. //010612
  1854. U.MD.D.I.x010612TeacherDeskIcon = [
  1855. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1856. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1857. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1858. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1859. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1860. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1861. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1863. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1864. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1865. ];
  1866. //010612
  1867. U.MD.D.I.x010612StudentDeskIcon = [
  1868. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1869. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1870. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1871. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1872. ];
  1873. //tianyuan
  1874. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1875. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1876. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1877. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1878. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1879. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1880. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1881. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1882. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1883. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1884. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1885. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1886. ];
  1887. //010611
  1888. U.MD.D.I.tianyuanStudentDeskIcon = [
  1889. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1890. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1891. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1892. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1893. ];
  1894. //320101
  1895. U.MD.D.I.x320101TeacherDeskIcon = [
  1896. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1897. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1898. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1899. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1900. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1901. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1902. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1903. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1904. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1905. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1906. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1907. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1908. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1909. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1910. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1911. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1912. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1913. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1914. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1915. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1916. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1917. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1918. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1919. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1920. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1921. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1922. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1923. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1924. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1925. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1926. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1927. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1928. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1929. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1930. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1931. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1932. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1933. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1934. ];
  1935. //320101
  1936. U.MD.D.I.x320101StudentDeskIcon = [
  1937. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1938. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1939. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1940. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1941. ];
  1942. //szsy
  1943. U.MD.D.I.szsyTeacherDeskIcon = [
  1944. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1945. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1946. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1947. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1948. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1949. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1950. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1951. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1952. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1953. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1954. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1955. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1956. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1957. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1958. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1959. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1960. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1961. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1962. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1963. ];
  1964. //szsy
  1965. U.MD.D.I.szsyStudentDeskIcon = [
  1966. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1967. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1968. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1969. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1970. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1971. ];
  1972. //010404
  1973. U.MD.D.I.x010404TeacherDeskIcon = [
  1974. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1975. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1976. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1977. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1978. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1979. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1980. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1981. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1982. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1983. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1984. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1985. ];
  1986. //010404
  1987. U.MD.D.I.x010404StudentDeskIcon = [
  1988. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1989. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1990. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1991. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1992. ];
  1993. //cocorobo demo
  1994. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1995. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1996. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1999. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2000. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2001. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2002. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2003. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2004. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2005. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2006. ];
  2007. //cocorobo demo
  2008. U.MD.D.I.demoCocoStudentDeskIcon = [
  2009. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2011. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2012. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2013. ];
  2014. //MOAI
  2015. U.MD.D.I.MOAITeacherDeskIcon = [
  2016. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2017. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2018. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2019. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2020. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2021. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2022. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2023. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2024. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2025. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2026. ];
  2027. //MOAI 学生端
  2028. U.MD.D.I.MOAIStudentDeskIcon = [
  2029. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2030. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2031. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2032. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2033. ];
  2034. //PREPAI
  2035. U.MD.D.I.PREPAITeacherDeskIcon = [
  2036. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2037. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2038. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2039. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2040. ];
  2041. //PREPAI 学生端
  2042. U.MD.D.I.PREPAIStudentDeskIcon = [
  2043. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2044. ];
  2045. //深圳外国语学校(集团)初中部
  2046. U.MD.D.I.x010511TeacherDeskIcon = [
  2047. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2048. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2049. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2050. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2051. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2053. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2055. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2056. ];
  2057. //深圳外国语学校(集团)初中部 学生端
  2058. U.MD.D.I.x010511StudentDeskIcon = [
  2059. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2060. ];
  2061. //深圳大学附属实验中学
  2062. U.MD.D.I.x010103TeacherDeskIcon = [
  2063. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2064. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2069. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2070. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2071. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2072. ];
  2073. //深圳大学附属实验中学 学生端
  2074. U.MD.D.I.x010103StudentDeskIcon = [
  2075. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2076. ];
  2077. //智理集团
  2078. U.MD.D.I.zlteacherDeskIcon = [
  2079. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2080. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2081. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2082. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2083. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2084. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2085. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  2087. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2089. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2090. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2091. ];
  2092. //智理集团
  2093. U.MD.D.I.zlstudentDeskIcon = [
  2094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2095. ];
  2096. //#region 桌面初始化a
  2097. /**
  2098. * 初始化桌面的起始函数
  2099. *
  2100. */
  2101. U.MD.D.I.init = function () {
  2102. if ($("#U_MD_D_K")[0]) {
  2103. //初始化桌面图标
  2104. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2105. // var clickUrl = ':12588/requestIp.php';
  2106. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2107. // U.MD.D.I.Ip = data;
  2108. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2109. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2110. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2111. // })
  2112. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2113. // })
  2114. }
  2115. }
  2116. /**
  2117. * 模式切换
  2118. *
  2119. */
  2120. U.MD.D.I.ModeCheck = function (type) {
  2121. if (US.Config.type == type) {
  2122. return
  2123. }
  2124. US.Config.type = type
  2125. $('.U_PBL_Check .active')[0].className = ''
  2126. if (type == 1) {
  2127. $('.U_PBL_Check div')[0].className = 'active'
  2128. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2129. } else {
  2130. $('.U_PBL_Check div')[1].className = 'active'
  2131. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2132. }
  2133. //初始化桌面图标
  2134. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2135. if (type == 2) {
  2136. U.MD.D.I.openApplication("project")
  2137. }
  2138. }
  2139. /**
  2140. * 隐藏任务栏
  2141. *
  2142. * @param {element} 桌面元素
  2143. */
  2144. U.MD.D.I.hiddenTaskbar = function (el) {
  2145. //任务栏位置变小
  2146. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2147. //桌面的位置变大
  2148. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2149. }
  2150. /**
  2151. * 隐藏任务栏
  2152. *
  2153. * @param {element} 桌面元素
  2154. */
  2155. U.MD.D.I.hiddenTaskbarout = function (el) {
  2156. //任务栏位置变小
  2157. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2158. //任务栏位置变化
  2159. U.selectEl(el).css({ "bottom": "-60px" });
  2160. //桌面的位置变大
  2161. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2162. }
  2163. }
  2164. /**
  2165. * 初始化打印桌面图标
  2166. *
  2167. * @param {element} 桌面元素
  2168. */
  2169. U.MD.D.I.initDesktopIcons = function (el, type) {
  2170. var i, //用于循环
  2171. _content, //桌面图标元素
  2172. _iconcontent, //桌面图标元素
  2173. _frag = $$("frag"), //定义一个碎片元素
  2174. _type = US.userInfo.type,
  2175. _org = US.userInfo.org,
  2176. _oid = US.userInfo.organizeid,
  2177. _role = US.userInfo.role,
  2178. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2179. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2180. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2181. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2182. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2183. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2184. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2185. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2186. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2187. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2188. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2189. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2190. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2191. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2192. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2193. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2194. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2195. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2196. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2197. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2198. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2199. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2200. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2201. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2202. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2203. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2204. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2205. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2206. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2207. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2208. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2209. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2210. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2211. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2212. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2213. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2214. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2215. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2216. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2217. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2218. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2219. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2220. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2221. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2222. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2223. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2224. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2225. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2226. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2227. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2228. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2229. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2230. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2231. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2232. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2233. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2234. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2235. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2236. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2237. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2238. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2239. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2240. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2241. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2242. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2243. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2244. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2245. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2246. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2247. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2248. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2249. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2250. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2251. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2252. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2253. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2254. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2255. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2256. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2257. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2258. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2259. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2260. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2261. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2262. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2263. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2264. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2265. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2266. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2267. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2268. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2269. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2270. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2271. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2272. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2273. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2274. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2275. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2276. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2277. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2278. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2279. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2280. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2281. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2282. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2283. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2284. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2285. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2286. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2287. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2288. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2289. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2290. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2291. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2292. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2293. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2294. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2295. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2296. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2297. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2298. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2299. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2300. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2301. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2302. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2303. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2304. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2305. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2306. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2307. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon, //szsc
  2308. _PREPAITeacherDeskIcon = U.MD.D.I.PREPAITeacherDeskIcon, //PREPAI
  2309. _PREPAIStudentDeskIcon = U.MD.D.I.PREPAIStudentDeskIcon, //PREPAI
  2310. _x010511TeacherDeskIcon = U.MD.D.I.x010511TeacherDeskIcon, //PREPAI
  2311. _x010511StudentDeskIcon = U.MD.D.I.x010511StudentDeskIcon, //PREPAI
  2312. _x010103TeacherDeskIcon = U.MD.D.I.x010103TeacherDeskIcon, //PREPAI
  2313. _x010103StudentDeskIcon = U.MD.D.I.x010103StudentDeskIcon, //PREPAI
  2314. _zlteacherDeskIconInfo = U.MD.D.I.zlteacherDeskIcon, //zl
  2315. _zlstudentDeskIconInfo = U.MD.D.I.zlstudentDeskIcon, //zl
  2316. _MOAITeacherDeskIcon = U.MD.D.I.MOAITeacherDeskIcon, //moai
  2317. _MOAIStudentDeskIcon = U.MD.D.I.MOAIStudentDeskIcon; //moai
  2318. 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', '17dbf412-92de-11f0-9838-005056924926', '31631344-92db-11f0-9838-005056924926'];
  2319. 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", "eed08ac6-7269-11f0-9c7b-005056924926",'cf30095b-87d5-11f0-9c7b-005056924926'];
  2320. 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",]
  2321. //清楚桌面图标
  2322. el.innerHTML = "";
  2323. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2324. _teacherDesktopIconInfo.push(
  2325. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2326. { "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)" } },
  2327. )
  2328. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2329. }
  2330. 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') {
  2331. _teacherDesktopIconInfo.push(
  2332. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2333. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2334. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2335. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2337. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2338. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2339. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2340. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2341. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2342. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2343. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2344. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2345. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2346. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2347. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2348. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2349. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2350. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2351. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2352. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2353. )
  2354. }
  2355. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2356. _teacherDesktopIconInfo.push(
  2357. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2358. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2359. )
  2360. }
  2361. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2362. _nsfxTeacherDeskIconInfo.push(
  2363. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2364. )
  2365. }
  2366. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2367. // _teacherDesktopIconInfo.push(
  2368. // )
  2369. // }
  2370. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2371. _teacherDesktopIconInfo.push(
  2372. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2373. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2374. )
  2375. }
  2376. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2377. _teacherDesktopIconInfo.push(
  2378. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2380. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2381. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2382. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2383. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2384. )
  2385. _studentDesktopIconInfo.push(
  2386. )
  2387. }
  2388. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2389. _teacherDesktopIconInfo.push(
  2390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2391. )
  2392. _studentDesktopIconInfo.push(
  2393. )
  2394. }
  2395. //010606 组织
  2396. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2397. _teacherDesktopIconInfo.push(
  2398. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2399. )
  2400. _studentDesktopIconInfo.push(
  2401. )
  2402. }
  2403. //麒麟二中 和 民新小学
  2404. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2405. _teacherDesktopIconInfo.push(
  2406. )
  2407. }
  2408. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2409. _teacherDesktopIconInfo.push(
  2410. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2411. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2412. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2413. )
  2414. }
  2415. if (_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1') {
  2416. _hkTeacherDeskIconInfo.push(
  2417. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2418. )
  2419. }
  2420. //北师大附中(010601)
  2421. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2422. // _teacherDesktopIconInfo.push(
  2423. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2424. // )
  2425. // _studentDesktopIconInfo.push(
  2426. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2427. // )
  2428. // }
  2429. //樂善堂余近卿中學
  2430. if (_oid == "8d074a02-6057-11ef-b873-005056b86db5") {
  2431. _teacherDesktopIconInfo.push(
  2432. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2433. )
  2434. }
  2435. // Education Artificial Intelligence
  2436. if (_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0") {
  2437. _teacherDesktopIconInfo.push(
  2438. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2439. )
  2440. }
  2441. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2442. _teacherDesktopIconInfo.push(
  2443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2444. )
  2445. }
  2446. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2447. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2448. _teacherDesktopIconInfo.push(
  2449. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2450. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2451. )
  2452. }
  2453. //麒麟二中
  2454. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2455. _studentDesktopIconInfo.push(
  2456. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2457. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2458. )
  2459. }
  2460. //万科双语
  2461. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2462. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2463. if (el.Name == '项目管理') {
  2464. el.Name = 'PBL项目'
  2465. }
  2466. return el
  2467. })
  2468. _studentDesktopIconInfo3.push(
  2469. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2470. )
  2471. }
  2472. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2473. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2474. return el.Name != '魔盒识字' && el.Name != '24点'
  2475. })
  2476. }
  2477. 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) {
  2478. _studentDesktopIconInfo.push(
  2479. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2480. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2481. )
  2482. }
  2483. //循环创建桌面图标
  2484. if (type == 1) {
  2485. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2486. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_studentDesktopIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_studentDesktopIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2503. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_hkZJLSStudentDeskIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2518. } //
  2519. } else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2520. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_ytyStudentDeskIconInfo[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_ytyStudentDeskIconInfo[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2535. } //
  2536. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2537. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_jccssylStudentDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_jccssylStudentDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2554. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_scnuaiStudentDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_scnuaiStudentDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2571. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_caleStudentDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_caleStudentDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2588. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_thuioeStudentDeskIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_thuioeStudentDeskIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2605. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2606. _content = $$("div", {
  2607. className: "U_MD_D_KO",
  2608. "onmousedown": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_tpcStudentDeskIconInfo[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_tpcStudentDeskIconInfo[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2620. } //
  2621. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2622. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2623. _content = $$("div", {
  2624. className: "U_MD_D_KO",
  2625. "onmousedown": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_chjyjStudentDeskIconInfo[i]]),
  2629. "onclick": U.UF.C.closure(function (obj) {
  2630. //防止拖动图标即打开了桌面应用
  2631. U.MD.D.click(this, obj);
  2632. }, [_chjyjStudentDeskIconInfo[i]])
  2633. }, _frag); //
  2634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2637. }
  2638. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2639. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2640. _content = $$("div", {
  2641. className: "U_MD_D_KO",
  2642. "onmousedown": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_szjkyStudentDeskIconInfo[i]]),
  2646. "onclick": U.UF.C.closure(function (obj) {
  2647. //防止拖动图标即打开了桌面应用
  2648. U.MD.D.click(this, obj);
  2649. }, [_szjkyStudentDeskIconInfo[i]])
  2650. }, _frag); //
  2651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2654. }
  2655. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2656. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2657. _content = $$("div", {
  2658. className: "U_MD_D_KO",
  2659. "onmousedown": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_x020201StudentDeskIconInfo[i]]),
  2663. "onclick": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_x020201StudentDeskIconInfo[i]])
  2667. }, _frag); //
  2668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2671. }
  2672. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2673. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2674. _content = $$("div", {
  2675. className: "U_MD_D_KO",
  2676. "onmousedown": U.UF.C.closure(function (obj) {
  2677. //防止拖动图标即打开了桌面应用
  2678. U.MD.D.click(this, obj);
  2679. }, [_SCNUETStudentDeskIconInfo[i]]),
  2680. "onclick": U.UF.C.closure(function (obj) {
  2681. //防止拖动图标即打开了桌面应用
  2682. U.MD.D.click(this, obj);
  2683. }, [_SCNUETStudentDeskIconInfo[i]])
  2684. }, _frag); //
  2685. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2686. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2687. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2688. }
  2689. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2690. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2691. _content = $$("div", {
  2692. className: "U_MD_D_KO",
  2693. "onmousedown": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_dseiStudentDeskIconInfo[i]]),
  2697. "onclick": U.UF.C.closure(function (obj) {
  2698. //防止拖动图标即打开了桌面应用
  2699. U.MD.D.click(this, obj);
  2700. }, [_dseiStudentDeskIconInfo[i]])
  2701. }, _frag); //
  2702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2705. }
  2706. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2707. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2708. _content = $$("div", {
  2709. className: "U_MD_D_KO",
  2710. "onmousedown": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2714. "onclick": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2718. }, _frag); //
  2719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2722. }
  2723. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2724. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2725. _content = $$("div", {
  2726. className: "U_MD_D_KO",
  2727. "onmousedown": U.UF.C.closure(function (obj) {
  2728. //防止拖动图标即打开了桌面应用
  2729. U.MD.D.click(this, obj);
  2730. }, [_nsfxStudentDeskIconInfo[i]]),
  2731. "onclick": U.UF.C.closure(function (obj) {
  2732. //防止拖动图标即打开了桌面应用
  2733. U.MD.D.click(this, obj);
  2734. }, [_nsfxStudentDeskIconInfo[i]])
  2735. }, _frag); //
  2736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2739. }
  2740. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2741. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2742. _content = $$("div", {
  2743. className: "U_MD_D_KO",
  2744. "onmousedown": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_stiaStudentDeskIconInfo[i]]),
  2748. "onclick": U.UF.C.closure(function (obj) {
  2749. //防止拖动图标即打开了桌面应用
  2750. U.MD.D.click(this, obj);
  2751. }, [_stiaStudentDeskIconInfo[i]])
  2752. }, _frag); //
  2753. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2754. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2755. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2756. }
  2757. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2758. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2759. _content = $$("div", {
  2760. className: "U_MD_D_KO",
  2761. "onmousedown": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_szdjgStudentDeskIconInfo[i]]),
  2765. "onclick": U.UF.C.closure(function (obj) {
  2766. //防止拖动图标即打开了桌面应用
  2767. U.MD.D.click(this, obj);
  2768. }, [_szdjgStudentDeskIconInfo[i]])
  2769. }, _frag); //
  2770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2773. }
  2774. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2775. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2776. _content = $$("div", {
  2777. className: "U_MD_D_KO",
  2778. "onmousedown": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_x010607StudentDeskIconInfo[i]]),
  2782. "onclick": U.UF.C.closure(function (obj) {
  2783. //防止拖动图标即打开了桌面应用
  2784. U.MD.D.click(this, obj);
  2785. }, [_x010607StudentDeskIconInfo[i]])
  2786. }, _frag); //
  2787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2790. }
  2791. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2792. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2793. _content = $$("div", {
  2794. className: "U_MD_D_KO",
  2795. "onmousedown": U.UF.C.closure(function (obj) {
  2796. //防止拖动图标即打开了桌面应用
  2797. U.MD.D.click(this, obj);
  2798. }, [_xhlyStudentDeskIconInfo[i]]),
  2799. "onclick": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_xhlyStudentDeskIconInfo[i]])
  2803. }, _frag); //
  2804. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2805. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2806. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2807. }
  2808. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2809. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2810. _content = $$("div", {
  2811. className: "U_MD_D_KO",
  2812. "onmousedown": U.UF.C.closure(function (obj) {
  2813. //防止拖动图标即打开了桌面应用
  2814. U.MD.D.click(this, obj);
  2815. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2816. "onclick": U.UF.C.closure(function (obj) {
  2817. //防止拖动图标即打开了桌面应用
  2818. U.MD.D.click(this, obj);
  2819. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2820. }, _frag); //
  2821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2824. }
  2825. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2826. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2827. _content = $$("div", {
  2828. className: "U_MD_D_KO",
  2829. "onmousedown": U.UF.C.closure(function (obj) {
  2830. //防止拖动图标即打开了桌面应用
  2831. U.MD.D.click(this, obj);
  2832. }, [_x010503StudentDeskIconInfo[i]]),
  2833. "onclick": U.UF.C.closure(function (obj) {
  2834. //防止拖动图标即打开了桌面应用
  2835. U.MD.D.click(this, obj);
  2836. }, [_x010503StudentDeskIconInfo[i]])
  2837. }, _frag); //
  2838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2841. }
  2842. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2843. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2844. _content = $$("div", {
  2845. className: "U_MD_D_KO",
  2846. "onmousedown": U.UF.C.closure(function (obj) {
  2847. //防止拖动图标即打开了桌面应用
  2848. U.MD.D.click(this, obj);
  2849. }, [_x010504StudentDeskIconInfo[i]]),
  2850. "onclick": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_x010504StudentDeskIconInfo[i]])
  2854. }, _frag); //
  2855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2858. }
  2859. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2860. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2861. _content = $$("div", {
  2862. className: "U_MD_D_KO",
  2863. "onmousedown": U.UF.C.closure(function (obj) {
  2864. //防止拖动图标即打开了桌面应用
  2865. U.MD.D.click(this, obj);
  2866. }, [_x010505StudentDeskIconInfo[i]]),
  2867. "onclick": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_x010505StudentDeskIconInfo[i]])
  2871. }, _frag); //
  2872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2875. }
  2876. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2877. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2878. _content = $$("div", {
  2879. className: "U_MD_D_KO",
  2880. "onmousedown": U.UF.C.closure(function (obj) {
  2881. //防止拖动图标即打开了桌面应用
  2882. U.MD.D.click(this, obj);
  2883. }, [_x010404StudentDeskIconInfo[i]]),
  2884. "onclick": U.UF.C.closure(function (obj) {
  2885. //防止拖动图标即打开了桌面应用
  2886. U.MD.D.click(this, obj);
  2887. }, [_x010404StudentDeskIconInfo[i]])
  2888. }, _frag); //
  2889. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2890. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2891. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2892. }
  2893. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2894. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2895. _content = $$("div", {
  2896. className: "U_MD_D_KO",
  2897. "onmousedown": U.UF.C.closure(function (obj) {
  2898. //防止拖动图标即打开了桌面应用
  2899. U.MD.D.click(this, obj);
  2900. }, [_x010204StudentDeskIconInfo[i]]),
  2901. "onclick": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_x010204StudentDeskIconInfo[i]])
  2905. }, _frag); //
  2906. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2907. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2908. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2909. }
  2910. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2911. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2912. _content = $$("div", {
  2913. className: "U_MD_D_KO",
  2914. "onmousedown": U.UF.C.closure(function (obj) {
  2915. //防止拖动图标即打开了桌面应用
  2916. U.MD.D.click(this, obj);
  2917. }, [_x320101StudentDeskIconInfo[i]]),
  2918. "onclick": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_x320101StudentDeskIconInfo[i]])
  2922. }, _frag); //
  2923. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2924. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2925. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2926. }
  2927. } else if (_type == 2 && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  2928. for (i = 0; i < _MOAIStudentDeskIcon.length; i++) {
  2929. _content = $$("div", {
  2930. className: "U_MD_D_KO",
  2931. "onmousedown": U.UF.C.closure(function (obj) {
  2932. //防止拖动图标即打开了桌面应用
  2933. U.MD.D.click(this, obj);
  2934. }, [_MOAIStudentDeskIcon[i]]),
  2935. "onclick": U.UF.C.closure(function (obj) {
  2936. //防止拖动图标即打开了桌面应用
  2937. U.MD.D.click(this, obj);
  2938. }, [_MOAIStudentDeskIcon[i]])
  2939. }, _frag); //
  2940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAIStudentDeskIcon[i].style }, _iconcontent);
  2942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAIStudentDeskIcon[i].Name }, _iconcontent);
  2943. }
  2944. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2945. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2946. _content = $$("div", {
  2947. className: "U_MD_D_KO",
  2948. "onmousedown": U.UF.C.closure(function (obj) {
  2949. //防止拖动图标即打开了桌面应用
  2950. U.MD.D.click(this, obj);
  2951. }, [_trailStudentDeskIconInfo[i]]),
  2952. "onclick": U.UF.C.closure(function (obj) {
  2953. //防止拖动图标即打开了桌面应用
  2954. U.MD.D.click(this, obj);
  2955. }, [_trailStudentDeskIconInfo[i]])
  2956. }, _frag); //
  2957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2960. }
  2961. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2962. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2963. _content = $$("div", {
  2964. className: "U_MD_D_KO",
  2965. "onmousedown": U.UF.C.closure(function (obj) {
  2966. //防止拖动图标即打开了桌面应用
  2967. U.MD.D.click(this, obj);
  2968. }, [_trialStudentDeskIconInfo[i]]),
  2969. "onclick": U.UF.C.closure(function (obj) {
  2970. //防止拖动图标即打开了桌面应用
  2971. U.MD.D.click(this, obj);
  2972. }, [_trialStudentDeskIconInfo[i]])
  2973. }, _frag); //
  2974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2977. }
  2978. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2979. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2980. _content = $$("div", {
  2981. className: "U_MD_D_KO",
  2982. "onmousedown": U.UF.C.closure(function (obj) {
  2983. //防止拖动图标即打开了桌面应用
  2984. U.MD.D.click(this, obj);
  2985. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2986. "onclick": U.UF.C.closure(function (obj) {
  2987. //防止拖动图标即打开了桌面应用
  2988. U.MD.D.click(this, obj);
  2989. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2990. }, _frag); //
  2991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2994. }
  2995. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2996. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2997. _content = $$("div", {
  2998. className: "U_MD_D_KO",
  2999. "onmousedown": U.UF.C.closure(function (obj) {
  3000. //防止拖动图标即打开了桌面应用
  3001. U.MD.D.click(this, obj);
  3002. }, [_szsyStudentDeskIconInfo[i]]),
  3003. "onclick": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_szsyStudentDeskIconInfo[i]])
  3007. }, _frag); //
  3008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  3010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  3011. }
  3012. } else if (_type == 2 && (_org == "eed08ac6-7269-11f0-9c7b-005056924926")) {
  3013. for (i = 0; i < _PREPAIStudentDeskIcon.length; i++) {
  3014. _content = $$("div", {
  3015. className: "U_MD_D_KO",
  3016. "onmousedown": U.UF.C.closure(function (obj) {
  3017. //防止拖动图标即打开了桌面应用
  3018. U.MD.D.click(this, obj);
  3019. }, [_PREPAIStudentDeskIcon[i]]),
  3020. "onclick": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_PREPAIStudentDeskIcon[i]])
  3024. }, _frag); //
  3025. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3026. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAIStudentDeskIcon[i].style }, _iconcontent);
  3027. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAIStudentDeskIcon[i].Name }, _iconcontent);
  3028. }
  3029. } else if (_type == 2 && (_oid == "17dbf412-92de-11f0-9838-005056924926")) {
  3030. for (i = 0; i < _x010511StudentDeskIcon.length; i++) {
  3031. _content = $$("div", {
  3032. className: "U_MD_D_KO",
  3033. "onmousedown": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_x010511StudentDeskIcon[i]]),
  3037. "onclick": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_x010511StudentDeskIcon[i]])
  3041. }, _frag); //
  3042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010511StudentDeskIcon[i].style }, _iconcontent);
  3044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010511StudentDeskIcon[i].Name }, _iconcontent);
  3045. }
  3046. } else if (_type == 2 && (_oid == "31631344-92db-11f0-9838-005056924926")) {
  3047. for (i = 0; i < _x010103StudentDeskIcon.length; i++) {
  3048. _content = $$("div", {
  3049. className: "U_MD_D_KO",
  3050. "onmousedown": U.UF.C.closure(function (obj) {
  3051. //防止拖动图标即打开了桌面应用
  3052. U.MD.D.click(this, obj);
  3053. }, [_x010103StudentDeskIcon[i]]),
  3054. "onclick": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_x010103StudentDeskIcon[i]])
  3058. }, _frag); //
  3059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010103StudentDeskIcon[i].style }, _iconcontent);
  3061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010103StudentDeskIcon[i].Name }, _iconcontent);
  3062. }
  3063. } else if (_type == 2 && (_org == "cf30095b-87d5-11f0-9c7b-005056924926")) {
  3064. for (i = 0; i < _zlstudentDeskIconInfo.length; i++) {
  3065. _content = $$("div", {
  3066. className: "U_MD_D_KO",
  3067. "onmousedown": U.UF.C.closure(function (obj) {
  3068. //防止拖动图标即打开了桌面应用
  3069. U.MD.D.click(this, obj);
  3070. }, [_zlstudentDeskIconInfo[i]]),
  3071. "onclick": U.UF.C.closure(function (obj) {
  3072. //防止拖动图标即打开了桌面应用
  3073. U.MD.D.click(this, obj);
  3074. }, [_zlstudentDeskIconInfo[i]])
  3075. }, _frag); //
  3076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zlstudentDeskIconInfo[i].style }, _iconcontent);
  3078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zlstudentDeskIconInfo[i].Name }, _iconcontent);
  3079. }
  3080. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  3081. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  3082. _content = $$("div", {
  3083. className: "U_MD_D_KO",
  3084. "onmousedown": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_demoCocoStudentDeskIconInfo[i]]),
  3088. "onclick": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_demoCocoStudentDeskIconInfo[i]])
  3092. }, _frag); //
  3093. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3094. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  3095. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  3096. }
  3097. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  3098. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  3099. _content = $$("div", {
  3100. className: "U_MD_D_KO",
  3101. "onmousedown": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_x010608StudentDeskIconInfo[i]]),
  3105. "onclick": U.UF.C.closure(function (obj) {
  3106. //防止拖动图标即打开了桌面应用
  3107. U.MD.D.click(this, obj);
  3108. }, [_x010608StudentDeskIconInfo[i]])
  3109. }, _frag); //
  3110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  3112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  3113. }
  3114. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  3115. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  3116. _content = $$("div", {
  3117. className: "U_MD_D_KO",
  3118. "onmousedown": U.UF.C.closure(function (obj) {
  3119. //防止拖动图标即打开了桌面应用
  3120. U.MD.D.click(this, obj);
  3121. }, [_x010611StudentDeskIconInfo[i]]),
  3122. "onclick": U.UF.C.closure(function (obj) {
  3123. //防止拖动图标即打开了桌面应用
  3124. U.MD.D.click(this, obj);
  3125. }, [_x010611StudentDeskIconInfo[i]])
  3126. }, _frag); //
  3127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  3129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  3130. }
  3131. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  3132. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  3133. _content = $$("div", {
  3134. className: "U_MD_D_KO",
  3135. "onmousedown": U.UF.C.closure(function (obj) {
  3136. //防止拖动图标即打开了桌面应用
  3137. U.MD.D.click(this, obj);
  3138. }, [_x010612StudentDeskIconInfo[i]]),
  3139. "onclick": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_x010612StudentDeskIconInfo[i]])
  3143. }, _frag); //
  3144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  3146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  3147. }
  3148. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  3149. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  3150. _content = $$("div", {
  3151. className: "U_MD_D_KO",
  3152. "onmousedown": U.UF.C.closure(function (obj) {
  3153. //防止拖动图标即打开了桌面应用
  3154. U.MD.D.click(this, obj);
  3155. }, [_tianyuantudentDeskIconInfo[i]]),
  3156. "onclick": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_tianyuantudentDeskIconInfo[i]])
  3160. }, _frag); //
  3161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  3163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  3164. }
  3165. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3166. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  3167. _content = $$("div", {
  3168. className: "U_MD_D_KO",
  3169. "onmousedown": U.UF.C.closure(function (obj) {
  3170. //防止拖动图标即打开了桌面应用
  3171. U.MD.D.click(this, obj);
  3172. }, [_siesStudentDeskIconInfo[i]]),
  3173. "onclick": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_siesStudentDeskIconInfo[i]])
  3177. }, _frag); //
  3178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  3180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  3181. }
  3182. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3183. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3184. _content = $$("div", {
  3185. className: "U_MD_D_KO",
  3186. "onmousedown": U.UF.C.closure(function (obj) {
  3187. //防止拖动图标即打开了桌面应用
  3188. U.MD.D.click(this, obj);
  3189. }, [_guzmsStudentDeskIconInfo[i]]),
  3190. "onclick": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_guzmsStudentDeskIconInfo[i]])
  3194. }, _frag); //
  3195. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3196. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3197. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3198. }
  3199. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3200. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3201. _content = $$("div", {
  3202. className: "U_MD_D_KO",
  3203. "onmousedown": U.UF.C.closure(function (obj) {
  3204. //防止拖动图标即打开了桌面应用
  3205. U.MD.D.click(this, obj);
  3206. }, [_hkStudentDeskIconInfo[i]]),
  3207. "onclick": U.UF.C.closure(function (obj) {
  3208. //防止拖动图标即打开了桌面应用
  3209. U.MD.D.click(this, obj);
  3210. }, [_hkStudentDeskIconInfo[i]])
  3211. }, _frag); //
  3212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3215. }
  3216. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3217. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3218. _content = $$("div", {
  3219. className: "U_MD_D_KO",
  3220. "onmousedown": U.UF.C.closure(function (obj) {
  3221. //防止拖动图标即打开了桌面应用
  3222. U.MD.D.click(this, obj);
  3223. }, [_tycyStudentDeskIconInfo[i]]),
  3224. "onclick": U.UF.C.closure(function (obj) {
  3225. //防止拖动图标即打开了桌面应用
  3226. U.MD.D.click(this, obj);
  3227. }, [_tycyStudentDeskIconInfo[i]])
  3228. }, _frag); //
  3229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3232. }
  3233. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3234. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3235. _content = $$("div", {
  3236. className: "U_MD_D_KO",
  3237. "onmousedown": U.UF.C.closure(function (obj) {
  3238. //防止拖动图标即打开了桌面应用
  3239. U.MD.D.click(this, obj);
  3240. }, [_ckcpsStudentDeskIconInfo[i]]),
  3241. "onclick": U.UF.C.closure(function (obj) {
  3242. //防止拖动图标即打开了桌面应用
  3243. U.MD.D.click(this, obj);
  3244. }, [_ckcpsStudentDeskIconInfo[i]])
  3245. }, _frag); //
  3246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3249. }
  3250. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3251. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3252. _content = $$("div", {
  3253. className: "U_MD_D_KO",
  3254. "onmousedown": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_hkaceStudentDeskIconInfo[i]]),
  3258. "onclick": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_hkaceStudentDeskIconInfo[i]])
  3262. }, _frag); //
  3263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3266. }
  3267. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3268. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_BSDNSstudentDesktopIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3283. }
  3284. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3285. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3286. _content = $$("div", {
  3287. className: "U_MD_D_KO",
  3288. "onmousedown": U.UF.C.closure(function (obj) {
  3289. //防止拖动图标即打开了桌面应用
  3290. U.MD.D.click(this, obj);
  3291. }, [_cocobizStudentDeskIconInfo[i]]),
  3292. "onclick": U.UF.C.closure(function (obj) {
  3293. //防止拖动图标即打开了桌面应用
  3294. U.MD.D.click(this, obj);
  3295. }, [_cocobizStudentDeskIconInfo[i]])
  3296. }, _frag); //
  3297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3300. }
  3301. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3302. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3303. _content = $$("div", {
  3304. className: "U_MD_D_KO",
  3305. "onmousedown": U.UF.C.closure(function (obj) {
  3306. //防止拖动图标即打开了桌面应用
  3307. U.MD.D.click(this, obj);
  3308. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3309. "onclick": U.UF.C.closure(function (obj) {
  3310. //防止拖动图标即打开了桌面应用
  3311. U.MD.D.click(this, obj);
  3312. }, [_xxzjkyStudentDeskIconInfo[i]])
  3313. }, _frag); //
  3314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3317. }
  3318. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3319. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3320. _content = $$("div", {
  3321. className: "U_MD_D_KO",
  3322. "onmousedown": U.UF.C.closure(function (obj) {
  3323. //防止拖动图标即打开了桌面应用
  3324. U.MD.D.click(this, obj);
  3325. }, [_studentDesktopIconInfo[i]]),
  3326. "onclick": U.UF.C.closure(function (obj) {
  3327. //防止拖动图标即打开了桌面应用
  3328. U.MD.D.click(this, obj);
  3329. }, [_studentDesktopIconInfo[i]])
  3330. }, _frag); //
  3331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3334. }
  3335. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3336. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3337. _content = $$("div", {
  3338. className: "U_MD_D_KO",
  3339. "onmousedown": U.UF.C.closure(function (obj) {
  3340. //防止拖动图标即打开了桌面应用
  3341. U.MD.D.click(this, obj);
  3342. }, [_tcStudentDeskIconInfo[i]]),
  3343. "onclick": U.UF.C.closure(function (obj) {
  3344. //防止拖动图标即打开了桌面应用
  3345. U.MD.D.click(this, obj);
  3346. }, [_tcStudentDeskIconInfo[i]])
  3347. }, _frag); //
  3348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3351. }
  3352. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3353. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3354. _content = $$("div", {
  3355. className: "U_MD_D_KO",
  3356. "onmousedown": U.UF.C.closure(function (obj) {
  3357. //防止拖动图标即打开了桌面应用
  3358. U.MD.D.click(this, obj);
  3359. }, [_szscStudentDeskIconInfo[i]]),
  3360. "onclick": U.UF.C.closure(function (obj) {
  3361. //防止拖动图标即打开了桌面应用
  3362. U.MD.D.click(this, obj);
  3363. }, [_szscStudentDeskIconInfo[i]])
  3364. }, _frag); //
  3365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3368. }
  3369. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3370. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3371. _content = $$("div", {
  3372. className: "U_MD_D_KO",
  3373. "onmousedown": U.UF.C.closure(function (obj) {
  3374. //防止拖动图标即打开了桌面应用
  3375. U.MD.D.click(this, obj);
  3376. }, [_studentDesktopIconInfo3[i]]),
  3377. "onclick": U.UF.C.closure(function (obj) {
  3378. //防止拖动图标即打开了桌面应用
  3379. U.MD.D.click(this, obj);
  3380. }, [_studentDesktopIconInfo3[i]])
  3381. }, _frag); //
  3382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3385. }
  3386. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3387. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3388. _content = $$("div", {
  3389. className: "U_MD_D_KO",
  3390. "onmousedown": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_studentDesktopIconInfo2[i]]),
  3394. "onclick": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_studentDesktopIconInfo2[i]])
  3398. }, _frag); //
  3399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3402. }
  3403. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3404. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3405. if (_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher') {
  3406. continue
  3407. }
  3408. _content = $$("div", {
  3409. className: "U_MD_D_KO",
  3410. "onmousedown": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_wanketeacherDesktopIconInfo[i]]),
  3414. "onclick": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_wanketeacherDesktopIconInfo[i]])
  3418. }, _frag); //
  3419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3422. }
  3423. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3424. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3425. _content = $$("div", {
  3426. className: "U_MD_D_KO",
  3427. "onmousedown": U.UF.C.closure(function (obj) {
  3428. //防止拖动图标即打开了桌面应用
  3429. U.MD.D.click(this, obj);
  3430. }, [_wankeAdminDesktopIconInfo[i]]),
  3431. "onclick": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_wankeAdminDesktopIconInfo[i]])
  3435. }, _frag); //
  3436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3439. }
  3440. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3441. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3442. if (_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3443. continue
  3444. }
  3445. _content = $$("div", {
  3446. className: "U_MD_D_KO",
  3447. "onmousedown": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3451. "onclick": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_scnuaiTeacherDeskIconInfo[i]])
  3455. }, _frag); //
  3456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3459. }
  3460. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3461. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3462. if (_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher') {
  3463. continue
  3464. }
  3465. _content = $$("div", {
  3466. className: "U_MD_D_KO",
  3467. "onmousedown": U.UF.C.closure(function (obj) {
  3468. //防止拖动图标即打开了桌面应用
  3469. U.MD.D.click(this, obj);
  3470. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3471. "onclick": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_BSDNSteacherDesktopIconInfo[i]])
  3475. }, _frag); //
  3476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3479. }
  3480. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3481. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3482. _content = $$("div", {
  3483. className: "U_MD_D_KO",
  3484. "onmousedown": U.UF.C.closure(function (obj) {
  3485. //防止拖动图标即打开了桌面应用
  3486. U.MD.D.click(this, obj);
  3487. }, [_scnuaiAdminDeskIconInfo[i]]),
  3488. "onclick": U.UF.C.closure(function (obj) {
  3489. //防止拖动图标即打开了桌面应用
  3490. U.MD.D.click(this, obj);
  3491. }, [_scnuaiAdminDeskIconInfo[i]])
  3492. }, _frag); //
  3493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3496. }
  3497. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3498. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3499. if (_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3500. continue
  3501. }
  3502. _content = $$("div", {
  3503. className: "U_MD_D_KO",
  3504. "onmousedown": U.UF.C.closure(function (obj) {
  3505. //防止拖动图标即打开了桌面应用
  3506. U.MD.D.click(this, obj);
  3507. }, [_jccssylTeacherDeskIconInfo[i]]),
  3508. "onclick": U.UF.C.closure(function (obj) {
  3509. //防止拖动图标即打开了桌面应用
  3510. U.MD.D.click(this, obj);
  3511. }, [_jccssylTeacherDeskIconInfo[i]])
  3512. }, _frag); //
  3513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3516. }
  3517. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3518. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3519. if (_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3520. continue
  3521. }
  3522. _content = $$("div", {
  3523. className: "U_MD_D_KO",
  3524. "onmousedown": U.UF.C.closure(function (obj) {
  3525. //防止拖动图标即打开了桌面应用
  3526. U.MD.D.click(this, obj);
  3527. }, [_caleTeacherDeskIconInfo[i]]),
  3528. "onclick": U.UF.C.closure(function (obj) {
  3529. //防止拖动图标即打开了桌面应用
  3530. U.MD.D.click(this, obj);
  3531. }, [_caleTeacherDeskIconInfo[i]])
  3532. }, _frag); //
  3533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3536. }
  3537. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3538. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3539. _content = $$("div", {
  3540. className: "U_MD_D_KO",
  3541. "onmousedown": U.UF.C.closure(function (obj) {
  3542. //防止拖动图标即打开了桌面应用
  3543. U.MD.D.click(this, obj);
  3544. }, [_tpcOrganizerDeskIconInfo[i]]),
  3545. "onclick": U.UF.C.closure(function (obj) {
  3546. //防止拖动图标即打开了桌面应用
  3547. U.MD.D.click(this, obj);
  3548. }, [_tpcOrganizerDeskIconInfo[i]])
  3549. }, _frag); //
  3550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3553. }
  3554. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3555. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3556. if (_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3557. continue
  3558. }
  3559. _content = $$("div", {
  3560. className: "U_MD_D_KO",
  3561. "onmousedown": U.UF.C.closure(function (obj) {
  3562. //防止拖动图标即打开了桌面应用
  3563. U.MD.D.click(this, obj);
  3564. }, [_tpcTeacherDeskIconInfo[i]]),
  3565. "onclick": U.UF.C.closure(function (obj) {
  3566. //防止拖动图标即打开了桌面应用
  3567. U.MD.D.click(this, obj);
  3568. }, [_tpcTeacherDeskIconInfo[i]])
  3569. }, _frag); //
  3570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3573. }
  3574. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3575. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3576. if (_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher') {
  3577. continue
  3578. }
  3579. _content = $$("div", {
  3580. className: "U_MD_D_KO",
  3581. "onmousedown": U.UF.C.closure(function (obj) {
  3582. //防止拖动图标即打开了桌面应用
  3583. U.MD.D.click(this, obj);
  3584. }, [_teacherDesktopIconInfo2[i]]),
  3585. "onclick": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_teacherDesktopIconInfo2[i]])
  3589. }, _frag); //
  3590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3593. }
  3594. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3595. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3596. if (_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3597. continue
  3598. }
  3599. _content = $$("div", {
  3600. className: "U_MD_D_KO",
  3601. "onmousedown": U.UF.C.closure(function (obj) {
  3602. //防止拖动图标即打开了桌面应用
  3603. U.MD.D.click(this, obj);
  3604. }, [_thuioeTeacherDeskIconInfo[i]]),
  3605. "onclick": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_thuioeTeacherDeskIconInfo[i]])
  3609. }, _frag); //
  3610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3613. }
  3614. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3615. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3616. if (_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3617. continue
  3618. }
  3619. _content = $$("div", {
  3620. className: "U_MD_D_KO",
  3621. "onmousedown": U.UF.C.closure(function (obj) {
  3622. //防止拖动图标即打开了桌面应用
  3623. U.MD.D.click(this, obj);
  3624. }, [_lotechTeacherDeskIconInfo[i]]),
  3625. "onclick": U.UF.C.closure(function (obj) {
  3626. //防止拖动图标即打开了桌面应用
  3627. U.MD.D.click(this, obj);
  3628. }, [_lotechTeacherDeskIconInfo[i]])
  3629. }, _frag); //
  3630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3633. }//
  3634. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3635. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3636. if (_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3637. continue
  3638. }
  3639. _content = $$("div", {
  3640. className: "U_MD_D_KO",
  3641. "onmousedown": U.UF.C.closure(function (obj) {
  3642. //防止拖动图标即打开了桌面应用
  3643. U.MD.D.click(this, obj);
  3644. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3645. "onclick": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3649. }, _frag); //
  3650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3653. }
  3654. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3655. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3656. if (_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies') {
  3657. continue
  3658. }
  3659. _content = $$("div", {
  3660. className: "U_MD_D_KO",
  3661. "onmousedown": U.UF.C.closure(function (obj) {
  3662. //防止拖动图标即打开了桌面应用
  3663. U.MD.D.click(this, obj);
  3664. }, [_siesTeacherDeskIconInfo[i]]),
  3665. "onclick": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_siesTeacherDeskIconInfo[i]])
  3669. }, _frag); //
  3670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3673. }
  3674. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3675. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3676. if (_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3677. continue
  3678. }
  3679. _content = $$("div", {
  3680. className: "U_MD_D_KO",
  3681. "onmousedown": U.UF.C.closure(function (obj) {
  3682. //防止拖动图标即打开了桌面应用
  3683. U.MD.D.click(this, obj);
  3684. }, [_guzmsTeacherDeskIconInfo[i]]),
  3685. "onclick": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_guzmsTeacherDeskIconInfo[i]])
  3689. }, _frag); //
  3690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3693. }
  3694. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3695. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3696. if (_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3697. continue
  3698. }
  3699. _content = $$("div", {
  3700. className: "U_MD_D_KO",
  3701. "onmousedown": U.UF.C.closure(function (obj) {
  3702. //防止拖动图标即打开了桌面应用
  3703. U.MD.D.click(this, obj);
  3704. }, [_longhuaTeacherDeskIconInfo[i]]),
  3705. "onclick": U.UF.C.closure(function (obj) {
  3706. //防止拖动图标即打开了桌面应用
  3707. U.MD.D.click(this, obj);
  3708. }, [_longhuaTeacherDeskIconInfo[i]])
  3709. }, _frag); //
  3710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3713. }
  3714. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3715. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3716. if (_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3717. continue
  3718. }
  3719. _content = $$("div", {
  3720. className: "U_MD_D_KO",
  3721. "onmousedown": U.UF.C.closure(function (obj) {
  3722. //防止拖动图标即打开了桌面应用
  3723. U.MD.D.click(this, obj);
  3724. }, [_ytyTeacherDeskIconInfo[i]]),
  3725. "onclick": U.UF.C.closure(function (obj) {
  3726. //防止拖动图标即打开了桌面应用
  3727. U.MD.D.click(this, obj);
  3728. }, [_ytyTeacherDeskIconInfo[i]])
  3729. }, _frag); //
  3730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3733. }
  3734. } else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3735. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3736. if (_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3737. continue
  3738. }
  3739. _content = $$("div", {
  3740. className: "U_MD_D_KO",
  3741. "onmousedown": U.UF.C.closure(function (obj) {
  3742. //防止拖动图标即打开了桌面应用
  3743. U.MD.D.click(this, obj);
  3744. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3745. "onclick": U.UF.C.closure(function (obj) {
  3746. //防止拖动图标即打开了桌面应用
  3747. U.MD.D.click(this, obj);
  3748. }, [_yunhaiTeacherDeskIconInfo[i]])
  3749. }, _frag); //
  3750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3753. } //_hkStudentDeskIconInfo
  3754. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3755. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3756. if (_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3757. continue
  3758. }
  3759. _content = $$("div", {
  3760. className: "U_MD_D_KO",
  3761. "onmousedown": U.UF.C.closure(function (obj) {
  3762. //防止拖动图标即打开了桌面应用
  3763. U.MD.D.click(this, obj);
  3764. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3765. "onclick": U.UF.C.closure(function (obj) {
  3766. //防止拖动图标即打开了桌面应用
  3767. U.MD.D.click(this, obj);
  3768. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3769. }, _frag); //
  3770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3773. }
  3774. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3775. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3776. if (_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3777. continue
  3778. }
  3779. _content = $$("div", {
  3780. className: "U_MD_D_KO",
  3781. "onmousedown": U.UF.C.closure(function (obj) {
  3782. //防止拖动图标即打开了桌面应用
  3783. U.MD.D.click(this, obj);
  3784. }, [_ricohTeacherDeskIconInfo[i]]),
  3785. "onclick": U.UF.C.closure(function (obj) {
  3786. //防止拖动图标即打开了桌面应用
  3787. U.MD.D.click(this, obj);
  3788. }, [_ricohTeacherDeskIconInfo[i]])
  3789. }, _frag); //
  3790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3793. }
  3794. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3795. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3796. if (_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3797. continue
  3798. }
  3799. _content = $$("div", {
  3800. className: "U_MD_D_KO",
  3801. "onmousedown": U.UF.C.closure(function (obj) {
  3802. //防止拖动图标即打开了桌面应用
  3803. U.MD.D.click(this, obj);
  3804. }, [_hkTeacherDeskIconInfo[i]]),
  3805. "onclick": U.UF.C.closure(function (obj) {
  3806. //防止拖动图标即打开了桌面应用
  3807. U.MD.D.click(this, obj);
  3808. }, [_hkTeacherDeskIconInfo[i]])
  3809. }, _frag); //
  3810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3813. }
  3814. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3815. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3816. if (_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3817. continue
  3818. }
  3819. _content = $$("div", {
  3820. className: "U_MD_D_KO",
  3821. "onmousedown": U.UF.C.closure(function (obj) {
  3822. //防止拖动图标即打开了桌面应用
  3823. U.MD.D.click(this, obj);
  3824. }, [_tycyTeacherDeskIconInfo[i]]),
  3825. "onclick": U.UF.C.closure(function (obj) {
  3826. //防止拖动图标即打开了桌面应用
  3827. U.MD.D.click(this, obj);
  3828. }, [_tycyTeacherDeskIconInfo[i]])
  3829. }, _frag); //
  3830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3833. }
  3834. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3835. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3836. if (_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3837. continue
  3838. }
  3839. _content = $$("div", {
  3840. className: "U_MD_D_KO",
  3841. "onmousedown": U.UF.C.closure(function (obj) {
  3842. //防止拖动图标即打开了桌面应用
  3843. U.MD.D.click(this, obj);
  3844. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3845. "onclick": U.UF.C.closure(function (obj) {
  3846. //防止拖动图标即打开了桌面应用
  3847. U.MD.D.click(this, obj);
  3848. }, [_ckcpsTeacherDeskIconInfo[i]])
  3849. }, _frag); //
  3850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3853. }
  3854. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3855. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3856. if (_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3857. continue
  3858. }
  3859. _content = $$("div", {
  3860. className: "U_MD_D_KO",
  3861. "onmousedown": U.UF.C.closure(function (obj) {
  3862. //防止拖动图标即打开了桌面应用
  3863. U.MD.D.click(this, obj);
  3864. }, [_hkaceTeacherDeskIconInfo[i]]),
  3865. "onclick": U.UF.C.closure(function (obj) {
  3866. //防止拖动图标即打开了桌面应用
  3867. U.MD.D.click(this, obj);
  3868. }, [_hkaceTeacherDeskIconInfo[i]])
  3869. }, _frag); //
  3870. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3871. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3872. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3873. }
  3874. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3875. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3876. if (_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3877. continue
  3878. }
  3879. _content = $$("div", {
  3880. className: "U_MD_D_KO",
  3881. "onmousedown": U.UF.C.closure(function (obj) {
  3882. //防止拖动图标即打开了桌面应用
  3883. U.MD.D.click(this, obj);
  3884. }, [_cocobizTeacherDeskIconInfo[i]]),
  3885. "onclick": U.UF.C.closure(function (obj) {
  3886. //防止拖动图标即打开了桌面应用
  3887. U.MD.D.click(this, obj);
  3888. }, [_cocobizTeacherDeskIconInfo[i]])
  3889. }, _frag); //
  3890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3893. }
  3894. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3895. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3896. if (_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3897. continue
  3898. }
  3899. _content = $$("div", {
  3900. className: "U_MD_D_KO",
  3901. "onmousedown": U.UF.C.closure(function (obj) {
  3902. //防止拖动图标即打开了桌面应用
  3903. U.MD.D.click(this, obj);
  3904. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3905. "onclick": U.UF.C.closure(function (obj) {
  3906. //防止拖动图标即打开了桌面应用
  3907. U.MD.D.click(this, obj);
  3908. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3909. }, _frag); //
  3910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3913. }
  3914. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3915. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3916. _content = $$("div", {
  3917. className: "U_MD_D_KO",
  3918. "onmousedown": U.UF.C.closure(function (obj) {
  3919. //防止拖动图标即打开了桌面应用
  3920. U.MD.D.click(this, obj);
  3921. }, [_gdjgAdminDeskIconInfo[i]]),
  3922. "onclick": U.UF.C.closure(function (obj) {
  3923. //防止拖动图标即打开了桌面应用
  3924. U.MD.D.click(this, obj);
  3925. }, [_gdjgAdminDeskIconInfo[i]])
  3926. }, _frag); //
  3927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3930. }
  3931. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3932. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3933. if (_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3934. continue
  3935. }
  3936. _content = $$("div", {
  3937. className: "U_MD_D_KO",
  3938. "onmousedown": U.UF.C.closure(function (obj) {
  3939. //防止拖动图标即打开了桌面应用
  3940. U.MD.D.click(this, obj);
  3941. }, [_gdjgTeacherDeskIconInfo[i]]),
  3942. "onclick": U.UF.C.closure(function (obj) {
  3943. //防止拖动图标即打开了桌面应用
  3944. U.MD.D.click(this, obj);
  3945. }, [_gdjgTeacherDeskIconInfo[i]])
  3946. }, _frag); //
  3947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3950. }
  3951. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3952. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3953. if (_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3954. continue
  3955. }
  3956. _content = $$("div", {
  3957. className: "U_MD_D_KO",
  3958. "onmousedown": U.UF.C.closure(function (obj) {
  3959. //防止拖动图标即打开了桌面应用
  3960. U.MD.D.click(this, obj);
  3961. }, [_szherTeacherDeskIconInfo[i]]),
  3962. "onclick": U.UF.C.closure(function (obj) {
  3963. //防止拖动图标即打开了桌面应用
  3964. U.MD.D.click(this, obj);
  3965. }, [_szherTeacherDeskIconInfo[i]])
  3966. }, _frag); //
  3967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3970. }
  3971. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3972. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3973. _content = $$("div", {
  3974. className: "U_MD_D_KO",
  3975. "onmousedown": U.UF.C.closure(function (obj) {
  3976. //防止拖动图标即打开了桌面应用
  3977. U.MD.D.click(this, obj);
  3978. }, [_heyuannAdminDeskIconInfo[i]]),
  3979. "onclick": U.UF.C.closure(function (obj) {
  3980. //防止拖动图标即打开了桌面应用
  3981. U.MD.D.click(this, obj);
  3982. }, [_heyuannAdminDeskIconInfo[i]])
  3983. }, _frag); //
  3984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3987. }
  3988. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3989. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3990. if (_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3991. continue
  3992. }
  3993. _content = $$("div", {
  3994. className: "U_MD_D_KO",
  3995. "onmousedown": U.UF.C.closure(function (obj) {
  3996. //防止拖动图标即打开了桌面应用
  3997. U.MD.D.click(this, obj);
  3998. }, [_heyuanTeacherDeskIconInfo[i]]),
  3999. "onclick": U.UF.C.closure(function (obj) {
  4000. //防止拖动图标即打开了桌面应用
  4001. U.MD.D.click(this, obj);
  4002. }, [_heyuanTeacherDeskIconInfo[i]])
  4003. }, _frag); //
  4004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4007. } //
  4008. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  4009. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  4010. _content = $$("div", {
  4011. className: "U_MD_D_KO",
  4012. "onmousedown": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_dseiAdminDeskIconInfo[i]]),
  4016. "onclick": U.UF.C.closure(function (obj) {
  4017. //防止拖动图标即打开了桌面应用
  4018. U.MD.D.click(this, obj);
  4019. }, [_dseiAdminDeskIconInfo[i]])
  4020. }, _frag); //
  4021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  4023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  4024. }
  4025. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  4026. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  4027. if (_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4028. continue
  4029. }
  4030. _content = $$("div", {
  4031. className: "U_MD_D_KO",
  4032. "onmousedown": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_dseiTeacherDeskIconInfo[i]]),
  4036. "onclick": U.UF.C.closure(function (obj) {
  4037. //防止拖动图标即打开了桌面应用
  4038. U.MD.D.click(this, obj);
  4039. }, [_dseiTeacherDeskIconInfo[i]])
  4040. }, _frag); //
  4041. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4042. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  4043. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  4044. } //
  4045. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  4046. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  4047. _content = $$("div", {
  4048. className: "U_MD_D_KO",
  4049. "onmousedown": U.UF.C.closure(function (obj) {
  4050. //防止拖动图标即打开了桌面应用
  4051. U.MD.D.click(this, obj);
  4052. }, [_chjyjAdminDeskIconInfo[i]]),
  4053. "onclick": U.UF.C.closure(function (obj) {
  4054. //防止拖动图标即打开了桌面应用
  4055. U.MD.D.click(this, obj);
  4056. }, [_chjyjAdminDeskIconInfo[i]])
  4057. }, _frag); //
  4058. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4059. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  4060. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  4061. }//
  4062. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  4063. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  4064. if (_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4065. continue
  4066. }
  4067. _content = $$("div", {
  4068. className: "U_MD_D_KO",
  4069. "onmousedown": U.UF.C.closure(function (obj) {
  4070. //防止拖动图标即打开了桌面应用
  4071. U.MD.D.click(this, obj);
  4072. }, [_chjyjTeacherDeskIconInfo[i]]),
  4073. "onclick": U.UF.C.closure(function (obj) {
  4074. //防止拖动图标即打开了桌面应用
  4075. U.MD.D.click(this, obj);
  4076. }, [_chjyjTeacherDeskIconInfo[i]])
  4077. }, _frag); //
  4078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  4080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  4081. }
  4082. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  4083. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  4084. _content = $$("div", {
  4085. className: "U_MD_D_KO",
  4086. "onmousedown": U.UF.C.closure(function (obj) {
  4087. //防止拖动图标即打开了桌面应用
  4088. U.MD.D.click(this, obj);
  4089. }, [_szjkyAdminDeskIconInfo[i]]),
  4090. "onclick": U.UF.C.closure(function (obj) {
  4091. //防止拖动图标即打开了桌面应用
  4092. U.MD.D.click(this, obj);
  4093. }, [_szjkyAdminDeskIconInfo[i]])
  4094. }, _frag); //
  4095. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4096. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  4097. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  4098. }//
  4099. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  4100. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  4101. if (_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4102. continue
  4103. }
  4104. _content = $$("div", {
  4105. className: "U_MD_D_KO",
  4106. "onmousedown": U.UF.C.closure(function (obj) {
  4107. //防止拖动图标即打开了桌面应用
  4108. U.MD.D.click(this, obj);
  4109. }, [_szjkyTeacherDeskIconInfo[i]]),
  4110. "onclick": U.UF.C.closure(function (obj) {
  4111. //防止拖动图标即打开了桌面应用
  4112. U.MD.D.click(this, obj);
  4113. }, [_szjkyTeacherDeskIconInfo[i]])
  4114. }, _frag); //
  4115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  4117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4118. }
  4119. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  4120. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  4121. _content = $$("div", {
  4122. className: "U_MD_D_KO",
  4123. "onmousedown": U.UF.C.closure(function (obj) {
  4124. //防止拖动图标即打开了桌面应用
  4125. U.MD.D.click(this, obj);
  4126. }, [_x020201AdminDeskIconInfo[i]]),
  4127. "onclick": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_x020201AdminDeskIconInfo[i]])
  4131. }, _frag); //
  4132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  4134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  4135. }//
  4136. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  4137. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  4138. if (_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4139. continue
  4140. }
  4141. _content = $$("div", {
  4142. className: "U_MD_D_KO",
  4143. "onmousedown": U.UF.C.closure(function (obj) {
  4144. //防止拖动图标即打开了桌面应用
  4145. U.MD.D.click(this, obj);
  4146. }, [_x020201TeacherDeskIconInfo[i]]),
  4147. "onclick": U.UF.C.closure(function (obj) {
  4148. //防止拖动图标即打开了桌面应用
  4149. U.MD.D.click(this, obj);
  4150. }, [_x020201TeacherDeskIconInfo[i]])
  4151. }, _frag); //
  4152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  4154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  4155. }
  4156. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  4157. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  4158. _content = $$("div", {
  4159. className: "U_MD_D_KO",
  4160. "onmousedown": U.UF.C.closure(function (obj) {
  4161. //防止拖动图标即打开了桌面应用
  4162. U.MD.D.click(this, obj);
  4163. }, [_SCNUETAdminDeskIconInfo[i]]),
  4164. "onclick": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_SCNUETAdminDeskIconInfo[i]])
  4168. }, _frag); //
  4169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  4171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  4172. }//
  4173. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  4174. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  4175. if (_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4176. continue
  4177. }
  4178. _content = $$("div", {
  4179. className: "U_MD_D_KO",
  4180. "onmousedown": U.UF.C.closure(function (obj) {
  4181. //防止拖动图标即打开了桌面应用
  4182. U.MD.D.click(this, obj);
  4183. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4184. "onclick": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_SCNUETTeacherDeskIconInfo[i]])
  4188. }, _frag); //
  4189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4192. }
  4193. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4194. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4195. _content = $$("div", {
  4196. className: "U_MD_D_KO",
  4197. "onmousedown": U.UF.C.closure(function (obj) {
  4198. //防止拖动图标即打开了桌面应用
  4199. U.MD.D.click(this, obj);
  4200. }, [_futianAdminDeskIconInfo[i]]),
  4201. "onclick": U.UF.C.closure(function (obj) {
  4202. //防止拖动图标即打开了桌面应用
  4203. U.MD.D.click(this, obj);
  4204. }, [_futianAdminDeskIconInfo[i]])
  4205. }, _frag); //
  4206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4209. }
  4210. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4211. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4212. if (_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4213. continue
  4214. }
  4215. _content = $$("div", {
  4216. className: "U_MD_D_KO",
  4217. "onmousedown": U.UF.C.closure(function (obj) {
  4218. //防止拖动图标即打开了桌面应用
  4219. U.MD.D.click(this, obj);
  4220. }, [_futianTeacherDeskIconInfo[i]]),
  4221. "onclick": U.UF.C.closure(function (obj) {
  4222. //防止拖动图标即打开了桌面应用
  4223. U.MD.D.click(this, obj);
  4224. }, [_futianTeacherDeskIconInfo[i]])
  4225. }, _frag); //
  4226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4229. }
  4230. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4231. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4232. if (_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher') {
  4233. continue
  4234. }
  4235. _content = $$("div", {
  4236. className: "U_MD_D_KO",
  4237. "onmousedown": U.UF.C.closure(function (obj) {
  4238. //防止拖动图标即打开了桌面应用
  4239. U.MD.D.click(this, obj);
  4240. }, [_MingdeTeacherDeskIcon[i]]),
  4241. "onclick": U.UF.C.closure(function (obj) {
  4242. //防止拖动图标即打开了桌面应用
  4243. U.MD.D.click(this, obj);
  4244. }, [_MingdeTeacherDeskIcon[i]])
  4245. }, _frag); //
  4246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4249. }
  4250. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4251. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4252. _content = $$("div", {
  4253. className: "U_MD_D_KO",
  4254. "onmousedown": U.UF.C.closure(function (obj) {
  4255. //防止拖动图标即打开了桌面应用
  4256. U.MD.D.click(this, obj);
  4257. }, [_lhsAdminDesktopIconInfo[i]]),
  4258. "onclick": U.UF.C.closure(function (obj) {
  4259. //防止拖动图标即打开了桌面应用
  4260. U.MD.D.click(this, obj);
  4261. }, [_lhsAdminDesktopIconInfo[i]])
  4262. }, _frag); //
  4263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4266. }
  4267. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4268. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4269. if (_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4270. continue
  4271. }
  4272. _content = $$("div", {
  4273. className: "U_MD_D_KO",
  4274. "onmousedown": U.UF.C.closure(function (obj) {
  4275. //防止拖动图标即打开了桌面应用
  4276. U.MD.D.click(this, obj);
  4277. }, [_lhsteacherDesktopIconInfo[i]]),
  4278. "onclick": U.UF.C.closure(function (obj) {
  4279. //防止拖动图标即打开了桌面应用
  4280. U.MD.D.click(this, obj);
  4281. }, [_lhsteacherDesktopIconInfo[i]])
  4282. }, _frag); //
  4283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4286. }
  4287. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4288. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4289. if (_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher') {
  4290. continue
  4291. }
  4292. _content = $$("div", {
  4293. className: "U_MD_D_KO",
  4294. "onmousedown": U.UF.C.closure(function (obj) {
  4295. //防止拖动图标即打开了桌面应用
  4296. U.MD.D.click(this, obj);
  4297. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4298. "onclick": U.UF.C.closure(function (obj) {
  4299. //防止拖动图标即打开了桌面应用
  4300. U.MD.D.click(this, obj);
  4301. }, [_zhoujiateacherDesktopIconInfo[i]])
  4302. }, _frag); //
  4303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4306. }
  4307. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4308. for (i = 0; i < _hanDeskIcon.length; i++) {
  4309. if (_role === 0 && _hanDeskIcon[i].Url == 'testTeacher') {
  4310. continue
  4311. }
  4312. _content = $$("div", {
  4313. className: "U_MD_D_KO",
  4314. "onmousedown": U.UF.C.closure(function (obj) {
  4315. //防止拖动图标即打开了桌面应用
  4316. U.MD.D.click(this, obj);
  4317. }, [_hanDeskIcon[i]]),
  4318. "onclick": U.UF.C.closure(function (obj) {
  4319. //防止拖动图标即打开了桌面应用
  4320. U.MD.D.click(this, obj);
  4321. }, [_hanDeskIcon[i]])
  4322. }, _frag); //
  4323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4326. }
  4327. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4328. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4329. if (_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher') {
  4330. continue
  4331. }
  4332. _content = $$("div", {
  4333. className: "U_MD_D_KO",
  4334. "onmousedown": U.UF.C.closure(function (obj) {
  4335. //防止拖动图标即打开了桌面应用
  4336. U.MD.D.click(this, obj);
  4337. }, [_orgStemDeskIcon[i]]),
  4338. "onclick": U.UF.C.closure(function (obj) {
  4339. //防止拖动图标即打开了桌面应用
  4340. U.MD.D.click(this, obj);
  4341. }, [_orgStemDeskIcon[i]])
  4342. }, _frag); //
  4343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4346. }
  4347. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4348. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4349. if (_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher') {
  4350. continue
  4351. }
  4352. _content = $$("div", {
  4353. className: "U_MD_D_KO",
  4354. "onmousedown": U.UF.C.closure(function (obj) {
  4355. //防止拖动图标即打开了桌面应用
  4356. U.MD.D.click(this, obj);
  4357. }, [_szulsDeskIcon[i]]),
  4358. "onclick": U.UF.C.closure(function (obj) {
  4359. //防止拖动图标即打开了桌面应用
  4360. U.MD.D.click(this, obj);
  4361. }, [_szulsDeskIcon[i]])
  4362. }, _frag); //
  4363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4366. }
  4367. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4368. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4369. if (_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher') {
  4370. continue
  4371. }
  4372. _content = $$("div", {
  4373. className: "U_MD_D_KO",
  4374. "onmousedown": U.UF.C.closure(function (obj) {
  4375. //防止拖动图标即打开了桌面应用
  4376. U.MD.D.click(this, obj);
  4377. }, [_orgDesktopIconInfo[i]]),
  4378. "onclick": U.UF.C.closure(function (obj) {
  4379. //防止拖动图标即打开了桌面应用
  4380. U.MD.D.click(this, obj);
  4381. }, [_orgDesktopIconInfo[i]])
  4382. }, _frag); //
  4383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4386. }
  4387. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4388. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4389. if (_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher') {
  4390. continue
  4391. }
  4392. _content = $$("div", {
  4393. className: "U_MD_D_KO",
  4394. "onmousedown": U.UF.C.closure(function (obj) {
  4395. //防止拖动图标即打开了桌面应用
  4396. U.MD.D.click(this, obj);
  4397. }, [_schoolDesktopIconInfo[i]]),
  4398. "onclick": U.UF.C.closure(function (obj) {
  4399. //防止拖动图标即打开了桌面应用
  4400. U.MD.D.click(this, obj);
  4401. }, [_schoolDesktopIconInfo[i]])
  4402. }, _frag); //
  4403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4406. }
  4407. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4408. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4409. if (_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4410. continue
  4411. }
  4412. _content = $$("div", {
  4413. className: "U_MD_D_KO",
  4414. "onmousedown": U.UF.C.closure(function (obj) {
  4415. //防止拖动图标即打开了桌面应用
  4416. U.MD.D.click(this, obj);
  4417. }, [_GMteacherDesktopIconInfo[i]]),
  4418. "onclick": U.UF.C.closure(function (obj) {
  4419. //防止拖动图标即打开了桌面应用
  4420. U.MD.D.click(this, obj);
  4421. }, [_GMteacherDesktopIconInfo[i]])
  4422. }, _frag); //
  4423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4426. }
  4427. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4428. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4429. if (_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4430. continue
  4431. }
  4432. _content = $$("div", {
  4433. className: "U_MD_D_KO",
  4434. "onmousedown": U.UF.C.closure(function (obj) {
  4435. //防止拖动图标即打开了桌面应用
  4436. U.MD.D.click(this, obj);
  4437. }, [_SONGteacherDesktopIconInfo[i]]),
  4438. "onclick": U.UF.C.closure(function (obj) {
  4439. //防止拖动图标即打开了桌面应用
  4440. U.MD.D.click(this, obj);
  4441. }, [_SONGteacherDesktopIconInfo[i]])
  4442. }, _frag); //
  4443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4446. }
  4447. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4448. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4449. _content = $$("div", {
  4450. className: "U_MD_D_KO",
  4451. "onmousedown": U.UF.C.closure(function (obj) {
  4452. //防止拖动图标即打开了桌面应用
  4453. U.MD.D.click(this, obj);
  4454. }, [_GMstudentDesktopIconInfo[i]]),
  4455. "onclick": U.UF.C.closure(function (obj) {
  4456. //防止拖动图标即打开了桌面应用
  4457. U.MD.D.click(this, obj);
  4458. }, [_GMstudentDesktopIconInfo[i]])
  4459. }, _frag); //
  4460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4463. }
  4464. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4465. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4466. if (_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4467. continue
  4468. }
  4469. _content = $$("div", {
  4470. className: "U_MD_D_KO",
  4471. "onmousedown": U.UF.C.closure(function (obj) {
  4472. //防止拖动图标即打开了桌面应用
  4473. U.MD.D.click(this, obj);
  4474. }, [_tcTeacherDeskIconInfo[i]]),
  4475. "onclick": U.UF.C.closure(function (obj) {
  4476. //防止拖动图标即打开了桌面应用
  4477. U.MD.D.click(this, obj);
  4478. }, [_tcTeacherDeskIconInfo[i]])
  4479. }, _frag); //
  4480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4483. }
  4484. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4485. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4486. if (_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher') {
  4487. continue
  4488. }
  4489. _content = $$("div", {
  4490. className: "U_MD_D_KO",
  4491. "onmousedown": U.UF.C.closure(function (obj) {
  4492. //防止拖动图标即打开了桌面应用
  4493. U.MD.D.click(this, obj);
  4494. }, [_tcOrganizerDeskIconInfo[i]]),
  4495. "onclick": U.UF.C.closure(function (obj) {
  4496. //防止拖动图标即打开了桌面应用
  4497. U.MD.D.click(this, obj);
  4498. }, [_tcOrganizerDeskIconInfo[i]])
  4499. }, _frag); //
  4500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4503. }
  4504. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4505. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4506. if (_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4507. continue
  4508. }
  4509. _content = $$("div", {
  4510. className: "U_MD_D_KO",
  4511. "onmousedown": U.UF.C.closure(function (obj) {
  4512. //防止拖动图标即打开了桌面应用
  4513. U.MD.D.click(this, obj);
  4514. }, [_szscTeacherDeskIconInfo[i]]),
  4515. "onclick": U.UF.C.closure(function (obj) {
  4516. //防止拖动图标即打开了桌面应用
  4517. U.MD.D.click(this, obj);
  4518. }, [_szscTeacherDeskIconInfo[i]])
  4519. }, _frag); //
  4520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4523. }
  4524. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4525. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4526. if (_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher') {
  4527. continue
  4528. }
  4529. _content = $$("div", {
  4530. className: "U_MD_D_KO",
  4531. "onmousedown": U.UF.C.closure(function (obj) {
  4532. //防止拖动图标即打开了桌面应用
  4533. U.MD.D.click(this, obj);
  4534. }, [_szscOrganizerDeskIconInfo[i]]),
  4535. "onclick": U.UF.C.closure(function (obj) {
  4536. //防止拖动图标即打开了桌面应用
  4537. U.MD.D.click(this, obj);
  4538. }, [_szscOrganizerDeskIconInfo[i]])
  4539. }, _frag); //
  4540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4543. }
  4544. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4545. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4546. if (_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4547. continue
  4548. }
  4549. _content = $$("div", {
  4550. className: "U_MD_D_KO",
  4551. "onmousedown": U.UF.C.closure(function (obj) {
  4552. //防止拖动图标即打开了桌面应用
  4553. U.MD.D.click(this, obj);
  4554. }, [_nsfxTeacherDeskIconInfo[i]]),
  4555. "onclick": U.UF.C.closure(function (obj) {
  4556. //防止拖动图标即打开了桌面应用
  4557. U.MD.D.click(this, obj);
  4558. }, [_nsfxTeacherDeskIconInfo[i]])
  4559. }, _frag); //
  4560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4563. }
  4564. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4565. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4566. if (_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4567. continue
  4568. }
  4569. _content = $$("div", {
  4570. className: "U_MD_D_KO",
  4571. "onmousedown": U.UF.C.closure(function (obj) {
  4572. //防止拖动图标即打开了桌面应用
  4573. U.MD.D.click(this, obj);
  4574. }, [_stiaTeacherDeskIconInfo[i]]),
  4575. "onclick": U.UF.C.closure(function (obj) {
  4576. //防止拖动图标即打开了桌面应用
  4577. U.MD.D.click(this, obj);
  4578. }, [_stiaTeacherDeskIconInfo[i]])
  4579. }, _frag); //
  4580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4583. }
  4584. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4585. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4586. if (_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4587. continue
  4588. }
  4589. _content = $$("div", {
  4590. className: "U_MD_D_KO",
  4591. "onmousedown": U.UF.C.closure(function (obj) {
  4592. //防止拖动图标即打开了桌面应用
  4593. U.MD.D.click(this, obj);
  4594. }, [_szdjgTeacherDeskIconInfo[i]]),
  4595. "onclick": U.UF.C.closure(function (obj) {
  4596. //防止拖动图标即打开了桌面应用
  4597. U.MD.D.click(this, obj);
  4598. }, [_szdjgTeacherDeskIconInfo[i]])
  4599. }, _frag); //
  4600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4603. }
  4604. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4605. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4606. if (_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4607. continue
  4608. }
  4609. _content = $$("div", {
  4610. className: "U_MD_D_KO",
  4611. "onmousedown": U.UF.C.closure(function (obj) {
  4612. //防止拖动图标即打开了桌面应用
  4613. U.MD.D.click(this, obj);
  4614. }, [_x010607TeacherDeskIconInfo[i]]),
  4615. "onclick": U.UF.C.closure(function (obj) {
  4616. //防止拖动图标即打开了桌面应用
  4617. U.MD.D.click(this, obj);
  4618. }, [_x010607TeacherDeskIconInfo[i]])
  4619. }, _frag); //
  4620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4623. }
  4624. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4625. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4626. if (_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4627. continue
  4628. }
  4629. _content = $$("div", {
  4630. className: "U_MD_D_KO",
  4631. "onmousedown": U.UF.C.closure(function (obj) {
  4632. //防止拖动图标即打开了桌面应用
  4633. U.MD.D.click(this, obj);
  4634. }, [_xhlyTeacherDeskIconInfo[i]]),
  4635. "onclick": U.UF.C.closure(function (obj) {
  4636. //防止拖动图标即打开了桌面应用
  4637. U.MD.D.click(this, obj);
  4638. }, [_xhlyTeacherDeskIconInfo[i]])
  4639. }, _frag); //
  4640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4643. }
  4644. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4645. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4646. if (_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4647. continue
  4648. }
  4649. _content = $$("div", {
  4650. className: "U_MD_D_KO",
  4651. "onmousedown": U.UF.C.closure(function (obj) {
  4652. //防止拖动图标即打开了桌面应用
  4653. U.MD.D.click(this, obj);
  4654. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4655. "onclick": U.UF.C.closure(function (obj) {
  4656. //防止拖动图标即打开了桌面应用
  4657. U.MD.D.click(this, obj);
  4658. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4659. }, _frag); //
  4660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4663. }
  4664. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4665. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4666. if (_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4667. continue
  4668. }
  4669. _content = $$("div", {
  4670. className: "U_MD_D_KO",
  4671. "onmousedown": U.UF.C.closure(function (obj) {
  4672. //防止拖动图标即打开了桌面应用
  4673. U.MD.D.click(this, obj);
  4674. }, [_x010503TeacherDeskIconInfo[i]]),
  4675. "onclick": U.UF.C.closure(function (obj) {
  4676. //防止拖动图标即打开了桌面应用
  4677. U.MD.D.click(this, obj);
  4678. }, [_x010503TeacherDeskIconInfo[i]])
  4679. }, _frag); //
  4680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4683. }
  4684. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4685. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4686. if (_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4687. continue
  4688. }
  4689. _content = $$("div", {
  4690. className: "U_MD_D_KO",
  4691. "onmousedown": U.UF.C.closure(function (obj) {
  4692. //防止拖动图标即打开了桌面应用
  4693. U.MD.D.click(this, obj);
  4694. }, [_x010504TeacherDeskIconInfo[i]]),
  4695. "onclick": U.UF.C.closure(function (obj) {
  4696. //防止拖动图标即打开了桌面应用
  4697. U.MD.D.click(this, obj);
  4698. }, [_x010504TeacherDeskIconInfo[i]])
  4699. }, _frag); //
  4700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4703. }
  4704. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4705. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4706. if (_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4707. continue
  4708. }
  4709. _content = $$("div", {
  4710. className: "U_MD_D_KO",
  4711. "onmousedown": U.UF.C.closure(function (obj) {
  4712. //防止拖动图标即打开了桌面应用
  4713. U.MD.D.click(this, obj);
  4714. }, [_x010505TeacherDeskIconInfo[i]]),
  4715. "onclick": U.UF.C.closure(function (obj) {
  4716. //防止拖动图标即打开了桌面应用
  4717. U.MD.D.click(this, obj);
  4718. }, [_x010505TeacherDeskIconInfo[i]])
  4719. }, _frag); //
  4720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4723. }
  4724. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4725. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4726. if (_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4727. continue
  4728. }
  4729. _content = $$("div", {
  4730. className: "U_MD_D_KO",
  4731. "onmousedown": U.UF.C.closure(function (obj) {
  4732. //防止拖动图标即打开了桌面应用
  4733. U.MD.D.click(this, obj);
  4734. }, [_x010404TeacherDeskIconInfo[i]]),
  4735. "onclick": U.UF.C.closure(function (obj) {
  4736. //防止拖动图标即打开了桌面应用
  4737. U.MD.D.click(this, obj);
  4738. }, [_x010404TeacherDeskIconInfo[i]])
  4739. }, _frag); //
  4740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4743. }
  4744. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4745. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4746. if (_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4747. continue
  4748. }
  4749. _content = $$("div", {
  4750. className: "U_MD_D_KO",
  4751. "onmousedown": U.UF.C.closure(function (obj) {
  4752. //防止拖动图标即打开了桌面应用
  4753. U.MD.D.click(this, obj);
  4754. }, [_x010204TeacherDeskIconInfo[i]]),
  4755. "onclick": U.UF.C.closure(function (obj) {
  4756. //防止拖动图标即打开了桌面应用
  4757. U.MD.D.click(this, obj);
  4758. }, [_x010204TeacherDeskIconInfo[i]])
  4759. }, _frag); //
  4760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4763. }
  4764. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4765. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4766. if (_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4767. continue
  4768. }
  4769. _content = $$("div", {
  4770. className: "U_MD_D_KO",
  4771. "onmousedown": U.UF.C.closure(function (obj) {
  4772. //防止拖动图标即打开了桌面应用
  4773. U.MD.D.click(this, obj);
  4774. }, [_x320101TeacherDeskIconInfo[i]]),
  4775. "onclick": U.UF.C.closure(function (obj) {
  4776. //防止拖动图标即打开了桌面应用
  4777. U.MD.D.click(this, obj);
  4778. }, [_x320101TeacherDeskIconInfo[i]])
  4779. }, _frag); //
  4780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4783. }
  4784. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4785. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4786. if (_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4787. continue
  4788. }
  4789. _content = $$("div", {
  4790. className: "U_MD_D_KO",
  4791. "onmousedown": U.UF.C.closure(function (obj) {
  4792. //防止拖动图标即打开了桌面应用
  4793. U.MD.D.click(this, obj);
  4794. }, [_trailTeacherDeskIconInfo[i]]),
  4795. "onclick": U.UF.C.closure(function (obj) {
  4796. //防止拖动图标即打开了桌面应用
  4797. U.MD.D.click(this, obj);
  4798. }, [_trailTeacherDeskIconInfo[i]])
  4799. }, _frag); //
  4800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4803. }
  4804. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4805. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4806. if (_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4807. continue
  4808. }
  4809. _content = $$("div", {
  4810. className: "U_MD_D_KO",
  4811. "onmousedown": U.UF.C.closure(function (obj) {
  4812. //防止拖动图标即打开了桌面应用
  4813. U.MD.D.click(this, obj);
  4814. }, [_trialTeacherDeskIconInfo[i]]),
  4815. "onclick": U.UF.C.closure(function (obj) {
  4816. //防止拖动图标即打开了桌面应用
  4817. U.MD.D.click(this, obj);
  4818. }, [_trialTeacherDeskIconInfo[i]])
  4819. }, _frag); //
  4820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4823. }
  4824. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4825. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4826. if (_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4827. continue
  4828. }
  4829. _content = $$("div", {
  4830. className: "U_MD_D_KO",
  4831. "onmousedown": U.UF.C.closure(function (obj) {
  4832. //防止拖动图标即打开了桌面应用
  4833. U.MD.D.click(this, obj);
  4834. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4835. "onclick": U.UF.C.closure(function (obj) {
  4836. //防止拖动图标即打开了桌面应用
  4837. U.MD.D.click(this, obj);
  4838. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4839. }, _frag); //
  4840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4843. }
  4844. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4845. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4846. if (_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4847. continue
  4848. }
  4849. _content = $$("div", {
  4850. className: "U_MD_D_KO",
  4851. "onmousedown": U.UF.C.closure(function (obj) {
  4852. //防止拖动图标即打开了桌面应用
  4853. U.MD.D.click(this, obj);
  4854. }, [_szsyTeacherDeskIconInfo[i]]),
  4855. "onclick": U.UF.C.closure(function (obj) {
  4856. //防止拖动图标即打开了桌面应用
  4857. U.MD.D.click(this, obj);
  4858. }, [_szsyTeacherDeskIconInfo[i]])
  4859. }, _frag); //
  4860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4863. }
  4864. } else if ((_type == 1 || _type == 4) && _org == "eed08ac6-7269-11f0-9c7b-005056924926") {
  4865. for (i = 0; i < _PREPAITeacherDeskIcon.length; i++) {
  4866. if (_role === 0 && _PREPAITeacherDeskIcon[i].Url == 'testTeacher') {
  4867. continue
  4868. }
  4869. _content = $$("div", {
  4870. className: "U_MD_D_KO",
  4871. "onmousedown": U.UF.C.closure(function (obj) {
  4872. //防止拖动图标即打开了桌面应用
  4873. U.MD.D.click(this, obj);
  4874. }, [_PREPAITeacherDeskIcon[i]]),
  4875. "onclick": U.UF.C.closure(function (obj) {
  4876. //防止拖动图标即打开了桌面应用
  4877. U.MD.D.click(this, obj);
  4878. }, [_PREPAITeacherDeskIcon[i]])
  4879. }, _frag); //
  4880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAITeacherDeskIcon[i].style }, _iconcontent);
  4882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAITeacherDeskIcon[i].Name }, _iconcontent);
  4883. }
  4884. } else if ((_type == 1 || _type == 4) && _oid == "17dbf412-92de-11f0-9838-005056924926") {
  4885. for (i = 0; i < _x010511TeacherDeskIcon.length; i++) {
  4886. if (_role === 0 && _x010511TeacherDeskIcon[i].Url == 'testTeacher') {
  4887. continue
  4888. }
  4889. _content = $$("div", {
  4890. className: "U_MD_D_KO",
  4891. "onmousedown": U.UF.C.closure(function (obj) {
  4892. //防止拖动图标即打开了桌面应用
  4893. U.MD.D.click(this, obj);
  4894. }, [_x010511TeacherDeskIcon[i]]),
  4895. "onclick": U.UF.C.closure(function (obj) {
  4896. //防止拖动图标即打开了桌面应用
  4897. U.MD.D.click(this, obj);
  4898. }, [_x010511TeacherDeskIcon[i]])
  4899. }, _frag); //
  4900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010511TeacherDeskIcon[i].style }, _iconcontent);
  4902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010511TeacherDeskIcon[i].Name }, _iconcontent);
  4903. }
  4904. } else if ((_type == 1 || _type == 4) && _oid == "31631344-92db-11f0-9838-005056924926") {
  4905. for (i = 0; i < _x010103TeacherDeskIcon.length; i++) {
  4906. if (_role === 0 && _x010103TeacherDeskIcon[i].Url == 'testTeacher') {
  4907. continue
  4908. }
  4909. _content = $$("div", {
  4910. className: "U_MD_D_KO",
  4911. "onmousedown": U.UF.C.closure(function (obj) {
  4912. //防止拖动图标即打开了桌面应用
  4913. U.MD.D.click(this, obj);
  4914. }, [_x010103TeacherDeskIcon[i]]),
  4915. "onclick": U.UF.C.closure(function (obj) {
  4916. //防止拖动图标即打开了桌面应用
  4917. U.MD.D.click(this, obj);
  4918. }, [_x010103TeacherDeskIcon[i]])
  4919. }, _frag); //
  4920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010103TeacherDeskIcon[i].style }, _iconcontent);
  4922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010103TeacherDeskIcon[i].Name }, _iconcontent);
  4923. }
  4924. } else if ((_type == 1 || _type == 4) && _org == "cf30095b-87d5-11f0-9c7b-005056924926") {
  4925. for (i = 0; i < _zlteacherDeskIconInfo.length; i++) {
  4926. if (_role === 0 && _zlteacherDeskIconInfo[i].Url == 'testTeacher') {
  4927. continue
  4928. }
  4929. _content = $$("div", {
  4930. className: "U_MD_D_KO",
  4931. "onmousedown": U.UF.C.closure(function (obj) {
  4932. //防止拖动图标即打开了桌面应用
  4933. U.MD.D.click(this, obj);
  4934. }, [_zlteacherDeskIconInfo[i]]),
  4935. "onclick": U.UF.C.closure(function (obj) {
  4936. //防止拖动图标即打开了桌面应用
  4937. U.MD.D.click(this, obj);
  4938. }, [_zlteacherDeskIconInfo[i]])
  4939. }, _frag); //
  4940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zlteacherDeskIconInfo[i].style }, _iconcontent);
  4942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zlteacherDeskIconInfo[i].Name }, _iconcontent);
  4943. }
  4944. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4945. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4946. if (_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4947. continue
  4948. }
  4949. _content = $$("div", {
  4950. className: "U_MD_D_KO",
  4951. "onmousedown": U.UF.C.closure(function (obj) {
  4952. //防止拖动图标即打开了桌面应用
  4953. U.MD.D.click(this, obj);
  4954. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4955. "onclick": U.UF.C.closure(function (obj) {
  4956. //防止拖动图标即打开了桌面应用
  4957. U.MD.D.click(this, obj);
  4958. }, [_demoCocoTeacherDeskIconInfo[i]])
  4959. }, _frag); //
  4960. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4961. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4962. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4963. }
  4964. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4965. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4966. if (_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4967. continue
  4968. }
  4969. _content = $$("div", {
  4970. className: "U_MD_D_KO",
  4971. "onmousedown": U.UF.C.closure(function (obj) {
  4972. //防止拖动图标即打开了桌面应用
  4973. U.MD.D.click(this, obj);
  4974. }, [_x010608TeacherDeskIconInfo[i]]),
  4975. "onclick": U.UF.C.closure(function (obj) {
  4976. //防止拖动图标即打开了桌面应用
  4977. U.MD.D.click(this, obj);
  4978. }, [_x010608TeacherDeskIconInfo[i]])
  4979. }, _frag); //
  4980. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4981. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4982. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4983. }
  4984. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4985. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4986. if (_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4987. continue
  4988. }
  4989. _content = $$("div", {
  4990. className: "U_MD_D_KO",
  4991. "onmousedown": U.UF.C.closure(function (obj) {
  4992. //防止拖动图标即打开了桌面应用
  4993. U.MD.D.click(this, obj);
  4994. }, [_x010611TeacherDeskIconInfo[i]]),
  4995. "onclick": U.UF.C.closure(function (obj) {
  4996. //防止拖动图标即打开了桌面应用
  4997. U.MD.D.click(this, obj);
  4998. }, [_x010611TeacherDeskIconInfo[i]])
  4999. }, _frag); //
  5000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  5002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  5003. }
  5004. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  5005. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  5006. if (_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher') {
  5007. continue
  5008. }
  5009. _content = $$("div", {
  5010. className: "U_MD_D_KO",
  5011. "onmousedown": U.UF.C.closure(function (obj) {
  5012. //防止拖动图标即打开了桌面应用
  5013. U.MD.D.click(this, obj);
  5014. }, [_x010612TeacherDeskIconInfo[i]]),
  5015. "onclick": U.UF.C.closure(function (obj) {
  5016. //防止拖动图标即打开了桌面应用
  5017. U.MD.D.click(this, obj);
  5018. }, [_x010612TeacherDeskIconInfo[i]])
  5019. }, _frag); //
  5020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  5022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  5023. }
  5024. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  5025. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  5026. if (_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher') {
  5027. continue
  5028. }
  5029. _content = $$("div", {
  5030. className: "U_MD_D_KO",
  5031. "onmousedown": U.UF.C.closure(function (obj) {
  5032. //防止拖动图标即打开了桌面应用
  5033. U.MD.D.click(this, obj);
  5034. }, [_tianyuanTeacherDeskIconInfo[i]]),
  5035. "onclick": U.UF.C.closure(function (obj) {
  5036. //防止拖动图标即打开了桌面应用
  5037. U.MD.D.click(this, obj);
  5038. }, [_tianyuanTeacherDeskIconInfo[i]])
  5039. }, _frag); //
  5040. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  5042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  5043. }
  5044. } else if ((_type == 1 || _type == 4) && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  5045. for (i = 0; i < _MOAITeacherDeskIcon.length; i++) {
  5046. if (_role === 0 && _MOAITeacherDeskIcon[i].Url == 'testTeacher') {
  5047. continue
  5048. }
  5049. _content = $$("div", {
  5050. className: "U_MD_D_KO",
  5051. "onmousedown": U.UF.C.closure(function (obj) {
  5052. //防止拖动图标即打开了桌面应用
  5053. U.MD.D.click(this, obj);
  5054. }, [_MOAITeacherDeskIcon[i]]),
  5055. "onclick": U.UF.C.closure(function (obj) {
  5056. //防止拖动图标即打开了桌面应用
  5057. U.MD.D.click(this, obj);
  5058. }, [_MOAITeacherDeskIcon[i]])
  5059. }, _frag); //
  5060. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5061. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAITeacherDeskIcon[i].style }, _iconcontent);
  5062. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAITeacherDeskIcon[i].Name }, _iconcontent);
  5063. }
  5064. } else {
  5065. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  5066. if (_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  5067. continue
  5068. }
  5069. _content = $$("div", {
  5070. className: "U_MD_D_KO",
  5071. "onmousedown": U.UF.C.closure(function (obj) {
  5072. //防止拖动图标即打开了桌面应用
  5073. U.MD.D.click(this, obj);
  5074. }, [_teacherDesktopIconInfo[i]]),
  5075. "onclick": U.UF.C.closure(function (obj) {
  5076. //防止拖动图标即打开了桌面应用
  5077. U.MD.D.click(this, obj);
  5078. }, [_teacherDesktopIconInfo[i]])
  5079. }, _frag); //
  5080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  5082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  5083. }
  5084. }
  5085. } else {
  5086. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  5087. _content = $$("div", {
  5088. className: "U_MD_D_KO",
  5089. style: { 'width': '124px', 'height': '145px' },
  5090. "onmousedown": U.UF.C.closure(function (obj) {
  5091. //防止拖动图标即打开了桌面应用
  5092. U.MD.D.click(this, obj);
  5093. }, [_easyDesktopIconInfo[i]]),
  5094. "onclick": U.UF.C.closure(function (obj) {
  5095. //防止拖动图标即打开了桌面应用
  5096. U.MD.D.click(this, obj);
  5097. }, [_easyDesktopIconInfo[i]])
  5098. }, _frag); //
  5099. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  5100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  5101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  5102. }
  5103. }
  5104. if (type == 1) {
  5105. //加载好后给图标定位
  5106. U.MD.D.iconPostion($(_frag).Child());
  5107. } else {
  5108. //加载好后给图标定位
  5109. U.MD.D.iconPostion2($(_frag).Child());
  5110. }
  5111. //把图标加载到页面
  5112. el.appendChild(_frag);
  5113. if(_type == 2){
  5114. U.selectEl(".U_MD_D_RW").css("display", "none");
  5115. }
  5116. }
  5117. /**
  5118. * 显示任务栏
  5119. *
  5120. * @param {element} 桌面元素
  5121. */
  5122. U.MD.D.I.displayTaskbar = function (el) {
  5123. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  5124. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  5125. //任务栏位置变化
  5126. U.selectEl(el).css({ "bottom": "0px" });
  5127. //桌面位置变话
  5128. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  5129. }
  5130. }
  5131. //#region 桌面图标拖动逻辑
  5132. /**
  5133. * 桌面排列图标
  5134. *
  5135. * @param {element} 桌面元素
  5136. * @param {object} 上下相距的距离
  5137. * @param {object} 左右相距的距离
  5138. * @return {object} 命名空间
  5139. */
  5140. U.MD.D.iconPostion = function (childs, top, left) {
  5141. var i; //用于循环处理
  5142. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  5143. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  5144. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  5145. for (i = 0; i < childs.length; i++) {
  5146. //如果竖排top超过了范围处理
  5147. if (top + 95 > US.height - 10) {
  5148. //left超过了页面范围处理,则向上重叠打印处理
  5149. if ((left + 180) > US.width) {
  5150. top -= 110;
  5151. left -= 90;
  5152. }
  5153. //没有超过范围,那么left+90添加到下一个竖排打印
  5154. else {
  5155. left += 90;
  5156. top = 15;
  5157. };
  5158. }
  5159. //给图标的位置赋值
  5160. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  5161. if (i < childs.length - 1) {
  5162. //页面图标每次向下加95
  5163. top += 95;
  5164. }
  5165. }
  5166. //返回最后调用的图标的位置
  5167. return [top, left];
  5168. }
  5169. /**
  5170. * 桌面排列图标
  5171. *
  5172. * @param {element} 桌面元素
  5173. * @param {object} 上下相距的距离
  5174. * @param {object} 左右相距的距离
  5175. * @return {object} 命名空间
  5176. */
  5177. U.MD.D.iconPostion2 = function (childs, top, left) {
  5178. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  5179. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  5180. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  5181. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  5182. for (i = 0; i < childs.length; i++) {
  5183. //如果竖排top超过了范围处理
  5184. if (left + 150 > US.width - 10) {
  5185. //left超过了页面范围处理,则向上重叠打印处理
  5186. if ((top + 180) > US.Height) {
  5187. top -= 150;
  5188. left -= 150;
  5189. }
  5190. //没有超过范围,那么left+90添加到下一个竖排打印
  5191. else {
  5192. top += 150;
  5193. left = ol;
  5194. };
  5195. }
  5196. //给图标的位置赋值
  5197. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  5198. if (i < childs.length - 1) {
  5199. //页面图标每次向下加95
  5200. left += 150;
  5201. }
  5202. }
  5203. //返回最后调用的图标的位置
  5204. return [top, left];
  5205. }
  5206. /**
  5207. * 桌面点击事件逻辑
  5208. *
  5209. * @param {element} 桌面元素
  5210. * @param {object} 上下相距的距离
  5211. * @param {object} 左右相距的距离
  5212. * @return {object} 命名空间
  5213. */
  5214. U.MD.D.click = function (el, obj) {
  5215. var _buttonnumber = event.button; //点击的按钮的事件值
  5216. var _userinfo = US.userInfo;
  5217. U.UF.EV.stopBubble(); //阻止向上冒泡
  5218. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  5219. if (_buttonnumber < 2) {
  5220. //如果是click事件的处理
  5221. if (event.type == "click") {
  5222. //如果元素在mousemove事件中没有移动则出发click事件
  5223. if (!U.MD.D.I.IsDrag) {
  5224. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5225. U.alert("请先登录您的账号!");
  5226. setTimeout(() => {
  5227. U.MD.U.L.login();
  5228. }, 2000);
  5229. } else {
  5230. //打开应用处理
  5231. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  5232. }
  5233. }
  5234. }
  5235. //如果是mouse事件的处理
  5236. else {
  5237. if (US.Config.type == '1') {
  5238. //拖动处理,添加拖动和拖动结束事件
  5239. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  5240. }
  5241. }
  5242. U.MD.D.I.IsDrag = false;
  5243. }
  5244. }
  5245. /**
  5246. * 拖动的处理
  5247. *
  5248. */
  5249. U.MD.D.iconMove = function () {
  5250. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  5251. U.MD.D.I.IsDrag = true;
  5252. }
  5253. /**
  5254. * 拖动结束后,这里是定位处理,以网状的形式定位
  5255. *
  5256. * @param {element} 拖动的元素
  5257. * @return {object} 命名空间
  5258. */
  5259. U.MD.D.iconUp = function (el) {
  5260. var _top = 15,
  5261. _left = 20,
  5262. _margin,
  5263. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  5264. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  5265. if (_positioninfo["OT"] > 15) {
  5266. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  5267. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  5268. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  5269. }
  5270. if (_positioninfo["OL"] > 20) {
  5271. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  5272. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  5273. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  5274. }
  5275. //while循环判断么一个重叠的元素
  5276. do {
  5277. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  5278. _top = _positioninfo[0] + 95; //得到定位后的top
  5279. _left = _positioninfo[1]; //得到定位后的left
  5280. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  5281. }
  5282. /**
  5283. * 判断拖动后图标是否重叠
  5284. *
  5285. * @param {element} 拖动的元素
  5286. * @param {element} 桌面所有的元素
  5287. * @param {array} 拖动元素的位置
  5288. ----------[0] 上 top
  5289. ----------[1] 左 left
  5290. * @return {object} 命名空间
  5291. */
  5292. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5293. //循环所有的图标
  5294. for (var i = 0; i < childs.length; i++) {
  5295. //判断有没有和该图标诶子重叠的元素
  5296. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5297. return childs[i]; //如果有返回
  5298. }
  5299. }
  5300. }
  5301. //#endregion
  5302. //#endregion
  5303. //#region 桌面应用
  5304. /**
  5305. * 打开应用
  5306. *
  5307. * @param {string} 类型
  5308. -----------------Disk 网盘系统
  5309. -----------------PDisk 学习系统网盘
  5310. -----------------Poto 图片
  5311. -----------------Video 视频
  5312. -----------------Music 音乐
  5313. -----------------Word word
  5314. -----------------Excel excel
  5315. -----------------Txt 记事本
  5316. -----------------PB 学习系统
  5317. -----------------Blog 朋友圈系统
  5318. -----------------FTP ftp系统
  5319. -----------------Group 好友群
  5320. -----------------SY 首页系统
  5321. -----------------Set 个人设置
  5322. -----------------XSet 系统设置
  5323. -----------------App 我们所有的app
  5324. -----------------BC c.1473.cn 平台
  5325. -----------------CWeb d.1473.cn 变成平台
  5326. -----------------其他的外联系统 我们统一用iframe打开
  5327. * @param {array} 类型
  5328. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5329. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5330. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5331. 如果第一个参数为其他,则无第二个参数
  5332. * @returns {array}
  5333. */
  5334. window.addEventListener('message', function (e) { // 监听 message 事件
  5335. // alert(e.data.type);
  5336. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5337. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5338. //3是展示全部阶段 2学生 1老师 4专家
  5339. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5340. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5341. //3是展示全部阶段 2学生 1老师 4专家
  5342. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5343. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5344. //3是展示全部阶段 2学生 1老师 4专家
  5345. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5346. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5347. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5348. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5349. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5350. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5351. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5352. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5353. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5354. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5355. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5356. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5357. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5358. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5359. //3是展示全部阶段 2学生 1老师 4专家
  5360. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5361. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5362. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5363. U.MD.D.I.selectUser();
  5364. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5365. var _formel = document.getElementById("study");
  5366. U.UF.F.windowZooming(_formel);
  5367. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5368. var _formel = document.getElementById("studyDetail");
  5369. U.UF.F.windowZooming(_formel);
  5370. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5371. var _formel = document.getElementById("studyDetail");
  5372. U.UF.F.windowZooming(_formel);
  5373. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5374. var _formel = document.getElementById("studentStudy");
  5375. U.UF.F.windowZooming(_formel);
  5376. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5377. // var _formel = document.getElementById("study");
  5378. //如果最大化了,那么就把他缩小
  5379. // if (_formel.ismaximize) {
  5380. // return;
  5381. // }
  5382. // U.UF.F.windowZooming(_formel);
  5383. // U.UF.F.topWindow(_formel);
  5384. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5385. // var _formel = document.getElementById("studyDetail");
  5386. //如果最大化了,那么就把他缩小
  5387. // if (_formel.ismaximize) {
  5388. // return;
  5389. // }
  5390. // U.UF.F.windowZooming(_formel);
  5391. // U.UF.F.topWindow(_formel);
  5392. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5393. // var _formel = document.getElementById("studentStudy");
  5394. // if (_formel.ismaximize) {
  5395. // return;
  5396. // }
  5397. // U.UF.F.windowZooming(_formel);
  5398. // U.UF.F.topWindow(_formel);
  5399. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5400. var _formel = document.getElementById("study");
  5401. // if (_formel.ismaximize) {
  5402. // return;
  5403. // }
  5404. // U.UF.F.windowZooming(_formel);
  5405. U.UF.F.topWindow(_formel);
  5406. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5407. var _formel = document.getElementById("studentIndex");
  5408. U.UF.F.windowZooming(_formel);
  5409. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5410. var _formel = document.getElementById("studyDetailS");
  5411. U.UF.F.windowZooming(_formel);
  5412. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5413. var _formel = document.getElementById("studioIndex");
  5414. U.UF.F.windowZooming(_formel);
  5415. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5416. var _formel = document.getElementById("studyDetailStudio");
  5417. U.UF.F.windowZooming(_formel);
  5418. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5419. var _formel = document.getElementById("studyDetailStudio");
  5420. U.UF.F.windowZooming(_formel);
  5421. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5422. var _formel = document.getElementById("studyDetailNT");
  5423. U.UF.F.windowZooming(_formel);
  5424. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5425. var _formel = document.getElementById("studyDetailS");
  5426. U.UF.F.windowZooming(_formel);
  5427. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5428. var _formel = document.getElementById("studyDetailS");
  5429. U.UF.F.topWindow(_formel);
  5430. } else if (e.data.tools && e.data.tools == "1") {
  5431. // U.MD.D.I.openApplication("whiteboard")
  5432. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5433. } else if (e.data.tools && e.data.tools == "2") {
  5434. U.MD.D.I.openApplication("note")
  5435. } else if (e.data.tools && e.data.tools == "3") {
  5436. // U.MD.D.I.openApplication("mind")
  5437. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5438. } else if (e.data.tools && e.data.tools == "4") {
  5439. U.MD.D.I.openApplication("investigation")
  5440. } else if (e.data.tools && e.data.tools == "6") {
  5441. // U.MD.D.I.openApplication("doc")
  5442. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5443. } else if (e.data.tools && e.data.tools == "7") {
  5444. // U.MD.D.I.openApplication("mindNetwork")
  5445. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5446. } else if (e.data.tools && e.data.tools == "8") {
  5447. U.MD.D.I.openApplication("library")
  5448. } else if (e.data.tools && e.data.tools == "17") {
  5449. U.MD.D.I.openApplication("stuLibrary")
  5450. } else if (e.data.tools && e.data.tools == "18") {
  5451. U.MD.D.I.openApplication("train")
  5452. } else if (e.data.tools && e.data.tools == "21") {
  5453. U.MD.D.I.openApplication("program")
  5454. } else if (e.data.tools && e.data.tools == "22") {
  5455. U.MD.D.I.openApplication("AIprogram2")
  5456. } else if (e.data.tools && e.data.tools == "23") {
  5457. U.MD.D.I.openApplication("Pythonprogram")
  5458. } else if (e.data.tools && e.data.tools == "24") {
  5459. U.MD.D.I.openApplication("AIprogram")
  5460. } else if (e.data.tools && e.data.tools == "25") {
  5461. U.MD.D.I.openApplication("sys")
  5462. } else if (e.data.tools && e.data.tools == "26") {
  5463. // U.MD.D.I.openApplication("courseDesign")
  5464. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5465. } else if (e.data.tools && e.data.tools == "31") {
  5466. U.MD.D.I.openApplication("netWorkPanel")
  5467. } else if (e.data.tools && e.data.tools == "32") {
  5468. U.MD.D.I.openApplication("codeEdit")
  5469. } else if (e.data.tools && e.data.tools == "57") {
  5470. U.MD.D.I.openApplication("CocoPi")
  5471. } else if (e.data.tools && e.data.tools == "63") {
  5472. U.MD.D.I.openApplication("Wood")
  5473. } else if (e.data.tools && e.data.tools == "58") {
  5474. U.MD.D.I.openApplication("car")
  5475. } else if (e.data.tools && e.data.tools == "59") {
  5476. U.MD.D.I.openApplication("lineSearch")
  5477. } else if (e.data.tools && e.data.tools == "60") {
  5478. U.MD.D.I.openApplication("deepLearning")
  5479. } else if (e.data.tools && e.data.tools == "61") {
  5480. U.MD.D.I.openApplication("allHistory")
  5481. } else if (e.data.tools && e.data.tools == "28") {
  5482. U.MD.D.I.openApplication("translation")
  5483. } else if (e.data.tools && e.data.tools == "37") {
  5484. U.MD.D.I.openApplication("mohe")
  5485. } else if (e.data.tools && e.data.tools == "38") {
  5486. U.MD.D.I.openApplication("24game")
  5487. } else if (e.data.tools && e.data.tools == "39") {
  5488. U.MD.D.I.openApplication("GeoGebra")
  5489. } else if (e.data.tools && e.data.tools == "43") {
  5490. U.MD.D.I.openApplication("studentEvaluate")
  5491. } else if (e.data.tools && e.data.tools == "44") {
  5492. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5493. } else if (e.data.tools && e.data.tools == "46") {
  5494. U.MD.D.I.openApplication("project")
  5495. } else if (e.data.tools && e.data.tools == "71") {
  5496. U.MD.D.I.openApplication("aigptCourse")
  5497. } else if (e.data.tools && e.data.tools == "72") {
  5498. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5499. } else if (e.data.tools && e.data.tools == "1s") {
  5500. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5501. } else if (e.data.tools && e.data.tools == "3s") {
  5502. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5503. } else if (e.data.tools && e.data.tools == "6s") {
  5504. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5505. } else if (e.data.tools && e.data.tools == "1studio") {
  5506. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5507. } else if (e.data.tools && e.data.tools == "3studio") {
  5508. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5509. } else if (e.data.tools && e.data.tools == "6studio") {
  5510. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5511. } else if (e.data.tools && e.data.tools == "3y") {
  5512. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5513. } else if (e.data.tools && e.data.tools == "73y") {
  5514. U.MD.D.I.openApplicationYu("ppt", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5515. } else if (e.data.tools && e.data.tools == "1y") {
  5516. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5517. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5518. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5519. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5520. U.MD.D.I.openApplication("AIAnalyse")
  5521. } else if (e.data.tools && e.data.tools == "1teacher") {
  5522. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5523. } else if (e.data.tools && e.data.tools == "3teacher") {
  5524. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5525. } else if (e.data.tools && e.data.tools == "7teacher") {
  5526. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5527. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5528. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5529. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5530. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5531. } else if (e.data.tools && e.data.tools == "1E") {
  5532. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5533. } else if (e.data.tools && e.data.tools == "3E") {
  5534. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5535. } else if (e.data.tools && e.data.tools == "57y") {
  5536. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5537. } else if (e.data.tools && e.data.tools == "57u") {
  5538. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5539. } else if (e.data.tools && e.data.tools == "57teacher") {
  5540. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5541. } else if (e.data.tools && e.data.tools == "64") {
  5542. U.MD.D.I.openApplication("AIChat")
  5543. } else if (e.data.tools && e.data.tools == "66") {
  5544. U.MD.D.I.openApplication("formulaEdi")
  5545. } else if (e.data.tools && e.data.tools == "67") {
  5546. U.MD.D.I.openApplication("molStr")
  5547. } else if (e.data.tools && e.data.tools == "68") {
  5548. U.MD.D.I.openApplication("timeAxis")
  5549. } else if (e.data.tools && e.data.tools == "openCourse") {
  5550. let _data = {
  5551. typea: e.data.typea || '',
  5552. typeb: e.data.typeb || '',
  5553. typed: e.data.typed || '',
  5554. }
  5555. U.MD.D.I.openInApplication("index", _data)
  5556. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5557. let _data = {
  5558. classid: e.data.classid || '',
  5559. }
  5560. U.MD.D.I.openInApplication("dataClass", _data)
  5561. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5562. let _data = {
  5563. cid: e.data.cid || '',
  5564. gid: e.data.gid || '',
  5565. }
  5566. U.MD.D.I.openInApplication("opencCscl", _data)
  5567. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5568. U.MD.D.I.openApplication("dataBoardTest")
  5569. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5570. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5571. } else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5572. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5573. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5574. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5575. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5576. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5577. } else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5578. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5579. } else if (e.data.tools && e.data.tools == "openCoursePptUpdate") {
  5580. U.MD.D.I.openInApplication("openCoursePptUpdate", e.data.cid)
  5581. } else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5582. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5583. } else if (e.data.tools && e.data.tools == "loginSz") {
  5584. U.MD.D.I.openInApplication("loginSz")
  5585. } else if (e.data.tools && e.data.tools == "classroom_observation_board") {
  5586. if ($('#classroom_observation_board')[0]) {
  5587. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5588. }
  5589. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5590. } else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment") {
  5591. if ($('#classroom_observation_ob_comment')[0]) {
  5592. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5593. }
  5594. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5595. } else if (e.data.tools && e.data.tools == "logout") {
  5596. U.MD.U.LO.logoutSystem()
  5597. } else if (e.data.tools && e.data.tools == "getLogin") {
  5598. let _iframe = $('#UI_Login')[0];
  5599. if (_iframe) {
  5600. var userInfo = US.userInfo;
  5601. var type = 2
  5602. if (userInfo && userInfo.userid) {
  5603. type = 1
  5604. }
  5605. _contentWindow = _iframe.contentWindow;
  5606. _contentWindow.postMessage({ tools: "getLogin", type: type }, "*")
  5607. }
  5608. }
  5609. });
  5610. U.MD.D.I.selectUser = function () {
  5611. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5612. if (res.value[0].length > 0) {
  5613. US.userInfo = res.value[0][0];
  5614. $(".userName")[0].innerHTML = US.userInfo.username;
  5615. }
  5616. }, [], { "type": "GET", "withCredentials": true });
  5617. }
  5618. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5619. var _userinfo = US.userInfo, //登录用户信息
  5620. _userid = US.userInfo.userid, //登录用户id
  5621. _oid = _userinfo.organizeid,
  5622. _type = US.userInfo.type,
  5623. _org = US.userInfo.org,
  5624. _role = US.userInfo.role,
  5625. _classId = US.userInfo.classid;
  5626. if (_type == 4) {
  5627. tType = 4
  5628. }
  5629. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5630. if (opArray.includes(str)) {
  5631. let _str = str
  5632. if (str == 'appStore') {
  5633. _str = "cocoFlow"
  5634. } else if (str == "futureClass") {
  5635. _str = "cocoNote"
  5636. } else if (str == "testTeacher" || str == "testTeacherSies") {
  5637. _str = "IntelligentForm"
  5638. } else if (str == "testStudent" || str == "testStudentSies") {
  5639. _str = "TeacherCenter"
  5640. }
  5641. try {
  5642. if (data) {
  5643. U.MD.D.addOp3('1', "", { type: _str + 'Open', cid: data }, "success")
  5644. } else {
  5645. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  5646. }
  5647. } catch (error) {
  5648. console.log(error);
  5649. }
  5650. }
  5651. switch (str) {
  5652. case "studyDetailNT": //无终端模式
  5653. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5654. setTimeout(() => {
  5655. U.MD.U.L.login();
  5656. }, 2000);
  5657. } else {
  5658. _formdiv = new U.UF.UI.form(
  5659. "课程详情",
  5660. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5661. "id": "studyDetailNT",
  5662. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5663. "onresize": function () { }
  5664. }, {
  5665. closecallback: function () { }
  5666. }, { "style": { "height": "36px" } }).form; //创建窗体
  5667. _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); } }
  5668. break;
  5669. }
  5670. case "studyDetail":
  5671. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5672. setTimeout(() => {
  5673. U.MD.U.L.login();
  5674. }, 2000);
  5675. } else {
  5676. _formdiv = new U.UF.UI.form(
  5677. "课程详情",
  5678. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5679. "id": "studyDetail",
  5680. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //创建窗体
  5685. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5686. break;
  5687. }
  5688. case "studyDetailTrain":
  5689. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5690. setTimeout(() => {
  5691. U.MD.U.L.login();
  5692. }, 2000);
  5693. } else {
  5694. _formdiv = new U.UF.UI.form(
  5695. "培训详情",
  5696. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5697. "id": "studyDetailTrain",
  5698. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5699. "onresize": function () { }
  5700. }, {
  5701. closecallback: function () { }
  5702. }, { "style": { "height": "36px" } }).form; //创建窗体
  5703. _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); } }
  5704. break;
  5705. }
  5706. case "studyDetailS":
  5707. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5708. setTimeout(() => {
  5709. U.MD.U.L.login();
  5710. }, 2000);
  5711. } else {
  5712. _formdiv = new U.UF.UI.form(
  5713. "项目详情",
  5714. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5715. "id": "studyDetailS",
  5716. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //创建窗体
  5721. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5722. break;
  5723. }
  5724. case "studyDetailStudio":
  5725. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5726. setTimeout(() => {
  5727. U.MD.U.L.login();
  5728. }, 2000);
  5729. } else {
  5730. _formdiv = new U.UF.UI.form(
  5731. "工作详情",
  5732. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5733. "id": "studyDetailStudio",
  5734. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, { "style": { "height": "36px" } }).form; //创建窗体
  5739. _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); } }
  5740. break;
  5741. }
  5742. case "studyDetailS5":
  5743. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5744. setTimeout(() => {
  5745. U.MD.U.L.login();
  5746. }, 2000);
  5747. } else {
  5748. _formdiv = new U.UF.UI.form(
  5749. "项目详情",
  5750. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5751. "id": "studyDetailS",
  5752. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5753. "onresize": function () { }
  5754. }, {
  5755. closecallback: function () { }
  5756. }, { "style": { "height": "36px" } }).form; //创建窗体
  5757. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5758. break;
  5759. }
  5760. case "studyDetailGM":
  5761. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5762. setTimeout(() => {
  5763. U.MD.U.L.login();
  5764. }, 2000);
  5765. } else {
  5766. _formdiv = new U.UF.UI.form(
  5767. "课程详情",
  5768. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5769. "id": "studyDetail",
  5770. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5771. "onresize": function () { }
  5772. }, {
  5773. closecallback: function () { }
  5774. }, { "style": { "height": "36px" } }).form; //创建窗体
  5775. _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); } }
  5776. break;
  5777. }
  5778. case "hanUrl":
  5779. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5780. setTimeout(() => {
  5781. U.MD.U.L.login();
  5782. }, 2000);
  5783. } else {
  5784. _formdiv = new U.UF.UI.form(
  5785. "汉字宫",
  5786. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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" }), {
  5787. "id": "hanUrl",
  5788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5789. "onresize": function () { }
  5790. }, {
  5791. closecallback: function () { }
  5792. }, { "style": { "height": "36px" } }).form; //创建窗体
  5793. _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); } }
  5794. break;
  5795. }
  5796. case "index":
  5797. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5798. setTimeout(() => {
  5799. U.MD.U.L.login();
  5800. }, 2000);
  5801. } else {
  5802. _formdiv = new U.UF.UI.form(
  5803. "课程中心",
  5804. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5805. "id": "study",
  5806. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5807. "onresize": function () { }
  5808. }, {
  5809. closecallback: function () { }
  5810. }, { "style": { "height": "36px" } }).form; //创建窗体
  5811. _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); } }
  5812. break;
  5813. }
  5814. case "dataClass":
  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; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5823. "id": "dataClass",
  5824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //创建窗体
  5829. _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); } }
  5830. break;
  5831. }
  5832. case "opencCscl":
  5833. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5834. setTimeout(() => {
  5835. U.MD.U.L.login();
  5836. }, 2000);
  5837. } else {
  5838. _formdiv = new U.UF.UI.form(
  5839. "协同建构",
  5840. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5841. "id": "futureClass",
  5842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5843. "onresize": function () { }
  5844. }, {
  5845. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5846. }, { "style": { "height": "36px" } }).form; //创建窗体
  5847. _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); } }
  5848. break;
  5849. }
  5850. case "openCourseUpdate":
  5851. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5852. setTimeout(() => {
  5853. U.MD.U.L.login();
  5854. }, 2000);
  5855. } else {
  5856. _formdiv = new U.UF.UI.form(
  5857. "课程管理",
  5858. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5859. "id": "openCourseUpdate",
  5860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5861. "onresize": function () { }
  5862. }, {
  5863. closecallback: function () { }
  5864. }, { "style": { "height": "36px" } }).form; //创建窗体
  5865. break;
  5866. }
  5867. case "openNewCourseUpdate":
  5868. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5869. setTimeout(() => {
  5870. U.MD.U.L.login();
  5871. }, 2000);
  5872. } else {
  5873. _formdiv = new U.UF.UI.form(
  5874. "课程管理",
  5875. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5876. "id": "openCourseUpdate",
  5877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5878. "onresize": function () { }
  5879. }, {
  5880. closecallback: function () { }
  5881. }, { "style": { "height": "36px" } }).form; //创建窗体
  5882. break;
  5883. }
  5884. case "openCoursePptUpdate":
  5885. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5886. setTimeout(() => {
  5887. U.MD.U.L.login();
  5888. }, 2000);
  5889. } else {
  5890. _formdiv = new U.UF.UI.form(
  5891. "课程管理",
  5892. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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/#/pptEasy?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5893. "id": "openCourseUpdate",
  5894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5895. "onresize": function () { }
  5896. }, {
  5897. closecallback: function () { }
  5898. }, { "style": { "height": "36px" } }).form; //创建窗体
  5899. break;
  5900. }
  5901. case "openCourseEUpdate":
  5902. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5903. setTimeout(() => {
  5904. U.MD.U.L.login();
  5905. }, 2000);
  5906. } else {
  5907. _formdiv = new U.UF.UI.form(
  5908. "课程管理",
  5909. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5910. "id": "openCourseUpdate",
  5911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5912. "onresize": function () { }
  5913. }, {
  5914. closecallback: function () { }
  5915. }, { "style": { "height": "36px" } }).form; //创建窗体
  5916. break;
  5917. }
  5918. case "openCourseAiUpdate":
  5919. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5920. setTimeout(() => {
  5921. U.MD.U.L.login();
  5922. }, 2000);
  5923. } else {
  5924. _formdiv = new U.UF.UI.form(
  5925. "课程管理",
  5926. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5927. "id": "openCourseUpdate",
  5928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5929. "onresize": function () { }
  5930. }, {
  5931. closecallback: function () { }
  5932. }, { "style": { "height": "36px" } }).form; //创建窗体
  5933. break;
  5934. }
  5935. case "openCourseAiUpdate2":
  5936. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5937. setTimeout(() => {
  5938. U.MD.U.L.login();
  5939. }, 2000);
  5940. } else {
  5941. _formdiv = new U.UF.UI.form(
  5942. "课程管理",
  5943. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5944. "id": "openCourseUpdate",
  5945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5946. "onresize": function () { }
  5947. }, {
  5948. closecallback: function () { }
  5949. }, { "style": { "height": "36px" } }).form; //创建窗体
  5950. break;
  5951. }
  5952. case "openCourseNewUpdate":
  5953. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5954. setTimeout(() => {
  5955. U.MD.U.L.login();
  5956. }, 2000);
  5957. } else {
  5958. _formdiv = new U.UF.UI.form(
  5959. "课程管理",
  5960. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5961. "id": "openCourseUpdate",
  5962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5963. "onresize": function () { }
  5964. }, {
  5965. closecallback: function () { }
  5966. }, { "style": { "height": "36px" } }).form; //创建窗体
  5967. break;
  5968. }
  5969. case "inviteLoginSz":
  5970. _formdiv = new U.UF.UI.form(
  5971. "随机码登录",
  5972. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5973. "id": "loginSz",
  5974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5975. "onresize": function () { }
  5976. }, {
  5977. closecallback: function () { }
  5978. }, { "style": { "height": "36px" } }).form; //创建窗体
  5979. break;
  5980. case "loginSz":
  5981. _formdiv = new U.UF.UI.form(
  5982. "教师登录",
  5983. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5984. "id": "loginSz",
  5985. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //创建窗体
  5990. break;
  5991. case "teacher":
  5992. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5993. setTimeout(() => {
  5994. U.MD.U.L.login();
  5995. }, 2000);
  5996. } else {
  5997. _formdiv = new U.UF.UI.form(
  5998. "教师管理",
  5999. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  6000. "id": "teacher",
  6001. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6002. "onresize": function () { }
  6003. }, {
  6004. closecallback: function () { }
  6005. }, { "style": { "height": "36px" } }).form; //创建窗体
  6006. break;
  6007. }
  6008. case "dataBoardSZArea":
  6009. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6010. setTimeout(() => {
  6011. U.MD.U.L.login();
  6012. }, 2000);
  6013. } else {
  6014. _formdiv = new U.UF.UI.form(
  6015. "综合数据看板",
  6016. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  6017. "id": "dataBoardSZArea",
  6018. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6019. "onresize": function () { }
  6020. }, {
  6021. closecallback: function () { }
  6022. }, { "style": { "height": "36px" } }).form; //创建窗体
  6023. break;
  6024. }
  6025. case "dataBoardSZCity":
  6026. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6027. setTimeout(() => {
  6028. U.MD.U.L.login();
  6029. }, 2000);
  6030. } else {
  6031. _formdiv = new U.UF.UI.form(
  6032. "综合数据看板",
  6033. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  6034. "id": "dataBoardSZCity",
  6035. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, { "style": { "height": "36px" } }).form; //创建窗体
  6040. break;
  6041. }
  6042. case "classroom_observation_board":
  6043. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6044. setTimeout(() => {
  6045. U.MD.U.L.login();
  6046. }, 2000);
  6047. } else {
  6048. _formdiv = new U.UF.UI.form(
  6049. "课堂观察",
  6050. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  6051. "id": "classroom_observation_board",
  6052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6053. "onresize": function () { }
  6054. }, {
  6055. closecallback: function () { }
  6056. }, { "style": { "height": "36px" } }).form; //创建窗体
  6057. break;
  6058. }
  6059. case "classroom_observation_ob_comment":
  6060. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6061. setTimeout(() => {
  6062. U.MD.U.L.login();
  6063. }, 2000);
  6064. } else {
  6065. _formdiv = new U.UF.UI.form(
  6066. "课堂审核",
  6067. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  6068. "id": "classroom_observation_ob_comment",
  6069. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6070. "onresize": function () { }
  6071. }, {
  6072. closecallback: function () { }
  6073. }, { "style": { "height": "36px" } }).form; //创建窗体
  6074. break;
  6075. }
  6076. case "gptConfig":
  6077. _formdiv = new U.UF.UI.form(
  6078. data.name ? data.name : "应用中心",
  6079. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  6080. "id": "gptConfig" + data.id,
  6081. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, { "style": { "height": "36px" } }).form; //创建窗体
  6086. break;
  6087. case "testDetail":
  6088. _formdiv = new U.UF.UI.form(
  6089. "表单填写",
  6090. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  6091. "id": "testDetail" + data,
  6092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6093. "onresize": function () { }
  6094. }, {
  6095. closecallback: function () { }
  6096. }, { "style": { "height": "36px" } }).form; //创建窗体
  6097. break;
  6098. }
  6099. }
  6100. U.MD.D.I.openApplication = function (str, obj, info) {
  6101. obj = obj || {};
  6102. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6103. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6104. _userinfo = US.userInfo, //登录用户信息
  6105. _userid = obj.userid || US.userInfo.userid, //登录用户id
  6106. _oid = obj.organizeid || _userinfo.organizeid,
  6107. _type = US.userInfo.type,
  6108. _org = obj.org || US.userInfo.org,
  6109. _role = US.userInfo.role,
  6110. _classId = US.userInfo.classid,
  6111. _TscreenType = 1
  6112. _screenType = 2,
  6113. _SscreenType = 3;
  6114. let iframeBool = true
  6115. if (U.UF.UI.form.allForm[str]) {
  6116. iframeBool = false
  6117. }
  6118. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  6119. return;
  6120. }
  6121. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  6122. if (opArray.includes(str)) {
  6123. let _str = str
  6124. if (str == 'appStore') {
  6125. _str = "cocoFlow"
  6126. } else if (str == "futureClass") {
  6127. _str = "cocoNote"
  6128. } else if (str == "testTeacher" || str == "testTeacherSies") {
  6129. _str = "IntelligentForm"
  6130. } else if (str == "testStudent" || str == "testStudentSies") {
  6131. _str = "TeacherCenter"
  6132. }
  6133. try {
  6134. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  6135. } catch (error) {
  6136. console.log(error);
  6137. }
  6138. }
  6139. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6140. switch (str) {
  6141. case "studnetProject": //好友打开
  6142. _formdiv = new U.UF.UI.form(
  6143. "我的项目",
  6144. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  6145. "id": "studnetProject",
  6146. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6147. "onresize": function () { }
  6148. }, {
  6149. closecallback: function () { }
  6150. }, { "style": { "height": "36px" } }).form; //创建窗体
  6151. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6152. break;
  6153. case "studentEvaluate": //好友打开
  6154. _formdiv = new U.UF.UI.form(
  6155. "我的评价",
  6156. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6157. "id": "studentEvaluate",
  6158. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6159. "onresize": function () { }
  6160. }, {
  6161. closecallback: function () { }
  6162. }, { "style": { "height": "36px" } }).form; //创建窗体
  6163. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6164. break;
  6165. case "my":
  6166. _formdiv = new U.UF.UI.form(
  6167. "我的资料",
  6168. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6169. "id": "my",
  6170. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6171. "onresize": function () { }
  6172. }, {
  6173. closecallback: function () { }
  6174. }, { "style": { "height": "36px" } }).form; //创建窗体
  6175. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6176. break;
  6177. case "program":
  6178. _formdiv = new U.UF.UI.form(
  6179. "编程平台",
  6180. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6181. "id": "program",
  6182. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6183. "onresize": function () { }
  6184. }, {
  6185. closecallback: function () { }
  6186. }, { "style": { "height": "36px" } }).form; //创建窗体
  6187. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6188. break;
  6189. case "library":
  6190. _formdiv = new U.UF.UI.form(
  6191. "素材库",
  6192. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#/library?userid=" + _userid + "&org=" + _org }), {
  6193. "id": "library",
  6194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6195. "onresize": function () { }
  6196. }, {
  6197. closecallback: function () { }
  6198. }, { "style": { "height": "36px" } }).form; //创建窗体
  6199. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6200. break;
  6201. case "whiteboard":
  6202. _formdiv = new U.UF.UI.form(
  6203. "电子白板",
  6204. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6205. "id": "whiteboard",
  6206. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6207. "onresize": function () { }
  6208. }, {
  6209. closecallback: function () { }
  6210. }, { "style": { "height": "36px" } }).form; //创建窗体
  6211. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6212. break;
  6213. case "investigation":
  6214. _formdiv = new U.UF.UI.form(
  6215. "问卷调查",
  6216. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6217. "id": "investigation",
  6218. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6219. "onresize": function () { }
  6220. }, {
  6221. closecallback: function () { }
  6222. }, { "style": { "height": "36px" } }).form; //创建窗体
  6223. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6224. break;
  6225. case "note":
  6226. _formdiv = new U.UF.UI.form(
  6227. "便签分类",
  6228. $$("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 }), {
  6229. "id": "note",
  6230. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6231. "onresize": function () { }
  6232. }, {
  6233. closecallback: function () { }
  6234. }, { "style": { "height": "36px" } }).form; //创建窗体
  6235. _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); } }
  6236. break;
  6237. // case "score":
  6238. // _formdiv = new U.UF.UI.form(
  6239. // "量规评分",
  6240. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6241. // "id": "score",
  6242. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6243. // "onresize": function() {}
  6244. // }, {
  6245. // closecallback: function() {}
  6246. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6247. // _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); } }
  6248. // break;
  6249. case "mind":
  6250. _formdiv = new U.UF.UI.form(
  6251. "思维导图",
  6252. $$("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"
  6253. "id": "mind",
  6254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6255. "onresize": function () { }
  6256. }, {
  6257. closecallback: function () { }
  6258. }, { "style": { "height": "36px" } }).form; //创建窗体
  6259. _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); } }
  6260. break;
  6261. case "doc":
  6262. // U.MD.D.I.isRoom();
  6263. _formdiv = new U.UF.UI.form(
  6264. "协同文档",
  6265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6266. "id": "doc",
  6267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6268. "onresize": function () { }
  6269. }, {
  6270. closecallback: function () { }
  6271. }, { "style": { "height": "36px" } }).form; //创建窗体
  6272. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6273. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6274. // })
  6275. _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); } }
  6276. break;
  6277. case "studentStudy":
  6278. _formdiv = new U.UF.UI.form(
  6279. "课程中心",
  6280. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6281. "id": "studentStudy",
  6282. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6288. break;
  6289. case "train": //好友打开
  6290. _formdiv = new U.UF.UI.form(
  6291. "训练平台",
  6292. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6293. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6300. break;
  6301. case "mindNetwork": //好友打开
  6302. _formdiv = new U.UF.UI.form(
  6303. "思维网格",
  6304. $$("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 }), {
  6305. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6312. break;
  6313. case "studentClassRoom": //好友打开
  6314. _formdiv = new U.UF.UI.form(
  6315. "实时课堂",
  6316. $$("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 }), {
  6317. "id": "studentClassRoom",
  6318. "style": { "width": "90%", "height": "90%", "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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6324. setTimeout(() => {
  6325. U.UF.F.windowZooming(_formdiv)
  6326. }, 0);
  6327. break;
  6328. }
  6329. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6330. switch (str) {
  6331. case "studnetProject": //好友打开
  6332. _formdiv = new U.UF.UI.form(
  6333. "我的项目",
  6334. $$("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 }), {
  6335. "id": "studnetProject",
  6336. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6337. "onresize": function () { }
  6338. }, {
  6339. closecallback: function () { }
  6340. }, { "style": { "height": "36px" } }).form; //创建窗体
  6341. _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); } }
  6342. break;
  6343. case "studentEvaluate": //好友打开
  6344. _formdiv = new U.UF.UI.form(
  6345. "我的评价",
  6346. $$("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 }), {
  6347. "id": "studentEvaluate",
  6348. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6349. "onresize": function () { }
  6350. }, {
  6351. closecallback: function () { }
  6352. }, { "style": { "height": "36px" } }).form; //创建窗体
  6353. _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); } }
  6354. break;
  6355. case "my":
  6356. _formdiv = new U.UF.UI.form(
  6357. "我的资料",
  6358. $$("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 }), {
  6359. "id": "my",
  6360. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6361. "onresize": function () { }
  6362. }, {
  6363. closecallback: function () { }
  6364. }, { "style": { "height": "36px" } }).form; //创建窗体
  6365. _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); } }
  6366. break;
  6367. case "program":
  6368. _formdiv = new U.UF.UI.form(
  6369. "编程平台",
  6370. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6371. "id": "program",
  6372. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6373. "onresize": function () { }
  6374. }, {
  6375. closecallback: function () { }
  6376. }, { "style": { "height": "36px" } }).form; //创建窗体
  6377. _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); } }
  6378. break;
  6379. case "library":
  6380. _formdiv = new U.UF.UI.form(
  6381. "素材库",
  6382. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#/library?userid=" + _userid + "&org=" + _org }), {
  6383. "id": "library",
  6384. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6385. "onresize": function () { }
  6386. }, {
  6387. closecallback: function () { }
  6388. }, { "style": { "height": "36px" } }).form; //创建窗体
  6389. _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); } }
  6390. break;
  6391. case "whiteboard":
  6392. _formdiv = new U.UF.UI.form(
  6393. "电子白板",
  6394. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6395. "id": "whiteboard",
  6396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6397. "onresize": function () { }
  6398. }, {
  6399. closecallback: function () { }
  6400. }, { "style": { "height": "36px" } }).form; //创建窗体
  6401. _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); } }
  6402. break;
  6403. case "investigation":
  6404. _formdiv = new U.UF.UI.form(
  6405. "问卷调查",
  6406. $$("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 }), {
  6407. "id": "investigation",
  6408. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6409. "onresize": function () { }
  6410. }, {
  6411. closecallback: function () { }
  6412. }, { "style": { "height": "36px" } }).form; //创建窗体
  6413. _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); } }
  6414. break;
  6415. case "note":
  6416. _formdiv = new U.UF.UI.form(
  6417. "便签分类",
  6418. $$("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 }), {
  6419. "id": "note",
  6420. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6421. "onresize": function () { }
  6422. }, {
  6423. closecallback: function () { }
  6424. }, { "style": { "height": "36px" } }).form; //创建窗体
  6425. _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); } }
  6426. break;
  6427. // case "score":
  6428. // _formdiv = new U.UF.UI.form(
  6429. // "量规评分",
  6430. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6431. // "id": "score",
  6432. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6433. // "onresize": function() {}
  6434. // }, {
  6435. // closecallback: function() {}
  6436. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6437. // _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); } }
  6438. // break;
  6439. case "mind":
  6440. _formdiv = new U.UF.UI.form(
  6441. "思维导图",
  6442. $$("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"
  6443. "id": "mind",
  6444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6445. "onresize": function () { }
  6446. }, {
  6447. closecallback: function () { }
  6448. }, { "style": { "height": "36px" } }).form; //创建窗体
  6449. _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); } }
  6450. break;
  6451. case "doc":
  6452. // U.MD.D.I.isRoom();
  6453. _formdiv = new U.UF.UI.form(
  6454. "协同文档",
  6455. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6456. "id": "doc",
  6457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6458. "onresize": function () { }
  6459. }, {
  6460. closecallback: function () { }
  6461. }, { "style": { "height": "36px" } }).form; //创建窗体
  6462. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6463. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6464. })
  6465. _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); } }
  6466. break;
  6467. case "train": //好友打开
  6468. _formdiv = new U.UF.UI.form(
  6469. "训练平台",
  6470. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6471. "id": "train",
  6472. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6473. "onresize": function () { }
  6474. }, {
  6475. closecallback: function () { }
  6476. }, { "style": { "height": "36px" } }).form; //创建窗体
  6477. _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); } }
  6478. break;
  6479. case "studentStudy":
  6480. _formdiv = new U.UF.UI.form(
  6481. "课程中心",
  6482. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6483. "id": "studentStudy",
  6484. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6485. "onresize": function () { }
  6486. }, {
  6487. closecallback: function () { }
  6488. }, { "style": { "height": "36px" } }).form; //创建窗体
  6489. _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); } }
  6490. break;
  6491. case "mindNetwork": //好友打开
  6492. _formdiv = new U.UF.UI.form(
  6493. "思维网格",
  6494. $$("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 }), {
  6495. "id": "mindNetwork",
  6496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6497. "onresize": function () { }
  6498. }, {
  6499. closecallback: function () { }
  6500. }, { "style": { "height": "36px" } }).form; //创建窗体
  6501. _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); } }
  6502. break;
  6503. case "studentClassRoom": //好友打开
  6504. _formdiv = new U.UF.UI.form(
  6505. "实时课堂",
  6506. $$("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 }), {
  6507. "id": "studentClassRoom",
  6508. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6509. "onresize": function () { }
  6510. }, {
  6511. closecallback: function () { }
  6512. }, { "style": { "height": "36px" } }).form; //创建窗体
  6513. _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); } }
  6514. setTimeout(() => {
  6515. U.UF.F.windowZooming(_formdiv)
  6516. }, 0);
  6517. break;
  6518. }
  6519. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6520. //选择应用处理
  6521. switch (str) {
  6522. case "project": //好友打开
  6523. _formdiv = new U.UF.UI.form(
  6524. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6525. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  6526. "id": "project",
  6527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, { "style": { "height": "36px" } }).form; //创建窗体
  6532. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6533. break;
  6534. case "student":
  6535. _formdiv = new U.UF.UI.form(
  6536. "学生管理",
  6537. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  6538. "id": "student",
  6539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, { "style": { "height": "36px" } }).form; //创建窗体
  6544. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6545. break;
  6546. case "evaluate":
  6547. _formdiv = new U.UF.UI.form(
  6548. "学生评价",
  6549. $$("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 }), {
  6550. "id": "evaluate",
  6551. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6552. "onresize": function () { }
  6553. }, {
  6554. closecallback: function () { }
  6555. }, { "style": { "height": "36px" } }).form; //创建窗体
  6556. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6557. break;
  6558. case "sys":
  6559. _formdiv = new U.UF.UI.form(
  6560. "目标管理",
  6561. $$("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 }), {
  6562. "id": "sys",
  6563. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6564. "onresize": function () { }
  6565. }, {
  6566. closecallback: function () { }
  6567. }, { "style": { "height": "36px" } }).form; //创建窗体
  6568. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6569. break;
  6570. case "courseDesign":
  6571. _formdiv = new U.UF.UI.form(
  6572. "项目设计",
  6573. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6574. "id": "courseDesign",
  6575. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6576. "onresize": function () { }
  6577. }, {
  6578. closecallback: function () { }
  6579. }, { "style": { "height": "36px" } }).form; //创建窗体
  6580. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6581. break;
  6582. case "program":
  6583. _formdiv = new U.UF.UI.form(
  6584. "编程平台",
  6585. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6586. "id": "program",
  6587. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6588. "onresize": function () { }
  6589. }, {
  6590. closecallback: function () { }
  6591. }, { "style": { "height": "36px" } }).form; //创建窗体
  6592. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6593. break;
  6594. case "class":
  6595. _formdiv = new U.UF.UI.form(
  6596. "班级管理",
  6597. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6598. "id": "class",
  6599. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6600. "onresize": function () { }
  6601. }, {
  6602. closecallback: function () { }
  6603. }, { "style": { "height": "36px" } }).form; //创建窗体
  6604. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6605. break;
  6606. case "Grade":
  6607. _formdiv = new U.UF.UI.form(
  6608. "年级管理",
  6609. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6610. "id": "Grade",
  6611. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6612. "onresize": function () { }
  6613. }, {
  6614. closecallback: function () { }
  6615. }, { "style": { "height": "36px" } }).form; //创建窗体
  6616. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6617. break;
  6618. case "teacherOffice":
  6619. _formdiv = new U.UF.UI.form(
  6620. "教研室",
  6621. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6622. "id": "teacherOffice",
  6623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6624. "onresize": function () { }
  6625. }, {
  6626. closecallback: function () { }
  6627. }, { "style": { "height": "36px" } }).form; //创建窗体
  6628. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6629. break;
  6630. case "my":
  6631. _formdiv = new U.UF.UI.form(
  6632. "我的资料",
  6633. $$("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 }), {
  6634. "id": "my",
  6635. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6636. "onresize": function () { }
  6637. }, {
  6638. closecallback: function () { }
  6639. }, { "style": { "height": "36px" } }).form; //创建窗体
  6640. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6641. break;
  6642. case "notice":
  6643. _formdiv = new U.UF.UI.form(
  6644. "通知公告",
  6645. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  6646. "id": "notice",
  6647. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6648. "onresize": function () { }
  6649. }, {
  6650. closecallback: function () { }
  6651. }, { "style": { "height": "36px" } }).form; //创建窗体
  6652. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6653. break;
  6654. case "library":
  6655. _formdiv = new U.UF.UI.form(
  6656. "素材库",
  6657. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#/library?userid=" + _userid + "&org=" + _org }), {
  6658. "id": "library",
  6659. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6660. "onresize": function () { }
  6661. }, {
  6662. closecallback: function () { }
  6663. }, { "style": { "height": "36px" } }).form; //创建窗体
  6664. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6665. break;
  6666. case "whiteboard":
  6667. _formdiv = new U.UF.UI.form(
  6668. "电子白板",
  6669. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6670. "id": "whiteboard",
  6671. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6672. "onresize": function () { }
  6673. }, {
  6674. closecallback: function () { }
  6675. }, { "style": { "height": "36px" } }).form; //创建窗体
  6676. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6677. break;
  6678. case "investigation":
  6679. _formdiv = new U.UF.UI.form(
  6680. "问卷调查",
  6681. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6682. "id": "investigation",
  6683. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6684. "onresize": function () { }
  6685. }, {
  6686. closecallback: function () { }
  6687. }, { "style": { "height": "36px" } }).form; //创建窗体
  6688. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6689. break;
  6690. case "note":
  6691. _formdiv = new U.UF.UI.form(
  6692. "便签分类",
  6693. $$("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 }), {
  6694. "id": "note",
  6695. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6696. "onresize": function () { }
  6697. }, {
  6698. closecallback: function () { }
  6699. }, { "style": { "height": "36px" } }).form; //创建窗体
  6700. _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); } }
  6701. break;
  6702. // case "score":
  6703. // _formdiv = new U.UF.UI.form(
  6704. // "量规评分",
  6705. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6706. // "id": "score",
  6707. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6708. // "onresize": function() {}
  6709. // }, {
  6710. // closecallback: function() {}
  6711. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6712. // _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); } }
  6713. // break;
  6714. case "mind":
  6715. _formdiv = new U.UF.UI.form(
  6716. "思维导图",
  6717. $$("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"
  6718. "id": "mind",
  6719. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6720. "onresize": function () { }
  6721. }, {
  6722. closecallback: function () { }
  6723. }, { "style": { "height": "36px" } }).form; //创建窗体
  6724. _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); } }
  6725. break;
  6726. case "doc":
  6727. // U.MD.D.I.isRoom();
  6728. _formdiv = new U.UF.UI.form(
  6729. "协同文档",
  6730. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6731. "id": "doc",
  6732. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6733. "onresize": function () { }
  6734. }, {
  6735. closecallback: function () { }
  6736. }, { "style": { "height": "36px" } }).form; //创建窗体
  6737. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6738. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6739. })
  6740. _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); } }
  6741. break;
  6742. case "study":
  6743. _formdiv = new U.UF.UI.form(
  6744. "课程中心",
  6745. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6746. "id": "study",
  6747. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6748. "onresize": function () { }
  6749. }, {
  6750. closecallback: function () { }
  6751. }, { "style": { "height": "36px" } }).form; //创建窗体
  6752. _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); } }
  6753. break;
  6754. case "mindNetwork": //好友打开
  6755. _formdiv = new U.UF.UI.form(
  6756. "思维网格",
  6757. $$("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 }), {
  6758. "id": "mindNetwork",
  6759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6760. "onresize": function () { }
  6761. }, {
  6762. closecallback: function () { }
  6763. }, { "style": { "height": "36px" } }).form; //创建窗体
  6764. _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); } }
  6765. break;
  6766. case "train": //好友打开
  6767. _formdiv = new U.UF.UI.form(
  6768. "训练平台",
  6769. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6770. "id": "mindNetwork",
  6771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6772. "onresize": function () { }
  6773. }, {
  6774. closecallback: function () { }
  6775. }, { "style": { "height": "36px" } }).form; //创建窗体
  6776. _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); } }
  6777. break;
  6778. case "teacherClassRoom": //好友打开
  6779. _formdiv = new U.UF.UI.form(
  6780. "实时课堂",
  6781. $$("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 }), {
  6782. "id": "teacherClassRoom",
  6783. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, { "style": { "height": "36px" } }).form; //创建窗体
  6788. _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); } }
  6789. setTimeout(() => {
  6790. U.UF.F.windowZooming(_formdiv)
  6791. }, 0);
  6792. break;
  6793. }
  6794. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6795. switch (str) {
  6796. case "project": //好友打开
  6797. _formdiv = new U.UF.UI.form(
  6798. "课程管理",
  6799. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  6800. "id": "project",
  6801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6802. "onresize": function () { }
  6803. }, {
  6804. closecallback: function () { }
  6805. }, { "style": { "height": "36px" } }).form; //创建窗体
  6806. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6807. break;
  6808. case "evaluate":
  6809. _formdiv = new U.UF.UI.form(
  6810. "学生评价",
  6811. $$("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 }), {
  6812. "id": "evaluate",
  6813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6814. "onresize": function () { }
  6815. }, {
  6816. closecallback: function () { }
  6817. }, { "style": { "height": "36px" } }).form; //创建窗体
  6818. _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); } }
  6819. break;
  6820. case "notice":
  6821. _formdiv = new U.UF.UI.form(
  6822. "通知公告",
  6823. $$("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 }), {
  6824. "id": "notice",
  6825. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6826. "onresize": function () { }
  6827. }, {
  6828. closecallback: function () { }
  6829. }, { "style": { "height": "36px" } }).form; //创建窗体
  6830. _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); } }
  6831. break;
  6832. case "stuLibrary":
  6833. _formdiv = new U.UF.UI.form(
  6834. "学习资料",
  6835. $$("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 }), {
  6836. "id": "stuLibrary",
  6837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6838. "onresize": function () { }
  6839. }, {
  6840. closecallback: function () { }
  6841. }, { "style": { "height": "36px" } }).form; //创建窗体
  6842. _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); } }
  6843. break;
  6844. case "program":
  6845. _formdiv = new U.UF.UI.form(
  6846. "编程平台",
  6847. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6848. "id": "program",
  6849. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6850. "onresize": function () { }
  6851. }, {
  6852. closecallback: function () { }
  6853. }, { "style": { "height": "36px" } }).form; //创建窗体
  6854. _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); } }
  6855. break;
  6856. case "whiteboard":
  6857. _formdiv = new U.UF.UI.form(
  6858. "电子白板",
  6859. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6860. "id": "whiteboard",
  6861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6862. "onresize": function () { }
  6863. }, {
  6864. closecallback: function () { }
  6865. }, { "style": { "height": "36px" } }).form; //创建窗体
  6866. _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); } }
  6867. break;
  6868. case "investigation":
  6869. _formdiv = new U.UF.UI.form(
  6870. "问卷调查",
  6871. $$("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 }), {
  6872. "id": "investigation",
  6873. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6874. "onresize": function () { }
  6875. }, {
  6876. closecallback: function () { }
  6877. }, { "style": { "height": "36px" } }).form; //创建窗体
  6878. _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); } }
  6879. break;
  6880. case "mind":
  6881. _formdiv = new U.UF.UI.form(
  6882. "思维导图",
  6883. $$("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"
  6884. "id": "mind",
  6885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6886. "onresize": function () { }
  6887. }, {
  6888. closecallback: function () { }
  6889. }, { "style": { "height": "36px" } }).form; //创建窗体
  6890. _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); } }
  6891. break;
  6892. case "doc":
  6893. // U.MD.D.I.isRoom();
  6894. _formdiv = new U.UF.UI.form(
  6895. "协同文档",
  6896. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6897. "id": "doc",
  6898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6899. "onresize": function () { }
  6900. }, {
  6901. closecallback: function () { }
  6902. }, { "style": { "height": "36px" } }).form; //创建窗体
  6903. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6904. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6905. })
  6906. _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); } }
  6907. break;
  6908. case "study":
  6909. _formdiv = new U.UF.UI.form(
  6910. "课程中心",
  6911. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6912. "id": "study",
  6913. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6914. "onresize": function () { }
  6915. }, {
  6916. closecallback: function () { }
  6917. }, { "style": { "height": "36px" } }).form; //创建窗体
  6918. _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); } }
  6919. break;
  6920. case "mindNetwork": //好友打开
  6921. _formdiv = new U.UF.UI.form(
  6922. "思维网格",
  6923. $$("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 }), {
  6924. "id": "mindNetwork",
  6925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6926. "onresize": function () { }
  6927. }, {
  6928. closecallback: function () { }
  6929. }, { "style": { "height": "36px" } }).form; //创建窗体
  6930. _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); } }
  6931. break;
  6932. case "train": //好友打开
  6933. _formdiv = new U.UF.UI.form(
  6934. "训练平台",
  6935. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6936. "id": "train",
  6937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6938. "onresize": function () { }
  6939. }, {
  6940. closecallback: function () { }
  6941. }, { "style": { "height": "36px" } }).form; //创建窗体
  6942. _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); } }
  6943. break;
  6944. case "sys":
  6945. _formdiv = new U.UF.UI.form(
  6946. "目标管理",
  6947. $$("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 }), {
  6948. "id": "sys",
  6949. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6950. "onresize": function () { }
  6951. }, {
  6952. closecallback: function () { }
  6953. }, { "style": { "height": "36px" } }).form; //创建窗体
  6954. _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); } }
  6955. break;
  6956. case "courseDesign":
  6957. _formdiv = new U.UF.UI.form(
  6958. "项目设计",
  6959. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6960. "id": "courseDesign",
  6961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6962. "onresize": function () { }
  6963. }, {
  6964. closecallback: function () { }
  6965. }, { "style": { "height": "36px" } }).form; //创建窗体
  6966. _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); } }
  6967. break;
  6968. }
  6969. } else if (!_type) {
  6970. switch (str) {
  6971. case "my":
  6972. _formdiv = new U.UF.UI.form(
  6973. "我的资料",
  6974. $$("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 }), {
  6975. "id": "my",
  6976. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6977. "onresize": function () { }
  6978. }, {
  6979. closecallback: function () { }
  6980. }, { "style": { "height": "36px" } }).form; //创建窗体
  6981. _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); } }
  6982. break;
  6983. }
  6984. }
  6985. switch (str) {
  6986. // AIprogram2 AI体验 aihub.cocorobo.cn
  6987. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6988. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6989. case "formulaEdi": //公式编辑
  6990. _formdiv = new U.UF.UI.form(
  6991. "公式编辑",
  6992. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6993. "id": "formulaEdi",
  6994. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6995. "onresize": function () { }
  6996. }, {
  6997. closecallback: function () { }
  6998. }, { "style": { "height": "36px" } }).form; //创建窗体
  6999. _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); } }
  7000. break;
  7001. case "molStr": //分子结构
  7002. _formdiv = new U.UF.UI.form(
  7003. "分子结构",
  7004. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  7005. "id": "molStr",
  7006. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7007. "onresize": function () { }
  7008. }, {
  7009. closecallback: function () { }
  7010. }, { "style": { "height": "36px" } }).form; //创建窗体
  7011. _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); } }
  7012. break;
  7013. case "timeAxis": //时间轴
  7014. _formdiv = new U.UF.UI.form(
  7015. "时间轴",
  7016. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  7017. "id": "timeAxis",
  7018. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7019. "onresize": function () { }
  7020. }, {
  7021. closecallback: function () { }
  7022. }, { "style": { "height": "36px" } }).form; //创建窗体
  7023. _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); } }
  7024. break;
  7025. case "AIprogram2": //AI体验
  7026. _formdiv = new U.UF.UI.form(
  7027. "AI体验",
  7028. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  7029. "id": "AIprogram2",
  7030. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7031. "onresize": function () { }
  7032. }, {
  7033. closecallback: function () { }
  7034. }, { "style": { "height": "36px" } }).form; //创建窗体
  7035. _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); } }
  7036. break;
  7037. case "Pythonprogram": //python编程
  7038. _formdiv = new U.UF.UI.form(
  7039. "Python编程",
  7040. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  7041. "id": "Pythonprogram",
  7042. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7043. "onresize": function () { }
  7044. }, {
  7045. closecallback: function () { }
  7046. }, { "style": { "height": "36px" } }).form; //创建窗体
  7047. _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); } }
  7048. break;
  7049. case "AIprogram": //ai编程
  7050. _formdiv = new U.UF.UI.form(
  7051. "AI编程平台",
  7052. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  7053. "id": "AIprogram",
  7054. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7055. "onresize": function () { }
  7056. }, {
  7057. closecallback: function () { }
  7058. }, { "style": { "height": "36px" } }).form; //创建窗体
  7059. _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); } }
  7060. break;
  7061. case "CocoPi": //CocoPi
  7062. _formdiv = new U.UF.UI.form(
  7063. "CocoPi",
  7064. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pi.cocorobo.cn" }), {
  7065. "id": "CocoPi",
  7066. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7067. "onresize": function () { }
  7068. }, {
  7069. closecallback: function () { }
  7070. }, { "style": { "height": "36px" } }).form; //创建窗体
  7071. _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); } }
  7072. break;
  7073. case "Wood": //Wood
  7074. _formdiv = new U.UF.UI.form(
  7075. "海龟编程",
  7076. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  7077. "id": "Wood",
  7078. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7079. "onresize": function () { }
  7080. }, {
  7081. closecallback: function () { }
  7082. }, { "style": { "height": "36px" } }).form; //创建窗体
  7083. _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); } }
  7084. break;
  7085. case "car": //模拟驾驶
  7086. _formdiv = new U.UF.UI.form(
  7087. "模拟驾驶",
  7088. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  7089. "id": "car",
  7090. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7091. "onresize": function () { }
  7092. }, {
  7093. closecallback: function () { }
  7094. }, { "style": { "height": "36px" } }).form; //创建窗体
  7095. _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); } }
  7096. break;
  7097. case "lineSearch": //路径搜索
  7098. _formdiv = new U.UF.UI.form(
  7099. "路径搜索",
  7100. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/" }), {
  7101. "id": "lineSearch",
  7102. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7103. "onresize": function () { }
  7104. }, {
  7105. closecallback: function () { }
  7106. }, { "style": { "height": "36px" } }).form; //创建窗体
  7107. _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); } }
  7108. break;
  7109. case "deepLearning": //深度学习
  7110. _formdiv = new U.UF.UI.form(
  7111. "深度学习",
  7112. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#" }), {
  7113. "id": "deepLearning",
  7114. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7115. "onresize": function () { }
  7116. }, {
  7117. closecallback: function () { }
  7118. }, { "style": { "height": "36px" } }).form; //创建窗体
  7119. _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); } }
  7120. break;
  7121. case "allHistory": //深度学习
  7122. _formdiv = new U.UF.UI.form(
  7123. "全历史",
  7124. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.allhistory.com/" }), {
  7125. "id": "allHistory",
  7126. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7127. "onresize": function () { }
  7128. }, {
  7129. closecallback: function () { }
  7130. }, { "style": { "height": "36px" } }).form; //创建窗体
  7131. _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); } }
  7132. break;
  7133. case "chatPDF": //ai编程
  7134. _formdiv = new U.UF.UI.form(
  7135. "chatPDF",
  7136. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  7137. "id": "chatPDF",
  7138. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7139. "onresize": function () { }
  7140. }, {
  7141. closecallback: function () { }
  7142. }, { "style": { "height": "36px" } }).form; //创建窗体
  7143. _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); } }
  7144. break;
  7145. case "resources": //国家教育
  7146. _formdiv = new U.UF.UI.form(
  7147. "国家教育",
  7148. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  7149. "id": "resources",
  7150. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7151. "onresize": function () { }
  7152. }, {
  7153. closecallback: function () { }
  7154. }, { "style": { "height": "36px" } }).form; //创建窗体
  7155. _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); } }
  7156. break;
  7157. case "codeEdit": //源码编辑
  7158. _formdiv = new U.UF.UI.form(
  7159. "源码编辑",
  7160. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  7161. "id": "codeEdit",
  7162. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7163. "onresize": function () { }
  7164. }, {
  7165. closecallback: function () { }
  7166. }, { "style": { "height": "36px" } }).form; //创建窗体
  7167. _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); } }
  7168. break; //
  7169. case "MindMap": //MindMap
  7170. _formdiv = new U.UF.UI.form(
  7171. "MindMap",
  7172. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  7173. "id": "MindMap",
  7174. "style": { "width": "80%", "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/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7180. break;
  7181. case "netWorkPanel": //netWorkPanel
  7182. _formdiv = new U.UF.UI.form(
  7183. "netWorkPanel",
  7184. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  7185. "id": "netWorkPanel",
  7186. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7187. "onresize": function () { }
  7188. }, {
  7189. closecallback: function () { }
  7190. }, { "style": { "height": "36px" } }).form; //创建窗体
  7191. _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); } }
  7192. break;
  7193. case "GeoGebra": //GeoGebra
  7194. _formdiv = new U.UF.UI.form(
  7195. "GeoGebra",
  7196. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  7197. "id": "GeoGebra",
  7198. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7199. "onresize": function () { }
  7200. }, {
  7201. closecallback: function () { }
  7202. }, { "style": { "height": "36px" } }).form; //创建窗体
  7203. _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); } }
  7204. break;
  7205. case "translation": //翻译
  7206. _formdiv = new U.UF.UI.form(
  7207. "翻译",
  7208. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  7209. "id": "translation",
  7210. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7211. "onresize": function () { }
  7212. }, {
  7213. closecallback: function () { }
  7214. }, { "style": { "height": "36px" } }).form; //创建窗体
  7215. _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); } }
  7216. break;
  7217. case "mohe": //魔盒
  7218. _formdiv = new U.UF.UI.form(
  7219. "魔盒识字",
  7220. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  7221. "id": "mohe",
  7222. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7223. "onresize": function () { }
  7224. }, {
  7225. closecallback: function () { }
  7226. }, { "style": { "height": "36px" } }).form; //创建窗体
  7227. _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); } }
  7228. break;
  7229. case "24game": //24点
  7230. _formdiv = new U.UF.UI.form(
  7231. "24点",
  7232. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  7233. "id": "24game",
  7234. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7235. "onresize": function () { }
  7236. }, {
  7237. closecallback: function () { }
  7238. }, { "style": { "height": "36px" } }).form; //创建窗体
  7239. _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); } }
  7240. break;
  7241. case "case":
  7242. _formdiv = new U.UF.UI.form(
  7243. "课程进展",
  7244. $$("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 }), {
  7245. "id": "case",
  7246. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7247. "onresize": function () { }
  7248. }, {
  7249. closecallback: function () { }
  7250. }, { "style": { "height": "36px" } }).form; //创建窗体
  7251. _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); } }
  7252. break;
  7253. case "snf":
  7254. _formdiv = new U.UF.UI.form(
  7255. "赛诺梵",
  7256. $$("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" }), {
  7257. "id": "snf",
  7258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7259. "onresize": function () { }
  7260. }, {
  7261. closecallback: function () { }
  7262. }, { "style": { "height": "36px" } }).form; //创建窗体
  7263. _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); } }
  7264. break;
  7265. case "hanFamily":
  7266. _formdiv = new U.UF.UI.form(
  7267. "汉字家族",
  7268. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7269. "id": "hanFamily",
  7270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7271. "onresize": function () { }
  7272. }, {
  7273. closecallback: function () { }
  7274. }, { "style": { "height": "36px" } }).form; //创建窗体
  7275. _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); } }
  7276. break;
  7277. case "hanClassics":
  7278. _formdiv = new U.UF.UI.form(
  7279. "国学经典",
  7280. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7281. "id": "hanClassics",
  7282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7283. "onresize": function () { }
  7284. }, {
  7285. closecallback: function () { }
  7286. }, { "style": { "height": "36px" } }).form; //创建窗体
  7287. _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); } }
  7288. break;
  7289. case "hanTraining":
  7290. _formdiv = new U.UF.UI.form(
  7291. "笔画训练",
  7292. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7293. "id": "hanTraining",
  7294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7295. "onresize": function () { }
  7296. }, {
  7297. closecallback: function () { }
  7298. }, { "style": { "height": "36px" } }).form; //创建窗体
  7299. _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); } }
  7300. break;
  7301. case "hanClass":
  7302. _formdiv = new U.UF.UI.form(
  7303. "书法课堂",
  7304. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7305. "id": "hanClass",
  7306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7307. "onresize": function () { }
  7308. }, {
  7309. closecallback: function () { }
  7310. }, { "style": { "height": "36px" } }).form; //创建窗体
  7311. _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); } }
  7312. break;
  7313. case "han":
  7314. _formdiv = new U.UF.UI.form(
  7315. "汉字宫",
  7316. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7317. "id": "han",
  7318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7319. "onresize": function () { }
  7320. }, {
  7321. closecallback: function () { }
  7322. }, { "style": { "height": "36px" } }).form; //创建窗体
  7323. _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); } }
  7324. break;
  7325. case "projectGM": //课程管理
  7326. _formdiv = new U.UF.UI.form(
  7327. "课程管理",
  7328. $$("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 }), {
  7329. "id": "projectGM",
  7330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7331. "onresize": function () { }
  7332. }, {
  7333. closecallback: function () { }
  7334. }, { "style": { "height": "36px" } }).form; //创建窗体
  7335. _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); } }
  7336. break;
  7337. case "studyGM": //课程中心
  7338. _formdiv = new U.UF.UI.form(
  7339. "课程中心",
  7340. $$("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
  7341. "id": "study",
  7342. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7343. "onresize": function () { }
  7344. }, {
  7345. closecallback: function () { }
  7346. }, { "style": { "height": "36px" } }).form; //创建窗体
  7347. _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); } }
  7348. break;
  7349. // studentGM
  7350. case "studentGM": //学生管理
  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/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  7354. "id": "studentGM",
  7355. "style": { "width": "90%", "height": "90%", "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/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7361. break;
  7362. case "evaluateGM": //学生评价
  7363. _formdiv = new U.UF.UI.form(
  7364. "学生评价",
  7365. $$("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 }), {
  7366. "id": "evaluateGM",
  7367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7368. "onresize": function () { }
  7369. }, {
  7370. closecallback: function () { }
  7371. }, { "style": { "height": "36px" } }).form; //创建窗体
  7372. _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); } }
  7373. break;
  7374. // classGM
  7375. case "classGM": //班级管理
  7376. _formdiv = new U.UF.UI.form(
  7377. "班级管理",
  7378. $$("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 }), {
  7379. "id": "classGM",
  7380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7381. "onresize": function () { }
  7382. }, {
  7383. closecallback: function () { }
  7384. }, { "style": { "height": "36px" } }).form; //创建窗体
  7385. _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); } }
  7386. break;
  7387. // dataGM
  7388. case "dataGM":
  7389. _formdiv = new U.UF.UI.form(
  7390. "我的资料",
  7391. $$("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 }), {
  7392. "id": "dataGM",
  7393. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7394. "onresize": function () { }
  7395. }, {
  7396. closecallback: function () { }
  7397. }, { "style": { "height": "36px" } }).form; //创建窗体
  7398. _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); } }
  7399. break;
  7400. // caseGM
  7401. case "caseGM": //课程进展
  7402. _formdiv = new U.UF.UI.form(
  7403. "课程进展",
  7404. $$("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 }), {
  7405. "id": "caseGM",
  7406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7407. "onresize": function () { }
  7408. }, {
  7409. closecallback: function () { }
  7410. }, { "style": { "height": "36px" } }).form; //创建窗体
  7411. _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); } }
  7412. break;
  7413. // meterialGM
  7414. case "meterialGM": //素材库
  7415. _formdiv = new U.UF.UI.form(
  7416. "素材库",
  7417. $$("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 }), {
  7418. "id": "meterialGM",
  7419. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7420. "onresize": function () { }
  7421. }, {
  7422. closecallback: function () { }
  7423. }, { "style": { "height": "36px" } }).form; //创建窗体
  7424. _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); } }
  7425. break;
  7426. // evaluateSGM
  7427. case "evaluateSGM": //我的评价
  7428. _formdiv = new U.UF.UI.form(
  7429. "我的评价",
  7430. $$("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 }), {
  7431. "id": "evaluateSGM",
  7432. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7433. "onresize": function () { }
  7434. }, {
  7435. closecallback: function () { }
  7436. }, { "style": { "height": "36px" } }).form; //创建窗体
  7437. _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); } }
  7438. break;
  7439. case "jupyter": //jupyter
  7440. _formdiv = new U.UF.UI.form(
  7441. "jupyter",
  7442. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7443. "id": "jupyter",
  7444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7445. "onresize": function () { }
  7446. }, {
  7447. closecallback: function () { }
  7448. }, { "style": { "height": "36px" } }).form; //创建窗体
  7449. _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); } }
  7450. break;
  7451. case "number": //数字实验室
  7452. _formdiv = new U.UF.UI.form(
  7453. "数字实验室",
  7454. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7455. "id": "number",
  7456. "style": { "width": "90%", "height": "90%", "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/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7462. break;
  7463. case "studentCourse": //项目管理 学生
  7464. _formdiv = new U.UF.UI.form(
  7465. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7466. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  7467. "id": "studentCourse",
  7468. "style": { "width": "90%", "height": "90%", "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/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7474. break;
  7475. case "studentCourseS": //项目管理 老师
  7476. _formdiv = new U.UF.UI.form(
  7477. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7478. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  7479. "id": "studentCourseS",
  7480. "style": { "width": "90%", "height": "90%", "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/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7486. break;
  7487. case "studentIndex": //项目中心
  7488. _formdiv = new U.UF.UI.form(
  7489. "项目中心",
  7490. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7491. "id": "studentIndex",
  7492. "style": { "width": "90%", "height": "90%", "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/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7498. break;
  7499. case "CaseDesignS":
  7500. _formdiv = new U.UF.UI.form(
  7501. "项目进展",
  7502. $$("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 }), {
  7503. "id": "case",
  7504. "style": { "width": "90%", "height": "90%", "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/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7510. break;
  7511. case "tcStudent": //腾讯学生管理
  7512. _formdiv = new U.UF.UI.form(
  7513. "学生管理",
  7514. $$("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 }), {
  7515. "id": "tcStudent",
  7516. "style": { "width": "90%", "height": "90%", "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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7522. break;
  7523. case "tcSchool": //腾讯学校管理
  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/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7527. "id": "tcSchool",
  7528. "style": { "width": "90%", "height": "90%", "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/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7534. break;
  7535. case "tcTeacher": //腾讯学校管理
  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-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7539. "id": "tcTeacher",
  7540. "style": { "width": "90%", "height": "90%", "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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7546. break;
  7547. case "teacher":
  7548. _formdiv = new U.UF.UI.form(
  7549. "教师管理",
  7550. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7551. "id": "teacher",
  7552. "style": { "width": "90%", "height": "90%", "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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7558. break;
  7559. case "tcData": //腾讯我的资料
  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/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7563. "id": "tcData",
  7564. "style": { "width": "42%", "height": "90%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7570. break;
  7571. case "tcNotice": //腾讯消息通知
  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/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7575. "id": "tcNotice",
  7576. "style": { "width": "90%", "height": "90%", "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/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7582. break;
  7583. case "myReport": //好友打开
  7584. _formdiv = new U.UF.UI.form(
  7585. "我的评价",
  7586. $$("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 }), {
  7587. "id": "myReport",
  7588. "style": { "width": "100%", "height": "100%", "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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7594. break;
  7595. case "learnAna": //好友打开
  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/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7599. "id": "learnAna",
  7600. "style": { "width": "100%", "height": "100%", "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/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7606. break;
  7607. case "AIChat": //AI共创
  7608. _formdiv = new U.UF.UI.form(
  7609. "AI共创",
  7610. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7611. "id": "AIChat",
  7612. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7613. "onresize": function () { }
  7614. }, {
  7615. istop: true,
  7616. closecallback: function () { $("#aichat_icon").remove(); },
  7617. narrowcallback: function () {
  7618. if (!$("#aichat_icon")[0]) {
  7619. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7620. }
  7621. },
  7622. }, { "style": { "height": "36px" } }).form; //创建窗体
  7623. _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); } }
  7624. break;
  7625. case "ainew": //AI共创
  7626. _formdiv = new U.UF.UI.form(
  7627. "AI协同",
  7628. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7629. "id": "ainew",
  7630. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7631. "onresize": function () { }
  7632. }, {
  7633. closecallback: function () { }
  7634. }, { "style": { "height": "36px" } }).form; //创建窗体
  7635. _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); } }
  7636. break;
  7637. case "gpt4": //gpt4
  7638. _formdiv = new U.UF.UI.form(
  7639. "AI助手",
  7640. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7641. "id": "gpt4",
  7642. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7643. "onresize": function () { }
  7644. }, {
  7645. closecallback: function () { }
  7646. }, { "style": { "height": "36px" } }).form; //创建窗体
  7647. _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); } }
  7648. break;
  7649. case "aigpt": //gpt4
  7650. _formdiv = new U.UF.UI.form(
  7651. "AI助手+",
  7652. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7653. "id": "aigpt",
  7654. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7655. "onresize": function () { }
  7656. }, {
  7657. closecallback: function () {
  7658. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7659. }
  7660. }, { "style": { "height": "36px" } }).form; //创建窗体
  7661. _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); } }
  7662. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7663. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7664. })
  7665. break;
  7666. case "aiKnowledge": //aiKnowledge
  7667. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7668. if (_oid == '8a352da2-56e1-11ef-b873-005056b86db5') {
  7669. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7670. }
  7671. _formdiv = new U.UF.UI.form(
  7672. "知识建构",
  7673. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  7674. "id": "aiKnowledge",
  7675. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7676. "onresize": function () { }
  7677. }, {
  7678. closecallback: function () { }
  7679. }, { "style": { "height": "36px" } }).form; //创建窗体
  7680. _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); } }
  7681. break;
  7682. case "futureClass": //AI共创
  7683. _formdiv = new U.UF.UI.form(
  7684. "协同建构",
  7685. $$("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
  7686. "id": "synergyCourse",
  7687. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7688. "onresize": function () { }
  7689. }, {
  7690. closecallback: function () {
  7691. $("iframe", _formdiv)[0].contentWindow.loginout();
  7692. }
  7693. }, { "style": { "height": "36px" } }).form; //创建窗体
  7694. _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); } }
  7695. break;
  7696. case "aiagent": //ai agent
  7697. _formdiv = new U.UF.UI.form(
  7698. "AI Agent",
  7699. $$("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" }), {
  7700. "id": "AIAgent",
  7701. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7702. "onresize": function () { }
  7703. }, {
  7704. closecallback: function () { }
  7705. }, { "style": { "height": "36px" } }).form; //创建窗体
  7706. _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); } }
  7707. break;
  7708. case "dataBoard": //数据看板
  7709. _formdiv = new U.UF.UI.form(
  7710. "数据看板",
  7711. $$("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 }), {
  7712. "id": "dataBoard",
  7713. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7714. "onresize": function () { }
  7715. }, {
  7716. closecallback: function () { }
  7717. }, { "style": { "height": "36px" } }).form; //创建窗体
  7718. _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); } }
  7719. break;
  7720. case "dataBoardSies": //数据融合
  7721. _formdiv = new U.UF.UI.form(
  7722. "数据融合",
  7723. $$("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 }), {
  7724. "id": "dataBoardSies",
  7725. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7726. "onresize": function () { }
  7727. }, {
  7728. closecallback: function () { }
  7729. }, { "style": { "height": "36px" } }).form; //创建窗体
  7730. _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); } }
  7731. break;
  7732. case "dataBoardNew": //数据看板
  7733. _formdiv = new U.UF.UI.form(
  7734. "综合看板",
  7735. $$("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 }), {
  7736. "id": "dataBoardNew",
  7737. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7738. "onresize": function () { }
  7739. }, {
  7740. closecallback: function () { }
  7741. }, { "style": { "height": "36px" } }).form; //创建窗体
  7742. _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); } }
  7743. break;
  7744. case "dataBoardTest": //数据看板
  7745. _formdiv = new U.UF.UI.form(
  7746. "评测看板",
  7747. $$("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 }), {
  7748. "id": "dataBoardTest",
  7749. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7750. "onresize": function () { }
  7751. }, {
  7752. closecallback: function () { }
  7753. }, { "style": { "height": "36px" } }).form; //创建窗体
  7754. _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); } }
  7755. break;
  7756. case "AIAnalyse": //AI共创
  7757. _formdiv = new U.UF.UI.form(
  7758. "AI分析",
  7759. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7760. "id": "AIAnalyse",
  7761. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7762. "onresize": function () { }
  7763. }, {
  7764. closecallback: function () { }
  7765. }, { "style": { "height": "36px" } }).form; //创建窗体
  7766. _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); } }
  7767. break;
  7768. case "studioCourse": //AI共创
  7769. _formdiv = new U.UF.UI.form(
  7770. "工作管理",
  7771. $$("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 }), {
  7772. "id": "studioCourse",
  7773. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7774. "onresize": function () { }
  7775. }, {
  7776. closecallback: function () { }
  7777. }, { "style": { "height": "36px" } }).form; //创建窗体
  7778. _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); } }
  7779. break;
  7780. case "studioIndex": //AI共创
  7781. _formdiv = new U.UF.UI.form(
  7782. "工作中心",
  7783. $$("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 }), {
  7784. "id": "studioIndex",
  7785. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7786. "onresize": function () { }
  7787. }, {
  7788. closecallback: function () { }
  7789. }, { "style": { "height": "36px" } }).form; //创建窗体
  7790. _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); } }
  7791. break;
  7792. case "source":
  7793. _formdiv = new U.UF.UI.form(
  7794. "教学资源",
  7795. $$("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 }), {
  7796. "id": "source",
  7797. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7798. "onresize": function () { }
  7799. }, {
  7800. closecallback: function () { }
  7801. }, { "style": { "height": "36px" } }).form; //创建窗体
  7802. _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); } }
  7803. break;
  7804. case "testTeacher":
  7805. _formdiv = new U.UF.UI.form(
  7806. "智能表单",
  7807. $$("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 }), {
  7808. "id": "testTeacher",
  7809. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7810. "onresize": function () { }
  7811. }, {
  7812. closecallback: function () { }
  7813. }, { "style": { "height": "36px" } }).form; //创建窗体
  7814. _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); } }
  7815. break;
  7816. case "testStudent":
  7817. _formdiv = new U.UF.UI.form(
  7818. "教师中心",
  7819. $$("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 }), {
  7820. "id": "testStudent",
  7821. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7822. "onresize": function () { }
  7823. }, {
  7824. closecallback: function () { }
  7825. }, { "style": { "height": "36px" } }).form; //创建窗体
  7826. _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); } }
  7827. break;
  7828. case "testTeacherSies":
  7829. _formdiv = new U.UF.UI.form(
  7830. "教师管理",
  7831. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  7832. "id": "testTeacherSies",
  7833. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7834. "onresize": function () { }
  7835. }, {
  7836. closecallback: function () { }
  7837. }, { "style": { "height": "36px" } }).form; //创建窗体
  7838. _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); } }
  7839. break;
  7840. case "testStudentSies":
  7841. _formdiv = new U.UF.UI.form(
  7842. "教师中心",
  7843. $$("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 }), {
  7844. "id": "testStudentSies",
  7845. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7846. "onresize": function () { }
  7847. }, {
  7848. closecallback: function () { }
  7849. }, { "style": { "height": "36px" } }).form; //创建窗体
  7850. _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); } }
  7851. break;
  7852. case "ytpbl": //消息通知
  7853. _formdiv = new U.UF.UI.form(
  7854. "案例征集",
  7855. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7856. "id": "ytpbl",
  7857. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7858. "onresize": function () { }
  7859. }, {
  7860. closecallback: function () { }
  7861. }, { "style": { "height": "36px" } }).form; //创建窗体
  7862. _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); } }
  7863. // 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");
  7864. break;
  7865. case "aiCourseResource": //人工智能窗体
  7866. _formdiv = new U.UF.UI.form(
  7867. false,
  7868. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7869. "id": "aiCourseResource",
  7870. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7871. "onresize": function () { },
  7872. "isdrag": false,
  7873. }, {
  7874. closecallback: function () { }
  7875. }, { "style": { "height": "36px" } }).form; //创建窗体
  7876. _taskbar = ''
  7877. break;
  7878. case "szdjgCocooroboX": //图形化编程
  7879. _formdiv = new U.UF.UI.form(
  7880. "图形化编程",
  7881. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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" }), {
  7882. "id": "szdjgCocooroboX",
  7883. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7884. "onresize": function () { }
  7885. }, {
  7886. closecallback: function () { }
  7887. }, { "style": { "height": "36px" } }).form; //创建窗体
  7888. _taskbar = ''
  7889. break;
  7890. case "szdjgPython": //python编程
  7891. _formdiv = new U.UF.UI.form(
  7892. "Python编程",
  7893. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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" }), {
  7894. "id": "szdjgPython",
  7895. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7896. "onresize": function () { }
  7897. }, {
  7898. closecallback: function () { }
  7899. }, { "style": { "height": "36px" } }).form; //创建窗体
  7900. _taskbar = ''
  7901. break;
  7902. case "Record":
  7903. _formdiv = new U.UF.UI.form(
  7904. "观察记录",
  7905. $$("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 }), {
  7906. "id": "Record",
  7907. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7908. "onresize": function () { }
  7909. }, {
  7910. closecallback: function () { }
  7911. }, { "style": { "height": "36px" } }).form; //创建窗体
  7912. _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); } }
  7913. break;
  7914. case "aigptCourse":
  7915. _formdiv = new U.UF.UI.form(
  7916. "AI智能体",
  7917. $$("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' }), {
  7918. "id": "aigptCourse",
  7919. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7920. "onresize": function () { }
  7921. }, {
  7922. closecallback: function () { }
  7923. }, { "style": { "height": "36px" } }).form; //创建窗体
  7924. _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); } }
  7925. break;
  7926. case "classroomObservation":
  7927. _formdiv = new U.UF.UI.form(
  7928. "课堂观察",
  7929. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7930. "id": "classroomObservation",
  7931. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7932. "onresize": function () { }
  7933. }, {
  7934. closecallback: function () { }
  7935. }, { "style": { "height": "36px" } }).form; //创建窗体
  7936. _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); } }
  7937. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7938. break;
  7939. case "pblCourse":
  7940. _formdiv = new U.UF.UI.form(
  7941. "学生PBL",
  7942. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7943. "id": "pblCourse",
  7944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7945. "onresize": function () { }
  7946. }, {
  7947. closecallback: function () { }
  7948. }, { "style": { "height": "36px" } }).form; //创建窗体
  7949. _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); } }
  7950. break;
  7951. case "appStore":
  7952. U.MD.D.addOp('', 'cocoflowOpen', '')
  7953. _formdiv = new U.UF.UI.form(
  7954. "CocoFlow",
  7955. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7956. "id": "appStore",
  7957. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7958. "onresize": function () { }
  7959. }, {
  7960. closecallback: function () { }
  7961. }, { "style": { "height": "36px" } }).form; //创建窗体
  7962. _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); } }
  7963. break;
  7964. case "sassPlatform":
  7965. _formdiv = new U.UF.UI.form(
  7966. "Sass通用后台管理",
  7967. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7968. "id": "sassPlatform",
  7969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7970. "onresize": function () { }
  7971. }, {
  7972. closecallback: function () { }
  7973. }, { "style": { "height": "36px" } }).form; //创建窗体
  7974. _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); } }
  7975. break;
  7976. case "EDU":
  7977. _formdiv = new U.UF.UI.form(
  7978. "EDU",
  7979. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7980. "id": "EDU",
  7981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7982. "onresize": function () { }
  7983. }, {
  7984. closecallback: function () { }
  7985. }, { "style": { "height": "36px" } }).form; //创建窗体
  7986. _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); } }
  7987. break;
  7988. case "knowledge":
  7989. _formdiv = new U.UF.UI.form(
  7990. "知识库",
  7991. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7992. "id": "knowledge",
  7993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7994. "onresize": function () { }
  7995. }, {
  7996. closecallback: function () { }
  7997. }, { "style": { "height": "36px" } }).form; //创建窗体
  7998. _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); } }
  7999. break;
  8000. case "userExamine":
  8001. _formdiv = new U.UF.UI.form(
  8002. "账号申请",
  8003. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  8004. "id": "userExamine",
  8005. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  8006. "onresize": function () { }
  8007. }, {
  8008. closecallback: function () { }
  8009. }, { "style": { "height": "36px" } }).form; //创建窗体
  8010. break;
  8011. case "cocoflowDeskTop": //cocoflowDeskTop
  8012. _formdiv = new U.UF.UI.form(
  8013. false,
  8014. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  8015. "id": "cocoflowDeskTop",
  8016. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  8017. "onresize": function () { },
  8018. }, {
  8019. closecallback: function () { },
  8020. "isdrag": false,
  8021. }, { "style": { "height": "36px" } }).form; //创建窗体
  8022. _taskbar = ''
  8023. break;
  8024. case "liyuanLogin": //liyuanLogin
  8025. _formdiv = new U.UF.UI.form(
  8026. false,
  8027. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  8028. "id": "liyuanLogin",
  8029. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  8030. "onresize": function () { },
  8031. }, {
  8032. closecallback: function () { },
  8033. isdrag: false,
  8034. isstretching: false,
  8035. isenlarge: false,
  8036. isnarrow: false
  8037. }, { "style": { "height": "36px" } }).form; //创建窗体
  8038. _taskbar = ''
  8039. break;
  8040. case "updatePaDialog":
  8041. _formdiv = new U.UF.UI.form(
  8042. "密码修改",
  8043. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  8044. "id": "updatePaDialog",
  8045. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  8046. "onresize": function () { },
  8047. }, {
  8048. closecallback: function () { },
  8049. isclose: false,
  8050. isdrag: false,
  8051. isstretching: false,
  8052. isenlarge: false,
  8053. isnarrow: false
  8054. }, { "style": { "height": "36px" } }).form; //创建窗体
  8055. break;
  8056. }
  8057. //U.MD.D.I.openClick(str);
  8058. //如果有任务栏信息
  8059. if (_taskbar) {
  8060. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8061. }
  8062. if (iframeBool) {
  8063. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  8064. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  8065. // console.log("iframe进入");
  8066. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  8067. // };
  8068. setTimeout(() => {
  8069. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  8070. }, 2000);
  8071. }
  8072. }
  8073. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  8074. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  8075. _userinfo = US.userInfo, //登录用户信息
  8076. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  8077. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  8078. let iframeBool = true;
  8079. let queryString = ''
  8080. if (array && array.length) {
  8081. const paramsMap = {
  8082. userid: _userid,
  8083. org: _org,
  8084. oid: _oid,
  8085. type: _type,
  8086. role: _role,
  8087. classId: _classId,
  8088. TscreenType: _TscreenType,
  8089. SscreenType: _SscreenType
  8090. };
  8091. const canshu = array
  8092. .filter(param => paramsMap[param] !== undefined)
  8093. .map(param => `${param}=${paramsMap[param]}`);
  8094. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  8095. }
  8096. let _url = url + queryString
  8097. if (U.UF.UI.form.allForm[id]) {
  8098. iframeBool = false
  8099. }
  8100. _formdiv = new U.UF.UI.form(
  8101. false,
  8102. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }),
  8103. {
  8104. "id": id,
  8105. "style": { "width": "100%", "height": "100%", "overflow": 'hidden', "position": 'unset', "boxShadow": "unset" },
  8106. "onresize": function () { },
  8107. },
  8108. {
  8109. closecallback: function () { },
  8110. isdrag: false,
  8111. isstretching: false,
  8112. isenlarge: false,
  8113. isnarrow: false
  8114. },
  8115. { "style": { "height": "36px" } },
  8116. undefined,
  8117. undefined,
  8118. dom
  8119. ).form
  8120. }
  8121. // U.MD.D.I.openClick = function(str){
  8122. // var click = '';
  8123. // switch(str){
  8124. // case 'friend':
  8125. // click = '我的好友';
  8126. // break;
  8127. // case 'domain':
  8128. // click = '域名管理';
  8129. // break;
  8130. // case 'disk':
  8131. // click = '我的云盘';
  8132. // break;
  8133. // case 'word':
  8134. // click = 'Word';
  8135. // break;
  8136. // case 'excel':
  8137. // click = 'Execl';
  8138. // break;
  8139. // case 'txt':
  8140. // click = '文本文件';
  8141. // break;
  8142. // case 'lookupFriend':
  8143. // click = '查找好友';
  8144. // break;
  8145. // case 'ftp':
  8146. // click = 'FTP';
  8147. // break;
  8148. // case 'group':
  8149. // click = '群组';
  8150. // break;
  8151. // case 'set':
  8152. // click = '我的设置';
  8153. // break;
  8154. // case 'systemSet':
  8155. // click = '系统设置';
  8156. // break;
  8157. // case 'boomYun':
  8158. // click = '互联办公';
  8159. // break;
  8160. // case 'xz':
  8161. // click = '云端下载';
  8162. // break;
  8163. // case 'client':
  8164. // click = '有思浏览器';
  8165. // break;
  8166. // case 'backEndProgramming':
  8167. // click = '在线后台编程';
  8168. // break;
  8169. // case 'frontEndProgramming':
  8170. // click = '在线前端编程';
  8171. // break;
  8172. // default: break;
  8173. // }
  8174. // if(U.MD.D.I.Ip && click){
  8175. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  8176. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  8177. // })
  8178. // }
  8179. // }
  8180. /**
  8181. *函数作用:ajax简易函数,使用post格式
  8182. *@param url {data} 后台地址
  8183. *@param data {data} 参数json
  8184. *@param fn {data} 回调函数
  8185. *
  8186. */
  8187. // U.MD.D.I.Mysqlrequest = function(url,fn){
  8188. // var xhr = new XMLHttpRequest();
  8189. // xhr.open("GET",url,true);
  8190. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  8191. // xhr.onreadystatechange = function(){
  8192. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  8193. // fn.call(this,xhr.responseText);
  8194. // }
  8195. // };
  8196. // xhr.send();
  8197. // }
  8198. /*判断是否是内网IP*/
  8199. // U.MD.D.I.isInnerIPFn = function(str){
  8200. // var curPageUrl = str;
  8201. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  8202. // curPageUrl =curPageUrl.replace(reg1,'');
  8203. // // console.log('curPageUrl-1 '+curPageUrl);
  8204. // var reg2 = /\:+/g;//替换冒号为一点
  8205. // curPageUrl =curPageUrl.replace(reg2,'.');
  8206. // // console.log('curPageUrl-2 '+curPageUrl);
  8207. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  8208. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  8209. // if(curPageUrl[2] != '16'){
  8210. // return ipAddress;
  8211. // }else{
  8212. // return false;
  8213. // }
  8214. // }
  8215. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  8216. // //compatibility for firefox and chrome
  8217. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  8218. // var pc = new myPeerConnection({
  8219. // iceServers: []
  8220. // }),
  8221. // noop = function() {},
  8222. // localIPs = {},
  8223. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  8224. // key;
  8225. // function iterateIP(ip) {
  8226. // if (!localIPs[ip]) onNewIP(ip);
  8227. // localIPs[ip] = true;
  8228. // }
  8229. // //create a bogus data channel
  8230. // pc.createDataChannel("");
  8231. // // create offer and set local description
  8232. // pc.createOffer().then(function(sdp) {
  8233. // sdp.sdp.split('\n').forEach(function(line) {
  8234. // if (line.indexOf('candidate') < 0) return;
  8235. // line.match(ipRegex).forEach(iterateIP);
  8236. // });
  8237. // pc.setLocalDescription(sdp, noop, noop);
  8238. // }).catch(function(reason) {
  8239. // // An error occurred, so handle the failure to connect
  8240. // });
  8241. // //sten for candidate events
  8242. // pc.onicecandidate = function(ice) {
  8243. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  8244. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8245. // };
  8246. // }
  8247. // U.MD.D.I.getUserIpBool = function(callback){
  8248. // U.MD.D.I.getUserIP(function(ip){
  8249. // alert("Got IP! :" + ip);
  8250. // });
  8251. //}
  8252. //#endregion
  8253. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8254. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8255. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8256. _userinfo = US.userInfo, //登录用户信息
  8257. _userid = US.userInfo.userid //登录用户id
  8258. let _iframe;
  8259. let _cid = cid,
  8260. _stage = stage,
  8261. _task = task,
  8262. _tool = tool;
  8263. var _jie = $$("div", {
  8264. "style": {
  8265. "position": "absolute",
  8266. "bottom": "50px",
  8267. "right": "50px",
  8268. "zIndex": "9999",
  8269. "backgroundColor": "#2268bc",
  8270. "color": "#fff",
  8271. "padding": "12px 20px",
  8272. "cursor": "pointer",
  8273. "borderRadius": "4px",
  8274. },
  8275. "innerHTML": "提交作业"
  8276. })
  8277. let aTool = ''
  8278. let _loading = document.createElement('div')
  8279. _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;"
  8280. // _loading.id = "";
  8281. let _lchild = document.createElement('div')
  8282. let _limg = document.createElement('img')
  8283. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8284. _limg.style = "width: 26px;margin-right: 10px;"
  8285. _lchild.appendChild(_limg)
  8286. let _lspan = document.createElement('span')
  8287. _lspan.innerHTML = "上传中..."
  8288. _lchild.appendChild(_lspan)
  8289. _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%);"
  8290. _loading.appendChild(_lchild)
  8291. var _box = $$('div', {
  8292. "style": {
  8293. "position": "relative",
  8294. "width": "100%",
  8295. "height": "100%",
  8296. },
  8297. })
  8298. _box.appendChild(_loading)
  8299. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8300. switch (str) {
  8301. case "whiteboard":
  8302. aTool = 1;
  8303. _iframe = $$("iframe", {
  8304. "frameborder": "no",
  8305. "border": "0",
  8306. "scrolling ": "no",
  8307. "style": {
  8308. "cssText": "border:0;width:100%;height:100%"
  8309. },
  8310. "src": "https://beta.iwb.cocorobo.cn/"
  8311. })
  8312. _box.appendChild(_iframe);
  8313. _box.appendChild(_jie);
  8314. _formdiv = new U.UF.UI.form(
  8315. "电子白板",
  8316. _box, {
  8317. "id": "whiteboard" + cid + stage + task + tool,
  8318. "style": {
  8319. "width": "90%",
  8320. "height": "90%",
  8321. "overflow": 'hidden'
  8322. },
  8323. "onresize": function () { }
  8324. }, {
  8325. closecallback: function () { }
  8326. }, {
  8327. "style": {
  8328. "height": "36px"
  8329. }
  8330. }).form; //创建窗体
  8331. _taskbar = {
  8332. "id": str + _formdiv.id,
  8333. "style": {
  8334. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8335. },
  8336. "name": "电子白板",
  8337. "forms": _formdiv,
  8338. "click": function () {
  8339. U.MD.D.I.openApplication(str, obj, info);
  8340. }
  8341. }
  8342. break;
  8343. case "mind":
  8344. aTool = 3;
  8345. _iframe = $$("iframe", {
  8346. "frameborder": "no",
  8347. "border": "0",
  8348. "scrolling ": "no",
  8349. "style": {
  8350. "cssText": "border:0;width:100%;height:100%"
  8351. },
  8352. "src": "/kityminder-editor/dist/index.html"
  8353. })
  8354. _box.appendChild(_iframe);
  8355. _box.appendChild(_jie);
  8356. _formdiv = new U.UF.UI.form(
  8357. "思维导图",
  8358. _box, { //"/jsmind/example/demo.html"
  8359. "id": "mind" + cid + stage + task + tool,
  8360. "style": {
  8361. "width": "90%",
  8362. "height": "90%",
  8363. "overflow": 'hidden'
  8364. },
  8365. "onresize": function () { }
  8366. }, {
  8367. closecallback: function () { }
  8368. }, {
  8369. "style": {
  8370. "height": "36px"
  8371. }
  8372. }).form; //创建窗体
  8373. _taskbar = {
  8374. "id": str + _formdiv.id,
  8375. "style": {
  8376. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8377. },
  8378. "name": "思维导图",
  8379. "forms": _formdiv,
  8380. "click": function () {
  8381. U.MD.D.I.openApplication(str, obj, info);
  8382. }
  8383. }
  8384. break;
  8385. case "MindMap":
  8386. aTool = 3;
  8387. _iframe = $$("iframe", {
  8388. "frameborder": "no",
  8389. "border": "0",
  8390. "scrolling ": "no",
  8391. "style": {
  8392. "cssText": "border:0;width:100%;height:100%"
  8393. },
  8394. "src": "//cloud.cocorobo.cn/mind/"
  8395. })
  8396. _box.appendChild(_iframe);
  8397. _box.appendChild(_jie);
  8398. _formdiv = new U.UF.UI.form(
  8399. "思维导图",
  8400. _box, { //"/jsmind/example/demo.html"
  8401. "id": "mind" + cid + stage + task + tool,
  8402. "style": {
  8403. "width": "90%",
  8404. "height": "90%",
  8405. "overflow": 'hidden'
  8406. },
  8407. "onresize": function () { }
  8408. }, {
  8409. closecallback: function () { }
  8410. }, {
  8411. "style": {
  8412. "height": "36px"
  8413. }
  8414. }).form; //创建窗体
  8415. _taskbar = {
  8416. "id": str + _formdiv.id,
  8417. "style": {
  8418. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8419. },
  8420. "name": "思维导图",
  8421. "forms": _formdiv,
  8422. "click": function () {
  8423. U.MD.D.I.openApplication(str, obj, info);
  8424. }
  8425. }
  8426. break;
  8427. case "doc":
  8428. aTool = 6;
  8429. _iframe = $$("iframe", {
  8430. "frameborder": "no",
  8431. "border": "0",
  8432. "scrolling ": "no",
  8433. "style": {
  8434. "cssText": "border:0;width:100%;height:100%"
  8435. },
  8436. "src": "/Office/Word/WordEditArea.htm"
  8437. })
  8438. _box.appendChild(_iframe);
  8439. _box.appendChild(_jie);
  8440. _formdiv = new U.UF.UI.form(
  8441. "协同文档",
  8442. _box, {
  8443. "id": "doc" + cid + stage + task + tool,
  8444. "style": {
  8445. "width": "90%",
  8446. "height": "90%",
  8447. "overflow": 'hidden'
  8448. },
  8449. "onresize": function () { }
  8450. }, {
  8451. closecallback: function () { }
  8452. }, {
  8453. "style": {
  8454. "height": "36px"
  8455. }
  8456. }).form; //创建窗体
  8457. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8458. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8459. })
  8460. _taskbar = {
  8461. "id": str + _formdiv.id,
  8462. "style": {
  8463. "backgroundImage": "url(/img/icon/doc.png)"
  8464. },
  8465. "name": "协同文档",
  8466. "forms": _formdiv,
  8467. "click": function () {
  8468. U.MD.D.I.openApplication(str, obj, info);
  8469. }
  8470. }
  8471. break;
  8472. case "mindNetwork": //好友打开
  8473. aTool = 7;
  8474. _iframe = $$("iframe", {
  8475. "webkitallowfullscreen": "",
  8476. "mozallowfullscreen": "",
  8477. "allowfullscreen": "",
  8478. "frameborder": "no",
  8479. "border": "0",
  8480. "scrolling ": "no",
  8481. "style": {
  8482. "cssText": "border:0; width:100%; height:100%;"
  8483. },
  8484. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8485. })
  8486. _box.appendChild(_iframe);
  8487. _box.appendChild(_jie);
  8488. _formdiv = new U.UF.UI.form(
  8489. "思维网格",
  8490. _box, {
  8491. "id": "mindNetwork" + cid + stage + task + tool,
  8492. "style": {
  8493. "width": "90%",
  8494. "height": "90%",
  8495. "overflow": 'hidden'
  8496. },
  8497. "onresize": function () { }
  8498. }, {
  8499. closecallback: function () { }
  8500. }, {
  8501. "style": {
  8502. "height": "36px"
  8503. }
  8504. }).form; //创建窗体
  8505. _taskbar = {
  8506. "id": str + _formdiv.id,
  8507. "style": {
  8508. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8509. },
  8510. "name": "思维网格",
  8511. "forms": _formdiv,
  8512. "click": function () {
  8513. U.MD.D.I.openApplication(str, obj, info);
  8514. }
  8515. }
  8516. break;
  8517. case "courseDesign":
  8518. _iframe = $$("iframe", {
  8519. "webkitallowfullscreen": "",
  8520. "mozallowfullscreen": "",
  8521. "allowfullscreen": "",
  8522. "frameborder": "no",
  8523. "border": "0",
  8524. "scrolling ": "no",
  8525. "style": {
  8526. "cssText": "border:0; width:100%; height:100%;"
  8527. },
  8528. "src": "/course-design-vue"
  8529. })
  8530. _box.appendChild(_iframe);
  8531. _box.appendChild(_jie);
  8532. _formdiv = new U.UF.UI.form(
  8533. "项目设计",
  8534. _box, {
  8535. "id": "courseDesign" + cid + stage + task + tool,
  8536. "style": {
  8537. "width": "90%",
  8538. "height": "90%",
  8539. "overflow": 'hidden'
  8540. },
  8541. "onresize": function () { }
  8542. }, {
  8543. closecallback: function () { }
  8544. }, {
  8545. "style": {
  8546. "height": "36px"
  8547. }
  8548. }).form; //创建窗体
  8549. _taskbar = {
  8550. "id": str + _formdiv.id,
  8551. "style": {
  8552. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8553. },
  8554. "name": "项目设计",
  8555. "forms": _formdiv,
  8556. "click": function () {
  8557. U.MD.D.I.openApplication(str, obj, info);
  8558. }
  8559. }
  8560. break;
  8561. }
  8562. const script1 = document.createElement("script");
  8563. script1.type = "text/javascript";
  8564. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8565. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8566. const script2 = document.createElement("script");
  8567. script2.type = "text/javascript";
  8568. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8569. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8570. const script3 = document.createElement("script");
  8571. script3.type = "text/javascript";
  8572. script3.charset = "UTF-8";
  8573. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8574. const script4 = document.createElement("script");
  8575. script4.type = "text/javascript";
  8576. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8577. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8578. if (_iframe) {
  8579. if (str == 'doc') {
  8580. _iframe = _formdiv.querySelector('iframe')
  8581. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8582. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8583. _iframe.contentWindow.document.body.appendChild(script1);
  8584. _iframe.contentWindow.document.body.appendChild(script2);
  8585. // _iframe.contentWindow.document.body.appendChild(script3);
  8586. _iframe.contentWindow.document.body.appendChild(script4);
  8587. })
  8588. if (onloadListener) {
  8589. _iframe.contentDocument.location.reload()
  8590. } else {
  8591. _iframe.contentDocument.location.reload()
  8592. }
  8593. } else if (str == 'courseDesign') {
  8594. U.UF.DL.iframeLoad(_iframe, function () {
  8595. // _iframe.contentWindow.U.MD.O.W.load();
  8596. // _iframe.contentWindow.document.body.appendChild(script1);
  8597. _iframe.contentWindow.document.body.appendChild(script2);
  8598. _iframe.contentWindow.document.body.appendChild(script4);
  8599. })
  8600. } else if (str == 'mind') {
  8601. _iframe = _formdiv.querySelector('iframe')
  8602. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8603. //
  8604. _iframe.contentWindow.document.body.appendChild(script1);
  8605. _iframe.contentWindow.document.body.appendChild(script2);
  8606. _iframe.contentWindow.document.body.appendChild(script4);
  8607. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8608. })
  8609. if (onloadListener) {
  8610. _iframe.contentDocument.location.reload()
  8611. } else {
  8612. _iframe.contentDocument.location.reload()
  8613. }
  8614. } else if (str == 'whiteboard') {
  8615. _iframe = _formdiv.querySelector('iframe')
  8616. let onloadListener = _iframe.onload = () => {
  8617. _iframe.contentWindow.document.body.appendChild(script1);
  8618. _iframe.contentWindow.document.body.appendChild(script2);
  8619. _iframe.contentWindow.document.body.appendChild(script4);
  8620. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8621. };
  8622. // if (onloadListener) {
  8623. // try {
  8624. // _iframe.src += "?cocorobo="+new Date().getTime()
  8625. // _iframe.contentWindow.document.location.reload()
  8626. // } catch (error) {
  8627. // }
  8628. // } else {
  8629. // _iframe.contentDocument.location.reload()
  8630. // }
  8631. } else {
  8632. _iframe.onload = () => {
  8633. _iframe.contentWindow.document.body.appendChild(script1);
  8634. _iframe.contentWindow.document.body.appendChild(script2);
  8635. // _iframe.contentWindow.document.body.appendChild(script3);
  8636. _iframe.contentWindow.document.body.appendChild(script4);
  8637. };
  8638. }
  8639. _jie.onclick = async () => {
  8640. let text = ''
  8641. if (aTool == 1) {
  8642. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8643. } else if (aTool == 6) {
  8644. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8645. } else if (aTool == 3) {
  8646. text = await U.MD.D.I.getEditorContent(_iframe);
  8647. }
  8648. _loading.style.display = 'flex'
  8649. console.log(_loading);
  8650. var _ajs = _iframe.contentWindow.document.createElement("script");
  8651. _ajs.type = "text/javascript";
  8652. _ajs.innerHTML =
  8653. // 'console.log(' + _loading + ');\n' +
  8654. 'var _js = document.createElement("script");\n' +
  8655. '_js.type="text/javascript";\n' +
  8656. '_js.charset="UTF-8";\n' +
  8657. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8658. "_js.onload = function(){\n" +
  8659. ' var a = document.getElementsByTagName("img")\n' +
  8660. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8661. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8662. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8663. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8664. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8665. "beforeUpload_shishi(file," +
  8666. "'" +
  8667. _userid +
  8668. "'" +
  8669. ", " +
  8670. "'" +
  8671. _cid +
  8672. "'" +
  8673. ", " +
  8674. "'" +
  8675. _stage +
  8676. "'" +
  8677. ", " +
  8678. "'" +
  8679. _task +
  8680. "'" +
  8681. ", " +
  8682. "'" +
  8683. _tool +
  8684. "'" +
  8685. ", " +
  8686. "'" +
  8687. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8688. "'" +
  8689. ", " +
  8690. "'" +
  8691. aTool +
  8692. "'" +
  8693. ", " +
  8694. "`" +
  8695. text +
  8696. "`" +
  8697. ")\n" +
  8698. " });\n" +
  8699. "}\n" +
  8700. "document.head.appendChild(_js);\n";
  8701. _iframe.contentWindow.document.head.appendChild(_ajs);
  8702. }
  8703. }
  8704. //U.MD.D.I.openClick(str);
  8705. //如果有任务栏信息
  8706. // if (_taskbar) {
  8707. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8708. // }
  8709. }
  8710. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8711. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8712. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8713. _userinfo = US.userInfo, //登录用户信息
  8714. _userid = US.userInfo.userid //登录用户id
  8715. let _iframe;
  8716. let _cid = cid,
  8717. _stage = stage,
  8718. _task = task,
  8719. _tool = tool;
  8720. var _jie = $$("div", {
  8721. "style": {
  8722. "position": "absolute",
  8723. "bottom": "50px",
  8724. "right": "50px",
  8725. "zIndex": "9999",
  8726. "backgroundColor": "#2268bc",
  8727. "color": "#fff",
  8728. "padding": "12px 20px",
  8729. "cursor": "pointer",
  8730. "borderRadius": "4px",
  8731. },
  8732. "innerHTML": "提交作业"
  8733. })
  8734. let aTool = ''
  8735. let _loading = document.createElement('div')
  8736. _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;"
  8737. // _loading.id = "";
  8738. let _lchild = document.createElement('div')
  8739. let _limg = document.createElement('img')
  8740. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8741. _limg.style = "width: 26px;margin-right: 10px;"
  8742. _lchild.appendChild(_limg)
  8743. let _lspan = document.createElement('span')
  8744. _lspan.innerHTML = "上传中..."
  8745. _lchild.appendChild(_lspan)
  8746. _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%);"
  8747. _loading.appendChild(_lchild)
  8748. let _box = $$('div', {
  8749. "style": {
  8750. "position": "relative",
  8751. "width": "100%",
  8752. "height": "100%",
  8753. },
  8754. })
  8755. _box.appendChild(_loading)
  8756. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8757. switch (str) {
  8758. case "whiteboard":
  8759. aTool = 1;
  8760. _iframe = $$("iframe", {
  8761. "frameborder": "no",
  8762. "border": "0",
  8763. "scrolling ": "no",
  8764. "style": {
  8765. "cssText": "border:0;width:100%;height:100%"
  8766. },
  8767. "src": "https://beta.iwb.cocorobo.cn/"
  8768. })
  8769. _box.appendChild(_iframe);
  8770. _box.appendChild(_jie);
  8771. _formdiv = new U.UF.UI.form(
  8772. "电子白板",
  8773. _box, {
  8774. "id": "whiteboard" + cid + stage + task + tool,
  8775. "style": {
  8776. "width": "90%",
  8777. "height": "90%",
  8778. "overflow": 'hidden'
  8779. },
  8780. "onresize": function () { }
  8781. }, {
  8782. closecallback: function () { }
  8783. }, {
  8784. "style": {
  8785. "height": "36px"
  8786. }
  8787. }).form; //创建窗体
  8788. _taskbar = {
  8789. "id": str + _formdiv.id,
  8790. "style": {
  8791. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8792. },
  8793. "name": "电子白板",
  8794. "forms": _formdiv,
  8795. "click": function () {
  8796. U.MD.D.I.openApplication(str, obj, info);
  8797. }
  8798. }
  8799. break;
  8800. case "mind":
  8801. aTool = 3;
  8802. _iframe = $$("iframe", {
  8803. "frameborder": "no",
  8804. "border": "0",
  8805. "scrolling ": "no",
  8806. "style": {
  8807. "cssText": "border:0;width:100%;height:100%"
  8808. },
  8809. "src": "/kityminder-editor/dist/index.html"
  8810. })
  8811. _box.appendChild(_iframe);
  8812. _box.appendChild(_jie);
  8813. _formdiv = new U.UF.UI.form(
  8814. "思维导图",
  8815. _box, { //"/jsmind/example/demo.html"
  8816. "id": "mind" + cid + stage + task + tool,
  8817. "style": {
  8818. "width": "90%",
  8819. "height": "90%",
  8820. "overflow": 'hidden'
  8821. },
  8822. "onresize": function () { }
  8823. }, {
  8824. closecallback: function () { }
  8825. }, {
  8826. "style": {
  8827. "height": "36px"
  8828. }
  8829. }).form; //创建窗体
  8830. _taskbar = {
  8831. "id": str + _formdiv.id,
  8832. "style": {
  8833. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8834. },
  8835. "name": "思维导图",
  8836. "forms": _formdiv,
  8837. "click": function () {
  8838. U.MD.D.I.openApplication(str, obj, info);
  8839. }
  8840. }
  8841. break;
  8842. case "MindMap":
  8843. aTool = 3;
  8844. _iframe = $$("iframe", {
  8845. "frameborder": "no",
  8846. "border": "0",
  8847. "scrolling ": "no",
  8848. "style": {
  8849. "cssText": "border:0;width:100%;height:100%"
  8850. },
  8851. "src": "//cloud.cocorobo.cn/mind/"
  8852. })
  8853. _box.appendChild(_iframe);
  8854. _box.appendChild(_jie);
  8855. _formdiv = new U.UF.UI.form(
  8856. "思维导图",
  8857. _box, { //"/jsmind/example/demo.html"
  8858. "id": "mind" + cid + stage + task + tool,
  8859. "style": {
  8860. "width": "90%",
  8861. "height": "90%",
  8862. "overflow": 'hidden'
  8863. },
  8864. "onresize": function () { }
  8865. }, {
  8866. closecallback: function () { }
  8867. }, {
  8868. "style": {
  8869. "height": "36px"
  8870. }
  8871. }).form; //创建窗体
  8872. _taskbar = {
  8873. "id": str + _formdiv.id,
  8874. "style": {
  8875. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8876. },
  8877. "name": "思维导图",
  8878. "forms": _formdiv,
  8879. "click": function () {
  8880. U.MD.D.I.openApplication(str, obj, info);
  8881. }
  8882. }
  8883. break;
  8884. case "doc":
  8885. aTool = 6;
  8886. _iframe = $$("iframe", {
  8887. "frameborder": "no",
  8888. "border": "0",
  8889. "scrolling ": "no",
  8890. "style": {
  8891. "cssText": "border:0;width:100%;height:100%"
  8892. },
  8893. "src": "/Office/Word/WordEditArea.htm"
  8894. })
  8895. _box.appendChild(_iframe);
  8896. _box.appendChild(_jie);
  8897. _formdiv = new U.UF.UI.form(
  8898. "协同文档",
  8899. _box, {
  8900. "id": "doc" + cid + stage + task + tool,
  8901. "style": {
  8902. "width": "90%",
  8903. "height": "90%",
  8904. "overflow": 'hidden'
  8905. },
  8906. "onresize": function () { }
  8907. }, {
  8908. closecallback: function () { }
  8909. }, {
  8910. "style": {
  8911. "height": "36px"
  8912. }
  8913. }).form; //创建窗体
  8914. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8915. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8916. })
  8917. _taskbar = {
  8918. "id": str + _formdiv.id,
  8919. "style": {
  8920. "backgroundImage": "url(/img/icon/doc.png)"
  8921. },
  8922. "name": "协同文档",
  8923. "forms": _formdiv,
  8924. "click": function () {
  8925. U.MD.D.I.openApplication(str, obj, info);
  8926. }
  8927. }
  8928. break;
  8929. case "mindNetwork": //好友打开
  8930. aTool = 7;
  8931. _iframe = $$("iframe", {
  8932. "webkitallowfullscreen": "",
  8933. "mozallowfullscreen": "",
  8934. "allowfullscreen": "",
  8935. "frameborder": "no",
  8936. "border": "0",
  8937. "scrolling ": "no",
  8938. "style": {
  8939. "cssText": "border:0; width:100%; height:100%;"
  8940. },
  8941. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8942. })
  8943. _box.appendChild(_iframe);
  8944. _box.appendChild(_jie);
  8945. _formdiv = new U.UF.UI.form(
  8946. "思维网格",
  8947. _box, {
  8948. "id": "mindNetwork" + cid + stage + task + tool,
  8949. "style": {
  8950. "width": "90%",
  8951. "height": "90%",
  8952. "overflow": 'hidden'
  8953. },
  8954. "onresize": function () { }
  8955. }, {
  8956. closecallback: function () { }
  8957. }, {
  8958. "style": {
  8959. "height": "36px"
  8960. }
  8961. }).form; //创建窗体
  8962. _taskbar = {
  8963. "id": str + _formdiv.id,
  8964. "style": {
  8965. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8966. },
  8967. "name": "思维网格",
  8968. "forms": _formdiv,
  8969. "click": function () {
  8970. U.MD.D.I.openApplication(str, obj, info);
  8971. }
  8972. }
  8973. break;
  8974. case "courseDesign":
  8975. _iframe = $$("iframe", {
  8976. "webkitallowfullscreen": "",
  8977. "mozallowfullscreen": "",
  8978. "allowfullscreen": "",
  8979. "frameborder": "no",
  8980. "border": "0",
  8981. "scrolling ": "no",
  8982. "style": {
  8983. "cssText": "border:0; width:100%; height:100%;"
  8984. },
  8985. "src": "/course-design-vue"
  8986. })
  8987. _box.appendChild(_iframe);
  8988. _box.appendChild(_jie);
  8989. _formdiv = new U.UF.UI.form(
  8990. "项目设计",
  8991. _box, {
  8992. "id": "courseDesign" + cid + stage + task + tool,
  8993. "style": {
  8994. "width": "90%",
  8995. "height": "90%",
  8996. "overflow": 'hidden'
  8997. },
  8998. "onresize": function () { }
  8999. }, {
  9000. closecallback: function () { }
  9001. }, {
  9002. "style": {
  9003. "height": "36px"
  9004. }
  9005. }).form; //创建窗体
  9006. _taskbar = {
  9007. "id": str + _formdiv.id,
  9008. "style": {
  9009. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9010. },
  9011. "name": "项目设计",
  9012. "forms": _formdiv,
  9013. "click": function () {
  9014. U.MD.D.I.openApplication(str, obj, info);
  9015. }
  9016. }
  9017. break;
  9018. }
  9019. const script1 = document.createElement("script");
  9020. script1.type = "text/javascript";
  9021. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9022. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9023. const script2 = document.createElement("script");
  9024. script2.type = "text/javascript";
  9025. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9026. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9027. const script3 = document.createElement("script");
  9028. script3.type = "text/javascript";
  9029. script3.charset = "UTF-8";
  9030. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9031. const script4 = document.createElement("script");
  9032. script4.type = "text/javascript";
  9033. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9034. script4.src = window.origin + "/js/Common/jietu2E.js";
  9035. if (_iframe) {
  9036. if (str == 'doc') {
  9037. _iframe = _formdiv.querySelector('iframe')
  9038. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9039. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9040. _iframe.contentWindow.document.body.appendChild(script1);
  9041. _iframe.contentWindow.document.body.appendChild(script2);
  9042. // _iframe.contentWindow.document.body.appendChild(script3);
  9043. _iframe.contentWindow.document.body.appendChild(script4);
  9044. })
  9045. if (onloadListener) {
  9046. _iframe.contentDocument.location.reload()
  9047. } else {
  9048. _iframe.contentDocument.location.reload()
  9049. }
  9050. } else if (str == 'courseDesign') {
  9051. U.UF.DL.iframeLoad(_iframe, function () {
  9052. // _iframe.contentWindow.U.MD.O.W.load();
  9053. // _iframe.contentWindow.document.body.appendChild(script1);
  9054. _iframe.contentWindow.document.body.appendChild(script2);
  9055. _iframe.contentWindow.document.body.appendChild(script4);
  9056. })
  9057. } else if (str == 'mind') {
  9058. _iframe = _formdiv.querySelector('iframe')
  9059. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9060. //
  9061. _iframe.contentWindow.document.body.appendChild(script1);
  9062. _iframe.contentWindow.document.body.appendChild(script2);
  9063. _iframe.contentWindow.document.body.appendChild(script4);
  9064. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9065. })
  9066. if (onloadListener) {
  9067. _iframe.contentDocument.location.reload()
  9068. } else {
  9069. _iframe.contentDocument.location.reload()
  9070. }
  9071. } else if (str == 'whiteboard') {
  9072. _iframe = _formdiv.querySelector('iframe')
  9073. let onloadListener = _iframe.onload = () => {
  9074. _iframe.contentWindow.document.body.appendChild(script1);
  9075. _iframe.contentWindow.document.body.appendChild(script2);
  9076. _iframe.contentWindow.document.body.appendChild(script4);
  9077. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9078. };
  9079. // if (onloadListener) {
  9080. // try {
  9081. // _iframe.src += "?cocorobo="+new Date().getTime()
  9082. // _iframe.contentWindow.document.location.reload()
  9083. // } catch (error) {
  9084. // }
  9085. // } else {
  9086. // _iframe.contentDocument.location.reload()
  9087. // }
  9088. } else {
  9089. _iframe.onload = () => {
  9090. _iframe.contentWindow.document.body.appendChild(script1);
  9091. _iframe.contentWindow.document.body.appendChild(script2);
  9092. // _iframe.contentWindow.document.body.appendChild(script3);
  9093. _iframe.contentWindow.document.body.appendChild(script4);
  9094. };
  9095. }
  9096. _jie.onclick = async () => {
  9097. let text = ''
  9098. if (aTool == 1) {
  9099. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9100. } else if (aTool == 6) {
  9101. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9102. } else if (aTool == 3) {
  9103. text = await U.MD.D.I.getEditorContent(_iframe);
  9104. }
  9105. _loading.style.display = 'flex'
  9106. console.log(_loading);
  9107. var _ajs = _iframe.contentWindow.document.createElement("script");
  9108. _ajs.type = "text/javascript";
  9109. _ajs.innerHTML =
  9110. // 'console.log(' + _loading + ');\n' +
  9111. 'var _js = document.createElement("script");\n' +
  9112. '_js.type="text/javascript";\n' +
  9113. '_js.charset="UTF-8";\n' +
  9114. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9115. "_js.onload = function(){\n" +
  9116. ' var a = document.getElementsByTagName("img")\n' +
  9117. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9118. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9119. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9120. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9121. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9122. "beforeUpload_shishi(file," +
  9123. "'" +
  9124. _userid +
  9125. "'" +
  9126. ", " +
  9127. "'" +
  9128. _cid +
  9129. "'" +
  9130. ", " +
  9131. "'" +
  9132. _stage +
  9133. "'" +
  9134. ", " +
  9135. "'" +
  9136. _task +
  9137. "'" +
  9138. ", " +
  9139. "'" +
  9140. _tool +
  9141. "'" +
  9142. ", " +
  9143. "'" +
  9144. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  9145. "'" +
  9146. ", " +
  9147. "'" +
  9148. aTool +
  9149. "'" +
  9150. ", " +
  9151. "`" +
  9152. text +
  9153. "`" +
  9154. ")\n" +
  9155. " });\n" +
  9156. "}\n" +
  9157. "document.head.appendChild(_js);\n";
  9158. _iframe.contentWindow.document.head.appendChild(_ajs);
  9159. }
  9160. }
  9161. //U.MD.D.I.openClick(str);
  9162. //如果有任务栏信息
  9163. // if (_taskbar) {
  9164. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9165. // }
  9166. }
  9167. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  9168. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9169. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9170. _userid = student.userid, //登录用户id
  9171. _username = student.student //用户名字
  9172. let _iframe;
  9173. let _cid = cid,
  9174. _stage = stage,
  9175. _task = task,
  9176. _tool = tool;
  9177. var _jie = $$("div", {
  9178. "style": {
  9179. "position": "absolute",
  9180. "bottom": "50px",
  9181. "right": "50px",
  9182. "zIndex": "9999",
  9183. "backgroundColor": "#2268bc",
  9184. "color": "#fff",
  9185. "padding": "12px 20px",
  9186. "cursor": "pointer",
  9187. "borderRadius": "4px",
  9188. },
  9189. "innerHTML": "提交作业"
  9190. })
  9191. let aTool = ''
  9192. let _loading = document.createElement('div')
  9193. _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;"
  9194. // _loading.id = "";
  9195. let _lchild = document.createElement('div')
  9196. let _limg = document.createElement('img')
  9197. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9198. _limg.style = "width: 26px;margin-right: 10px;"
  9199. _lchild.appendChild(_limg)
  9200. let _lspan = document.createElement('span')
  9201. _lspan.innerHTML = "上传中..."
  9202. _lchild.appendChild(_lspan)
  9203. _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%);"
  9204. _loading.appendChild(_lchild)
  9205. var _box = $$('div', {
  9206. "style": {
  9207. "position": "relative",
  9208. "width": "100%",
  9209. "height": "100%",
  9210. },
  9211. })
  9212. _box.appendChild(_loading)
  9213. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  9214. switch (str) {
  9215. case "whiteboard":
  9216. aTool = 1;
  9217. _iframe = $$("iframe", {
  9218. "frameborder": "no",
  9219. "border": "0",
  9220. "scrolling ": "no",
  9221. "style": {
  9222. "cssText": "border:0;width:100%;height:100%"
  9223. },
  9224. "src": "https://beta.iwb.cocorobo.cn/"
  9225. })
  9226. _box.appendChild(_iframe);
  9227. _box.appendChild(_jie);
  9228. _formdiv = new U.UF.UI.form(
  9229. "电子白板-" + _username,
  9230. _box, {
  9231. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9232. "style": {
  9233. "width": "90%",
  9234. "height": "90%",
  9235. "overflow": 'hidden'
  9236. },
  9237. "onresize": function () { }
  9238. }, {
  9239. closecallback: function () { }
  9240. }, {
  9241. "style": {
  9242. "height": "36px"
  9243. }
  9244. }).form; //创建窗体
  9245. _taskbar = {
  9246. "id": str + _formdiv.id,
  9247. "style": {
  9248. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9249. },
  9250. "name": "电子白板",
  9251. "forms": _formdiv,
  9252. "click": function () {
  9253. U.MD.D.I.openApplication(str, obj, info);
  9254. }
  9255. }
  9256. break;
  9257. case "mind":
  9258. aTool = 3;
  9259. _iframe = $$("iframe", {
  9260. "frameborder": "no",
  9261. "border": "0",
  9262. "scrolling ": "no",
  9263. "style": {
  9264. "cssText": "border:0;width:100%;height:100%"
  9265. },
  9266. "src": "/kityminder-editor/dist/index.html"
  9267. })
  9268. _box.appendChild(_iframe);
  9269. _box.appendChild(_jie);
  9270. _formdiv = new U.UF.UI.form(
  9271. "思维导图-" + _username,
  9272. _box, { //"/jsmind/example/demo.html"
  9273. "id": "mind" + cid + stage + task + tool + _userid,
  9274. "style": {
  9275. "width": "90%",
  9276. "height": "90%",
  9277. "overflow": 'hidden'
  9278. },
  9279. "onresize": function () { }
  9280. }, {
  9281. closecallback: function () { }
  9282. }, {
  9283. "style": {
  9284. "height": "36px"
  9285. }
  9286. }).form; //创建窗体
  9287. _taskbar = {
  9288. "id": str + _formdiv.id,
  9289. "style": {
  9290. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9291. },
  9292. "name": "思维导图",
  9293. "forms": _formdiv,
  9294. "click": function () {
  9295. U.MD.D.I.openApplication(str, obj, info);
  9296. }
  9297. }
  9298. break;
  9299. case "MindMap":
  9300. aTool = 3;
  9301. _iframe = $$("iframe", {
  9302. "frameborder": "no",
  9303. "border": "0",
  9304. "scrolling ": "no",
  9305. "style": {
  9306. "cssText": "border:0;width:100%;height:100%"
  9307. },
  9308. "src": "//cloud.cocorobo.cn/mind/"
  9309. })
  9310. _box.appendChild(_iframe);
  9311. _box.appendChild(_jie);
  9312. _formdiv = new U.UF.UI.form(
  9313. "思维导图-" + _username,
  9314. _box, { //"/jsmind/example/demo.html"
  9315. "id": "mind" + cid + stage + task + tool + _userid,
  9316. "style": {
  9317. "width": "90%",
  9318. "height": "90%",
  9319. "overflow": 'hidden'
  9320. },
  9321. "onresize": function () { }
  9322. }, {
  9323. closecallback: function () { }
  9324. }, {
  9325. "style": {
  9326. "height": "36px"
  9327. }
  9328. }).form; //创建窗体
  9329. _taskbar = {
  9330. "id": str + _formdiv.id,
  9331. "style": {
  9332. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9333. },
  9334. "name": "思维导图",
  9335. "forms": _formdiv,
  9336. "click": function () {
  9337. U.MD.D.I.openApplication(str, obj, info);
  9338. }
  9339. }
  9340. break;
  9341. case "doc":
  9342. aTool = 6;
  9343. _iframe = $$("iframe", {
  9344. "frameborder": "no",
  9345. "border": "0",
  9346. "scrolling ": "no",
  9347. "style": {
  9348. "cssText": "border:0;width:100%;height:100%"
  9349. },
  9350. "src": "/Office/Word/WordEditArea.htm"
  9351. })
  9352. _box.appendChild(_iframe);
  9353. _box.appendChild(_jie);
  9354. _formdiv = new U.UF.UI.form(
  9355. "协同文档-" + _username,
  9356. _box, {
  9357. "id": "doc" + cid + stage + task + tool + _userid,
  9358. "style": {
  9359. "width": "90%",
  9360. "height": "90%",
  9361. "overflow": 'hidden'
  9362. },
  9363. "onresize": function () { }
  9364. }, {
  9365. closecallback: function () { }
  9366. }, {
  9367. "style": {
  9368. "height": "36px"
  9369. }
  9370. }).form; //创建窗体
  9371. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9372. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9373. })
  9374. _taskbar = {
  9375. "id": str + _formdiv.id,
  9376. "style": {
  9377. "backgroundImage": "url(/img/icon/doc.png)"
  9378. },
  9379. "name": "协同文档",
  9380. "forms": _formdiv,
  9381. "click": function () {
  9382. U.MD.D.I.openApplication(str, obj, info);
  9383. }
  9384. }
  9385. break;
  9386. case "mindNetwork": //好友打开
  9387. aTool = 7;
  9388. _iframe = $$("iframe", {
  9389. "webkitallowfullscreen": "",
  9390. "mozallowfullscreen": "",
  9391. "allowfullscreen": "",
  9392. "frameborder": "no",
  9393. "border": "0",
  9394. "scrolling ": "no",
  9395. "style": {
  9396. "cssText": "border:0; width:100%; height:100%;"
  9397. },
  9398. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9399. })
  9400. _box.appendChild(_iframe);
  9401. _box.appendChild(_jie);
  9402. _formdiv = new U.UF.UI.form(
  9403. "思维网格-" + _username,
  9404. _box, {
  9405. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9406. "style": {
  9407. "width": "90%",
  9408. "height": "90%",
  9409. "overflow": 'hidden'
  9410. },
  9411. "onresize": function () { }
  9412. }, {
  9413. closecallback: function () { }
  9414. }, {
  9415. "style": {
  9416. "height": "36px"
  9417. }
  9418. }).form; //创建窗体
  9419. _taskbar = {
  9420. "id": str + _formdiv.id,
  9421. "style": {
  9422. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9423. },
  9424. "name": "思维网格",
  9425. "forms": _formdiv,
  9426. "click": function () {
  9427. U.MD.D.I.openApplication(str, obj, info);
  9428. }
  9429. }
  9430. break;
  9431. case "courseDesign":
  9432. _iframe = $$("iframe", {
  9433. "webkitallowfullscreen": "",
  9434. "mozallowfullscreen": "",
  9435. "allowfullscreen": "",
  9436. "frameborder": "no",
  9437. "border": "0",
  9438. "scrolling ": "no",
  9439. "style": {
  9440. "cssText": "border:0; width:100%; height:100%;"
  9441. },
  9442. "src": "/course-design-vue"
  9443. })
  9444. _box.appendChild(_iframe);
  9445. _box.appendChild(_jie);
  9446. _formdiv = new U.UF.UI.form(
  9447. "项目设计-" + _username,
  9448. _box, {
  9449. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9450. "style": {
  9451. "width": "90%",
  9452. "height": "90%",
  9453. "overflow": 'hidden'
  9454. },
  9455. "onresize": function () { }
  9456. }, {
  9457. closecallback: function () { }
  9458. }, {
  9459. "style": {
  9460. "height": "36px"
  9461. }
  9462. }).form; //创建窗体
  9463. _taskbar = {
  9464. "id": str + _formdiv.id,
  9465. "style": {
  9466. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9467. },
  9468. "name": "项目设计",
  9469. "forms": _formdiv,
  9470. "click": function () {
  9471. U.MD.D.I.openApplication(str, obj, info);
  9472. }
  9473. }
  9474. break;
  9475. }
  9476. const script1 = document.createElement("script");
  9477. script1.type = "text/javascript";
  9478. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9479. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9480. const script2 = document.createElement("script");
  9481. script2.type = "text/javascript";
  9482. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9483. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9484. const script3 = document.createElement("script");
  9485. script3.type = "text/javascript";
  9486. script3.charset = "UTF-8";
  9487. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9488. const script4 = document.createElement("script");
  9489. script4.type = "text/javascript";
  9490. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9491. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9492. if (_iframe) {
  9493. if (str == 'doc') {
  9494. _iframe = _formdiv.querySelector('iframe')
  9495. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9496. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9497. _iframe.contentWindow.document.body.appendChild(script1);
  9498. _iframe.contentWindow.document.body.appendChild(script2);
  9499. // _iframe.contentWindow.document.body.appendChild(script3);
  9500. _iframe.contentWindow.document.body.appendChild(script4);
  9501. })
  9502. if (onloadListener) {
  9503. _iframe.contentDocument.location.reload()
  9504. } else {
  9505. _iframe.contentDocument.location.reload()
  9506. }
  9507. } else if (str == 'courseDesign') {
  9508. U.UF.DL.iframeLoad(_iframe, function () {
  9509. // _iframe.contentWindow.U.MD.O.W.load();
  9510. // _iframe.contentWindow.document.body.appendChild(script1);
  9511. _iframe.contentWindow.document.body.appendChild(script2);
  9512. _iframe.contentWindow.document.body.appendChild(script4);
  9513. })
  9514. } else if (str == 'mind') {
  9515. _iframe = _formdiv.querySelector('iframe')
  9516. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9517. //
  9518. _iframe.contentWindow.document.body.appendChild(script1);
  9519. _iframe.contentWindow.document.body.appendChild(script2);
  9520. _iframe.contentWindow.document.body.appendChild(script4);
  9521. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9522. })
  9523. if (onloadListener) {
  9524. _iframe.contentDocument.location.reload()
  9525. } else {
  9526. _iframe.contentDocument.location.reload()
  9527. }
  9528. } else if (str == 'whiteboard') {
  9529. _iframe = _formdiv.querySelector('iframe')
  9530. let onloadListener = _iframe.onload = () => {
  9531. _iframe.contentWindow.document.body.appendChild(script1);
  9532. _iframe.contentWindow.document.body.appendChild(script2);
  9533. _iframe.contentWindow.document.body.appendChild(script4);
  9534. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9535. };
  9536. // if (onloadListener) {
  9537. // try {
  9538. // _iframe.src += "?cocorobo="+new Date().getTime()
  9539. // _iframe.contentWindow.document.location.reload()
  9540. // } catch (error) {
  9541. // }
  9542. // } else {
  9543. // _iframe.contentDocument.location.reload()
  9544. // }
  9545. } else {
  9546. _iframe.onload = () => {
  9547. _iframe.contentWindow.document.body.appendChild(script1);
  9548. _iframe.contentWindow.document.body.appendChild(script2);
  9549. // _iframe.contentWindow.document.body.appendChild(script3);
  9550. _iframe.contentWindow.document.body.appendChild(script4);
  9551. };
  9552. }
  9553. _jie.onclick = async () => {
  9554. let text = ''
  9555. if (aTool == 1) {
  9556. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9557. } else if (aTool == 6) {
  9558. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9559. } else if (aTool == 3) {
  9560. text = await U.MD.D.I.getEditorContent(_iframe);
  9561. }
  9562. _loading.style.display = 'flex'
  9563. console.log(_loading);
  9564. var _ajs = _iframe.contentWindow.document.createElement("script");
  9565. _ajs.type = "text/javascript";
  9566. _ajs.innerHTML =
  9567. // 'console.log(' + _loading + ');\n' +
  9568. 'var _js = document.createElement("script");\n' +
  9569. '_js.type="text/javascript";\n' +
  9570. '_js.charset="UTF-8";\n' +
  9571. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9572. "_js.onload = function(){\n" +
  9573. ' var a = document.getElementsByTagName("img")\n' +
  9574. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9575. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9576. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9577. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9578. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9579. "beforeUpload_shishi(file," +
  9580. "'" +
  9581. _userid +
  9582. "'" +
  9583. ", " +
  9584. "'" +
  9585. _cid +
  9586. "'" +
  9587. ", " +
  9588. "'" +
  9589. _stage +
  9590. "'" +
  9591. ", " +
  9592. "'" +
  9593. _task +
  9594. "'" +
  9595. ", " +
  9596. "'" +
  9597. _tool +
  9598. "'" +
  9599. ", " +
  9600. "'" +
  9601. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9602. "'" +
  9603. ", " +
  9604. "'" +
  9605. aTool +
  9606. "'" +
  9607. ", " +
  9608. "`" +
  9609. text +
  9610. "`" +
  9611. ")\n" +
  9612. " });\n" +
  9613. "}\n" +
  9614. "document.head.appendChild(_js);\n";
  9615. _iframe.contentWindow.document.head.appendChild(_ajs);
  9616. }
  9617. }
  9618. }
  9619. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9620. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9621. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9622. _userid = student.userid, //登录用户id
  9623. _username = student.student //用户名字
  9624. let _iframe;
  9625. let _cid = cid,
  9626. _stage = stage,
  9627. _task = task,
  9628. _tool = tool;
  9629. var _jie = $$("div", {
  9630. "style": {
  9631. "position": "absolute",
  9632. "bottom": "50px",
  9633. "right": "50px",
  9634. "zIndex": "9999",
  9635. "backgroundColor": "#2268bc",
  9636. "color": "#fff",
  9637. "padding": "12px 20px",
  9638. "cursor": "pointer",
  9639. "borderRadius": "4px",
  9640. },
  9641. "innerHTML": "提交作业"
  9642. })
  9643. let aTool = ''
  9644. let _loading = document.createElement('div')
  9645. _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;"
  9646. // _loading.id = "";
  9647. let _lchild = document.createElement('div')
  9648. let _limg = document.createElement('img')
  9649. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9650. _limg.style = "width: 26px;margin-right: 10px;"
  9651. _lchild.appendChild(_limg)
  9652. let _lspan = document.createElement('span')
  9653. _lspan.innerHTML = "上传中..."
  9654. _lchild.appendChild(_lspan)
  9655. _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%);"
  9656. _loading.appendChild(_lchild)
  9657. var _box = $$('div', {
  9658. "style": {
  9659. "position": "relative",
  9660. "width": "100%",
  9661. "height": "100%",
  9662. },
  9663. })
  9664. _box.appendChild(_loading)
  9665. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9666. switch (str) {
  9667. case "whiteboard":
  9668. aTool = 1;
  9669. _iframe = $$("iframe", {
  9670. "frameborder": "no",
  9671. "border": "0",
  9672. "scrolling ": "no",
  9673. "style": {
  9674. "cssText": "border:0;width:100%;height:100%"
  9675. },
  9676. "src": "https://beta.iwb.cocorobo.cn/"
  9677. })
  9678. _box.appendChild(_iframe);
  9679. _box.appendChild(_jie);
  9680. _formdiv = new U.UF.UI.form(
  9681. "电子白板-" + _username,
  9682. _box, {
  9683. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9684. "style": {
  9685. "width": "90%",
  9686. "height": "90%",
  9687. "overflow": 'hidden'
  9688. },
  9689. "onresize": function () { }
  9690. }, {
  9691. closecallback: function () { }
  9692. }, {
  9693. "style": {
  9694. "height": "36px"
  9695. }
  9696. }).form; //创建窗体
  9697. _taskbar = {
  9698. "id": str + _formdiv.id,
  9699. "style": {
  9700. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9701. },
  9702. "name": "电子白板",
  9703. "forms": _formdiv,
  9704. "click": function () {
  9705. U.MD.D.I.openApplication(str, obj, info);
  9706. }
  9707. }
  9708. break;
  9709. case "mind":
  9710. aTool = 3;
  9711. _iframe = $$("iframe", {
  9712. "frameborder": "no",
  9713. "border": "0",
  9714. "scrolling ": "no",
  9715. "style": {
  9716. "cssText": "border:0;width:100%;height:100%"
  9717. },
  9718. "src": "/kityminder-editor/dist/index.html"
  9719. })
  9720. _box.appendChild(_iframe);
  9721. _box.appendChild(_jie);
  9722. _formdiv = new U.UF.UI.form(
  9723. "思维导图-" + _username,
  9724. _box, { //"/jsmind/example/demo.html"
  9725. "id": "mind" + cid + stage + task + tool + _userid,
  9726. "style": {
  9727. "width": "90%",
  9728. "height": "90%",
  9729. "overflow": 'hidden'
  9730. },
  9731. "onresize": function () { }
  9732. }, {
  9733. closecallback: function () { }
  9734. }, {
  9735. "style": {
  9736. "height": "36px"
  9737. }
  9738. }).form; //创建窗体
  9739. _taskbar = {
  9740. "id": str + _formdiv.id,
  9741. "style": {
  9742. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9743. },
  9744. "name": "思维导图",
  9745. "forms": _formdiv,
  9746. "click": function () {
  9747. U.MD.D.I.openApplication(str, obj, info);
  9748. }
  9749. }
  9750. break;
  9751. case "MindMap":
  9752. aTool = 3;
  9753. _iframe = $$("iframe", {
  9754. "frameborder": "no",
  9755. "border": "0",
  9756. "scrolling ": "no",
  9757. "style": {
  9758. "cssText": "border:0;width:100%;height:100%"
  9759. },
  9760. "src": "//cloud.cocorobo.cn/mind/"
  9761. })
  9762. _box.appendChild(_iframe);
  9763. _box.appendChild(_jie);
  9764. _formdiv = new U.UF.UI.form(
  9765. "思维导图-" + _username,
  9766. _box, { //"/jsmind/example/demo.html"
  9767. "id": "mind" + cid + stage + task + tool + _userid,
  9768. "style": {
  9769. "width": "90%",
  9770. "height": "90%",
  9771. "overflow": 'hidden'
  9772. },
  9773. "onresize": function () { }
  9774. }, {
  9775. closecallback: function () { }
  9776. }, {
  9777. "style": {
  9778. "height": "36px"
  9779. }
  9780. }).form; //创建窗体
  9781. _taskbar = {
  9782. "id": str + _formdiv.id,
  9783. "style": {
  9784. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9785. },
  9786. "name": "思维导图",
  9787. "forms": _formdiv,
  9788. "click": function () {
  9789. U.MD.D.I.openApplication(str, obj, info);
  9790. }
  9791. }
  9792. break;
  9793. case "doc":
  9794. aTool = 6;
  9795. _iframe = $$("iframe", {
  9796. "frameborder": "no",
  9797. "border": "0",
  9798. "scrolling ": "no",
  9799. "style": {
  9800. "cssText": "border:0;width:100%;height:100%"
  9801. },
  9802. "src": "/Office/Word/WordEditArea.htm"
  9803. })
  9804. _box.appendChild(_iframe);
  9805. _box.appendChild(_jie);
  9806. _formdiv = new U.UF.UI.form(
  9807. "协同文档-" + _username,
  9808. _box, {
  9809. "id": "doc" + cid + stage + task + tool + _userid,
  9810. "style": {
  9811. "width": "90%",
  9812. "height": "90%",
  9813. "overflow": 'hidden'
  9814. },
  9815. "onresize": function () { }
  9816. }, {
  9817. closecallback: function () { }
  9818. }, {
  9819. "style": {
  9820. "height": "36px"
  9821. }
  9822. }).form; //创建窗体
  9823. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9824. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9825. })
  9826. _taskbar = {
  9827. "id": str + _formdiv.id,
  9828. "style": {
  9829. "backgroundImage": "url(/img/icon/doc.png)"
  9830. },
  9831. "name": "协同文档",
  9832. "forms": _formdiv,
  9833. "click": function () {
  9834. U.MD.D.I.openApplication(str, obj, info);
  9835. }
  9836. }
  9837. break;
  9838. case "mindNetwork": //好友打开
  9839. aTool = 7;
  9840. _iframe = $$("iframe", {
  9841. "webkitallowfullscreen": "",
  9842. "mozallowfullscreen": "",
  9843. "allowfullscreen": "",
  9844. "frameborder": "no",
  9845. "border": "0",
  9846. "scrolling ": "no",
  9847. "style": {
  9848. "cssText": "border:0; width:100%; height:100%;"
  9849. },
  9850. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9851. })
  9852. _box.appendChild(_iframe);
  9853. _box.appendChild(_jie);
  9854. _formdiv = new U.UF.UI.form(
  9855. "思维网格-" + _username,
  9856. _box, {
  9857. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9858. "style": {
  9859. "width": "90%",
  9860. "height": "90%",
  9861. "overflow": 'hidden'
  9862. },
  9863. "onresize": function () { }
  9864. }, {
  9865. closecallback: function () { }
  9866. }, {
  9867. "style": {
  9868. "height": "36px"
  9869. }
  9870. }).form; //创建窗体
  9871. _taskbar = {
  9872. "id": str + _formdiv.id,
  9873. "style": {
  9874. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9875. },
  9876. "name": "思维网格",
  9877. "forms": _formdiv,
  9878. "click": function () {
  9879. U.MD.D.I.openApplication(str, obj, info);
  9880. }
  9881. }
  9882. break;
  9883. case "courseDesign":
  9884. _iframe = $$("iframe", {
  9885. "webkitallowfullscreen": "",
  9886. "mozallowfullscreen": "",
  9887. "allowfullscreen": "",
  9888. "frameborder": "no",
  9889. "border": "0",
  9890. "scrolling ": "no",
  9891. "style": {
  9892. "cssText": "border:0; width:100%; height:100%;"
  9893. },
  9894. "src": "/course-design-vue"
  9895. })
  9896. _box.appendChild(_iframe);
  9897. _box.appendChild(_jie);
  9898. _formdiv = new U.UF.UI.form(
  9899. "项目设计-" + _username,
  9900. _box, {
  9901. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9902. "style": {
  9903. "width": "90%",
  9904. "height": "90%",
  9905. "overflow": 'hidden'
  9906. },
  9907. "onresize": function () { }
  9908. }, {
  9909. closecallback: function () { }
  9910. }, {
  9911. "style": {
  9912. "height": "36px"
  9913. }
  9914. }).form; //创建窗体
  9915. _taskbar = {
  9916. "id": str + _formdiv.id,
  9917. "style": {
  9918. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9919. },
  9920. "name": "项目设计",
  9921. "forms": _formdiv,
  9922. "click": function () {
  9923. U.MD.D.I.openApplication(str, obj, info);
  9924. }
  9925. }
  9926. break;
  9927. }
  9928. const script1 = document.createElement("script");
  9929. script1.type = "text/javascript";
  9930. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9931. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9932. const script2 = document.createElement("script");
  9933. script2.type = "text/javascript";
  9934. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9935. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9936. const script3 = document.createElement("script");
  9937. script3.type = "text/javascript";
  9938. script3.charset = "UTF-8";
  9939. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9940. const script4 = document.createElement("script");
  9941. script4.type = "text/javascript";
  9942. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9943. script4.src = window.origin + "/js/Common/jietu2E.js";
  9944. if (_iframe) {
  9945. if (str == 'doc') {
  9946. _iframe = _formdiv.querySelector('iframe')
  9947. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9948. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9949. _iframe.contentWindow.document.body.appendChild(script1);
  9950. _iframe.contentWindow.document.body.appendChild(script2);
  9951. // _iframe.contentWindow.document.body.appendChild(script3);
  9952. _iframe.contentWindow.document.body.appendChild(script4);
  9953. })
  9954. if (onloadListener) {
  9955. _iframe.contentDocument.location.reload()
  9956. } else {
  9957. _iframe.contentDocument.location.reload()
  9958. }
  9959. } else if (str == 'courseDesign') {
  9960. U.UF.DL.iframeLoad(_iframe, function () {
  9961. // _iframe.contentWindow.U.MD.O.W.load();
  9962. // _iframe.contentWindow.document.body.appendChild(script1);
  9963. _iframe.contentWindow.document.body.appendChild(script2);
  9964. _iframe.contentWindow.document.body.appendChild(script4);
  9965. })
  9966. } else if (str == 'mind') {
  9967. _iframe = _formdiv.querySelector('iframe')
  9968. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9969. //
  9970. _iframe.contentWindow.document.body.appendChild(script1);
  9971. _iframe.contentWindow.document.body.appendChild(script2);
  9972. _iframe.contentWindow.document.body.appendChild(script4);
  9973. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9974. })
  9975. if (onloadListener) {
  9976. _iframe.contentDocument.location.reload()
  9977. } else {
  9978. _iframe.contentDocument.location.reload()
  9979. }
  9980. } else if (str == 'whiteboard') {
  9981. _iframe = _formdiv.querySelector('iframe')
  9982. let onloadListener = _iframe.onload = () => {
  9983. _iframe.contentWindow.document.body.appendChild(script1);
  9984. _iframe.contentWindow.document.body.appendChild(script2);
  9985. _iframe.contentWindow.document.body.appendChild(script4);
  9986. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9987. };
  9988. // if (onloadListener) {
  9989. // try {
  9990. // _iframe.src += "?cocorobo="+new Date().getTime()
  9991. // _iframe.contentWindow.document.location.reload()
  9992. // } catch (error) {
  9993. // }
  9994. // } else {
  9995. // _iframe.contentDocument.location.reload()
  9996. // }
  9997. } else {
  9998. _iframe.onload = () => {
  9999. _iframe.contentWindow.document.body.appendChild(script1);
  10000. _iframe.contentWindow.document.body.appendChild(script2);
  10001. // _iframe.contentWindow.document.body.appendChild(script3);
  10002. _iframe.contentWindow.document.body.appendChild(script4);
  10003. };
  10004. }
  10005. _jie.onclick = async () => {
  10006. let text = ''
  10007. if (aTool == 1) {
  10008. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10009. } else if (aTool == 6) {
  10010. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10011. } else if (aTool == 3) {
  10012. text = await U.MD.D.I.getEditorContent(_iframe);
  10013. }
  10014. _loading.style.display = 'flex'
  10015. console.log(_loading);
  10016. var _ajs = _iframe.contentWindow.document.createElement("script");
  10017. _ajs.type = "text/javascript";
  10018. _ajs.innerHTML =
  10019. // 'console.log(' + _loading + ');\n' +
  10020. 'var _js = document.createElement("script");\n' +
  10021. '_js.type="text/javascript";\n' +
  10022. '_js.charset="UTF-8";\n' +
  10023. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10024. "_js.onload = function(){\n" +
  10025. ' var a = document.getElementsByTagName("img")\n' +
  10026. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10027. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10028. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10029. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10030. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10031. "beforeUpload_shishi(file," +
  10032. "'" +
  10033. _userid +
  10034. "'" +
  10035. ", " +
  10036. "'" +
  10037. _cid +
  10038. "'" +
  10039. ", " +
  10040. "'" +
  10041. _stage +
  10042. "'" +
  10043. ", " +
  10044. "'" +
  10045. _task +
  10046. "'" +
  10047. ", " +
  10048. "'" +
  10049. _tool +
  10050. "'" +
  10051. ", " +
  10052. "'" +
  10053. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  10054. "'" +
  10055. ", " +
  10056. "'" +
  10057. aTool +
  10058. "'" +
  10059. ", " +
  10060. "`" +
  10061. text +
  10062. "`" +
  10063. ")\n" +
  10064. " });\n" +
  10065. "}\n" +
  10066. "document.head.appendChild(_js);\n";
  10067. _iframe.contentWindow.document.head.appendChild(_ajs);
  10068. }
  10069. }
  10070. }
  10071. U.MD.D.I.getEditorContent = function (iframe) {
  10072. return new Promise((resolve, reject) => {
  10073. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  10074. console.log(content);
  10075. resolve(content)
  10076. });
  10077. });
  10078. }
  10079. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  10080. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  10081. // if (res.value[0].length > 0) {
  10082. // // resolve(res.value[0][0].text);
  10083. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  10084. // $(fileInput).val('');
  10085. // });
  10086. // }
  10087. // }, [], { "type": "GET", "withCredentials": true });
  10088. var xmlhttp;
  10089. var Mac, Sn, DeviceId
  10090. if (window.XMLHttpRequest) {
  10091. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10092. xmlhttp = new XMLHttpRequest();
  10093. } else {
  10094. // IE6, IE5 浏览器执行代码
  10095. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10096. }
  10097. xmlhttp.onreadystatechange = function () {
  10098. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10099. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10100. // resolve(res.value[0][0].text);
  10101. if (type == '2') {
  10102. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10103. } else if (type == '3') {
  10104. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10105. }
  10106. } else {
  10107. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  10108. }
  10109. }
  10110. }
  10111. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10112. xmlhttp.send();
  10113. }
  10114. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  10115. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10116. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10117. _userinfo = US.userInfo, //登录用户信息
  10118. _userid = US.userInfo.userid //登录用户id
  10119. let _iframe;
  10120. let _cid = cid,
  10121. _stage = stage,
  10122. _task = task,
  10123. _tool = tool;
  10124. var _jie = $$("div", {
  10125. "style": {
  10126. "position": "absolute",
  10127. "bottom": "50px",
  10128. "right": "50px",
  10129. "zIndex": "9999",
  10130. "backgroundColor": "#2268bc",
  10131. "color": "#fff",
  10132. "padding": "12px 20px",
  10133. "cursor": "pointer",
  10134. "borderRadius": "4px",
  10135. },
  10136. "innerHTML": "确认并提交"
  10137. })
  10138. let aTool = ''
  10139. let _loading = document.createElement('div')
  10140. _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;"
  10141. // _loading.id = "";
  10142. let _lchild = document.createElement('div')
  10143. let _limg = document.createElement('img')
  10144. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10145. _limg.style = "width: 26px;margin-right: 10px;"
  10146. _lchild.appendChild(_limg)
  10147. let _lspan = document.createElement('span')
  10148. _lspan.innerHTML = "上传中..."
  10149. _lchild.appendChild(_lspan)
  10150. _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%);"
  10151. _loading.appendChild(_lchild)
  10152. var _box = $$('div', {
  10153. "style": {
  10154. "position": "relative",
  10155. "width": "100%",
  10156. "height": "100%",
  10157. },
  10158. })
  10159. _box.appendChild(_loading)
  10160. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  10161. switch (str) {
  10162. case "whiteboard":
  10163. aTool = 1;
  10164. _iframe = $$("iframe", {
  10165. "frameborder": "no",
  10166. "border": "0",
  10167. "scrolling ": "no",
  10168. "style": {
  10169. "cssText": "border:0;width:100%;height:100%"
  10170. },
  10171. "src": "https://beta.iwb.cocorobo.cn/"
  10172. })
  10173. _box.appendChild(_iframe);
  10174. _box.appendChild(_jie);
  10175. _formdiv = new U.UF.UI.form(
  10176. "电子白板",
  10177. _box, {
  10178. "id": "whiteboards" + cid + stage + task + tool,
  10179. "style": {
  10180. "width": "90%",
  10181. "height": "90%",
  10182. "overflow": 'hidden'
  10183. },
  10184. "onresize": function () { }
  10185. }, {
  10186. closecallback: function () { }
  10187. }, {
  10188. "style": {
  10189. "height": "36px"
  10190. }
  10191. }).form; //创建窗体
  10192. _taskbar = {
  10193. "id": str + _formdiv.id,
  10194. "style": {
  10195. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10196. },
  10197. "name": "电子白板",
  10198. "forms": _formdiv,
  10199. "click": function () {
  10200. U.MD.D.I.openApplication(str, obj, info);
  10201. }
  10202. }
  10203. break;
  10204. case "mind":
  10205. aTool = 3;
  10206. _iframe = $$("iframe", {
  10207. "frameborder": "no",
  10208. "border": "0",
  10209. "scrolling ": "no",
  10210. "style": {
  10211. "cssText": "border:0;width:100%;height:100%"
  10212. },
  10213. "src": "/kityminder-editor/dist/index.html"
  10214. });
  10215. _box.appendChild(_iframe);
  10216. _box.appendChild(_jie);
  10217. _formdiv = new U.UF.UI.form(
  10218. "思维导图",
  10219. _box, { //"/jsmind/example/demo.html"
  10220. "id": "minds" + cid + stage + task + tool,
  10221. "style": {
  10222. "width": "90%",
  10223. "height": "90%",
  10224. "overflow": 'hidden'
  10225. },
  10226. "onresize": function () { }
  10227. }, {
  10228. closecallback: function () { }
  10229. }, {
  10230. "style": {
  10231. "height": "36px"
  10232. }
  10233. }).form; //创建窗体
  10234. _taskbar = {
  10235. "id": str + _formdiv.id,
  10236. "style": {
  10237. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10238. },
  10239. "name": "思维导图",
  10240. "forms": _formdiv,
  10241. "click": function () {
  10242. U.MD.D.I.openApplication(str, obj, info);
  10243. }
  10244. }
  10245. break;
  10246. case "doc":
  10247. aTool = 6;
  10248. _iframe = $$("iframe", {
  10249. "frameborder": "no",
  10250. "border": "0",
  10251. "scrolling ": "no",
  10252. "style": {
  10253. "cssText": "border:0;width:100%;height:100%"
  10254. },
  10255. "src": "/Office/Word/WordEditArea.htm"
  10256. })
  10257. _box.appendChild(_iframe);
  10258. _box.appendChild(_jie);
  10259. _formdiv = new U.UF.UI.form(
  10260. "协同文档",
  10261. _box, {
  10262. "id": "docs" + cid + stage + task + tool,
  10263. "style": {
  10264. "width": "90%",
  10265. "height": "90%",
  10266. "overflow": 'hidden'
  10267. },
  10268. "onresize": function () { }
  10269. }, {
  10270. closecallback: function () { }
  10271. }, {
  10272. "style": {
  10273. "height": "36px"
  10274. }
  10275. }).form; //创建窗体
  10276. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10277. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10278. })
  10279. _taskbar = {
  10280. "id": str + _formdiv.id,
  10281. "style": {
  10282. "backgroundImage": "url(/img/icon/doc.png)"
  10283. },
  10284. "name": "协同文档",
  10285. "forms": _formdiv,
  10286. "click": function () {
  10287. U.MD.D.I.openApplication(str, obj, info);
  10288. }
  10289. }
  10290. break;
  10291. }
  10292. const script1 = document.createElement("script");
  10293. script1.type = "text/javascript";
  10294. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10295. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10296. const script2 = document.createElement("script");
  10297. script2.type = "text/javascript";
  10298. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10299. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10300. const script3 = document.createElement("script");
  10301. script3.type = "text/javascript";
  10302. script3.charset = "UTF-8";
  10303. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10304. const script4 = document.createElement("script");
  10305. script4.type = "text/javascript";
  10306. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10307. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10308. if (_iframe) {
  10309. if (str == 'doc') {
  10310. _iframe = _formdiv.querySelector('iframe')
  10311. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10312. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10313. _iframe.contentWindow.document.body.appendChild(script1);
  10314. _iframe.contentWindow.document.body.appendChild(script2);
  10315. // _iframe.contentWindow.document.body.appendChild(script3);
  10316. _iframe.contentWindow.document.body.appendChild(script4);
  10317. })
  10318. if (onloadListener) {
  10319. _iframe.contentDocument.location.reload()
  10320. } else {
  10321. _iframe.contentDocument.location.reload()
  10322. }
  10323. } else if (str == 'mind') {
  10324. _iframe = _formdiv.querySelector('iframe')
  10325. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10326. _iframe.contentWindow.document.body.appendChild(script1);
  10327. _iframe.contentWindow.document.body.appendChild(script2);
  10328. _iframe.contentWindow.document.body.appendChild(script4);
  10329. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10330. })
  10331. if (onloadListener) {
  10332. _iframe.contentDocument.location.reload()
  10333. } else {
  10334. _iframe.contentDocument.location.reload()
  10335. }
  10336. } else {
  10337. _iframe.onload = () => {
  10338. _iframe.contentWindow.document.body.appendChild(script1);
  10339. _iframe.contentWindow.document.body.appendChild(script2);
  10340. // _iframe.contentWindow.document.body.appendChild(script3);
  10341. _iframe.contentWindow.document.body.appendChild(script4);
  10342. };
  10343. }
  10344. _jie.onclick = async () => {
  10345. let text = ''
  10346. if (aTool == 6) {
  10347. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10348. } else if (aTool == 3) {
  10349. text = await U.MD.D.I.getEditorContent(_iframe);
  10350. }
  10351. _loading.style.display = 'flex'
  10352. console.log(_loading);
  10353. var _ajs = _iframe.contentWindow.document.createElement("script");
  10354. _ajs.type = "text/javascript";
  10355. _ajs.innerHTML =
  10356. // 'console.log(' + _loading + ');\n' +
  10357. 'var _js = document.createElement("script");\n' +
  10358. '_js.type="text/javascript";\n' +
  10359. '_js.charset="UTF-8";\n' +
  10360. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10361. "_js.onload = function(){\n" +
  10362. ' var a = document.getElementsByTagName("img")\n' +
  10363. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10364. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10365. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10366. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10367. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10368. "beforeUpload_shishi(file," +
  10369. "'" +
  10370. _userid +
  10371. "'" +
  10372. ", " +
  10373. "'" +
  10374. _cid +
  10375. "'" +
  10376. ", " +
  10377. "'" +
  10378. _stage +
  10379. "'" +
  10380. ", " +
  10381. "'" +
  10382. _task +
  10383. "'" +
  10384. ", " +
  10385. "'" +
  10386. _tool +
  10387. "'" +
  10388. ", " +
  10389. "'" +
  10390. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10391. "'" +
  10392. ", " +
  10393. "'" +
  10394. aTool +
  10395. "'" +
  10396. ", " +
  10397. "`" +
  10398. text +
  10399. "`" +
  10400. ")\n" +
  10401. " });\n" +
  10402. "}\n" +
  10403. "document.head.appendChild(_js);\n";
  10404. _iframe.contentWindow.document.head.appendChild(_ajs);
  10405. }
  10406. }
  10407. //U.MD.D.I.openClick(str);
  10408. //如果有任务栏信息
  10409. // if (_taskbar) {
  10410. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10411. // }
  10412. }
  10413. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10414. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10415. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10416. _userinfo = US.userInfo, //登录用户信息
  10417. _userid = US.userInfo.userid //登录用户id
  10418. let _iframe;
  10419. let _cid = cid,
  10420. _stage = stage,
  10421. _task = task,
  10422. _tool = tool;
  10423. var _jie = $$("div", {
  10424. "style": {
  10425. "position": "absolute",
  10426. "bottom": "50px",
  10427. "right": "50px",
  10428. "zIndex": "9999",
  10429. "backgroundColor": "#2268bc",
  10430. "color": "#fff",
  10431. "padding": "12px 20px",
  10432. "cursor": "pointer",
  10433. "borderRadius": "4px",
  10434. },
  10435. "innerHTML": "确认并提交"
  10436. })
  10437. let aTool = ''
  10438. let _loading = document.createElement('div')
  10439. _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;"
  10440. // _loading.id = "";
  10441. let _lchild = document.createElement('div')
  10442. let _limg = document.createElement('img')
  10443. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10444. _limg.style = "width: 26px;margin-right: 10px;"
  10445. _lchild.appendChild(_limg)
  10446. let _lspan = document.createElement('span')
  10447. _lspan.innerHTML = "上传中..."
  10448. _lchild.appendChild(_lspan)
  10449. _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%);"
  10450. _loading.appendChild(_lchild)
  10451. var _box = $$('div', {
  10452. "style": {
  10453. "position": "relative",
  10454. "width": "100%",
  10455. "height": "100%",
  10456. },
  10457. })
  10458. _box.appendChild(_loading)
  10459. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10460. switch (str) {
  10461. case "whiteboard":
  10462. aTool = 1;
  10463. _iframe = $$("iframe", {
  10464. "frameborder": "no",
  10465. "border": "0",
  10466. "scrolling ": "no",
  10467. "style": {
  10468. "cssText": "border:0;width:100%;height:100%"
  10469. },
  10470. "src": "https://beta.iwb.cocorobo.cn/"
  10471. })
  10472. _box.appendChild(_iframe);
  10473. _box.appendChild(_jie);
  10474. _formdiv = new U.UF.UI.form(
  10475. "电子白板",
  10476. _box, {
  10477. "id": "whiteboards" + cid + stage + task + tool,
  10478. "style": {
  10479. "width": "90%",
  10480. "height": "90%",
  10481. "overflow": 'hidden'
  10482. },
  10483. "onresize": function () { }
  10484. }, {
  10485. closecallback: function () { }
  10486. }, {
  10487. "style": {
  10488. "height": "36px"
  10489. }
  10490. }).form; //创建窗体
  10491. _taskbar = {
  10492. "id": str + _formdiv.id,
  10493. "style": {
  10494. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10495. },
  10496. "name": "电子白板",
  10497. "forms": _formdiv,
  10498. "click": function () {
  10499. U.MD.D.I.openApplication(str, obj, info);
  10500. }
  10501. }
  10502. break;
  10503. case "mind":
  10504. aTool = 3;
  10505. _iframe = $$("iframe", {
  10506. "frameborder": "no",
  10507. "border": "0",
  10508. "scrolling ": "no",
  10509. "style": {
  10510. "cssText": "border:0;width:100%;height:100%"
  10511. },
  10512. "src": "/kityminder-editor/dist/index.html"
  10513. });
  10514. _box.appendChild(_iframe);
  10515. _box.appendChild(_jie);
  10516. _formdiv = new U.UF.UI.form(
  10517. "思维导图",
  10518. _box, { //"/jsmind/example/demo.html"
  10519. "id": "minds" + cid + stage + task + tool,
  10520. "style": {
  10521. "width": "90%",
  10522. "height": "90%",
  10523. "overflow": 'hidden'
  10524. },
  10525. "onresize": function () { }
  10526. }, {
  10527. closecallback: function () { }
  10528. }, {
  10529. "style": {
  10530. "height": "36px"
  10531. }
  10532. }).form; //创建窗体
  10533. _taskbar = {
  10534. "id": str + _formdiv.id,
  10535. "style": {
  10536. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10537. },
  10538. "name": "思维导图",
  10539. "forms": _formdiv,
  10540. "click": function () {
  10541. U.MD.D.I.openApplication(str, obj, info);
  10542. }
  10543. }
  10544. break;
  10545. case "doc":
  10546. aTool = 6;
  10547. _iframe = $$("iframe", {
  10548. "frameborder": "no",
  10549. "border": "0",
  10550. "scrolling ": "no",
  10551. "style": {
  10552. "cssText": "border:0;width:100%;height:100%"
  10553. },
  10554. "src": "/Office/Word/WordEditArea.htm"
  10555. })
  10556. _box.appendChild(_iframe);
  10557. _box.appendChild(_jie);
  10558. _formdiv = new U.UF.UI.form(
  10559. "协同文档",
  10560. _box, {
  10561. "id": "docs" + cid + stage + task + tool,
  10562. "style": {
  10563. "width": "90%",
  10564. "height": "90%",
  10565. "overflow": 'hidden'
  10566. },
  10567. "onresize": function () { }
  10568. }, {
  10569. closecallback: function () { }
  10570. }, {
  10571. "style": {
  10572. "height": "36px"
  10573. }
  10574. }).form; //创建窗体
  10575. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10576. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10577. })
  10578. _taskbar = {
  10579. "id": str + _formdiv.id,
  10580. "style": {
  10581. "backgroundImage": "url(/img/icon/doc.png)"
  10582. },
  10583. "name": "协同文档",
  10584. "forms": _formdiv,
  10585. "click": function () {
  10586. U.MD.D.I.openApplication(str, obj, info);
  10587. }
  10588. }
  10589. break;
  10590. }
  10591. const script1 = document.createElement("script");
  10592. script1.type = "text/javascript";
  10593. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10594. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10595. const script2 = document.createElement("script");
  10596. script2.type = "text/javascript";
  10597. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10598. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10599. const script3 = document.createElement("script");
  10600. script3.type = "text/javascript";
  10601. script3.charset = "UTF-8";
  10602. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10603. const script4 = document.createElement("script");
  10604. script4.type = "text/javascript";
  10605. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10606. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10607. if (_iframe) {
  10608. if (str == 'doc') {
  10609. _iframe = _formdiv.querySelector('iframe')
  10610. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10611. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10612. _iframe.contentWindow.document.body.appendChild(script1);
  10613. _iframe.contentWindow.document.body.appendChild(script2);
  10614. // _iframe.contentWindow.document.body.appendChild(script3);
  10615. _iframe.contentWindow.document.body.appendChild(script4);
  10616. })
  10617. if (onloadListener) {
  10618. _iframe.contentDocument.location.reload()
  10619. } else {
  10620. _iframe.contentDocument.location.reload()
  10621. }
  10622. } else if (str == 'mind') {
  10623. _iframe = _formdiv.querySelector('iframe')
  10624. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10625. _iframe.contentWindow.document.body.appendChild(script1);
  10626. _iframe.contentWindow.document.body.appendChild(script2);
  10627. _iframe.contentWindow.document.body.appendChild(script4);
  10628. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10629. })
  10630. if (onloadListener) {
  10631. _iframe.contentDocument.location.reload()
  10632. } else {
  10633. _iframe.contentDocument.location.reload()
  10634. }
  10635. } else {
  10636. _iframe.onload = () => {
  10637. _iframe.contentWindow.document.body.appendChild(script1);
  10638. _iframe.contentWindow.document.body.appendChild(script2);
  10639. // _iframe.contentWindow.document.body.appendChild(script3);
  10640. _iframe.contentWindow.document.body.appendChild(script4);
  10641. };
  10642. }
  10643. _jie.onclick = async () => {
  10644. let text = ''
  10645. if (aTool == 6) {
  10646. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10647. } else if (aTool == 3) {
  10648. text = await U.MD.D.I.getEditorContent(_iframe);
  10649. }
  10650. _loading.style.display = 'flex'
  10651. console.log(_loading);
  10652. var _ajs = _iframe.contentWindow.document.createElement("script");
  10653. _ajs.type = "text/javascript";
  10654. _ajs.innerHTML =
  10655. // 'console.log(' + _loading + ');\n' +
  10656. 'var _js = document.createElement("script");\n' +
  10657. '_js.type="text/javascript";\n' +
  10658. '_js.charset="UTF-8";\n' +
  10659. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10660. "_js.onload = function(){\n" +
  10661. ' var a = document.getElementsByTagName("img")\n' +
  10662. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10663. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10664. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10665. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10666. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10667. "beforeUpload_shishi(file," +
  10668. "'" +
  10669. _userid +
  10670. "'" +
  10671. ", " +
  10672. "'" +
  10673. _cid +
  10674. "'" +
  10675. ", " +
  10676. "'" +
  10677. _stage +
  10678. "'" +
  10679. ", " +
  10680. "'" +
  10681. _task +
  10682. "'" +
  10683. ", " +
  10684. "'" +
  10685. _tool +
  10686. "'" +
  10687. ", " +
  10688. "'" +
  10689. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10690. "'" +
  10691. ", " +
  10692. "'" +
  10693. aTool +
  10694. "'" +
  10695. ", " +
  10696. "`" +
  10697. text +
  10698. "`" +
  10699. ")\n" +
  10700. " });\n" +
  10701. "}\n" +
  10702. "document.head.appendChild(_js);\n";
  10703. _iframe.contentWindow.document.head.appendChild(_ajs);
  10704. }
  10705. }
  10706. //U.MD.D.I.openClick(str);
  10707. //如果有任务栏信息
  10708. // if (_taskbar) {
  10709. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10710. // }
  10711. }
  10712. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10713. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10714. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10715. _userinfo = US.userInfo, //登录用户信息
  10716. _userid = US.userInfo.userid //登录用户id
  10717. let _iframe;
  10718. let _cid = cid,
  10719. _stage = stage,
  10720. _task = task,
  10721. _tool = tool;
  10722. var _jie = $$("div", {
  10723. "style": {
  10724. "position": "absolute",
  10725. "bottom": "50px",
  10726. "right": "50px",
  10727. "zIndex": "9999",
  10728. "backgroundColor": "#2268bc",
  10729. "color": "#fff",
  10730. "padding": "12px 20px",
  10731. "cursor": "pointer",
  10732. "borderRadius": "4px",
  10733. },
  10734. "innerHTML": "上传模板"
  10735. })
  10736. let aTool = ''
  10737. let _loading = document.createElement('div')
  10738. _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;"
  10739. // _loading.id = "";
  10740. let _lchild = document.createElement('div')
  10741. let _limg = document.createElement('img')
  10742. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10743. _limg.style = "width: 26px;margin-right: 10px;"
  10744. _lchild.appendChild(_limg)
  10745. let _lspan = document.createElement('span')
  10746. _lspan.innerHTML = "上传中..."
  10747. _lchild.appendChild(_lspan)
  10748. _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%);"
  10749. _loading.appendChild(_lchild)
  10750. var _box = $$('div', {
  10751. "style": {
  10752. "position": "relative",
  10753. "width": "100%",
  10754. "height": "100%",
  10755. },
  10756. })
  10757. _box.appendChild(_loading)
  10758. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10759. switch (str) {
  10760. case "whiteboard":
  10761. aTool = 1;
  10762. _iframe = $$("iframe", {
  10763. "frameborder": "no",
  10764. "border": "0",
  10765. "scrolling ": "no",
  10766. "style": {
  10767. "cssText": "border:0;width:100%;height:100%"
  10768. },
  10769. "src": "https://beta.iwb.cocorobo.cn/"
  10770. })
  10771. _box.appendChild(_iframe);
  10772. _box.appendChild(_jie);
  10773. _formdiv = new U.UF.UI.form(
  10774. "电子白板",
  10775. _box, {
  10776. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10777. "style": {
  10778. "width": "90%",
  10779. "height": "90%",
  10780. "overflow": 'hidden'
  10781. },
  10782. "onresize": function () { }
  10783. }, {
  10784. closecallback: function () { }
  10785. }, {
  10786. "style": {
  10787. "height": "36px"
  10788. }
  10789. }).form; //创建窗体
  10790. _taskbar = {
  10791. "id": str + _formdiv.id,
  10792. "style": {
  10793. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10794. },
  10795. "name": "电子白板",
  10796. "forms": _formdiv,
  10797. "click": function () {
  10798. U.MD.D.I.openApplication(str, obj, info);
  10799. }
  10800. }
  10801. break;
  10802. case "mind":
  10803. aTool = 3;
  10804. _iframe = $$("iframe", {
  10805. "frameborder": "no",
  10806. "border": "0",
  10807. "scrolling ": "no",
  10808. "style": {
  10809. "cssText": "border:0;width:100%;height:100%"
  10810. },
  10811. "src": "/kityminder-editor/dist/index.html"
  10812. });
  10813. _box.appendChild(_iframe);
  10814. _box.appendChild(_jie);
  10815. _formdiv = new U.UF.UI.form(
  10816. "思维导图",
  10817. _box, { //"/jsmind/example/demo.html"
  10818. "id": "minds_Yu" + cid + stage + task + tool,
  10819. "style": {
  10820. "width": "90%",
  10821. "height": "90%",
  10822. "overflow": 'hidden'
  10823. },
  10824. "onresize": function () { }
  10825. }, {
  10826. closecallback: function () { }
  10827. }, {
  10828. "style": {
  10829. "height": "36px"
  10830. }
  10831. }).form; //创建窗体
  10832. _taskbar = {
  10833. "id": str + _formdiv.id,
  10834. "style": {
  10835. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10836. },
  10837. "name": "思维导图",
  10838. "forms": _formdiv,
  10839. "click": function () {
  10840. U.MD.D.I.openApplication(str, obj, info);
  10841. }
  10842. }
  10843. break;
  10844. case "doc":
  10845. aTool = 6;
  10846. _iframe = $$("iframe", {
  10847. "frameborder": "no",
  10848. "border": "0",
  10849. "scrolling ": "no",
  10850. "style": {
  10851. "cssText": "border:0;width:100%;height:100%"
  10852. },
  10853. "src": "/Office/Word/WordEditArea.htm"
  10854. })
  10855. _box.appendChild(_iframe);
  10856. _box.appendChild(_jie);
  10857. _formdiv = new U.UF.UI.form(
  10858. "协同文档",
  10859. _box, {
  10860. "id": "docs_Yu" + cid + stage + task + tool,
  10861. "style": {
  10862. "width": "90%",
  10863. "height": "90%",
  10864. "overflow": 'hidden'
  10865. },
  10866. "onresize": function () { }
  10867. }, {
  10868. closecallback: function () { }
  10869. }, {
  10870. "style": {
  10871. "height": "36px"
  10872. }
  10873. }).form; //创建窗体
  10874. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10875. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10876. })
  10877. _taskbar = {
  10878. "id": str + _formdiv.id,
  10879. "style": {
  10880. "backgroundImage": "url(/img/icon/doc.png)"
  10881. },
  10882. "name": "协同文档",
  10883. "forms": _formdiv,
  10884. "click": function () {
  10885. U.MD.D.I.openApplication(str, obj, info);
  10886. }
  10887. }
  10888. break;
  10889. case "CocoPi":
  10890. aTool = 57;
  10891. _iframe = $$("iframe", {
  10892. "allowpaymentrequest": "allowpaymentrequest",
  10893. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  10894. "webkitallowfullscreen": "",
  10895. "mozallowfullscreen": "",
  10896. "frameborder": "no",
  10897. "border": "0",
  10898. "scrolling ": "no",
  10899. "style": {
  10900. "cssText": "border:0;width:100%;height:100%"
  10901. },
  10902. "src": "https://pi.cocorobo.cn/"
  10903. })
  10904. _box.appendChild(_iframe);
  10905. _box.appendChild(_jie);
  10906. _formdiv = new U.UF.UI.form(
  10907. "CocoPi",
  10908. _box, {
  10909. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10910. "style": {
  10911. "width": "90%",
  10912. "height": "90%",
  10913. "overflow": 'hidden'
  10914. },
  10915. "onresize": function () { }
  10916. }, {
  10917. closecallback: function () { }
  10918. }, {
  10919. "style": {
  10920. "height": "36px"
  10921. }
  10922. }).form; //创建窗体
  10923. _taskbar = {
  10924. "id": str + _formdiv.id,
  10925. "style": {
  10926. "backgroundImage": "url(/img/icon/cocopi.png)"
  10927. },
  10928. "name": "CocoPi",
  10929. "forms": _formdiv,
  10930. "click": function () {
  10931. U.MD.D.I.openApplication(str, obj, info);
  10932. }
  10933. }
  10934. break;
  10935. case "ppt":
  10936. aTool = 73;
  10937. _iframe = $$("iframe", {
  10938. "frameborder": "no",
  10939. "border": "0",
  10940. "scrolling ": "no",
  10941. "style": {
  10942. "cssText": "border:0;width:100%;height:100%"
  10943. },
  10944. "src": "https://ppt.cocorobo.cn/"
  10945. });
  10946. _box.appendChild(_iframe);
  10947. _box.appendChild(_jie);
  10948. _formdiv = new U.UF.UI.form(
  10949. "PPT",
  10950. _box, { //"/jsmind/example/demo.html"
  10951. "id": "ppts_Yu" + cid + stage + task + tool,
  10952. "style": {
  10953. "width": "90%",
  10954. "height": "90%",
  10955. "overflow": 'hidden'
  10956. },
  10957. "onresize": function () { }
  10958. }, {
  10959. closecallback: function () { }
  10960. }, {
  10961. "style": {
  10962. "height": "36px"
  10963. }
  10964. }).form; //创建窗体
  10965. _taskbar = {
  10966. "id": str + _formdiv.id,
  10967. "style": {
  10968. "backgroundImage": "url(/img/icon/ppt.png)"
  10969. },
  10970. "name": "PPT",
  10971. "forms": _formdiv,
  10972. "click": function () {
  10973. U.MD.D.I.openApplication(str, obj, info);
  10974. }
  10975. }
  10976. break;
  10977. }
  10978. if (_iframe) {
  10979. if (str == 'doc') {
  10980. _iframe = _formdiv.querySelector('iframe')
  10981. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10982. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10983. })
  10984. if (onloadListener) {
  10985. _iframe.contentDocument.location.reload()
  10986. } else {
  10987. _iframe.contentDocument.location.reload()
  10988. }
  10989. } else if (str == 'mind') {
  10990. _iframe = _formdiv.querySelector('iframe')
  10991. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10992. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10993. })
  10994. if (onloadListener) {
  10995. _iframe.contentDocument.location.reload()
  10996. } else {
  10997. _iframe.contentDocument.location.reload()
  10998. }
  10999. } else if (str == 'whiteboard') {
  11000. _iframe = _formdiv.querySelector('iframe')
  11001. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11002. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  11003. })
  11004. // if (onloadListener) {
  11005. // try {
  11006. // _iframe.src += "?cocorobo="+new Date().getTime()
  11007. // _iframe.contentWindow.document.location.reload()
  11008. // } catch (error) {
  11009. // }
  11010. // } else {
  11011. // _iframe.contentDocument.location.reload()
  11012. // }
  11013. } else if (str == 'CocoPi') {
  11014. _iframe = _formdiv.querySelector('iframe')
  11015. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11016. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  11017. })
  11018. if (onloadListener) {
  11019. _iframe.contentDocument.location.reload()
  11020. } else {
  11021. _iframe.contentDocument.location.reload()
  11022. }
  11023. } else if (str == 'ppt') {
  11024. _iframe = _formdiv.querySelector('iframe')
  11025. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11026. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '5', _iframe)
  11027. })
  11028. if (onloadListener) {
  11029. _iframe.contentDocument.location.reload()
  11030. } else {
  11031. _iframe.contentDocument.location.reload()
  11032. }
  11033. } else {
  11034. _iframe.onload = () => { };
  11035. }
  11036. _jie.onclick = async () => {
  11037. let text = ''
  11038. let type = '2'
  11039. if (aTool == 1) {
  11040. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  11041. type = '3'
  11042. } else if (aTool == 6) {
  11043. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  11044. type = '1'
  11045. } else if (aTool == 3) {
  11046. text = await U.MD.D.I.getEditorContent(_iframe);
  11047. type = '2'
  11048. } else if (aTool == 57) {
  11049. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  11050. type = '4'
  11051. } else if (aTool == 73) {
  11052. text = encodeURIComponent(JSON.stringify(_iframe.contentWindow.window.exportJSON()))
  11053. type = '5'
  11054. }
  11055. _loading.style.display = 'flex'
  11056. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  11057. }
  11058. }
  11059. //U.MD.D.I.openClick(str);
  11060. //如果有任务栏信息
  11061. // if (_taskbar) {
  11062. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  11063. // }
  11064. }
  11065. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  11066. var xmlhttp;
  11067. var Mac, Sn, DeviceId
  11068. if (window.XMLHttpRequest) {
  11069. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11070. xmlhttp = new XMLHttpRequest();
  11071. } else {
  11072. // IE6, IE5 浏览器执行代码
  11073. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11074. }
  11075. xmlhttp.onreadystatechange = function () {
  11076. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11077. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  11078. // resolve(res.value[0][0].text);
  11079. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  11080. }
  11081. }
  11082. }
  11083. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  11084. xmlhttp.send();
  11085. }
  11086. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  11087. var xmlhttp;
  11088. var Mac, Sn, DeviceId
  11089. if (window.XMLHttpRequest) {
  11090. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11091. xmlhttp = new XMLHttpRequest();
  11092. } else {
  11093. // IE6, IE5 浏览器执行代码
  11094. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11095. }
  11096. xmlhttp.onreadystatechange = function () {
  11097. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11098. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  11099. // resolve(res.value[0][0].text);
  11100. if (type == '2') {
  11101. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  11102. } else if (type == '3') {
  11103. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  11104. } else if (type == '4') {
  11105. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  11106. } else if (type == '5') {
  11107. iframe.contentWindow.window.readJSON(decodeURIComponent(JSON.parse(xmlhttp.response)[0][0].text), true)
  11108. }
  11109. } else {
  11110. if (type == '2') {
  11111. iframe.contentWindow.editor.minder.importData('json', '')
  11112. } else if (type == '3') {
  11113. iframe.contentWindow.h.app.updateScene({ elements: [] })
  11114. } else if (type == '4') {
  11115. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11116. }
  11117. }
  11118. }
  11119. }
  11120. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  11121. xmlhttp.send();
  11122. }
  11123. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  11124. var xmlhttp;
  11125. var Mac, Sn, DeviceId
  11126. if (window.XMLHttpRequest) {
  11127. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11128. xmlhttp = new XMLHttpRequest();
  11129. } else {
  11130. // IE6, IE5 浏览器执行代码
  11131. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11132. }
  11133. xmlhttp.onreadystatechange = function () {
  11134. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11135. if (xmlhttp.response) {
  11136. // resolve(res.value[0][0].text);
  11137. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  11138. // $(fileInput).val('');
  11139. // });
  11140. span.innerHTML = '上传成功'
  11141. setTimeout(() => {
  11142. loading.style.display = 'none'
  11143. }, 1000);
  11144. }
  11145. }
  11146. }
  11147. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  11148. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  11149. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  11150. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  11151. // 设置请求头,表示请求体的编码格式
  11152. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  11153. // 设置请求体,使用url-encoded格式的数据
  11154. }
  11155. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  11156. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11157. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11158. _userinfo = US.userInfo, //登录用户信息
  11159. _userid = US.userInfo.userid //登录用户id
  11160. let _iframe;
  11161. let _cid = cid,
  11162. _stage = stage,
  11163. _task = task,
  11164. _tool = tool;
  11165. var _jie = $$("div", {
  11166. "style": {
  11167. "position": "absolute",
  11168. "bottom": "50px",
  11169. "right": "50px",
  11170. "zIndex": "9999",
  11171. "backgroundColor": "#2268bc",
  11172. "color": "#fff",
  11173. "padding": "12px 20px",
  11174. "cursor": "pointer",
  11175. "borderRadius": "4px",
  11176. },
  11177. "innerHTML": "提交作业"
  11178. })
  11179. let aTool = ''
  11180. let _loading = document.createElement('div')
  11181. _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;"
  11182. // _loading.id = "";
  11183. let _lchild = document.createElement('div')
  11184. let _limg = document.createElement('img')
  11185. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11186. _limg.style = "width: 26px;margin-right: 10px;"
  11187. _lchild.appendChild(_limg)
  11188. let _lspan = document.createElement('span')
  11189. _lspan.innerHTML = "上传中..."
  11190. _lchild.appendChild(_lspan)
  11191. _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%);"
  11192. _loading.appendChild(_lchild)
  11193. var _box = $$('div', {
  11194. "style": {
  11195. "position": "relative",
  11196. "width": "100%",
  11197. "height": "100%",
  11198. },
  11199. })
  11200. _box.appendChild(_loading)
  11201. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  11202. switch (str) {
  11203. case "CocoPi":
  11204. aTool = 57;
  11205. _iframe = $$("iframe", {
  11206. "allowpaymentrequest": "allowpaymentrequest",
  11207. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  11208. "webkitallowfullscreen": "",
  11209. "mozallowfullscreen": "",
  11210. "frameborder": "no",
  11211. "border": "0",
  11212. "scrolling ": "no",
  11213. "style": {
  11214. "cssText": "border:0;width:100%;height:100%"
  11215. },
  11216. "src": "https://pi.cocorobo.cn/"
  11217. })
  11218. _box.appendChild(_iframe);
  11219. _box.appendChild(_jie);
  11220. _formdiv = new U.UF.UI.form(
  11221. "CocoPi",
  11222. _box, {
  11223. "id": "CocoPi_Upload" + cid + stage + task + tool,
  11224. "style": {
  11225. "width": "90%",
  11226. "height": "90%",
  11227. "overflow": 'hidden'
  11228. },
  11229. "onresize": function () { }
  11230. }, {
  11231. closecallback: function () { }
  11232. }, {
  11233. "style": {
  11234. "height": "36px"
  11235. }
  11236. }).form; //创建窗体
  11237. _taskbar = {
  11238. "id": str + _formdiv.id,
  11239. "style": {
  11240. "backgroundImage": "url(/img/icon/cocopi.png)"
  11241. },
  11242. "name": "CocoPi",
  11243. "forms": _formdiv,
  11244. "click": function () {
  11245. U.MD.D.I.openApplication(str, obj, info);
  11246. }
  11247. }
  11248. break;
  11249. }
  11250. if (_iframe) {
  11251. if (str == 'CocoPi') {
  11252. _iframe = _formdiv.querySelector('iframe')
  11253. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11254. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11255. })
  11256. if (onloadListener) {
  11257. _iframe.contentDocument.location.reload()
  11258. } else {
  11259. _iframe.contentDocument.location.reload()
  11260. }
  11261. }
  11262. _jie.onclick = async () => {
  11263. let text = ''
  11264. if (aTool == 57) {
  11265. text = _iframe.contentWindow.getLoadXmlStr()
  11266. }
  11267. _loading.style.display = 'flex'
  11268. console.log(_loading);
  11269. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11270. _loading.style.display = 'none'
  11271. let _div = document.createElement('div')
  11272. _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;"
  11273. let _inner = document.createElement('div')
  11274. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11275. _inner.innerHTML = "上传成功"
  11276. _div.appendChild(_inner)
  11277. _iframe.contentWindow.window.document.body.appendChild(_div)
  11278. _div.onclick = () => {
  11279. _iframe.contentWindow.window.document.body.removeChild(_div)
  11280. }
  11281. setTimeout(() => {
  11282. _iframe.contentWindow.window.document.body.removeChild(_div)
  11283. }, 1000);
  11284. }, [], { "type": "POST", "withCredentials": true });
  11285. }
  11286. }
  11287. }
  11288. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  11289. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11290. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11291. _userid = student.userid, //登录用户id
  11292. _username = student.student //用户名字
  11293. let _iframe;
  11294. let _cid = cid,
  11295. _stage = stage,
  11296. _task = task,
  11297. _tool = tool;
  11298. var _jie = $$("div", {
  11299. "style": {
  11300. "position": "absolute",
  11301. "bottom": "50px",
  11302. "right": "50px",
  11303. "zIndex": "9999",
  11304. "backgroundColor": "#2268bc",
  11305. "color": "#fff",
  11306. "padding": "12px 20px",
  11307. "cursor": "pointer",
  11308. "borderRadius": "4px",
  11309. },
  11310. "innerHTML": "提交作业"
  11311. })
  11312. let aTool = ''
  11313. let _loading = document.createElement('div')
  11314. _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;"
  11315. // _loading.id = "";
  11316. let _lchild = document.createElement('div')
  11317. let _limg = document.createElement('img')
  11318. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11319. _limg.style = "width: 26px;margin-right: 10px;"
  11320. _lchild.appendChild(_limg)
  11321. let _lspan = document.createElement('span')
  11322. _lspan.innerHTML = "上传中..."
  11323. _lchild.appendChild(_lspan)
  11324. _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%);"
  11325. _loading.appendChild(_lchild)
  11326. var _box = $$('div', {
  11327. "style": {
  11328. "position": "relative",
  11329. "width": "100%",
  11330. "height": "100%",
  11331. },
  11332. })
  11333. _box.appendChild(_loading)
  11334. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11335. switch (str) {
  11336. case "CocoPi":
  11337. aTool = 57;
  11338. _iframe = $$("iframe", {
  11339. "allowpaymentrequest": "allowpaymentrequest",
  11340. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  11341. "webkitallowfullscreen": "",
  11342. "mozallowfullscreen": "",
  11343. "frameborder": "no",
  11344. "border": "0",
  11345. "scrolling ": "no",
  11346. "style": {
  11347. "cssText": "border:0;width:100%;height:100%"
  11348. },
  11349. "src": "https://pi.cocorobo.cn/"
  11350. })
  11351. _box.appendChild(_iframe);
  11352. _box.appendChild(_jie);
  11353. _formdiv = new U.UF.UI.form(
  11354. "CocoPi-" + _username,
  11355. _box, {
  11356. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11357. "style": {
  11358. "width": "90%",
  11359. "height": "90%",
  11360. "overflow": 'hidden'
  11361. },
  11362. "onresize": function () { }
  11363. }, {
  11364. closecallback: function () { }
  11365. }, {
  11366. "style": {
  11367. "height": "36px"
  11368. }
  11369. }).form; //创建窗体
  11370. _taskbar = {
  11371. "id": str + _formdiv.id,
  11372. "style": {
  11373. "backgroundImage": "url(/img/icon/cocopi.png)"
  11374. },
  11375. "name": "CocoPi",
  11376. "forms": _formdiv,
  11377. "click": function () {
  11378. U.MD.D.I.openApplication(str, obj, info);
  11379. }
  11380. }
  11381. break;
  11382. }
  11383. if (_iframe) {
  11384. if (str == 'CocoPi') {
  11385. _iframe = _formdiv.querySelector('iframe')
  11386. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11387. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11388. })
  11389. if (onloadListener) {
  11390. _iframe.contentDocument.location.reload()
  11391. } else {
  11392. _iframe.contentDocument.location.reload()
  11393. }
  11394. }
  11395. _jie.onclick = async () => {
  11396. let text = ''
  11397. if (aTool == 57) {
  11398. text = _iframe.contentWindow.getLoadXmlStr()
  11399. }
  11400. _loading.style.display = 'flex'
  11401. console.log(_loading);
  11402. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11403. _loading.style.display = 'none'
  11404. let _div = document.createElement('div')
  11405. _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;"
  11406. let _inner = document.createElement('div')
  11407. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11408. _inner.innerHTML = "上传成功"
  11409. _div.appendChild(_inner)
  11410. _iframe.contentWindow.window.document.body.appendChild(_div)
  11411. _div.onclick = () => {
  11412. _iframe.contentWindow.window.document.body.removeChild(_div)
  11413. }
  11414. setTimeout(() => {
  11415. _iframe.contentWindow.window.document.body.removeChild(_div)
  11416. }, 1000);
  11417. }, [], { "type": "POST", "withCredentials": true });
  11418. }
  11419. }
  11420. }
  11421. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11422. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11423. if (res.value[0].length > 0) {
  11424. if (atool == 57) {
  11425. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11426. }
  11427. } else {
  11428. if (atool == 57) {
  11429. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11430. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11431. }
  11432. }
  11433. }, [], { "type": "POST", "withCredentials": true });
  11434. }
  11435. U.MD.D.addOp = function (text, type, time) {
  11436. var userInfo = US.userInfo;
  11437. if (Object.keys(userInfo).length !== 0) {
  11438. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid, text, type, time], function (res) {
  11439. }, [], { "type": "POST", "withCredentials": true });
  11440. }
  11441. }