DeskTop.js 636 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  928. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  929. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  930. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  931. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  932. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  933. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  935. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  936. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  937. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  938. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  939. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  940. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  941. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  942. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  943. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  944. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  945. ];
  946. //未来教育基地
  947. U.MD.D.I.szjkyAdminDeskIcon = [
  948. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  949. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  950. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  951. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  952. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  953. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  954. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  955. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  956. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  957. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  958. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  959. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  960. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  961. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  962. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  964. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  965. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  966. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  967. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  968. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  969. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  970. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  971. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  972. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  973. ];
  974. //未来教育基地
  975. U.MD.D.I.szjkyStudentDeskIcon = [
  976. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  977. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  979. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  980. ];
  981. //成华教育局
  982. U.MD.D.I.chjyjTeacherDeskIcon = [
  983. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  990. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  991. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  992. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  993. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  994. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  996. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  997. ];
  998. //成华教育局chjyj
  999. U.MD.D.I.chjyjAdminDeskIcon = [
  1000. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1001. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1002. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1003. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1004. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1005. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. ];
  1016. //成华教育局chjyj
  1017. U.MD.D.I.chjyjStudentDeskIcon = [
  1018. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1019. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1020. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. ];
  1023. //tpc
  1024. U.MD.D.I.tpcStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcTeacherDeskIcon = [
  1032. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1033. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //tpc
  1041. U.MD.D.I.tpcAdminDeskIcon = [
  1042. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1043. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //THU-IOE
  1051. U.MD.D.I.thuioeTeacherDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1055. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1056. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1057. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1058. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1059. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1062. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1063. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1064. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1065. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1066. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1067. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1068. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1069. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1070. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1071. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1072. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1073. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1074. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1075. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1076. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1077. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1078. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1079. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1080. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1081. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1082. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1083. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1084. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1087. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //THU-IOE
  1093. U.MD.D.I.thuioeStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //jccssyl
  1100. U.MD.D.I.jccssylTeacherDeskIcon = [
  1101. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1102. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1104. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1105. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1106. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1107. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1108. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1109. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1110. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1111. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1112. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1114. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1117. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1118. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1119. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1120. ];
  1121. //jccssyl
  1122. U.MD.D.I.jccssylStudentDeskIcon = [
  1123. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1124. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1125. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. ];
  1128. //cale
  1129. U.MD.D.I.caleTeacherDeskIcon = [
  1130. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1131. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1133. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1134. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1135. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1136. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1137. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1138. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1139. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1140. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1141. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1142. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1143. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1144. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1146. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1147. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1148. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1149. ];
  1150. //cale
  1151. U.MD.D.I.caleStudentDeskIcon = [
  1152. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1153. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1154. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1155. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1156. ];
  1157. //lqwmsgzs
  1158. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1159. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1160. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1162. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1163. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1164. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1169. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1170. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1171. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1172. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1173. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1174. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1175. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1176. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1177. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1178. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1179. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1180. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1181. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1182. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1183. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1184. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1185. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1186. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1187. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1188. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1189. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1190. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1191. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1192. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1199. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1200. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1201. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //盐田区幼儿园
  1205. U.MD.D.I.ytyTeacherDeskIcon = [
  1206. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1209. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1210. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1211. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1212. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1215. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1216. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1217. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1218. ];
  1219. //盐田区幼儿园
  1220. U.MD.D.I.ytyStudentDeskIcon = [
  1221. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1222. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1223. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1224. ];
  1225. //scnuai
  1226. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1227. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1228. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1230. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1231. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1232. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1233. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1234. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1235. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1236. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1237. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1238. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1239. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1240. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1242. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1244. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1245. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1246. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1247. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1248. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1249. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1250. ];
  1251. //scnuai
  1252. U.MD.D.I.scnuaiAdminDeskIcon = [
  1253. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1254. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1255. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1256. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1257. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1258. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1259. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1260. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1261. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1262. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1263. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1264. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1265. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1268. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1269. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1270. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1271. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1272. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1273. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1274. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1275. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1276. ];
  1277. //scnuai
  1278. U.MD.D.I.scnuaiStudentDeskIcon = [
  1279. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1280. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1281. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1282. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1283. ];
  1284. //cocobiz
  1285. U.MD.D.I.cocobizteacherDeskIcon = [
  1286. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1287. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1288. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1289. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1290. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1291. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1292. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1293. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1294. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1295. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1296. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1297. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1298. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1299. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1300. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1301. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1302. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1303. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1304. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1305. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1306. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1307. ];
  1308. //cocobiz
  1309. U.MD.D.I.cocobizStudentDeskIcon = [
  1310. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1311. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1312. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1313. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1314. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1315. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1316. ];
  1317. //xxzjky
  1318. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1319. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1320. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1321. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1322. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1323. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1324. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1325. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1326. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1327. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1328. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1329. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1330. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1331. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1332. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1333. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1334. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1335. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1336. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1337. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1338. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1339. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1340. ];
  1341. //xxzjky
  1342. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1343. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1344. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1345. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1346. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1347. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1348. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1349. ];
  1350. //nsfx
  1351. U.MD.D.I.nsfxTeacherDeskIcon = [
  1352. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1353. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1354. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1355. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1356. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1357. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1358. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1359. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1360. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1361. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1362. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1363. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1364. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1365. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1366. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1367. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1368. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1369. ];
  1370. //nsfx
  1371. U.MD.D.I.nsfxStudentDeskIcon = [
  1372. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1374. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1375. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1376. ];
  1377. //stia
  1378. U.MD.D.I.stiaTeacherDeskIcon = [
  1379. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1380. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1381. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1382. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1383. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1385. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1386. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1387. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1388. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1389. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1391. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1392. ];
  1393. //stia
  1394. U.MD.D.I.stiaStudentDeskIcon = [
  1395. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1396. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1397. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1398. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1399. ];
  1400. //szdjg
  1401. U.MD.D.I.szdjgTeacherDeskIcon = [
  1402. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1403. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1404. ];
  1405. //szdjg
  1406. U.MD.D.I.szdjgStudentDeskIcon = [
  1407. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1408. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1409. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1410. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1411. ];
  1412. //010607
  1413. U.MD.D.I.x010607TeacherDeskIcon = [
  1414. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1415. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1416. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1417. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1418. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1419. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1420. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1421. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1422. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1423. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1424. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1425. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1426. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1427. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1428. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1429. ];
  1430. //010607
  1431. U.MD.D.I.x010607StudentDeskIcon = [
  1432. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1433. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1434. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1435. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1436. ];
  1437. //010608
  1438. U.MD.D.I.x010608TeacherDeskIcon = [
  1439. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1440. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1441. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1442. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1443. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1444. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1448. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1449. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1450. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1451. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1452. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1453. ];
  1454. //010608
  1455. U.MD.D.I.x010608StudentDeskIcon = [
  1456. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1458. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1459. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1460. ];
  1461. //xhly
  1462. U.MD.D.I.xhlyTeacherDeskIcon = [
  1463. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1464. ];
  1465. //010608
  1466. U.MD.D.I.xhlyStudentDeskIcon = [
  1467. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1468. ];
  1469. //北师大
  1470. U.MD.D.I.BSDNSteacherDeskIcon = [
  1471. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1472. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1473. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1474. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1475. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1476. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1477. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1478. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1479. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1480. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1481. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1482. ];
  1483. //北师大
  1484. U.MD.D.I.BSDNSstudentDeskIcon = [
  1485. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1489. ];
  1490. //CUHK_EDU
  1491. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1492. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1493. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1494. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1495. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1496. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1497. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1498. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1499. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1500. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1501. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1502. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1503. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1504. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1505. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1506. ];
  1507. //CUHK_EDU
  1508. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1509. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1510. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1511. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1513. ];
  1514. //010503
  1515. U.MD.D.I.x010503TeacherDeskIcon = [
  1516. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1517. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1518. ];
  1519. //010503
  1520. U.MD.D.I.x010503StudentDeskIcon = [
  1521. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1522. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1523. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1524. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1525. ];
  1526. //SPROUT Lab
  1527. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1528. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1529. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1530. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1531. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1532. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1533. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1534. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1535. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1536. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1537. ];
  1538. //SPROUT Lab
  1539. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1542. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1543. ];
  1544. //010204
  1545. U.MD.D.I.x010204TeacherDeskIcon = [
  1546. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1547. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. ];
  1549. //010204
  1550. U.MD.D.I.x010204StudentDeskIcon = [
  1551. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1552. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1553. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1554. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1555. ];
  1556. //trail
  1557. U.MD.D.I.trailTeacherDeskIcon = [
  1558. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1559. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1560. ];
  1561. //trail
  1562. U.MD.D.I.trailStudentDeskIcon = [
  1563. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1564. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1565. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1566. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1567. ];
  1568. //010504
  1569. U.MD.D.I.x010504TeacherDeskIcon = [
  1570. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1571. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1572. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1573. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1574. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1575. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1576. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1577. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1578. ];
  1579. //010504
  1580. U.MD.D.I.x010504StudentDeskIcon = [
  1581. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1582. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1583. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1584. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. ];
  1586. //SCNUET
  1587. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1588. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1589. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1590. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1591. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1592. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1593. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1594. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1595. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1596. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1597. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1598. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1599. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1600. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1601. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1602. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1603. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1604. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1606. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1607. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1608. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1609. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1610. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1611. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1612. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1613. ];
  1614. //SCNUET
  1615. U.MD.D.I.SCNUETAdminDeskIcon = [
  1616. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1617. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1618. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1619. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1620. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1621. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1622. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1623. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1624. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1625. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1626. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1627. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1628. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1629. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1630. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1631. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1632. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1633. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1634. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1635. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1636. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1637. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1638. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1639. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1640. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1641. ];
  1642. //SCNUET
  1643. U.MD.D.I.SCNUETStudentDeskIcon = [
  1644. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1645. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1646. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1648. ];
  1649. //#region 桌面初始化a
  1650. /**
  1651. * 初始化桌面的起始函数
  1652. *
  1653. */
  1654. U.MD.D.I.init = function () {
  1655. if ($("#U_MD_D_K")[0]) {
  1656. //初始化桌面图标
  1657. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1658. // var clickUrl = ':12588/requestIp.php';
  1659. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1660. // U.MD.D.I.Ip = data;
  1661. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1662. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1663. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1664. // })
  1665. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1666. // })
  1667. }
  1668. }
  1669. /**
  1670. * 模式切换
  1671. *
  1672. */
  1673. U.MD.D.I.ModeCheck = function (type) {
  1674. if (US.Config.type == type) {
  1675. return
  1676. }
  1677. US.Config.type = type
  1678. $('.U_PBL_Check .active')[0].className = ''
  1679. if (type == 1) {
  1680. $('.U_PBL_Check div')[0].className = 'active'
  1681. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1682. } else {
  1683. $('.U_PBL_Check div')[1].className = 'active'
  1684. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1685. }
  1686. //初始化桌面图标
  1687. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1688. if (type == 2) {
  1689. U.MD.D.I.openApplication("project")
  1690. }
  1691. }
  1692. /**
  1693. * 隐藏任务栏
  1694. *
  1695. * @param {element} 桌面元素
  1696. */
  1697. U.MD.D.I.hiddenTaskbar = function (el) {
  1698. //任务栏位置变小
  1699. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1700. //桌面的位置变大
  1701. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1702. }
  1703. /**
  1704. * 隐藏任务栏
  1705. *
  1706. * @param {element} 桌面元素
  1707. */
  1708. U.MD.D.I.hiddenTaskbarout = function (el) {
  1709. //任务栏位置变小
  1710. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1711. //任务栏位置变化
  1712. U.selectEl(el).css({ "bottom": "-60px" });
  1713. //桌面的位置变大
  1714. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1715. }
  1716. }
  1717. /**
  1718. * 初始化打印桌面图标
  1719. *
  1720. * @param {element} 桌面元素
  1721. */
  1722. U.MD.D.I.initDesktopIcons = function (el, type) {
  1723. var i, //用于循环
  1724. _content, //桌面图标元素
  1725. _iconcontent, //桌面图标元素
  1726. _frag = $$("frag"), //定义一个碎片元素
  1727. _type = US.userInfo.type,
  1728. _org = US.userInfo.org,
  1729. _oid = US.userInfo.organizeid,
  1730. _role = US.userInfo.role,
  1731. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1732. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1733. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1734. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1735. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1736. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1737. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1738. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1739. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1740. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1741. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1742. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1743. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1744. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1745. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1746. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1747. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1748. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1749. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1750. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1751. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1752. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1753. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1754. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1755. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1756. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1757. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1758. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1759. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1760. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1761. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1762. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1763. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1764. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1765. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1766. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1767. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1768. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1769. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1770. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1771. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1772. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1773. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1774. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1775. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1776. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1777. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1778. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1779. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1780. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1781. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1782. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1783. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1784. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1785. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1786. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1787. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1788. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1789. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1790. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1791. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1792. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1793. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1794. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1795. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1796. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1797. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1798. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1799. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1800. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1801. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1802. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1803. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1804. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1805. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1806. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1807. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1808. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1809. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1810. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1811. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1812. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1813. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1814. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1815. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1816. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1817. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1818. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1819. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1820. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1821. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1822. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1823. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1824. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1825. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1826. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1827. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1828. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1829. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1830. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1831. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1832. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1833. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1834. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1835. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5'];
  1836. 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'];
  1837. //清楚桌面图标
  1838. el.innerHTML = "";
  1839. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1840. _teacherDesktopIconInfo.push(
  1841. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1842. { "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)" } },
  1843. )
  1844. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1845. }
  1846. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1847. _teacherDesktopIconInfo.push(
  1848. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1849. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1850. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1851. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1852. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1853. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1854. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1855. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1856. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1857. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1858. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1859. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1860. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1861. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1862. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1863. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1864. )
  1865. }
  1866. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1867. _teacherDesktopIconInfo.push(
  1868. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1869. )
  1870. }
  1871. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1872. // _teacherDesktopIconInfo.push(
  1873. // )
  1874. // }
  1875. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1876. _teacherDesktopIconInfo.push(
  1877. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1878. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1879. )
  1880. }
  1881. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1882. _teacherDesktopIconInfo.push(
  1883. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1884. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1885. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1886. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1887. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1888. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1889. )
  1890. _studentDesktopIconInfo.push(
  1891. )
  1892. }
  1893. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1894. _teacherDesktopIconInfo.push(
  1895. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1896. )
  1897. _studentDesktopIconInfo.push(
  1898. )
  1899. }
  1900. //010606 组织
  1901. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  1902. _teacherDesktopIconInfo.push(
  1903. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1904. )
  1905. _studentDesktopIconInfo.push(
  1906. )
  1907. }
  1908. //麒麟二中 和 民新小学
  1909. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1910. _teacherDesktopIconInfo.push(
  1911. )
  1912. }
  1913. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1914. _teacherDesktopIconInfo.push(
  1915. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1916. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1917. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1918. )
  1919. }
  1920. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  1921. _hkTeacherDeskIconInfo.push(
  1922. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1923. )
  1924. }
  1925. //北师大附中(010601)
  1926. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1927. // _teacherDesktopIconInfo.push(
  1928. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1929. // )
  1930. // _studentDesktopIconInfo.push(
  1931. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1932. // )
  1933. // }
  1934. //樂善堂余近卿中學
  1935. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1936. _teacherDesktopIconInfo.push(
  1937. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1938. )
  1939. }
  1940. // Education Artificial Intelligence
  1941. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1942. _teacherDesktopIconInfo.push(
  1943. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1944. )
  1945. }
  1946. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1947. _teacherDesktopIconInfo.push(
  1948. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1949. )
  1950. }
  1951. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1952. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1953. _teacherDesktopIconInfo.push(
  1954. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1955. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1956. )
  1957. }
  1958. //麒麟二中
  1959. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1960. _studentDesktopIconInfo.push(
  1961. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1962. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1963. )
  1964. }
  1965. //万科双语
  1966. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1967. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1968. if (el.Name == '项目管理') {
  1969. el.Name = 'PBL项目'
  1970. }
  1971. return el
  1972. })
  1973. _studentDesktopIconInfo3.push(
  1974. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1975. )
  1976. }
  1977. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1978. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1979. return el.Name != '魔盒识字' && el.Name != '24点'
  1980. })
  1981. }
  1982. 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) {
  1983. _studentDesktopIconInfo.push(
  1984. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1985. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1986. )
  1987. }
  1988. //循环创建桌面图标
  1989. if (type == 1) {
  1990. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1991. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1992. _content = $$("div", {
  1993. className: "U_MD_D_KO",
  1994. "onmousedown": U.UF.C.closure(function (obj) {
  1995. //防止拖动图标即打开了桌面应用
  1996. U.MD.D.click(this, obj);
  1997. }, [_studentDesktopIconInfo[i]]),
  1998. "onclick": U.UF.C.closure(function (obj) {
  1999. //防止拖动图标即打开了桌面应用
  2000. U.MD.D.click(this, obj);
  2001. }, [_studentDesktopIconInfo[i]])
  2002. }, _frag); //
  2003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2006. }
  2007. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2008. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2009. _content = $$("div", {
  2010. className: "U_MD_D_KO",
  2011. "onmousedown": U.UF.C.closure(function (obj) {
  2012. //防止拖动图标即打开了桌面应用
  2013. U.MD.D.click(this, obj);
  2014. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2015. "onclick": U.UF.C.closure(function (obj) {
  2016. //防止拖动图标即打开了桌面应用
  2017. U.MD.D.click(this, obj);
  2018. }, [_hkZJLSStudentDeskIconInfo[i]])
  2019. }, _frag); //
  2020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2023. } //
  2024. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2025. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2026. _content = $$("div", {
  2027. className: "U_MD_D_KO",
  2028. "onmousedown": U.UF.C.closure(function (obj) {
  2029. //防止拖动图标即打开了桌面应用
  2030. U.MD.D.click(this, obj);
  2031. }, [_ytyStudentDeskIconInfo[i]]),
  2032. "onclick": U.UF.C.closure(function (obj) {
  2033. //防止拖动图标即打开了桌面应用
  2034. U.MD.D.click(this, obj);
  2035. }, [_ytyStudentDeskIconInfo[i]])
  2036. }, _frag); //
  2037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2040. } //
  2041. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2042. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2043. _content = $$("div", {
  2044. className: "U_MD_D_KO",
  2045. "onmousedown": U.UF.C.closure(function (obj) {
  2046. //防止拖动图标即打开了桌面应用
  2047. U.MD.D.click(this, obj);
  2048. }, [_jccssylStudentDeskIconInfo[i]]),
  2049. "onclick": U.UF.C.closure(function (obj) {
  2050. //防止拖动图标即打开了桌面应用
  2051. U.MD.D.click(this, obj);
  2052. }, [_jccssylStudentDeskIconInfo[i]])
  2053. }, _frag); //
  2054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2057. }
  2058. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2059. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2060. _content = $$("div", {
  2061. className: "U_MD_D_KO",
  2062. "onmousedown": U.UF.C.closure(function (obj) {
  2063. //防止拖动图标即打开了桌面应用
  2064. U.MD.D.click(this, obj);
  2065. }, [_scnuaiStudentDeskIconInfo[i]]),
  2066. "onclick": U.UF.C.closure(function (obj) {
  2067. //防止拖动图标即打开了桌面应用
  2068. U.MD.D.click(this, obj);
  2069. }, [_scnuaiStudentDeskIconInfo[i]])
  2070. }, _frag); //
  2071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2074. }
  2075. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2076. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2077. _content = $$("div", {
  2078. className: "U_MD_D_KO",
  2079. "onmousedown": U.UF.C.closure(function (obj) {
  2080. //防止拖动图标即打开了桌面应用
  2081. U.MD.D.click(this, obj);
  2082. }, [_caleStudentDeskIconInfo[i]]),
  2083. "onclick": U.UF.C.closure(function (obj) {
  2084. //防止拖动图标即打开了桌面应用
  2085. U.MD.D.click(this, obj);
  2086. }, [_caleStudentDeskIconInfo[i]])
  2087. }, _frag); //
  2088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2091. }
  2092. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2093. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2094. _content = $$("div", {
  2095. className: "U_MD_D_KO",
  2096. "onmousedown": U.UF.C.closure(function (obj) {
  2097. //防止拖动图标即打开了桌面应用
  2098. U.MD.D.click(this, obj);
  2099. }, [_thuioeStudentDeskIconInfo[i]]),
  2100. "onclick": U.UF.C.closure(function (obj) {
  2101. //防止拖动图标即打开了桌面应用
  2102. U.MD.D.click(this, obj);
  2103. }, [_thuioeStudentDeskIconInfo[i]])
  2104. }, _frag); //
  2105. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2106. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2107. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2108. }
  2109. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2110. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2111. _content = $$("div", {
  2112. className: "U_MD_D_KO",
  2113. "onmousedown": U.UF.C.closure(function (obj) {
  2114. //防止拖动图标即打开了桌面应用
  2115. U.MD.D.click(this, obj);
  2116. }, [_tpcStudentDeskIconInfo[i]]),
  2117. "onclick": U.UF.C.closure(function (obj) {
  2118. //防止拖动图标即打开了桌面应用
  2119. U.MD.D.click(this, obj);
  2120. }, [_tpcStudentDeskIconInfo[i]])
  2121. }, _frag); //
  2122. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2123. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2124. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2125. } //
  2126. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2127. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2128. _content = $$("div", {
  2129. className: "U_MD_D_KO",
  2130. "onmousedown": U.UF.C.closure(function (obj) {
  2131. //防止拖动图标即打开了桌面应用
  2132. U.MD.D.click(this, obj);
  2133. }, [_chjyjStudentDeskIconInfo[i]]),
  2134. "onclick": U.UF.C.closure(function (obj) {
  2135. //防止拖动图标即打开了桌面应用
  2136. U.MD.D.click(this, obj);
  2137. }, [_chjyjStudentDeskIconInfo[i]])
  2138. }, _frag); //
  2139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2142. }
  2143. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2144. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2145. _content = $$("div", {
  2146. className: "U_MD_D_KO",
  2147. "onmousedown": U.UF.C.closure(function (obj) {
  2148. //防止拖动图标即打开了桌面应用
  2149. U.MD.D.click(this, obj);
  2150. }, [_szjkyStudentDeskIconInfo[i]]),
  2151. "onclick": U.UF.C.closure(function (obj) {
  2152. //防止拖动图标即打开了桌面应用
  2153. U.MD.D.click(this, obj);
  2154. }, [_szjkyStudentDeskIconInfo[i]])
  2155. }, _frag); //
  2156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2159. }
  2160. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2161. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2162. _content = $$("div", {
  2163. className: "U_MD_D_KO",
  2164. "onmousedown": U.UF.C.closure(function (obj) {
  2165. //防止拖动图标即打开了桌面应用
  2166. U.MD.D.click(this, obj);
  2167. }, [_SCNUETStudentDeskIconInfo[i]]),
  2168. "onclick": U.UF.C.closure(function (obj) {
  2169. //防止拖动图标即打开了桌面应用
  2170. U.MD.D.click(this, obj);
  2171. }, [_SCNUETStudentDeskIconInfo[i]])
  2172. }, _frag); //
  2173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2176. }
  2177. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2178. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2179. _content = $$("div", {
  2180. className: "U_MD_D_KO",
  2181. "onmousedown": U.UF.C.closure(function (obj) {
  2182. //防止拖动图标即打开了桌面应用
  2183. U.MD.D.click(this, obj);
  2184. }, [_dseiStudentDeskIconInfo[i]]),
  2185. "onclick": U.UF.C.closure(function (obj) {
  2186. //防止拖动图标即打开了桌面应用
  2187. U.MD.D.click(this, obj);
  2188. }, [_dseiStudentDeskIconInfo[i]])
  2189. }, _frag); //
  2190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2193. }
  2194. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2195. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2196. _content = $$("div", {
  2197. className: "U_MD_D_KO",
  2198. "onmousedown": U.UF.C.closure(function (obj) {
  2199. //防止拖动图标即打开了桌面应用
  2200. U.MD.D.click(this, obj);
  2201. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2202. "onclick": U.UF.C.closure(function (obj) {
  2203. //防止拖动图标即打开了桌面应用
  2204. U.MD.D.click(this, obj);
  2205. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2206. }, _frag); //
  2207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2210. }
  2211. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2212. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2213. _content = $$("div", {
  2214. className: "U_MD_D_KO",
  2215. "onmousedown": U.UF.C.closure(function (obj) {
  2216. //防止拖动图标即打开了桌面应用
  2217. U.MD.D.click(this, obj);
  2218. }, [_nsfxStudentDeskIconInfo[i]]),
  2219. "onclick": U.UF.C.closure(function (obj) {
  2220. //防止拖动图标即打开了桌面应用
  2221. U.MD.D.click(this, obj);
  2222. }, [_nsfxStudentDeskIconInfo[i]])
  2223. }, _frag); //
  2224. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2225. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2226. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2227. }
  2228. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2229. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2230. _content = $$("div", {
  2231. className: "U_MD_D_KO",
  2232. "onmousedown": U.UF.C.closure(function (obj) {
  2233. //防止拖动图标即打开了桌面应用
  2234. U.MD.D.click(this, obj);
  2235. }, [_stiaStudentDeskIconInfo[i]]),
  2236. "onclick": U.UF.C.closure(function (obj) {
  2237. //防止拖动图标即打开了桌面应用
  2238. U.MD.D.click(this, obj);
  2239. }, [_stiaStudentDeskIconInfo[i]])
  2240. }, _frag); //
  2241. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2242. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2243. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2244. }
  2245. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2246. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2247. _content = $$("div", {
  2248. className: "U_MD_D_KO",
  2249. "onmousedown": U.UF.C.closure(function (obj) {
  2250. //防止拖动图标即打开了桌面应用
  2251. U.MD.D.click(this, obj);
  2252. }, [_szdjgStudentDeskIconInfo[i]]),
  2253. "onclick": U.UF.C.closure(function (obj) {
  2254. //防止拖动图标即打开了桌面应用
  2255. U.MD.D.click(this, obj);
  2256. }, [_szdjgStudentDeskIconInfo[i]])
  2257. }, _frag); //
  2258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2261. }
  2262. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2263. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2264. _content = $$("div", {
  2265. className: "U_MD_D_KO",
  2266. "onmousedown": U.UF.C.closure(function (obj) {
  2267. //防止拖动图标即打开了桌面应用
  2268. U.MD.D.click(this, obj);
  2269. }, [_x010607StudentDeskIconInfo[i]]),
  2270. "onclick": U.UF.C.closure(function (obj) {
  2271. //防止拖动图标即打开了桌面应用
  2272. U.MD.D.click(this, obj);
  2273. }, [_x010607StudentDeskIconInfo[i]])
  2274. }, _frag); //
  2275. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2276. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2277. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2278. }
  2279. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2280. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2281. _content = $$("div", {
  2282. className: "U_MD_D_KO",
  2283. "onmousedown": U.UF.C.closure(function (obj) {
  2284. //防止拖动图标即打开了桌面应用
  2285. U.MD.D.click(this, obj);
  2286. }, [_xhlyStudentDeskIconInfo[i]]),
  2287. "onclick": U.UF.C.closure(function (obj) {
  2288. //防止拖动图标即打开了桌面应用
  2289. U.MD.D.click(this, obj);
  2290. }, [_xhlyStudentDeskIconInfo[i]])
  2291. }, _frag); //
  2292. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2293. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2294. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2295. }
  2296. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2297. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2298. _content = $$("div", {
  2299. className: "U_MD_D_KO",
  2300. "onmousedown": U.UF.C.closure(function (obj) {
  2301. //防止拖动图标即打开了桌面应用
  2302. U.MD.D.click(this, obj);
  2303. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2304. "onclick": U.UF.C.closure(function (obj) {
  2305. //防止拖动图标即打开了桌面应用
  2306. U.MD.D.click(this, obj);
  2307. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2308. }, _frag); //
  2309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2312. }
  2313. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2314. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2315. _content = $$("div", {
  2316. className: "U_MD_D_KO",
  2317. "onmousedown": U.UF.C.closure(function (obj) {
  2318. //防止拖动图标即打开了桌面应用
  2319. U.MD.D.click(this, obj);
  2320. }, [_x010503StudentDeskIconInfo[i]]),
  2321. "onclick": U.UF.C.closure(function (obj) {
  2322. //防止拖动图标即打开了桌面应用
  2323. U.MD.D.click(this, obj);
  2324. }, [_x010503StudentDeskIconInfo[i]])
  2325. }, _frag); //
  2326. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2327. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2328. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2329. }
  2330. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2331. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2332. _content = $$("div", {
  2333. className: "U_MD_D_KO",
  2334. "onmousedown": U.UF.C.closure(function (obj) {
  2335. //防止拖动图标即打开了桌面应用
  2336. U.MD.D.click(this, obj);
  2337. }, [_x010504StudentDeskIconInfo[i]]),
  2338. "onclick": U.UF.C.closure(function (obj) {
  2339. //防止拖动图标即打开了桌面应用
  2340. U.MD.D.click(this, obj);
  2341. }, [_x010504StudentDeskIconInfo[i]])
  2342. }, _frag); //
  2343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2346. }
  2347. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2348. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2349. _content = $$("div", {
  2350. className: "U_MD_D_KO",
  2351. "onmousedown": U.UF.C.closure(function (obj) {
  2352. //防止拖动图标即打开了桌面应用
  2353. U.MD.D.click(this, obj);
  2354. }, [_x010204StudentDeskIconInfo[i]]),
  2355. "onclick": U.UF.C.closure(function (obj) {
  2356. //防止拖动图标即打开了桌面应用
  2357. U.MD.D.click(this, obj);
  2358. }, [_x010204StudentDeskIconInfo[i]])
  2359. }, _frag); //
  2360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2363. }
  2364. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2365. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2366. _content = $$("div", {
  2367. className: "U_MD_D_KO",
  2368. "onmousedown": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_trailStudentDeskIconInfo[i]]),
  2372. "onclick": U.UF.C.closure(function (obj) {
  2373. //防止拖动图标即打开了桌面应用
  2374. U.MD.D.click(this, obj);
  2375. }, [_trailStudentDeskIconInfo[i]])
  2376. }, _frag); //
  2377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2380. }
  2381. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2382. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2383. _content = $$("div", {
  2384. className: "U_MD_D_KO",
  2385. "onmousedown": U.UF.C.closure(function (obj) {
  2386. //防止拖动图标即打开了桌面应用
  2387. U.MD.D.click(this, obj);
  2388. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2389. "onclick": U.UF.C.closure(function (obj) {
  2390. //防止拖动图标即打开了桌面应用
  2391. U.MD.D.click(this, obj);
  2392. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2393. }, _frag); //
  2394. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2395. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2396. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2397. }
  2398. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2399. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2400. _content = $$("div", {
  2401. className: "U_MD_D_KO",
  2402. "onmousedown": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_x010608StudentDeskIconInfo[i]]),
  2406. "onclick": U.UF.C.closure(function (obj) {
  2407. //防止拖动图标即打开了桌面应用
  2408. U.MD.D.click(this, obj);
  2409. }, [_x010608StudentDeskIconInfo[i]])
  2410. }, _frag); //
  2411. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2412. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2413. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2414. }
  2415. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2416. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2417. _content = $$("div", {
  2418. className: "U_MD_D_KO",
  2419. "onmousedown": U.UF.C.closure(function (obj) {
  2420. //防止拖动图标即打开了桌面应用
  2421. U.MD.D.click(this, obj);
  2422. }, [_siesStudentDeskIconInfo[i]]),
  2423. "onclick": U.UF.C.closure(function (obj) {
  2424. //防止拖动图标即打开了桌面应用
  2425. U.MD.D.click(this, obj);
  2426. }, [_siesStudentDeskIconInfo[i]])
  2427. }, _frag); //
  2428. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2429. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2430. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2431. }
  2432. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2433. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2434. _content = $$("div", {
  2435. className: "U_MD_D_KO",
  2436. "onmousedown": U.UF.C.closure(function (obj) {
  2437. //防止拖动图标即打开了桌面应用
  2438. U.MD.D.click(this, obj);
  2439. }, [_guzmsStudentDeskIconInfo[i]]),
  2440. "onclick": U.UF.C.closure(function (obj) {
  2441. //防止拖动图标即打开了桌面应用
  2442. U.MD.D.click(this, obj);
  2443. }, [_guzmsStudentDeskIconInfo[i]])
  2444. }, _frag); //
  2445. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2446. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2447. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2448. }
  2449. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2450. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2451. _content = $$("div", {
  2452. className: "U_MD_D_KO",
  2453. "onmousedown": U.UF.C.closure(function (obj) {
  2454. //防止拖动图标即打开了桌面应用
  2455. U.MD.D.click(this, obj);
  2456. }, [_hkStudentDeskIconInfo[i]]),
  2457. "onclick": U.UF.C.closure(function (obj) {
  2458. //防止拖动图标即打开了桌面应用
  2459. U.MD.D.click(this, obj);
  2460. }, [_hkStudentDeskIconInfo[i]])
  2461. }, _frag); //
  2462. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2463. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2464. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2465. }
  2466. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2467. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2468. _content = $$("div", {
  2469. className: "U_MD_D_KO",
  2470. "onmousedown": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_hkaceStudentDeskIconInfo[i]]),
  2474. "onclick": U.UF.C.closure(function (obj) {
  2475. //防止拖动图标即打开了桌面应用
  2476. U.MD.D.click(this, obj);
  2477. }, [_hkaceStudentDeskIconInfo[i]])
  2478. }, _frag); //
  2479. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2480. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2481. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2482. }
  2483. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2484. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2485. _content = $$("div", {
  2486. className: "U_MD_D_KO",
  2487. "onmousedown": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2491. "onclick": U.UF.C.closure(function (obj) {
  2492. //防止拖动图标即打开了桌面应用
  2493. U.MD.D.click(this, obj);
  2494. }, [_BSDNSstudentDesktopIconInfo[i]])
  2495. }, _frag); //
  2496. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2497. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2498. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2499. }
  2500. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2501. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2502. _content = $$("div", {
  2503. className: "U_MD_D_KO",
  2504. "onmousedown": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_cocobizStudentDeskIconInfo[i]]),
  2508. "onclick": U.UF.C.closure(function (obj) {
  2509. //防止拖动图标即打开了桌面应用
  2510. U.MD.D.click(this, obj);
  2511. }, [_cocobizStudentDeskIconInfo[i]])
  2512. }, _frag); //
  2513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2516. }
  2517. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2518. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2519. _content = $$("div", {
  2520. className: "U_MD_D_KO",
  2521. "onmousedown": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2525. "onclick": U.UF.C.closure(function (obj) {
  2526. //防止拖动图标即打开了桌面应用
  2527. U.MD.D.click(this, obj);
  2528. }, [_xxzjkyStudentDeskIconInfo[i]])
  2529. }, _frag); //
  2530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2533. }
  2534. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2535. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2536. _content = $$("div", {
  2537. className: "U_MD_D_KO",
  2538. "onmousedown": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_studentDesktopIconInfo[i]]),
  2542. "onclick": U.UF.C.closure(function (obj) {
  2543. //防止拖动图标即打开了桌面应用
  2544. U.MD.D.click(this, obj);
  2545. }, [_studentDesktopIconInfo[i]])
  2546. }, _frag); //
  2547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2550. }
  2551. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2552. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2553. _content = $$("div", {
  2554. className: "U_MD_D_KO",
  2555. "onmousedown": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_tcStudentDeskIconInfo[i]]),
  2559. "onclick": U.UF.C.closure(function (obj) {
  2560. //防止拖动图标即打开了桌面应用
  2561. U.MD.D.click(this, obj);
  2562. }, [_tcStudentDeskIconInfo[i]])
  2563. }, _frag); //
  2564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2567. }
  2568. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2569. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2570. _content = $$("div", {
  2571. className: "U_MD_D_KO",
  2572. "onmousedown": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_szscStudentDeskIconInfo[i]]),
  2576. "onclick": U.UF.C.closure(function (obj) {
  2577. //防止拖动图标即打开了桌面应用
  2578. U.MD.D.click(this, obj);
  2579. }, [_szscStudentDeskIconInfo[i]])
  2580. }, _frag); //
  2581. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2582. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2583. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2584. }
  2585. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2586. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2587. _content = $$("div", {
  2588. className: "U_MD_D_KO",
  2589. "onmousedown": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_studentDesktopIconInfo3[i]]),
  2593. "onclick": U.UF.C.closure(function (obj) {
  2594. //防止拖动图标即打开了桌面应用
  2595. U.MD.D.click(this, obj);
  2596. }, [_studentDesktopIconInfo3[i]])
  2597. }, _frag); //
  2598. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2599. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2600. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2601. }
  2602. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2603. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2604. _content = $$("div", {
  2605. className: "U_MD_D_KO",
  2606. "onmousedown": U.UF.C.closure(function (obj) {
  2607. //防止拖动图标即打开了桌面应用
  2608. U.MD.D.click(this, obj);
  2609. }, [_studentDesktopIconInfo2[i]]),
  2610. "onclick": U.UF.C.closure(function (obj) {
  2611. //防止拖动图标即打开了桌面应用
  2612. U.MD.D.click(this, obj);
  2613. }, [_studentDesktopIconInfo2[i]])
  2614. }, _frag); //
  2615. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2616. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2617. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2618. }
  2619. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2620. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2621. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2622. continue
  2623. }
  2624. _content = $$("div", {
  2625. className: "U_MD_D_KO",
  2626. "onmousedown": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_wanketeacherDesktopIconInfo[i]]),
  2630. "onclick": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_wanketeacherDesktopIconInfo[i]])
  2634. }, _frag); //
  2635. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2636. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2637. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2638. }
  2639. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2640. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2641. _content = $$("div", {
  2642. className: "U_MD_D_KO",
  2643. "onmousedown": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_wankeAdminDesktopIconInfo[i]]),
  2647. "onclick": U.UF.C.closure(function (obj) {
  2648. //防止拖动图标即打开了桌面应用
  2649. U.MD.D.click(this, obj);
  2650. }, [_wankeAdminDesktopIconInfo[i]])
  2651. }, _frag); //
  2652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2655. }
  2656. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2657. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2658. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2659. continue
  2660. }
  2661. _content = $$("div", {
  2662. className: "U_MD_D_KO",
  2663. "onmousedown": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2667. "onclick": U.UF.C.closure(function (obj) {
  2668. //防止拖动图标即打开了桌面应用
  2669. U.MD.D.click(this, obj);
  2670. }, [_scnuaiTeacherDeskIconInfo[i]])
  2671. }, _frag); //
  2672. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2673. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2674. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2675. }
  2676. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2677. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2678. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2679. continue
  2680. }
  2681. _content = $$("div", {
  2682. className: "U_MD_D_KO",
  2683. "onmousedown": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2687. "onclick": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_BSDNSteacherDesktopIconInfo[i]])
  2691. }, _frag); //
  2692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2695. }
  2696. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2697. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2698. _content = $$("div", {
  2699. className: "U_MD_D_KO",
  2700. "onmousedown": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_scnuaiAdminDeskIconInfo[i]]),
  2704. "onclick": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_scnuaiAdminDeskIconInfo[i]])
  2708. }, _frag); //
  2709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2712. }
  2713. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2714. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2715. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2716. continue
  2717. }
  2718. _content = $$("div", {
  2719. className: "U_MD_D_KO",
  2720. "onmousedown": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_jccssylTeacherDeskIconInfo[i]]),
  2724. "onclick": U.UF.C.closure(function (obj) {
  2725. //防止拖动图标即打开了桌面应用
  2726. U.MD.D.click(this, obj);
  2727. }, [_jccssylTeacherDeskIconInfo[i]])
  2728. }, _frag); //
  2729. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2730. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2731. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2732. }
  2733. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2734. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2735. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2736. continue
  2737. }
  2738. _content = $$("div", {
  2739. className: "U_MD_D_KO",
  2740. "onmousedown": U.UF.C.closure(function (obj) {
  2741. //防止拖动图标即打开了桌面应用
  2742. U.MD.D.click(this, obj);
  2743. }, [_caleTeacherDeskIconInfo[i]]),
  2744. "onclick": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_caleTeacherDeskIconInfo[i]])
  2748. }, _frag); //
  2749. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2750. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2751. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2752. }
  2753. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2754. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2755. _content = $$("div", {
  2756. className: "U_MD_D_KO",
  2757. "onmousedown": U.UF.C.closure(function (obj) {
  2758. //防止拖动图标即打开了桌面应用
  2759. U.MD.D.click(this, obj);
  2760. }, [_tpcOrganizerDeskIconInfo[i]]),
  2761. "onclick": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_tpcOrganizerDeskIconInfo[i]])
  2765. }, _frag); //
  2766. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2767. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2768. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2769. }
  2770. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2771. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2772. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2773. continue
  2774. }
  2775. _content = $$("div", {
  2776. className: "U_MD_D_KO",
  2777. "onmousedown": U.UF.C.closure(function (obj) {
  2778. //防止拖动图标即打开了桌面应用
  2779. U.MD.D.click(this, obj);
  2780. }, [_tpcTeacherDeskIconInfo[i]]),
  2781. "onclick": U.UF.C.closure(function (obj) {
  2782. //防止拖动图标即打开了桌面应用
  2783. U.MD.D.click(this, obj);
  2784. }, [_tpcTeacherDeskIconInfo[i]])
  2785. }, _frag); //
  2786. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2787. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2788. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2789. }
  2790. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2791. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2792. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2793. continue
  2794. }
  2795. _content = $$("div", {
  2796. className: "U_MD_D_KO",
  2797. "onmousedown": U.UF.C.closure(function (obj) {
  2798. //防止拖动图标即打开了桌面应用
  2799. U.MD.D.click(this, obj);
  2800. }, [_teacherDesktopIconInfo2[i]]),
  2801. "onclick": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_teacherDesktopIconInfo2[i]])
  2805. }, _frag); //
  2806. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2807. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2808. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2809. }
  2810. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2811. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2812. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2813. continue
  2814. }
  2815. _content = $$("div", {
  2816. className: "U_MD_D_KO",
  2817. "onmousedown": U.UF.C.closure(function (obj) {
  2818. //防止拖动图标即打开了桌面应用
  2819. U.MD.D.click(this, obj);
  2820. }, [_thuioeTeacherDeskIconInfo[i]]),
  2821. "onclick": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_thuioeTeacherDeskIconInfo[i]])
  2825. }, _frag); //
  2826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2829. }
  2830. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2831. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2832. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2833. continue
  2834. }
  2835. _content = $$("div", {
  2836. className: "U_MD_D_KO",
  2837. "onmousedown": U.UF.C.closure(function (obj) {
  2838. //防止拖动图标即打开了桌面应用
  2839. U.MD.D.click(this, obj);
  2840. }, [_lotechTeacherDeskIconInfo[i]]),
  2841. "onclick": U.UF.C.closure(function (obj) {
  2842. //防止拖动图标即打开了桌面应用
  2843. U.MD.D.click(this, obj);
  2844. }, [_lotechTeacherDeskIconInfo[i]])
  2845. }, _frag); //
  2846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2849. }//
  2850. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2851. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2852. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2853. continue
  2854. }
  2855. _content = $$("div", {
  2856. className: "U_MD_D_KO",
  2857. "onmousedown": U.UF.C.closure(function (obj) {
  2858. //防止拖动图标即打开了桌面应用
  2859. U.MD.D.click(this, obj);
  2860. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2861. "onclick": U.UF.C.closure(function (obj) {
  2862. //防止拖动图标即打开了桌面应用
  2863. U.MD.D.click(this, obj);
  2864. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2865. }, _frag); //
  2866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2869. }
  2870. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2871. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2872. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2873. continue
  2874. }
  2875. _content = $$("div", {
  2876. className: "U_MD_D_KO",
  2877. "onmousedown": U.UF.C.closure(function (obj) {
  2878. //防止拖动图标即打开了桌面应用
  2879. U.MD.D.click(this, obj);
  2880. }, [_siesTeacherDeskIconInfo[i]]),
  2881. "onclick": U.UF.C.closure(function (obj) {
  2882. //防止拖动图标即打开了桌面应用
  2883. U.MD.D.click(this, obj);
  2884. }, [_siesTeacherDeskIconInfo[i]])
  2885. }, _frag); //
  2886. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2887. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2888. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2889. }
  2890. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2891. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2892. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2893. continue
  2894. }
  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. }, [_guzmsTeacherDeskIconInfo[i]]),
  2901. "onclick": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_guzmsTeacherDeskIconInfo[i]])
  2905. }, _frag); //
  2906. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2907. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2908. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2909. }
  2910. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2911. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2912. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2913. continue
  2914. }
  2915. _content = $$("div", {
  2916. className: "U_MD_D_KO",
  2917. "onmousedown": U.UF.C.closure(function (obj) {
  2918. //防止拖动图标即打开了桌面应用
  2919. U.MD.D.click(this, obj);
  2920. }, [_longhuaTeacherDeskIconInfo[i]]),
  2921. "onclick": U.UF.C.closure(function (obj) {
  2922. //防止拖动图标即打开了桌面应用
  2923. U.MD.D.click(this, obj);
  2924. }, [_longhuaTeacherDeskIconInfo[i]])
  2925. }, _frag); //
  2926. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2927. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2928. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2929. }
  2930. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2931. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2932. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2933. continue
  2934. }
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_ytyTeacherDeskIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_ytyTeacherDeskIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2951. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2952. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2953. continue
  2954. }
  2955. _content = $$("div", {
  2956. className: "U_MD_D_KO",
  2957. "onmousedown": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2961. "onclick": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_yunhaiTeacherDeskIconInfo[i]])
  2965. }, _frag); //
  2966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2969. } //_hkStudentDeskIconInfo
  2970. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2971. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2972. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2973. continue
  2974. }
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2991. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2992. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2993. continue
  2994. }
  2995. _content = $$("div", {
  2996. className: "U_MD_D_KO",
  2997. "onmousedown": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_hkTeacherDeskIconInfo[i]]),
  3001. "onclick": U.UF.C.closure(function (obj) {
  3002. //防止拖动图标即打开了桌面应用
  3003. U.MD.D.click(this, obj);
  3004. }, [_hkTeacherDeskIconInfo[i]])
  3005. }, _frag); //
  3006. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3007. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3008. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3009. }
  3010. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3011. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3012. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3013. continue
  3014. }
  3015. _content = $$("div", {
  3016. className: "U_MD_D_KO",
  3017. "onmousedown": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_hkaceTeacherDeskIconInfo[i]]),
  3021. "onclick": U.UF.C.closure(function (obj) {
  3022. //防止拖动图标即打开了桌面应用
  3023. U.MD.D.click(this, obj);
  3024. }, [_hkaceTeacherDeskIconInfo[i]])
  3025. }, _frag); //
  3026. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3027. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3028. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3029. }
  3030. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3031. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3032. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3033. continue
  3034. }
  3035. _content = $$("div", {
  3036. className: "U_MD_D_KO",
  3037. "onmousedown": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_cocobizTeacherDeskIconInfo[i]]),
  3041. "onclick": U.UF.C.closure(function (obj) {
  3042. //防止拖动图标即打开了桌面应用
  3043. U.MD.D.click(this, obj);
  3044. }, [_cocobizTeacherDeskIconInfo[i]])
  3045. }, _frag); //
  3046. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3047. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3048. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3049. }
  3050. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3051. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3052. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3053. continue
  3054. }
  3055. _content = $$("div", {
  3056. className: "U_MD_D_KO",
  3057. "onmousedown": U.UF.C.closure(function (obj) {
  3058. //防止拖动图标即打开了桌面应用
  3059. U.MD.D.click(this, obj);
  3060. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3061. "onclick": U.UF.C.closure(function (obj) {
  3062. //防止拖动图标即打开了桌面应用
  3063. U.MD.D.click(this, obj);
  3064. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3065. }, _frag); //
  3066. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3067. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3068. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3069. }
  3070. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3071. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3072. _content = $$("div", {
  3073. className: "U_MD_D_KO",
  3074. "onmousedown": U.UF.C.closure(function (obj) {
  3075. //防止拖动图标即打开了桌面应用
  3076. U.MD.D.click(this, obj);
  3077. }, [_gdjgAdminDeskIconInfo[i]]),
  3078. "onclick": U.UF.C.closure(function (obj) {
  3079. //防止拖动图标即打开了桌面应用
  3080. U.MD.D.click(this, obj);
  3081. }, [_gdjgAdminDeskIconInfo[i]])
  3082. }, _frag); //
  3083. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3084. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3085. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3086. }
  3087. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3088. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3089. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3090. continue
  3091. }
  3092. _content = $$("div", {
  3093. className: "U_MD_D_KO",
  3094. "onmousedown": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_gdjgTeacherDeskIconInfo[i]]),
  3098. "onclick": U.UF.C.closure(function (obj) {
  3099. //防止拖动图标即打开了桌面应用
  3100. U.MD.D.click(this, obj);
  3101. }, [_gdjgTeacherDeskIconInfo[i]])
  3102. }, _frag); //
  3103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3106. }
  3107. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3108. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3109. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3110. continue
  3111. }
  3112. _content = $$("div", {
  3113. className: "U_MD_D_KO",
  3114. "onmousedown": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_szherTeacherDeskIconInfo[i]]),
  3118. "onclick": U.UF.C.closure(function (obj) {
  3119. //防止拖动图标即打开了桌面应用
  3120. U.MD.D.click(this, obj);
  3121. }, [_szherTeacherDeskIconInfo[i]])
  3122. }, _frag); //
  3123. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3124. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3125. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3126. }
  3127. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3128. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3129. _content = $$("div", {
  3130. className: "U_MD_D_KO",
  3131. "onmousedown": U.UF.C.closure(function (obj) {
  3132. //防止拖动图标即打开了桌面应用
  3133. U.MD.D.click(this, obj);
  3134. }, [_heyuannAdminDeskIconInfo[i]]),
  3135. "onclick": U.UF.C.closure(function (obj) {
  3136. //防止拖动图标即打开了桌面应用
  3137. U.MD.D.click(this, obj);
  3138. }, [_heyuannAdminDeskIconInfo[i]])
  3139. }, _frag); //
  3140. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3141. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3142. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3143. }
  3144. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3145. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3146. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3147. continue
  3148. }
  3149. _content = $$("div", {
  3150. className: "U_MD_D_KO",
  3151. "onmousedown": U.UF.C.closure(function (obj) {
  3152. //防止拖动图标即打开了桌面应用
  3153. U.MD.D.click(this, obj);
  3154. }, [_heyuanTeacherDeskIconInfo[i]]),
  3155. "onclick": U.UF.C.closure(function (obj) {
  3156. //防止拖动图标即打开了桌面应用
  3157. U.MD.D.click(this, obj);
  3158. }, [_heyuanTeacherDeskIconInfo[i]])
  3159. }, _frag); //
  3160. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3161. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3162. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3163. } //
  3164. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3165. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3166. _content = $$("div", {
  3167. className: "U_MD_D_KO",
  3168. "onmousedown": U.UF.C.closure(function (obj) {
  3169. //防止拖动图标即打开了桌面应用
  3170. U.MD.D.click(this, obj);
  3171. }, [_dseiAdminDeskIconInfo[i]]),
  3172. "onclick": U.UF.C.closure(function (obj) {
  3173. //防止拖动图标即打开了桌面应用
  3174. U.MD.D.click(this, obj);
  3175. }, [_dseiAdminDeskIconInfo[i]])
  3176. }, _frag); //
  3177. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3178. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3179. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3180. }
  3181. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3182. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3183. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3184. continue
  3185. }
  3186. _content = $$("div", {
  3187. className: "U_MD_D_KO",
  3188. "onmousedown": U.UF.C.closure(function (obj) {
  3189. //防止拖动图标即打开了桌面应用
  3190. U.MD.D.click(this, obj);
  3191. }, [_dseiTeacherDeskIconInfo[i]]),
  3192. "onclick": U.UF.C.closure(function (obj) {
  3193. //防止拖动图标即打开了桌面应用
  3194. U.MD.D.click(this, obj);
  3195. }, [_dseiTeacherDeskIconInfo[i]])
  3196. }, _frag); //
  3197. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3198. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3199. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3200. } //
  3201. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3202. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3203. _content = $$("div", {
  3204. className: "U_MD_D_KO",
  3205. "onmousedown": U.UF.C.closure(function (obj) {
  3206. //防止拖动图标即打开了桌面应用
  3207. U.MD.D.click(this, obj);
  3208. }, [_chjyjAdminDeskIconInfo[i]]),
  3209. "onclick": U.UF.C.closure(function (obj) {
  3210. //防止拖动图标即打开了桌面应用
  3211. U.MD.D.click(this, obj);
  3212. }, [_chjyjAdminDeskIconInfo[i]])
  3213. }, _frag); //
  3214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3217. }//
  3218. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3219. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3220. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3221. continue
  3222. }
  3223. _content = $$("div", {
  3224. className: "U_MD_D_KO",
  3225. "onmousedown": U.UF.C.closure(function (obj) {
  3226. //防止拖动图标即打开了桌面应用
  3227. U.MD.D.click(this, obj);
  3228. }, [_chjyjTeacherDeskIconInfo[i]]),
  3229. "onclick": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_chjyjTeacherDeskIconInfo[i]])
  3233. }, _frag); //
  3234. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3235. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3236. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3237. }
  3238. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3239. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3240. _content = $$("div", {
  3241. className: "U_MD_D_KO",
  3242. "onmousedown": U.UF.C.closure(function (obj) {
  3243. //防止拖动图标即打开了桌面应用
  3244. U.MD.D.click(this, obj);
  3245. }, [_szjkyAdminDeskIconInfo[i]]),
  3246. "onclick": U.UF.C.closure(function (obj) {
  3247. //防止拖动图标即打开了桌面应用
  3248. U.MD.D.click(this, obj);
  3249. }, [_szjkyAdminDeskIconInfo[i]])
  3250. }, _frag); //
  3251. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3252. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3253. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3254. }//
  3255. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3256. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3257. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3258. continue
  3259. }
  3260. _content = $$("div", {
  3261. className: "U_MD_D_KO",
  3262. "onmousedown": U.UF.C.closure(function (obj) {
  3263. //防止拖动图标即打开了桌面应用
  3264. U.MD.D.click(this, obj);
  3265. }, [_szjkyTeacherDeskIconInfo[i]]),
  3266. "onclick": U.UF.C.closure(function (obj) {
  3267. //防止拖动图标即打开了桌面应用
  3268. U.MD.D.click(this, obj);
  3269. }, [_szjkyTeacherDeskIconInfo[i]])
  3270. }, _frag); //
  3271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3274. }
  3275. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3276. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3277. _content = $$("div", {
  3278. className: "U_MD_D_KO",
  3279. "onmousedown": U.UF.C.closure(function (obj) {
  3280. //防止拖动图标即打开了桌面应用
  3281. U.MD.D.click(this, obj);
  3282. }, [_SCNUETAdminDeskIconInfo[i]]),
  3283. "onclick": U.UF.C.closure(function (obj) {
  3284. //防止拖动图标即打开了桌面应用
  3285. U.MD.D.click(this, obj);
  3286. }, [_SCNUETAdminDeskIconInfo[i]])
  3287. }, _frag); //
  3288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3291. }//
  3292. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3293. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3294. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3295. continue
  3296. }
  3297. _content = $$("div", {
  3298. className: "U_MD_D_KO",
  3299. "onmousedown": U.UF.C.closure(function (obj) {
  3300. //防止拖动图标即打开了桌面应用
  3301. U.MD.D.click(this, obj);
  3302. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3303. "onclick": U.UF.C.closure(function (obj) {
  3304. //防止拖动图标即打开了桌面应用
  3305. U.MD.D.click(this, obj);
  3306. }, [_SCNUETTeacherDeskIconInfo[i]])
  3307. }, _frag); //
  3308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3311. }
  3312. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3313. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3314. _content = $$("div", {
  3315. className: "U_MD_D_KO",
  3316. "onmousedown": U.UF.C.closure(function (obj) {
  3317. //防止拖动图标即打开了桌面应用
  3318. U.MD.D.click(this, obj);
  3319. }, [_futianAdminDeskIconInfo[i]]),
  3320. "onclick": U.UF.C.closure(function (obj) {
  3321. //防止拖动图标即打开了桌面应用
  3322. U.MD.D.click(this, obj);
  3323. }, [_futianAdminDeskIconInfo[i]])
  3324. }, _frag); //
  3325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3328. }
  3329. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3330. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3331. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3332. continue
  3333. }
  3334. _content = $$("div", {
  3335. className: "U_MD_D_KO",
  3336. "onmousedown": U.UF.C.closure(function (obj) {
  3337. //防止拖动图标即打开了桌面应用
  3338. U.MD.D.click(this, obj);
  3339. }, [_futianTeacherDeskIconInfo[i]]),
  3340. "onclick": U.UF.C.closure(function (obj) {
  3341. //防止拖动图标即打开了桌面应用
  3342. U.MD.D.click(this, obj);
  3343. }, [_futianTeacherDeskIconInfo[i]])
  3344. }, _frag); //
  3345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3348. }
  3349. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3350. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3351. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3352. continue
  3353. }
  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. }, [_MingdeTeacherDeskIcon[i]]),
  3360. "onclick": U.UF.C.closure(function (obj) {
  3361. //防止拖动图标即打开了桌面应用
  3362. U.MD.D.click(this, obj);
  3363. }, [_MingdeTeacherDeskIcon[i]])
  3364. }, _frag); //
  3365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3368. }
  3369. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3370. for (i = 0; i < _lhsAdminDesktopIconInfo.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. }, [_lhsAdminDesktopIconInfo[i]]),
  3377. "onclick": U.UF.C.closure(function (obj) {
  3378. //防止拖动图标即打开了桌面应用
  3379. U.MD.D.click(this, obj);
  3380. }, [_lhsAdminDesktopIconInfo[i]])
  3381. }, _frag); //
  3382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3385. }
  3386. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3387. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3388. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3389. continue
  3390. }
  3391. _content = $$("div", {
  3392. className: "U_MD_D_KO",
  3393. "onmousedown": U.UF.C.closure(function (obj) {
  3394. //防止拖动图标即打开了桌面应用
  3395. U.MD.D.click(this, obj);
  3396. }, [_lhsteacherDesktopIconInfo[i]]),
  3397. "onclick": U.UF.C.closure(function (obj) {
  3398. //防止拖动图标即打开了桌面应用
  3399. U.MD.D.click(this, obj);
  3400. }, [_lhsteacherDesktopIconInfo[i]])
  3401. }, _frag); //
  3402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3405. }
  3406. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3407. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3408. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3409. continue
  3410. }
  3411. _content = $$("div", {
  3412. className: "U_MD_D_KO",
  3413. "onmousedown": U.UF.C.closure(function (obj) {
  3414. //防止拖动图标即打开了桌面应用
  3415. U.MD.D.click(this, obj);
  3416. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3417. "onclick": U.UF.C.closure(function (obj) {
  3418. //防止拖动图标即打开了桌面应用
  3419. U.MD.D.click(this, obj);
  3420. }, [_zhoujiateacherDesktopIconInfo[i]])
  3421. }, _frag); //
  3422. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3423. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3424. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3425. }
  3426. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3427. for (i = 0; i < _hanDeskIcon.length; i++) {
  3428. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3429. continue
  3430. }
  3431. _content = $$("div", {
  3432. className: "U_MD_D_KO",
  3433. "onmousedown": U.UF.C.closure(function (obj) {
  3434. //防止拖动图标即打开了桌面应用
  3435. U.MD.D.click(this, obj);
  3436. }, [_hanDeskIcon[i]]),
  3437. "onclick": U.UF.C.closure(function (obj) {
  3438. //防止拖动图标即打开了桌面应用
  3439. U.MD.D.click(this, obj);
  3440. }, [_hanDeskIcon[i]])
  3441. }, _frag); //
  3442. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3443. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3444. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3445. }
  3446. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3447. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3448. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3449. continue
  3450. }
  3451. _content = $$("div", {
  3452. className: "U_MD_D_KO",
  3453. "onmousedown": U.UF.C.closure(function (obj) {
  3454. //防止拖动图标即打开了桌面应用
  3455. U.MD.D.click(this, obj);
  3456. }, [_orgStemDeskIcon[i]]),
  3457. "onclick": U.UF.C.closure(function (obj) {
  3458. //防止拖动图标即打开了桌面应用
  3459. U.MD.D.click(this, obj);
  3460. }, [_orgStemDeskIcon[i]])
  3461. }, _frag); //
  3462. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3463. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3464. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3465. }
  3466. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3467. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3468. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3469. continue
  3470. }
  3471. _content = $$("div", {
  3472. className: "U_MD_D_KO",
  3473. "onmousedown": U.UF.C.closure(function (obj) {
  3474. //防止拖动图标即打开了桌面应用
  3475. U.MD.D.click(this, obj);
  3476. }, [_szulsDeskIcon[i]]),
  3477. "onclick": U.UF.C.closure(function (obj) {
  3478. //防止拖动图标即打开了桌面应用
  3479. U.MD.D.click(this, obj);
  3480. }, [_szulsDeskIcon[i]])
  3481. }, _frag); //
  3482. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3483. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3484. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3485. }
  3486. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3487. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3488. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3489. continue
  3490. }
  3491. _content = $$("div", {
  3492. className: "U_MD_D_KO",
  3493. "onmousedown": U.UF.C.closure(function (obj) {
  3494. //防止拖动图标即打开了桌面应用
  3495. U.MD.D.click(this, obj);
  3496. }, [_orgDesktopIconInfo[i]]),
  3497. "onclick": U.UF.C.closure(function (obj) {
  3498. //防止拖动图标即打开了桌面应用
  3499. U.MD.D.click(this, obj);
  3500. }, [_orgDesktopIconInfo[i]])
  3501. }, _frag); //
  3502. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3503. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3504. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3505. }
  3506. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3507. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3508. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3509. continue
  3510. }
  3511. _content = $$("div", {
  3512. className: "U_MD_D_KO",
  3513. "onmousedown": U.UF.C.closure(function (obj) {
  3514. //防止拖动图标即打开了桌面应用
  3515. U.MD.D.click(this, obj);
  3516. }, [_schoolDesktopIconInfo[i]]),
  3517. "onclick": U.UF.C.closure(function (obj) {
  3518. //防止拖动图标即打开了桌面应用
  3519. U.MD.D.click(this, obj);
  3520. }, [_schoolDesktopIconInfo[i]])
  3521. }, _frag); //
  3522. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3523. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3524. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3525. }
  3526. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3527. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3528. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3529. continue
  3530. }
  3531. _content = $$("div", {
  3532. className: "U_MD_D_KO",
  3533. "onmousedown": U.UF.C.closure(function (obj) {
  3534. //防止拖动图标即打开了桌面应用
  3535. U.MD.D.click(this, obj);
  3536. }, [_GMteacherDesktopIconInfo[i]]),
  3537. "onclick": U.UF.C.closure(function (obj) {
  3538. //防止拖动图标即打开了桌面应用
  3539. U.MD.D.click(this, obj);
  3540. }, [_GMteacherDesktopIconInfo[i]])
  3541. }, _frag); //
  3542. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3543. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3544. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3545. }
  3546. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3547. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3548. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3549. continue
  3550. }
  3551. _content = $$("div", {
  3552. className: "U_MD_D_KO",
  3553. "onmousedown": U.UF.C.closure(function (obj) {
  3554. //防止拖动图标即打开了桌面应用
  3555. U.MD.D.click(this, obj);
  3556. }, [_SONGteacherDesktopIconInfo[i]]),
  3557. "onclick": U.UF.C.closure(function (obj) {
  3558. //防止拖动图标即打开了桌面应用
  3559. U.MD.D.click(this, obj);
  3560. }, [_SONGteacherDesktopIconInfo[i]])
  3561. }, _frag); //
  3562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3565. }
  3566. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3567. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3568. _content = $$("div", {
  3569. className: "U_MD_D_KO",
  3570. "onmousedown": U.UF.C.closure(function (obj) {
  3571. //防止拖动图标即打开了桌面应用
  3572. U.MD.D.click(this, obj);
  3573. }, [_GMstudentDesktopIconInfo[i]]),
  3574. "onclick": U.UF.C.closure(function (obj) {
  3575. //防止拖动图标即打开了桌面应用
  3576. U.MD.D.click(this, obj);
  3577. }, [_GMstudentDesktopIconInfo[i]])
  3578. }, _frag); //
  3579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3582. }
  3583. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3584. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3585. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3586. continue
  3587. }
  3588. _content = $$("div", {
  3589. className: "U_MD_D_KO",
  3590. "onmousedown": U.UF.C.closure(function (obj) {
  3591. //防止拖动图标即打开了桌面应用
  3592. U.MD.D.click(this, obj);
  3593. }, [_tcTeacherDeskIconInfo[i]]),
  3594. "onclick": U.UF.C.closure(function (obj) {
  3595. //防止拖动图标即打开了桌面应用
  3596. U.MD.D.click(this, obj);
  3597. }, [_tcTeacherDeskIconInfo[i]])
  3598. }, _frag); //
  3599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3602. }
  3603. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3604. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3605. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3606. continue
  3607. }
  3608. _content = $$("div", {
  3609. className: "U_MD_D_KO",
  3610. "onmousedown": U.UF.C.closure(function (obj) {
  3611. //防止拖动图标即打开了桌面应用
  3612. U.MD.D.click(this, obj);
  3613. }, [_tcOrganizerDeskIconInfo[i]]),
  3614. "onclick": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_tcOrganizerDeskIconInfo[i]])
  3618. }, _frag); //
  3619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3622. }
  3623. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3624. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3625. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3626. continue
  3627. }
  3628. _content = $$("div", {
  3629. className: "U_MD_D_KO",
  3630. "onmousedown": U.UF.C.closure(function (obj) {
  3631. //防止拖动图标即打开了桌面应用
  3632. U.MD.D.click(this, obj);
  3633. }, [_szscTeacherDeskIconInfo[i]]),
  3634. "onclick": U.UF.C.closure(function (obj) {
  3635. //防止拖动图标即打开了桌面应用
  3636. U.MD.D.click(this, obj);
  3637. }, [_szscTeacherDeskIconInfo[i]])
  3638. }, _frag); //
  3639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3642. }
  3643. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3644. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3645. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3646. continue
  3647. }
  3648. _content = $$("div", {
  3649. className: "U_MD_D_KO",
  3650. "onmousedown": U.UF.C.closure(function (obj) {
  3651. //防止拖动图标即打开了桌面应用
  3652. U.MD.D.click(this, obj);
  3653. }, [_szscOrganizerDeskIconInfo[i]]),
  3654. "onclick": U.UF.C.closure(function (obj) {
  3655. //防止拖动图标即打开了桌面应用
  3656. U.MD.D.click(this, obj);
  3657. }, [_szscOrganizerDeskIconInfo[i]])
  3658. }, _frag); //
  3659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3662. }
  3663. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3664. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3665. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3666. continue
  3667. }
  3668. _content = $$("div", {
  3669. className: "U_MD_D_KO",
  3670. "onmousedown": U.UF.C.closure(function (obj) {
  3671. //防止拖动图标即打开了桌面应用
  3672. U.MD.D.click(this, obj);
  3673. }, [_nsfxTeacherDeskIconInfo[i]]),
  3674. "onclick": U.UF.C.closure(function (obj) {
  3675. //防止拖动图标即打开了桌面应用
  3676. U.MD.D.click(this, obj);
  3677. }, [_nsfxTeacherDeskIconInfo[i]])
  3678. }, _frag); //
  3679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3682. }
  3683. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3684. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3685. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3686. continue
  3687. }
  3688. _content = $$("div", {
  3689. className: "U_MD_D_KO",
  3690. "onmousedown": U.UF.C.closure(function (obj) {
  3691. //防止拖动图标即打开了桌面应用
  3692. U.MD.D.click(this, obj);
  3693. }, [_stiaTeacherDeskIconInfo[i]]),
  3694. "onclick": U.UF.C.closure(function (obj) {
  3695. //防止拖动图标即打开了桌面应用
  3696. U.MD.D.click(this, obj);
  3697. }, [_stiaTeacherDeskIconInfo[i]])
  3698. }, _frag); //
  3699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3702. }
  3703. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3704. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3705. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3706. continue
  3707. }
  3708. _content = $$("div", {
  3709. className: "U_MD_D_KO",
  3710. "onmousedown": U.UF.C.closure(function (obj) {
  3711. //防止拖动图标即打开了桌面应用
  3712. U.MD.D.click(this, obj);
  3713. }, [_szdjgTeacherDeskIconInfo[i]]),
  3714. "onclick": U.UF.C.closure(function (obj) {
  3715. //防止拖动图标即打开了桌面应用
  3716. U.MD.D.click(this, obj);
  3717. }, [_szdjgTeacherDeskIconInfo[i]])
  3718. }, _frag); //
  3719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3722. }
  3723. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3724. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3725. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3726. continue
  3727. }
  3728. _content = $$("div", {
  3729. className: "U_MD_D_KO",
  3730. "onmousedown": U.UF.C.closure(function (obj) {
  3731. //防止拖动图标即打开了桌面应用
  3732. U.MD.D.click(this, obj);
  3733. }, [_x010607TeacherDeskIconInfo[i]]),
  3734. "onclick": U.UF.C.closure(function (obj) {
  3735. //防止拖动图标即打开了桌面应用
  3736. U.MD.D.click(this, obj);
  3737. }, [_x010607TeacherDeskIconInfo[i]])
  3738. }, _frag); //
  3739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3742. }
  3743. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3744. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3745. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3746. continue
  3747. }
  3748. _content = $$("div", {
  3749. className: "U_MD_D_KO",
  3750. "onmousedown": U.UF.C.closure(function (obj) {
  3751. //防止拖动图标即打开了桌面应用
  3752. U.MD.D.click(this, obj);
  3753. }, [_xhlyTeacherDeskIconInfo[i]]),
  3754. "onclick": U.UF.C.closure(function (obj) {
  3755. //防止拖动图标即打开了桌面应用
  3756. U.MD.D.click(this, obj);
  3757. }, [_xhlyTeacherDeskIconInfo[i]])
  3758. }, _frag); //
  3759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3762. }
  3763. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3764. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3765. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3766. continue
  3767. }
  3768. _content = $$("div", {
  3769. className: "U_MD_D_KO",
  3770. "onmousedown": U.UF.C.closure(function (obj) {
  3771. //防止拖动图标即打开了桌面应用
  3772. U.MD.D.click(this, obj);
  3773. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3774. "onclick": U.UF.C.closure(function (obj) {
  3775. //防止拖动图标即打开了桌面应用
  3776. U.MD.D.click(this, obj);
  3777. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3778. }, _frag); //
  3779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3782. }
  3783. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3784. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3785. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3786. continue
  3787. }
  3788. _content = $$("div", {
  3789. className: "U_MD_D_KO",
  3790. "onmousedown": U.UF.C.closure(function (obj) {
  3791. //防止拖动图标即打开了桌面应用
  3792. U.MD.D.click(this, obj);
  3793. }, [_x010503TeacherDeskIconInfo[i]]),
  3794. "onclick": U.UF.C.closure(function (obj) {
  3795. //防止拖动图标即打开了桌面应用
  3796. U.MD.D.click(this, obj);
  3797. }, [_x010503TeacherDeskIconInfo[i]])
  3798. }, _frag); //
  3799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3802. }
  3803. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3804. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3805. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3806. continue
  3807. }
  3808. _content = $$("div", {
  3809. className: "U_MD_D_KO",
  3810. "onmousedown": U.UF.C.closure(function (obj) {
  3811. //防止拖动图标即打开了桌面应用
  3812. U.MD.D.click(this, obj);
  3813. }, [_x010504TeacherDeskIconInfo[i]]),
  3814. "onclick": U.UF.C.closure(function (obj) {
  3815. //防止拖动图标即打开了桌面应用
  3816. U.MD.D.click(this, obj);
  3817. }, [_x010504TeacherDeskIconInfo[i]])
  3818. }, _frag); //
  3819. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3820. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  3821. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  3822. }
  3823. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  3824. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  3825. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3826. continue
  3827. }
  3828. _content = $$("div", {
  3829. className: "U_MD_D_KO",
  3830. "onmousedown": U.UF.C.closure(function (obj) {
  3831. //防止拖动图标即打开了桌面应用
  3832. U.MD.D.click(this, obj);
  3833. }, [_x010204TeacherDeskIconInfo[i]]),
  3834. "onclick": U.UF.C.closure(function (obj) {
  3835. //防止拖动图标即打开了桌面应用
  3836. U.MD.D.click(this, obj);
  3837. }, [_x010204TeacherDeskIconInfo[i]])
  3838. }, _frag); //
  3839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  3841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  3842. }
  3843. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  3844. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  3845. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3846. continue
  3847. }
  3848. _content = $$("div", {
  3849. className: "U_MD_D_KO",
  3850. "onmousedown": U.UF.C.closure(function (obj) {
  3851. //防止拖动图标即打开了桌面应用
  3852. U.MD.D.click(this, obj);
  3853. }, [_trailTeacherDeskIconInfo[i]]),
  3854. "onclick": U.UF.C.closure(function (obj) {
  3855. //防止拖动图标即打开了桌面应用
  3856. U.MD.D.click(this, obj);
  3857. }, [_trailTeacherDeskIconInfo[i]])
  3858. }, _frag); //
  3859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  3861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  3862. }
  3863. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  3864. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  3865. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3866. continue
  3867. }
  3868. _content = $$("div", {
  3869. className: "U_MD_D_KO",
  3870. "onmousedown": U.UF.C.closure(function (obj) {
  3871. //防止拖动图标即打开了桌面应用
  3872. U.MD.D.click(this, obj);
  3873. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  3874. "onclick": U.UF.C.closure(function (obj) {
  3875. //防止拖动图标即打开了桌面应用
  3876. U.MD.D.click(this, obj);
  3877. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  3878. }, _frag); //
  3879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  3881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  3882. }
  3883. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3884. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3885. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3886. continue
  3887. }
  3888. _content = $$("div", {
  3889. className: "U_MD_D_KO",
  3890. "onmousedown": U.UF.C.closure(function (obj) {
  3891. //防止拖动图标即打开了桌面应用
  3892. U.MD.D.click(this, obj);
  3893. }, [_x010608TeacherDeskIconInfo[i]]),
  3894. "onclick": U.UF.C.closure(function (obj) {
  3895. //防止拖动图标即打开了桌面应用
  3896. U.MD.D.click(this, obj);
  3897. }, [_x010608TeacherDeskIconInfo[i]])
  3898. }, _frag); //
  3899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  3901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  3902. }
  3903. } else {
  3904. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3905. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3906. continue
  3907. }
  3908. _content = $$("div", {
  3909. className: "U_MD_D_KO",
  3910. "onmousedown": U.UF.C.closure(function (obj) {
  3911. //防止拖动图标即打开了桌面应用
  3912. U.MD.D.click(this, obj);
  3913. }, [_teacherDesktopIconInfo[i]]),
  3914. "onclick": U.UF.C.closure(function (obj) {
  3915. //防止拖动图标即打开了桌面应用
  3916. U.MD.D.click(this, obj);
  3917. }, [_teacherDesktopIconInfo[i]])
  3918. }, _frag); //
  3919. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3920. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3921. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3922. }
  3923. }
  3924. } else {
  3925. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3926. _content = $$("div", {
  3927. className: "U_MD_D_KO",
  3928. style: { 'width': '124px', 'height': '145px' },
  3929. "onmousedown": U.UF.C.closure(function (obj) {
  3930. //防止拖动图标即打开了桌面应用
  3931. U.MD.D.click(this, obj);
  3932. }, [_easyDesktopIconInfo[i]]),
  3933. "onclick": U.UF.C.closure(function (obj) {
  3934. //防止拖动图标即打开了桌面应用
  3935. U.MD.D.click(this, obj);
  3936. }, [_easyDesktopIconInfo[i]])
  3937. }, _frag); //
  3938. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3939. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3940. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3941. }
  3942. }
  3943. if (type == 1) {
  3944. //加载好后给图标定位
  3945. U.MD.D.iconPostion($(_frag).Child());
  3946. } else {
  3947. //加载好后给图标定位
  3948. U.MD.D.iconPostion2($(_frag).Child());
  3949. }
  3950. //把图标加载到页面
  3951. el.appendChild(_frag);
  3952. }
  3953. /**
  3954. * 显示任务栏
  3955. *
  3956. * @param {element} 桌面元素
  3957. */
  3958. U.MD.D.I.displayTaskbar = function (el) {
  3959. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3960. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3961. //任务栏位置变化
  3962. U.selectEl(el).css({ "bottom": "0px" });
  3963. //桌面位置变话
  3964. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3965. }
  3966. }
  3967. //#region 桌面图标拖动逻辑
  3968. /**
  3969. * 桌面排列图标
  3970. *
  3971. * @param {element} 桌面元素
  3972. * @param {object} 上下相距的距离
  3973. * @param {object} 左右相距的距离
  3974. * @return {object} 命名空间
  3975. */
  3976. U.MD.D.iconPostion = function (childs, top, left) {
  3977. var i; //用于循环处理
  3978. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3979. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3980. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3981. for (i = 0; i < childs.length; i++) {
  3982. //如果竖排top超过了范围处理
  3983. if (top + 95 > US.height - 10) {
  3984. //left超过了页面范围处理,则向上重叠打印处理
  3985. if ((left + 180) > US.width) {
  3986. top -= 110;
  3987. left -= 90;
  3988. }
  3989. //没有超过范围,那么left+90添加到下一个竖排打印
  3990. else {
  3991. left += 90;
  3992. top = 15;
  3993. };
  3994. }
  3995. //给图标的位置赋值
  3996. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3997. if (i < childs.length - 1) {
  3998. //页面图标每次向下加95
  3999. top += 95;
  4000. }
  4001. }
  4002. //返回最后调用的图标的位置
  4003. return [top, left];
  4004. }
  4005. /**
  4006. * 桌面排列图标
  4007. *
  4008. * @param {element} 桌面元素
  4009. * @param {object} 上下相距的距离
  4010. * @param {object} 左右相距的距离
  4011. * @return {object} 命名空间
  4012. */
  4013. U.MD.D.iconPostion2 = function (childs, top, left) {
  4014. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4015. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4016. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4017. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4018. for (i = 0; i < childs.length; i++) {
  4019. //如果竖排top超过了范围处理
  4020. if (left + 150 > US.width - 10) {
  4021. //left超过了页面范围处理,则向上重叠打印处理
  4022. if ((top + 180) > US.Height) {
  4023. top -= 150;
  4024. left -= 150;
  4025. }
  4026. //没有超过范围,那么left+90添加到下一个竖排打印
  4027. else {
  4028. top += 150;
  4029. left = ol;
  4030. };
  4031. }
  4032. //给图标的位置赋值
  4033. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4034. if (i < childs.length - 1) {
  4035. //页面图标每次向下加95
  4036. left += 150;
  4037. }
  4038. }
  4039. //返回最后调用的图标的位置
  4040. return [top, left];
  4041. }
  4042. /**
  4043. * 桌面点击事件逻辑
  4044. *
  4045. * @param {element} 桌面元素
  4046. * @param {object} 上下相距的距离
  4047. * @param {object} 左右相距的距离
  4048. * @return {object} 命名空间
  4049. */
  4050. U.MD.D.click = function (el, obj) {
  4051. var _buttonnumber = event.button; //点击的按钮的事件值
  4052. var _userinfo = US.userInfo;
  4053. U.UF.EV.stopBubble(); //阻止向上冒泡
  4054. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4055. if (_buttonnumber < 2) {
  4056. //如果是click事件的处理
  4057. if (event.type == "click") {
  4058. //如果元素在mousemove事件中没有移动则出发click事件
  4059. if (!U.MD.D.I.IsDrag) {
  4060. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4061. U.alert("请先登录您的账号!");
  4062. setTimeout(() => {
  4063. U.MD.U.L.login();
  4064. }, 2000);
  4065. } else {
  4066. //打开应用处理
  4067. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4068. }
  4069. }
  4070. }
  4071. //如果是mouse事件的处理
  4072. else {
  4073. if (US.Config.type == '1') {
  4074. //拖动处理,添加拖动和拖动结束事件
  4075. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4076. }
  4077. }
  4078. U.MD.D.I.IsDrag = false;
  4079. }
  4080. }
  4081. /**
  4082. * 拖动的处理
  4083. *
  4084. */
  4085. U.MD.D.iconMove = function () {
  4086. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4087. U.MD.D.I.IsDrag = true;
  4088. }
  4089. /**
  4090. * 拖动结束后,这里是定位处理,以网状的形式定位
  4091. *
  4092. * @param {element} 拖动的元素
  4093. * @return {object} 命名空间
  4094. */
  4095. U.MD.D.iconUp = function (el) {
  4096. var _top = 15,
  4097. _left = 20,
  4098. _margin,
  4099. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4100. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4101. if (_positioninfo["OT"] > 15) {
  4102. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4103. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4104. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4105. }
  4106. if (_positioninfo["OL"] > 20) {
  4107. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4108. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4109. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4110. }
  4111. //while循环判断么一个重叠的元素
  4112. do {
  4113. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4114. _top = _positioninfo[0] + 95; //得到定位后的top
  4115. _left = _positioninfo[1]; //得到定位后的left
  4116. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4117. }
  4118. /**
  4119. * 判断拖动后图标是否重叠
  4120. *
  4121. * @param {element} 拖动的元素
  4122. * @param {element} 桌面所有的元素
  4123. * @param {array} 拖动元素的位置
  4124. ----------[0] 上 top
  4125. ----------[1] 左 left
  4126. * @return {object} 命名空间
  4127. */
  4128. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4129. //循环所有的图标
  4130. for (var i = 0; i < childs.length; i++) {
  4131. //判断有没有和该图标诶子重叠的元素
  4132. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4133. return childs[i]; //如果有返回
  4134. }
  4135. }
  4136. }
  4137. //#endregion
  4138. //#endregion
  4139. //#region 桌面应用
  4140. /**
  4141. * 打开应用
  4142. *
  4143. * @param {string} 类型
  4144. -----------------Disk 网盘系统
  4145. -----------------PDisk 学习系统网盘
  4146. -----------------Poto 图片
  4147. -----------------Video 视频
  4148. -----------------Music 音乐
  4149. -----------------Word word
  4150. -----------------Excel excel
  4151. -----------------Txt 记事本
  4152. -----------------PB 学习系统
  4153. -----------------Blog 朋友圈系统
  4154. -----------------FTP ftp系统
  4155. -----------------Group 好友群
  4156. -----------------SY 首页系统
  4157. -----------------Set 个人设置
  4158. -----------------XSet 系统设置
  4159. -----------------App 我们所有的app
  4160. -----------------BC c.1473.cn 平台
  4161. -----------------CWeb d.1473.cn 变成平台
  4162. -----------------其他的外联系统 我们统一用iframe打开
  4163. * @param {array} 类型
  4164. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4165. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4166. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4167. 如果第一个参数为其他,则无第二个参数
  4168. * @returns {array}
  4169. */
  4170. window.addEventListener('message', function (e) { // 监听 message 事件
  4171. // alert(e.data.type);
  4172. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4173. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4174. //3是展示全部阶段 2学生 1老师 4专家
  4175. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4176. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4177. //3是展示全部阶段 2学生 1老师 4专家
  4178. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4179. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4180. //3是展示全部阶段 2学生 1老师 4专家
  4181. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4182. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4183. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4184. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4185. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4186. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4187. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4188. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4189. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4190. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4191. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4192. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4193. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4194. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4195. //3是展示全部阶段 2学生 1老师 4专家
  4196. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4197. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4198. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4199. U.MD.D.I.selectUser();
  4200. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4201. var _formel = document.getElementById("study");
  4202. U.UF.F.windowZooming(_formel);
  4203. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4204. var _formel = document.getElementById("studyDetail");
  4205. U.UF.F.windowZooming(_formel);
  4206. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4207. var _formel = document.getElementById("studyDetail");
  4208. U.UF.F.windowZooming(_formel);
  4209. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4210. var _formel = document.getElementById("studentStudy");
  4211. U.UF.F.windowZooming(_formel);
  4212. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4213. // var _formel = document.getElementById("study");
  4214. //如果最大化了,那么就把他缩小
  4215. // if (_formel.ismaximize) {
  4216. // return;
  4217. // }
  4218. // U.UF.F.windowZooming(_formel);
  4219. // U.UF.F.topWindow(_formel);
  4220. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4221. // var _formel = document.getElementById("studyDetail");
  4222. //如果最大化了,那么就把他缩小
  4223. // if (_formel.ismaximize) {
  4224. // return;
  4225. // }
  4226. // U.UF.F.windowZooming(_formel);
  4227. // U.UF.F.topWindow(_formel);
  4228. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4229. // var _formel = document.getElementById("studentStudy");
  4230. // if (_formel.ismaximize) {
  4231. // return;
  4232. // }
  4233. // U.UF.F.windowZooming(_formel);
  4234. // U.UF.F.topWindow(_formel);
  4235. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4236. var _formel = document.getElementById("study");
  4237. // if (_formel.ismaximize) {
  4238. // return;
  4239. // }
  4240. // U.UF.F.windowZooming(_formel);
  4241. U.UF.F.topWindow(_formel);
  4242. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4243. var _formel = document.getElementById("studentIndex");
  4244. U.UF.F.windowZooming(_formel);
  4245. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4246. var _formel = document.getElementById("studyDetailS");
  4247. U.UF.F.windowZooming(_formel);
  4248. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4249. var _formel = document.getElementById("studioIndex");
  4250. U.UF.F.windowZooming(_formel);
  4251. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4252. var _formel = document.getElementById("studyDetailStudio");
  4253. U.UF.F.windowZooming(_formel);
  4254. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4255. var _formel = document.getElementById("studyDetailStudio");
  4256. U.UF.F.windowZooming(_formel);
  4257. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4258. var _formel = document.getElementById("studyDetailNT");
  4259. U.UF.F.windowZooming(_formel);
  4260. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4261. var _formel = document.getElementById("studyDetailS");
  4262. U.UF.F.windowZooming(_formel);
  4263. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4264. var _formel = document.getElementById("studyDetailS");
  4265. U.UF.F.topWindow(_formel);
  4266. } else if (e.data.tools && e.data.tools == "1") {
  4267. // U.MD.D.I.openApplication("whiteboard")
  4268. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4269. } else if (e.data.tools && e.data.tools == "2") {
  4270. U.MD.D.I.openApplication("note")
  4271. } else if (e.data.tools && e.data.tools == "3") {
  4272. // U.MD.D.I.openApplication("mind")
  4273. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4274. } else if (e.data.tools && e.data.tools == "4") {
  4275. U.MD.D.I.openApplication("investigation")
  4276. } else if (e.data.tools && e.data.tools == "6") {
  4277. // U.MD.D.I.openApplication("doc")
  4278. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4279. } else if (e.data.tools && e.data.tools == "7") {
  4280. // U.MD.D.I.openApplication("mindNetwork")
  4281. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4282. } else if (e.data.tools && e.data.tools == "8") {
  4283. U.MD.D.I.openApplication("library")
  4284. } else if (e.data.tools && e.data.tools == "17") {
  4285. U.MD.D.I.openApplication("stuLibrary")
  4286. } else if (e.data.tools && e.data.tools == "18") {
  4287. U.MD.D.I.openApplication("train")
  4288. } else if (e.data.tools && e.data.tools == "21") {
  4289. U.MD.D.I.openApplication("program")
  4290. } else if (e.data.tools && e.data.tools == "22") {
  4291. U.MD.D.I.openApplication("AIprogram2")
  4292. } else if (e.data.tools && e.data.tools == "23") {
  4293. U.MD.D.I.openApplication("Pythonprogram")
  4294. } else if (e.data.tools && e.data.tools == "24") {
  4295. U.MD.D.I.openApplication("AIprogram")
  4296. } else if (e.data.tools && e.data.tools == "25") {
  4297. U.MD.D.I.openApplication("sys")
  4298. } else if (e.data.tools && e.data.tools == "26") {
  4299. // U.MD.D.I.openApplication("courseDesign")
  4300. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4301. } else if (e.data.tools && e.data.tools == "31") {
  4302. U.MD.D.I.openApplication("netWorkPanel")
  4303. } else if (e.data.tools && e.data.tools == "32") {
  4304. U.MD.D.I.openApplication("codeEdit")
  4305. } else if (e.data.tools && e.data.tools == "57") {
  4306. U.MD.D.I.openApplication("CocoPi")
  4307. } else if (e.data.tools && e.data.tools == "63") {
  4308. U.MD.D.I.openApplication("Wood")
  4309. } else if (e.data.tools && e.data.tools == "58") {
  4310. U.MD.D.I.openApplication("car")
  4311. } else if (e.data.tools && e.data.tools == "59") {
  4312. U.MD.D.I.openApplication("lineSearch")
  4313. } else if (e.data.tools && e.data.tools == "60") {
  4314. U.MD.D.I.openApplication("deepLearning")
  4315. } else if (e.data.tools && e.data.tools == "61") {
  4316. U.MD.D.I.openApplication("allHistory")
  4317. } else if (e.data.tools && e.data.tools == "28") {
  4318. U.MD.D.I.openApplication("translation")
  4319. } else if (e.data.tools && e.data.tools == "37") {
  4320. U.MD.D.I.openApplication("mohe")
  4321. } else if (e.data.tools && e.data.tools == "38") {
  4322. U.MD.D.I.openApplication("24game")
  4323. } else if (e.data.tools && e.data.tools == "39") {
  4324. U.MD.D.I.openApplication("GeoGebra")
  4325. } else if (e.data.tools && e.data.tools == "43") {
  4326. U.MD.D.I.openApplication("studentEvaluate")
  4327. } else if (e.data.tools && e.data.tools == "44") {
  4328. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4329. } else if (e.data.tools && e.data.tools == "46") {
  4330. U.MD.D.I.openApplication("project")
  4331. } else if (e.data.tools && e.data.tools == "71") {
  4332. U.MD.D.I.openApplication("aigptCourse")
  4333. } else if (e.data.tools && e.data.tools == "1s") {
  4334. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4335. } else if (e.data.tools && e.data.tools == "3s") {
  4336. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4337. } else if (e.data.tools && e.data.tools == "6s") {
  4338. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4339. } else if (e.data.tools && e.data.tools == "1studio") {
  4340. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4341. } else if (e.data.tools && e.data.tools == "3studio") {
  4342. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4343. } else if (e.data.tools && e.data.tools == "6studio") {
  4344. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4345. } else if (e.data.tools && e.data.tools == "3y") {
  4346. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4347. } else if (e.data.tools && e.data.tools == "1y") {
  4348. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4349. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4350. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4351. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4352. U.MD.D.I.openApplication("AIAnalyse")
  4353. } else if (e.data.tools && e.data.tools == "1teacher") {
  4354. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4355. } else if (e.data.tools && e.data.tools == "3teacher") {
  4356. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4357. } else if (e.data.tools && e.data.tools == "7teacher") {
  4358. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4359. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4360. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4361. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4362. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4363. } else if (e.data.tools && e.data.tools == "1E") {
  4364. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4365. } else if (e.data.tools && e.data.tools == "3E") {
  4366. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4367. } else if (e.data.tools && e.data.tools == "57y") {
  4368. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4369. } else if (e.data.tools && e.data.tools == "57u") {
  4370. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4371. } else if (e.data.tools && e.data.tools == "57teacher") {
  4372. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4373. } else if (e.data.tools && e.data.tools == "64") {
  4374. U.MD.D.I.openApplication("AIChat")
  4375. } else if (e.data.tools && e.data.tools == "66") {
  4376. U.MD.D.I.openApplication("formulaEdi")
  4377. } else if (e.data.tools && e.data.tools == "67") {
  4378. U.MD.D.I.openApplication("molStr")
  4379. } else if (e.data.tools && e.data.tools == "68") {
  4380. U.MD.D.I.openApplication("timeAxis")
  4381. } else if (e.data.tools && e.data.tools == "openCourse") {
  4382. let _data = {
  4383. typea: e.data.typea || '',
  4384. typeb: e.data.typeb || '',
  4385. typed: e.data.typed || '',
  4386. }
  4387. U.MD.D.I.openInApplication("index", _data)
  4388. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4389. let _data = {
  4390. classid: e.data.classid || '',
  4391. }
  4392. U.MD.D.I.openInApplication("dataClass", _data)
  4393. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4394. let _data = {
  4395. cid: e.data.cid || '',
  4396. gid: e.data.gid || '',
  4397. }
  4398. U.MD.D.I.openInApplication("opencCscl", _data)
  4399. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4400. U.MD.D.I.openApplication("dataBoardTest")
  4401. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4402. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4403. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4404. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4405. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4406. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4407. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4408. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4409. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4410. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4411. }else if (e.data.tools && e.data.tools == "loginSz") {
  4412. U.MD.D.I.openInApplication("loginSz")
  4413. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4414. if($('#classroom_observation_board')[0]){
  4415. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4416. }
  4417. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4418. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4419. if($('#classroom_observation_ob_comment')[0]){
  4420. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4421. }
  4422. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4423. }
  4424. });
  4425. U.MD.D.I.selectUser = function () {
  4426. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4427. if (res.value[0].length > 0) {
  4428. US.userInfo = res.value[0][0];
  4429. $(".userName")[0].innerHTML = US.userInfo.username;
  4430. }
  4431. }, [], { "type": "GET", "withCredentials": true });
  4432. }
  4433. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4434. var _userinfo = US.userInfo, //登录用户信息
  4435. _userid = US.userInfo.userid, //登录用户id
  4436. _oid = _userinfo.organizeid,
  4437. _type = US.userInfo.type,
  4438. _org = US.userInfo.org,
  4439. _role = US.userInfo.role,
  4440. _classId = US.userInfo.classid;
  4441. if (_type == 4) {
  4442. tType = 4
  4443. }
  4444. switch (str) {
  4445. case "studyDetailNT": //无终端模式
  4446. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4447. setTimeout(() => {
  4448. U.MD.U.L.login();
  4449. }, 2000);
  4450. } else {
  4451. _formdiv = new U.UF.UI.form(
  4452. "课程详情",
  4453. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4454. "id": "studyDetailNT",
  4455. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4456. "onresize": function () { }
  4457. }, {
  4458. closecallback: function () { }
  4459. }, { "style": { "height": "36px" } }).form; //创建窗体
  4460. _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); } }
  4461. break;
  4462. }
  4463. case "studyDetail":
  4464. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4465. setTimeout(() => {
  4466. U.MD.U.L.login();
  4467. }, 2000);
  4468. } else {
  4469. _formdiv = new U.UF.UI.form(
  4470. "课程详情",
  4471. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4472. "id": "studyDetail",
  4473. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4474. "onresize": function () { }
  4475. }, {
  4476. closecallback: function () { }
  4477. }, { "style": { "height": "36px" } }).form; //创建窗体
  4478. _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); } }
  4479. break;
  4480. }
  4481. case "studyDetailTrain":
  4482. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4483. setTimeout(() => {
  4484. U.MD.U.L.login();
  4485. }, 2000);
  4486. } else {
  4487. _formdiv = new U.UF.UI.form(
  4488. "培训详情",
  4489. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4490. "id": "studyDetailTrain",
  4491. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4492. "onresize": function () { }
  4493. }, {
  4494. closecallback: function () { }
  4495. }, { "style": { "height": "36px" } }).form; //创建窗体
  4496. _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); } }
  4497. break;
  4498. }
  4499. case "studyDetailS":
  4500. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4501. setTimeout(() => {
  4502. U.MD.U.L.login();
  4503. }, 2000);
  4504. } else {
  4505. _formdiv = new U.UF.UI.form(
  4506. "项目详情",
  4507. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4508. "id": "studyDetailS",
  4509. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4510. "onresize": function () { }
  4511. }, {
  4512. closecallback: function () { }
  4513. }, { "style": { "height": "36px" } }).form; //创建窗体
  4514. _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); } }
  4515. break;
  4516. }
  4517. case "studyDetailStudio":
  4518. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4519. setTimeout(() => {
  4520. U.MD.U.L.login();
  4521. }, 2000);
  4522. } else {
  4523. _formdiv = new U.UF.UI.form(
  4524. "工作详情",
  4525. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4526. "id": "studyDetailStudio",
  4527. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4528. "onresize": function () { }
  4529. }, {
  4530. closecallback: function () { }
  4531. }, { "style": { "height": "36px" } }).form; //创建窗体
  4532. _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); } }
  4533. break;
  4534. }
  4535. case "studyDetailS5":
  4536. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4537. setTimeout(() => {
  4538. U.MD.U.L.login();
  4539. }, 2000);
  4540. } else {
  4541. _formdiv = new U.UF.UI.form(
  4542. "项目详情",
  4543. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4544. "id": "studyDetailS",
  4545. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4546. "onresize": function () { }
  4547. }, {
  4548. closecallback: function () { }
  4549. }, { "style": { "height": "36px" } }).form; //创建窗体
  4550. _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); } }
  4551. break;
  4552. }
  4553. case "studyDetailGM":
  4554. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4555. setTimeout(() => {
  4556. U.MD.U.L.login();
  4557. }, 2000);
  4558. } else {
  4559. _formdiv = new U.UF.UI.form(
  4560. "课程详情",
  4561. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4562. "id": "studyDetail",
  4563. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4564. "onresize": function () { }
  4565. }, {
  4566. closecallback: function () { }
  4567. }, { "style": { "height": "36px" } }).form; //创建窗体
  4568. _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); } }
  4569. break;
  4570. }
  4571. case "hanUrl":
  4572. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4573. setTimeout(() => {
  4574. U.MD.U.L.login();
  4575. }, 2000);
  4576. } else {
  4577. _formdiv = new U.UF.UI.form(
  4578. "汉字宫",
  4579. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  4580. "id": "hanUrl",
  4581. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4582. "onresize": function () { }
  4583. }, {
  4584. closecallback: function () { }
  4585. }, { "style": { "height": "36px" } }).form; //创建窗体
  4586. _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); } }
  4587. break;
  4588. }
  4589. case "index":
  4590. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4591. setTimeout(() => {
  4592. U.MD.U.L.login();
  4593. }, 2000);
  4594. } else {
  4595. _formdiv = new U.UF.UI.form(
  4596. "课程中心",
  4597. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=2" + "&typea=" + data.typea + "&typeb=" + data.typeb + "&typed=" + data.typed }), {
  4598. "id": "study",
  4599. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4600. "onresize": function () { }
  4601. }, {
  4602. closecallback: function () { }
  4603. }, { "style": { "height": "36px" } }).form; //创建窗体
  4604. _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); } }
  4605. break;
  4606. }
  4607. case "dataClass":
  4608. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4609. setTimeout(() => {
  4610. U.MD.U.L.login();
  4611. }, 2000);
  4612. } else {
  4613. _formdiv = new U.UF.UI.form(
  4614. "数据报告",
  4615. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  4616. "id": "dataClass",
  4617. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4618. "onresize": function () { }
  4619. }, {
  4620. closecallback: function () { }
  4621. }, { "style": { "height": "36px" } }).form; //创建窗体
  4622. _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); } }
  4623. break;
  4624. }
  4625. case "opencCscl":
  4626. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4627. setTimeout(() => {
  4628. U.MD.U.L.login();
  4629. }, 2000);
  4630. } else {
  4631. _formdiv = new U.UF.UI.form(
  4632. "协同建构",
  4633. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4634. "id": "futureClass",
  4635. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4636. "onresize": function () { }
  4637. }, {
  4638. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4639. }, { "style": { "height": "36px" } }).form; //创建窗体
  4640. _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); } }
  4641. break;
  4642. }
  4643. case "openCourseUpdate":
  4644. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4645. setTimeout(() => {
  4646. U.MD.U.L.login();
  4647. }, 2000);
  4648. } else {
  4649. _formdiv = new U.UF.UI.form(
  4650. "课程管理",
  4651. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4652. "id": "openCourseUpdate",
  4653. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4654. "onresize": function () { }
  4655. }, {
  4656. closecallback: function () { }
  4657. }, { "style": { "height": "36px" } }).form; //创建窗体
  4658. break;
  4659. }
  4660. case "openNewCourseUpdate":
  4661. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4662. setTimeout(() => {
  4663. U.MD.U.L.login();
  4664. }, 2000);
  4665. } else {
  4666. _formdiv = new U.UF.UI.form(
  4667. "课程管理",
  4668. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4669. "id": "openCourseUpdate",
  4670. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4671. "onresize": function () { }
  4672. }, {
  4673. closecallback: function () { }
  4674. }, { "style": { "height": "36px" } }).form; //创建窗体
  4675. break;
  4676. }
  4677. case "openCourseEUpdate":
  4678. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4679. setTimeout(() => {
  4680. U.MD.U.L.login();
  4681. }, 2000);
  4682. } else {
  4683. _formdiv = new U.UF.UI.form(
  4684. "课程管理",
  4685. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4686. "id": "openCourseUpdate",
  4687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4688. "onresize": function () { }
  4689. }, {
  4690. closecallback: function () { }
  4691. }, { "style": { "height": "36px" } }).form; //创建窗体
  4692. break;
  4693. }
  4694. case "openCourseAiUpdate":
  4695. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4696. setTimeout(() => {
  4697. U.MD.U.L.login();
  4698. }, 2000);
  4699. } else {
  4700. _formdiv = new U.UF.UI.form(
  4701. "课程管理",
  4702. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4703. "id": "openCourseUpdate",
  4704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4705. "onresize": function () { }
  4706. }, {
  4707. closecallback: function () { }
  4708. }, { "style": { "height": "36px" } }).form; //创建窗体
  4709. break;
  4710. }
  4711. case "openCourseNewUpdate":
  4712. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4713. setTimeout(() => {
  4714. U.MD.U.L.login();
  4715. }, 2000);
  4716. } else {
  4717. _formdiv = new U.UF.UI.form(
  4718. "课程管理",
  4719. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4720. "id": "openCourseUpdate",
  4721. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4722. "onresize": function () { }
  4723. }, {
  4724. closecallback: function () { }
  4725. }, { "style": { "height": "36px" } }).form; //创建窗体
  4726. break;
  4727. }
  4728. case "inviteLoginSz":
  4729. _formdiv = new U.UF.UI.form(
  4730. "随机码登录",
  4731. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  4732. "id": "loginSz",
  4733. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4734. "onresize": function () { }
  4735. }, {
  4736. closecallback: function () { }
  4737. }, { "style": { "height": "36px" } }).form; //创建窗体
  4738. break;
  4739. case "loginSz":
  4740. _formdiv = new U.UF.UI.form(
  4741. "教师登录",
  4742. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  4743. "id": "loginSz",
  4744. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4745. "onresize": function () { }
  4746. }, {
  4747. closecallback: function () { }
  4748. }, { "style": { "height": "36px" } }).form; //创建窗体
  4749. break;
  4750. case "teacher":
  4751. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4752. setTimeout(() => {
  4753. U.MD.U.L.login();
  4754. }, 2000);
  4755. } else {
  4756. _formdiv = new U.UF.UI.form(
  4757. "教师管理",
  4758. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4759. "id": "teacher",
  4760. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4761. "onresize": function () { }
  4762. }, {
  4763. closecallback: function () { }
  4764. }, { "style": { "height": "36px" } }).form; //创建窗体
  4765. break;
  4766. }
  4767. case "dataBoardSZArea":
  4768. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4769. setTimeout(() => {
  4770. U.MD.U.L.login();
  4771. }, 2000);
  4772. } else {
  4773. _formdiv = new U.UF.UI.form(
  4774. "综合数据看板",
  4775. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4776. "id": "dataBoardSZArea",
  4777. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4778. "onresize": function () { }
  4779. }, {
  4780. closecallback: function () { }
  4781. }, { "style": { "height": "36px" } }).form; //创建窗体
  4782. break;
  4783. }
  4784. case "dataBoardSZCity":
  4785. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4786. setTimeout(() => {
  4787. U.MD.U.L.login();
  4788. }, 2000);
  4789. } else {
  4790. _formdiv = new U.UF.UI.form(
  4791. "综合数据看板",
  4792. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4793. "id": "dataBoardSZCity",
  4794. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4795. "onresize": function () { }
  4796. }, {
  4797. closecallback: function () { }
  4798. }, { "style": { "height": "36px" } }).form; //创建窗体
  4799. break;
  4800. }
  4801. case "classroom_observation_board":
  4802. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4803. setTimeout(() => {
  4804. U.MD.U.L.login();
  4805. }, 2000);
  4806. } else {
  4807. _formdiv = new U.UF.UI.form(
  4808. "课堂观察",
  4809. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  4810. "id": "classroom_observation_board",
  4811. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4812. "onresize": function () { }
  4813. }, {
  4814. closecallback: function () { }
  4815. }, { "style": { "height": "36px" } }).form; //创建窗体
  4816. break;
  4817. }
  4818. case "classroom_observation_ob_comment":
  4819. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4820. setTimeout(() => {
  4821. U.MD.U.L.login();
  4822. }, 2000);
  4823. } else {
  4824. _formdiv = new U.UF.UI.form(
  4825. "课堂审核",
  4826. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  4827. "id": "classroom_observation_ob_comment",
  4828. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4829. "onresize": function () { }
  4830. }, {
  4831. closecallback: function () { }
  4832. }, { "style": { "height": "36px" } }).form; //创建窗体
  4833. break;
  4834. }
  4835. }
  4836. }
  4837. U.MD.D.I.openApplication = function (str, obj, info) {
  4838. obj = obj || {};
  4839. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4840. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4841. _userinfo = US.userInfo, //登录用户信息
  4842. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4843. _oid = obj.organizeid || _userinfo.organizeid,
  4844. _type = US.userInfo.type,
  4845. _org = US.userInfo.org,
  4846. _role = US.userInfo.role,
  4847. _classId = US.userInfo.classid,
  4848. _TscreenType = 1
  4849. _screenType = 2,
  4850. _SscreenType = 3;
  4851. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4852. return;
  4853. }
  4854. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4855. switch (str) {
  4856. case "studnetProject": //好友打开
  4857. _formdiv = new U.UF.UI.form(
  4858. "我的项目",
  4859. $$("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 }), {
  4860. "id": "studnetProject",
  4861. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4862. "onresize": function () { }
  4863. }, {
  4864. closecallback: function () { }
  4865. }, { "style": { "height": "36px" } }).form; //创建窗体
  4866. _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); } }
  4867. break;
  4868. case "studentEvaluate": //好友打开
  4869. _formdiv = new U.UF.UI.form(
  4870. "我的评价",
  4871. $$("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 }), {
  4872. "id": "studentEvaluate",
  4873. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4874. "onresize": function () { }
  4875. }, {
  4876. closecallback: function () { }
  4877. }, { "style": { "height": "36px" } }).form; //创建窗体
  4878. _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); } }
  4879. break;
  4880. case "my":
  4881. _formdiv = new U.UF.UI.form(
  4882. "我的资料",
  4883. $$("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 }), {
  4884. "id": "my",
  4885. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4886. "onresize": function () { }
  4887. }, {
  4888. closecallback: function () { }
  4889. }, { "style": { "height": "36px" } }).form; //创建窗体
  4890. _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); } }
  4891. break;
  4892. case "program":
  4893. _formdiv = new U.UF.UI.form(
  4894. "编程平台",
  4895. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4896. "id": "program",
  4897. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4898. "onresize": function () { }
  4899. }, {
  4900. closecallback: function () { }
  4901. }, { "style": { "height": "36px" } }).form; //创建窗体
  4902. _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); } }
  4903. break;
  4904. case "library":
  4905. _formdiv = new U.UF.UI.form(
  4906. "素材库",
  4907. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  4908. "id": "library",
  4909. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4910. "onresize": function () { }
  4911. }, {
  4912. closecallback: function () { }
  4913. }, { "style": { "height": "36px" } }).form; //创建窗体
  4914. _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); } }
  4915. break;
  4916. case "whiteboard":
  4917. _formdiv = new U.UF.UI.form(
  4918. "电子白板",
  4919. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4920. "id": "whiteboard",
  4921. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4922. "onresize": function () { }
  4923. }, {
  4924. closecallback: function () { }
  4925. }, { "style": { "height": "36px" } }).form; //创建窗体
  4926. _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); } }
  4927. break;
  4928. case "investigation":
  4929. _formdiv = new U.UF.UI.form(
  4930. "问卷调查",
  4931. $$("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 }), {
  4932. "id": "investigation",
  4933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4934. "onresize": function () { }
  4935. }, {
  4936. closecallback: function () { }
  4937. }, { "style": { "height": "36px" } }).form; //创建窗体
  4938. _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); } }
  4939. break;
  4940. case "note":
  4941. _formdiv = new U.UF.UI.form(
  4942. "便签分类",
  4943. $$("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 }), {
  4944. "id": "note",
  4945. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4946. "onresize": function () { }
  4947. }, {
  4948. closecallback: function () { }
  4949. }, { "style": { "height": "36px" } }).form; //创建窗体
  4950. _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); } }
  4951. break;
  4952. // case "score":
  4953. // _formdiv = new U.UF.UI.form(
  4954. // "量规评分",
  4955. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4956. // "id": "score",
  4957. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4958. // "onresize": function() {}
  4959. // }, {
  4960. // closecallback: function() {}
  4961. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4962. // _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); } }
  4963. // break;
  4964. case "mind":
  4965. _formdiv = new U.UF.UI.form(
  4966. "思维导图",
  4967. $$("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"
  4968. "id": "mind",
  4969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4970. "onresize": function () { }
  4971. }, {
  4972. closecallback: function () { }
  4973. }, { "style": { "height": "36px" } }).form; //创建窗体
  4974. _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); } }
  4975. break;
  4976. case "doc":
  4977. // U.MD.D.I.isRoom();
  4978. _formdiv = new U.UF.UI.form(
  4979. "协同文档",
  4980. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4981. "id": "doc",
  4982. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4983. "onresize": function () { }
  4984. }, {
  4985. closecallback: function () { }
  4986. }, { "style": { "height": "36px" } }).form; //创建窗体
  4987. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4988. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4989. // })
  4990. _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); } }
  4991. break;
  4992. case "studentStudy":
  4993. _formdiv = new U.UF.UI.form(
  4994. "课程中心",
  4995. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  4996. "id": "studentStudy",
  4997. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4998. "onresize": function () { }
  4999. }, {
  5000. closecallback: function () { }
  5001. }, { "style": { "height": "36px" } }).form; //创建窗体
  5002. _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); } }
  5003. break;
  5004. case "train": //好友打开
  5005. _formdiv = new U.UF.UI.form(
  5006. "训练平台",
  5007. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5008. "id": "train",
  5009. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5010. "onresize": function () { }
  5011. }, {
  5012. closecallback: function () { }
  5013. }, { "style": { "height": "36px" } }).form; //创建窗体
  5014. _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); } }
  5015. break;
  5016. case "mindNetwork": //好友打开
  5017. _formdiv = new U.UF.UI.form(
  5018. "思维网格",
  5019. $$("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 }), {
  5020. "id": "mindNetwork",
  5021. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5022. "onresize": function () { }
  5023. }, {
  5024. closecallback: function () { }
  5025. }, { "style": { "height": "36px" } }).form; //创建窗体
  5026. _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); } }
  5027. break;
  5028. case "studentClassRoom": //好友打开
  5029. _formdiv = new U.UF.UI.form(
  5030. "实时课堂",
  5031. $$("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 }), {
  5032. "id": "studentClassRoom",
  5033. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5034. "onresize": function () { }
  5035. }, {
  5036. closecallback: function () { }
  5037. }, { "style": { "height": "36px" } }).form; //创建窗体
  5038. _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); } }
  5039. setTimeout(() => {
  5040. U.UF.F.windowZooming(_formdiv)
  5041. }, 0);
  5042. break;
  5043. }
  5044. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5045. switch (str) {
  5046. case "studnetProject": //好友打开
  5047. _formdiv = new U.UF.UI.form(
  5048. "我的项目",
  5049. $$("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 }), {
  5050. "id": "studnetProject",
  5051. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5052. "onresize": function () { }
  5053. }, {
  5054. closecallback: function () { }
  5055. }, { "style": { "height": "36px" } }).form; //创建窗体
  5056. _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); } }
  5057. break;
  5058. case "studentEvaluate": //好友打开
  5059. _formdiv = new U.UF.UI.form(
  5060. "我的评价",
  5061. $$("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 }), {
  5062. "id": "studentEvaluate",
  5063. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5064. "onresize": function () { }
  5065. }, {
  5066. closecallback: function () { }
  5067. }, { "style": { "height": "36px" } }).form; //创建窗体
  5068. _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); } }
  5069. break;
  5070. case "my":
  5071. _formdiv = new U.UF.UI.form(
  5072. "我的资料",
  5073. $$("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 }), {
  5074. "id": "my",
  5075. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5076. "onresize": function () { }
  5077. }, {
  5078. closecallback: function () { }
  5079. }, { "style": { "height": "36px" } }).form; //创建窗体
  5080. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5081. break;
  5082. case "program":
  5083. _formdiv = new U.UF.UI.form(
  5084. "编程平台",
  5085. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5086. "id": "program",
  5087. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5088. "onresize": function () { }
  5089. }, {
  5090. closecallback: function () { }
  5091. }, { "style": { "height": "36px" } }).form; //创建窗体
  5092. _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); } }
  5093. break;
  5094. case "library":
  5095. _formdiv = new U.UF.UI.form(
  5096. "素材库",
  5097. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5098. "id": "library",
  5099. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5100. "onresize": function () { }
  5101. }, {
  5102. closecallback: function () { }
  5103. }, { "style": { "height": "36px" } }).form; //创建窗体
  5104. _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); } }
  5105. break;
  5106. case "whiteboard":
  5107. _formdiv = new U.UF.UI.form(
  5108. "电子白板",
  5109. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5110. "id": "whiteboard",
  5111. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5112. "onresize": function () { }
  5113. }, {
  5114. closecallback: function () { }
  5115. }, { "style": { "height": "36px" } }).form; //创建窗体
  5116. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5117. break;
  5118. case "investigation":
  5119. _formdiv = new U.UF.UI.form(
  5120. "问卷调查",
  5121. $$("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 }), {
  5122. "id": "investigation",
  5123. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5124. "onresize": function () { }
  5125. }, {
  5126. closecallback: function () { }
  5127. }, { "style": { "height": "36px" } }).form; //创建窗体
  5128. _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); } }
  5129. break;
  5130. case "note":
  5131. _formdiv = new U.UF.UI.form(
  5132. "便签分类",
  5133. $$("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 }), {
  5134. "id": "note",
  5135. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5136. "onresize": function () { }
  5137. }, {
  5138. closecallback: function () { }
  5139. }, { "style": { "height": "36px" } }).form; //创建窗体
  5140. _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); } }
  5141. break;
  5142. // case "score":
  5143. // _formdiv = new U.UF.UI.form(
  5144. // "量规评分",
  5145. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5146. // "id": "score",
  5147. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5148. // "onresize": function() {}
  5149. // }, {
  5150. // closecallback: function() {}
  5151. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5152. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5153. // break;
  5154. case "mind":
  5155. _formdiv = new U.UF.UI.form(
  5156. "思维导图",
  5157. $$("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"
  5158. "id": "mind",
  5159. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5160. "onresize": function () { }
  5161. }, {
  5162. closecallback: function () { }
  5163. }, { "style": { "height": "36px" } }).form; //创建窗体
  5164. _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); } }
  5165. break;
  5166. case "doc":
  5167. // U.MD.D.I.isRoom();
  5168. _formdiv = new U.UF.UI.form(
  5169. "协同文档",
  5170. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5171. "id": "doc",
  5172. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5173. "onresize": function () { }
  5174. }, {
  5175. closecallback: function () { }
  5176. }, { "style": { "height": "36px" } }).form; //创建窗体
  5177. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5178. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5179. })
  5180. _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); } }
  5181. break;
  5182. case "train": //好友打开
  5183. _formdiv = new U.UF.UI.form(
  5184. "训练平台",
  5185. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5186. "id": "train",
  5187. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5188. "onresize": function () { }
  5189. }, {
  5190. closecallback: function () { }
  5191. }, { "style": { "height": "36px" } }).form; //创建窗体
  5192. _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); } }
  5193. break;
  5194. case "studentStudy":
  5195. _formdiv = new U.UF.UI.form(
  5196. "课程中心",
  5197. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5198. "id": "studentStudy",
  5199. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5200. "onresize": function () { }
  5201. }, {
  5202. closecallback: function () { }
  5203. }, { "style": { "height": "36px" } }).form; //创建窗体
  5204. _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); } }
  5205. break;
  5206. case "mindNetwork": //好友打开
  5207. _formdiv = new U.UF.UI.form(
  5208. "思维网格",
  5209. $$("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 }), {
  5210. "id": "mindNetwork",
  5211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5212. "onresize": function () { }
  5213. }, {
  5214. closecallback: function () { }
  5215. }, { "style": { "height": "36px" } }).form; //创建窗体
  5216. _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); } }
  5217. break;
  5218. case "studentClassRoom": //好友打开
  5219. _formdiv = new U.UF.UI.form(
  5220. "实时课堂",
  5221. $$("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 }), {
  5222. "id": "studentClassRoom",
  5223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5224. "onresize": function () { }
  5225. }, {
  5226. closecallback: function () { }
  5227. }, { "style": { "height": "36px" } }).form; //创建窗体
  5228. _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); } }
  5229. setTimeout(() => {
  5230. U.UF.F.windowZooming(_formdiv)
  5231. }, 0);
  5232. break;
  5233. }
  5234. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5235. //选择应用处理
  5236. switch (str) {
  5237. case "project": //好友打开
  5238. _formdiv = new U.UF.UI.form(
  5239. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5240. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5241. "id": "project",
  5242. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5243. "onresize": function () { }
  5244. }, {
  5245. closecallback: function () { }
  5246. }, { "style": { "height": "36px" } }).form; //创建窗体
  5247. _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); } }
  5248. break;
  5249. case "student":
  5250. _formdiv = new U.UF.UI.form(
  5251. "学生管理",
  5252. $$("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 }), {
  5253. "id": "student",
  5254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5255. "onresize": function () { }
  5256. }, {
  5257. closecallback: function () { }
  5258. }, { "style": { "height": "36px" } }).form; //创建窗体
  5259. _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); } }
  5260. break;
  5261. case "evaluate":
  5262. _formdiv = new U.UF.UI.form(
  5263. "学生评价",
  5264. $$("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 }), {
  5265. "id": "evaluate",
  5266. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5267. "onresize": function () { }
  5268. }, {
  5269. closecallback: function () { }
  5270. }, { "style": { "height": "36px" } }).form; //创建窗体
  5271. _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); } }
  5272. break;
  5273. case "sys":
  5274. _formdiv = new U.UF.UI.form(
  5275. "目标管理",
  5276. $$("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 }), {
  5277. "id": "sys",
  5278. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5279. "onresize": function () { }
  5280. }, {
  5281. closecallback: function () { }
  5282. }, { "style": { "height": "36px" } }).form; //创建窗体
  5283. _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); } }
  5284. break;
  5285. case "courseDesign":
  5286. _formdiv = new U.UF.UI.form(
  5287. "项目设计",
  5288. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5289. "id": "courseDesign",
  5290. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5291. "onresize": function () { }
  5292. }, {
  5293. closecallback: function () { }
  5294. }, { "style": { "height": "36px" } }).form; //创建窗体
  5295. _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); } }
  5296. break;
  5297. case "program":
  5298. _formdiv = new U.UF.UI.form(
  5299. "编程平台",
  5300. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5301. "id": "program",
  5302. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5303. "onresize": function () { }
  5304. }, {
  5305. closecallback: function () { }
  5306. }, { "style": { "height": "36px" } }).form; //创建窗体
  5307. _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); } }
  5308. break;
  5309. case "class":
  5310. _formdiv = new U.UF.UI.form(
  5311. "班级管理",
  5312. $$("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 }), {
  5313. "id": "class",
  5314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //创建窗体
  5319. _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); } }
  5320. break;
  5321. case "Grade":
  5322. _formdiv = new U.UF.UI.form(
  5323. "年级管理",
  5324. $$("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 }), {
  5325. "id": "Grade",
  5326. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5327. "onresize": function () { }
  5328. }, {
  5329. closecallback: function () { }
  5330. }, { "style": { "height": "36px" } }).form; //创建窗体
  5331. _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); } }
  5332. break;
  5333. case "teacherOffice":
  5334. _formdiv = new U.UF.UI.form(
  5335. "教研室",
  5336. $$("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 }), {
  5337. "id": "teacherOffice",
  5338. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5339. "onresize": function () { }
  5340. }, {
  5341. closecallback: function () { }
  5342. }, { "style": { "height": "36px" } }).form; //创建窗体
  5343. _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); } }
  5344. break;
  5345. case "my":
  5346. _formdiv = new U.UF.UI.form(
  5347. "我的资料",
  5348. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5349. "id": "my",
  5350. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5351. "onresize": function () { }
  5352. }, {
  5353. closecallback: function () { }
  5354. }, { "style": { "height": "36px" } }).form; //创建窗体
  5355. _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); } }
  5356. break;
  5357. case "notice":
  5358. _formdiv = new U.UF.UI.form(
  5359. "通知公告",
  5360. $$("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 }), {
  5361. "id": "notice",
  5362. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5363. "onresize": function () { }
  5364. }, {
  5365. closecallback: function () { }
  5366. }, { "style": { "height": "36px" } }).form; //创建窗体
  5367. _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); } }
  5368. break;
  5369. case "library":
  5370. _formdiv = new U.UF.UI.form(
  5371. "素材库",
  5372. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5373. "id": "library",
  5374. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5375. "onresize": function () { }
  5376. }, {
  5377. closecallback: function () { }
  5378. }, { "style": { "height": "36px" } }).form; //创建窗体
  5379. _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); } }
  5380. break;
  5381. case "whiteboard":
  5382. _formdiv = new U.UF.UI.form(
  5383. "电子白板",
  5384. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5385. "id": "whiteboard",
  5386. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5387. "onresize": function () { }
  5388. }, {
  5389. closecallback: function () { }
  5390. }, { "style": { "height": "36px" } }).form; //创建窗体
  5391. _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); } }
  5392. break;
  5393. case "investigation":
  5394. _formdiv = new U.UF.UI.form(
  5395. "问卷调查",
  5396. $$("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 }), {
  5397. "id": "investigation",
  5398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5399. "onresize": function () { }
  5400. }, {
  5401. closecallback: function () { }
  5402. }, { "style": { "height": "36px" } }).form; //创建窗体
  5403. _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); } }
  5404. break;
  5405. case "note":
  5406. _formdiv = new U.UF.UI.form(
  5407. "便签分类",
  5408. $$("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 }), {
  5409. "id": "note",
  5410. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5411. "onresize": function () { }
  5412. }, {
  5413. closecallback: function () { }
  5414. }, { "style": { "height": "36px" } }).form; //创建窗体
  5415. _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); } }
  5416. break;
  5417. // case "score":
  5418. // _formdiv = new U.UF.UI.form(
  5419. // "量规评分",
  5420. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5421. // "id": "score",
  5422. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5423. // "onresize": function() {}
  5424. // }, {
  5425. // closecallback: function() {}
  5426. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5427. // _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); } }
  5428. // break;
  5429. case "mind":
  5430. _formdiv = new U.UF.UI.form(
  5431. "思维导图",
  5432. $$("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"
  5433. "id": "mind",
  5434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5435. "onresize": function () { }
  5436. }, {
  5437. closecallback: function () { }
  5438. }, { "style": { "height": "36px" } }).form; //创建窗体
  5439. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5440. break;
  5441. case "doc":
  5442. // U.MD.D.I.isRoom();
  5443. _formdiv = new U.UF.UI.form(
  5444. "协同文档",
  5445. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5446. "id": "doc",
  5447. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5448. "onresize": function () { }
  5449. }, {
  5450. closecallback: function () { }
  5451. }, { "style": { "height": "36px" } }).form; //创建窗体
  5452. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5453. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5454. })
  5455. _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); } }
  5456. break;
  5457. case "study":
  5458. _formdiv = new U.UF.UI.form(
  5459. "课程中心",
  5460. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5461. "id": "study",
  5462. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5463. "onresize": function () { }
  5464. }, {
  5465. closecallback: function () { }
  5466. }, { "style": { "height": "36px" } }).form; //创建窗体
  5467. _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); } }
  5468. break;
  5469. case "mindNetwork": //好友打开
  5470. _formdiv = new U.UF.UI.form(
  5471. "思维网格",
  5472. $$("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 }), {
  5473. "id": "mindNetwork",
  5474. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5475. "onresize": function () { }
  5476. }, {
  5477. closecallback: function () { }
  5478. }, { "style": { "height": "36px" } }).form; //创建窗体
  5479. _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); } }
  5480. break;
  5481. case "train": //好友打开
  5482. _formdiv = new U.UF.UI.form(
  5483. "训练平台",
  5484. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5485. "id": "mindNetwork",
  5486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //创建窗体
  5491. _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); } }
  5492. break;
  5493. case "teacherClassRoom": //好友打开
  5494. _formdiv = new U.UF.UI.form(
  5495. "实时课堂",
  5496. $$("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 }), {
  5497. "id": "teacherClassRoom",
  5498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. _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); } }
  5504. setTimeout(() => {
  5505. U.UF.F.windowZooming(_formdiv)
  5506. }, 0);
  5507. break;
  5508. }
  5509. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5510. switch (str) {
  5511. case "project": //好友打开
  5512. _formdiv = new U.UF.UI.form(
  5513. "课程管理",
  5514. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5515. "id": "project",
  5516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5517. "onresize": function () { }
  5518. }, {
  5519. closecallback: function () { }
  5520. }, { "style": { "height": "36px" } }).form; //创建窗体
  5521. _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); } }
  5522. break;
  5523. case "evaluate":
  5524. _formdiv = new U.UF.UI.form(
  5525. "学生评价",
  5526. $$("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 }), {
  5527. "id": "evaluate",
  5528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5529. "onresize": function () { }
  5530. }, {
  5531. closecallback: function () { }
  5532. }, { "style": { "height": "36px" } }).form; //创建窗体
  5533. _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); } }
  5534. break;
  5535. case "notice":
  5536. _formdiv = new U.UF.UI.form(
  5537. "通知公告",
  5538. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5539. "id": "notice",
  5540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, { "style": { "height": "36px" } }).form; //创建窗体
  5545. _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); } }
  5546. break;
  5547. case "stuLibrary":
  5548. _formdiv = new U.UF.UI.form(
  5549. "学习资料",
  5550. $$("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 }), {
  5551. "id": "stuLibrary",
  5552. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5553. "onresize": function () { }
  5554. }, {
  5555. closecallback: function () { }
  5556. }, { "style": { "height": "36px" } }).form; //创建窗体
  5557. _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); } }
  5558. break;
  5559. case "program":
  5560. _formdiv = new U.UF.UI.form(
  5561. "编程平台",
  5562. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5563. "id": "program",
  5564. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5565. "onresize": function () { }
  5566. }, {
  5567. closecallback: function () { }
  5568. }, { "style": { "height": "36px" } }).form; //创建窗体
  5569. _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); } }
  5570. break;
  5571. case "whiteboard":
  5572. _formdiv = new U.UF.UI.form(
  5573. "电子白板",
  5574. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5575. "id": "whiteboard",
  5576. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5577. "onresize": function () { }
  5578. }, {
  5579. closecallback: function () { }
  5580. }, { "style": { "height": "36px" } }).form; //创建窗体
  5581. _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); } }
  5582. break;
  5583. case "investigation":
  5584. _formdiv = new U.UF.UI.form(
  5585. "问卷调查",
  5586. $$("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 }), {
  5587. "id": "investigation",
  5588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5589. "onresize": function () { }
  5590. }, {
  5591. closecallback: function () { }
  5592. }, { "style": { "height": "36px" } }).form; //创建窗体
  5593. _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); } }
  5594. break;
  5595. case "mind":
  5596. _formdiv = new U.UF.UI.form(
  5597. "思维导图",
  5598. $$("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"
  5599. "id": "mind",
  5600. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5601. "onresize": function () { }
  5602. }, {
  5603. closecallback: function () { }
  5604. }, { "style": { "height": "36px" } }).form; //创建窗体
  5605. _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); } }
  5606. break;
  5607. case "doc":
  5608. // U.MD.D.I.isRoom();
  5609. _formdiv = new U.UF.UI.form(
  5610. "协同文档",
  5611. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5612. "id": "doc",
  5613. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5614. "onresize": function () { }
  5615. }, {
  5616. closecallback: function () { }
  5617. }, { "style": { "height": "36px" } }).form; //创建窗体
  5618. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5619. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5620. })
  5621. _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); } }
  5622. break;
  5623. case "study":
  5624. _formdiv = new U.UF.UI.form(
  5625. "课程中心",
  5626. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5627. "id": "study",
  5628. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5629. "onresize": function () { }
  5630. }, {
  5631. closecallback: function () { }
  5632. }, { "style": { "height": "36px" } }).form; //创建窗体
  5633. _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); } }
  5634. break;
  5635. case "mindNetwork": //好友打开
  5636. _formdiv = new U.UF.UI.form(
  5637. "思维网格",
  5638. $$("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 }), {
  5639. "id": "mindNetwork",
  5640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5641. "onresize": function () { }
  5642. }, {
  5643. closecallback: function () { }
  5644. }, { "style": { "height": "36px" } }).form; //创建窗体
  5645. _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); } }
  5646. break;
  5647. case "train": //好友打开
  5648. _formdiv = new U.UF.UI.form(
  5649. "训练平台",
  5650. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5651. "id": "train",
  5652. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5653. "onresize": function () { }
  5654. }, {
  5655. closecallback: function () { }
  5656. }, { "style": { "height": "36px" } }).form; //创建窗体
  5657. _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); } }
  5658. break;
  5659. case "sys":
  5660. _formdiv = new U.UF.UI.form(
  5661. "目标管理",
  5662. $$("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 }), {
  5663. "id": "sys",
  5664. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5665. "onresize": function () { }
  5666. }, {
  5667. closecallback: function () { }
  5668. }, { "style": { "height": "36px" } }).form; //创建窗体
  5669. _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); } }
  5670. break;
  5671. case "courseDesign":
  5672. _formdiv = new U.UF.UI.form(
  5673. "项目设计",
  5674. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5675. "id": "courseDesign",
  5676. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5677. "onresize": function () { }
  5678. }, {
  5679. closecallback: function () { }
  5680. }, { "style": { "height": "36px" } }).form; //创建窗体
  5681. _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); } }
  5682. break;
  5683. }
  5684. } else if (!_type) {
  5685. switch (str) {
  5686. case "my":
  5687. _formdiv = new U.UF.UI.form(
  5688. "我的资料",
  5689. $$("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 }), {
  5690. "id": "my",
  5691. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5692. "onresize": function () { }
  5693. }, {
  5694. closecallback: function () { }
  5695. }, { "style": { "height": "36px" } }).form; //创建窗体
  5696. _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); } }
  5697. break;
  5698. }
  5699. }
  5700. switch (str) {
  5701. // AIprogram2 AI体验 aihub.cocorobo.cn
  5702. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5703. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5704. case "formulaEdi": //公式编辑
  5705. _formdiv = new U.UF.UI.form(
  5706. "公式编辑",
  5707. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5708. "id": "formulaEdi",
  5709. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5710. "onresize": function () { }
  5711. }, {
  5712. closecallback: function () { }
  5713. }, { "style": { "height": "36px" } }).form; //创建窗体
  5714. _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); } }
  5715. break;
  5716. case "molStr": //分子结构
  5717. _formdiv = new U.UF.UI.form(
  5718. "分子结构",
  5719. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5720. "id": "molStr",
  5721. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5722. "onresize": function () { }
  5723. }, {
  5724. closecallback: function () { }
  5725. }, { "style": { "height": "36px" } }).form; //创建窗体
  5726. _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); } }
  5727. break;
  5728. case "timeAxis": //时间轴
  5729. _formdiv = new U.UF.UI.form(
  5730. "时间轴",
  5731. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5732. "id": "timeAxis",
  5733. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5734. "onresize": function () { }
  5735. }, {
  5736. closecallback: function () { }
  5737. }, { "style": { "height": "36px" } }).form; //创建窗体
  5738. _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); } }
  5739. break;
  5740. case "AIprogram2": //AI体验
  5741. _formdiv = new U.UF.UI.form(
  5742. "AI体验",
  5743. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5744. "id": "AIprogram2",
  5745. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5746. "onresize": function () { }
  5747. }, {
  5748. closecallback: function () { }
  5749. }, { "style": { "height": "36px" } }).form; //创建窗体
  5750. _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); } }
  5751. break;
  5752. case "Pythonprogram": //python编程
  5753. _formdiv = new U.UF.UI.form(
  5754. "Python编程",
  5755. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5756. "id": "Pythonprogram",
  5757. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5758. "onresize": function () { }
  5759. }, {
  5760. closecallback: function () { }
  5761. }, { "style": { "height": "36px" } }).form; //创建窗体
  5762. _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); } }
  5763. break;
  5764. case "AIprogram": //ai编程
  5765. _formdiv = new U.UF.UI.form(
  5766. "AI编程平台",
  5767. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5768. "id": "AIprogram",
  5769. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5770. "onresize": function () { }
  5771. }, {
  5772. closecallback: function () { }
  5773. }, { "style": { "height": "36px" } }).form; //创建窗体
  5774. _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); } }
  5775. break;
  5776. case "CocoPi": //CocoPi
  5777. _formdiv = new U.UF.UI.form(
  5778. "CocoPi",
  5779. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pi.cocorobo.cn" }), {
  5780. "id": "CocoPi",
  5781. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5782. "onresize": function () { }
  5783. }, {
  5784. closecallback: function () { }
  5785. }, { "style": { "height": "36px" } }).form; //创建窗体
  5786. _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); } }
  5787. break;
  5788. case "Wood": //Wood
  5789. _formdiv = new U.UF.UI.form(
  5790. "海龟编程",
  5791. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  5792. "id": "Wood",
  5793. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5794. "onresize": function () { }
  5795. }, {
  5796. closecallback: function () { }
  5797. }, { "style": { "height": "36px" } }).form; //创建窗体
  5798. _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); } }
  5799. break;
  5800. case "car": //模拟驾驶
  5801. _formdiv = new U.UF.UI.form(
  5802. "模拟驾驶",
  5803. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  5804. "id": "car",
  5805. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5806. "onresize": function () { }
  5807. }, {
  5808. closecallback: function () { }
  5809. }, { "style": { "height": "36px" } }).form; //创建窗体
  5810. _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); } }
  5811. break;
  5812. case "lineSearch": //路径搜索
  5813. _formdiv = new U.UF.UI.form(
  5814. "路径搜索",
  5815. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://qiao.github.io/PathFinding.js/visual/" }), {
  5816. "id": "lineSearch",
  5817. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5818. "onresize": function () { }
  5819. }, {
  5820. closecallback: function () { }
  5821. }, { "style": { "height": "36px" } }).form; //创建窗体
  5822. _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); } }
  5823. break;
  5824. case "deepLearning": //深度学习
  5825. _formdiv = new U.UF.UI.form(
  5826. "深度学习",
  5827. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-demos.cocorobo.cn/teachable-machine/public/#" }), {
  5828. "id": "deepLearning",
  5829. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5830. "onresize": function () { }
  5831. }, {
  5832. closecallback: function () { }
  5833. }, { "style": { "height": "36px" } }).form; //创建窗体
  5834. _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); } }
  5835. break;
  5836. case "allHistory": //深度学习
  5837. _formdiv = new U.UF.UI.form(
  5838. "全历史",
  5839. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.allhistory.com/" }), {
  5840. "id": "allHistory",
  5841. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5842. "onresize": function () { }
  5843. }, {
  5844. closecallback: function () { }
  5845. }, { "style": { "height": "36px" } }).form; //创建窗体
  5846. _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); } }
  5847. break;
  5848. case "chatPDF": //ai编程
  5849. _formdiv = new U.UF.UI.form(
  5850. "chatPDF",
  5851. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5852. "id": "chatPDF",
  5853. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5854. "onresize": function () { }
  5855. }, {
  5856. closecallback: function () { }
  5857. }, { "style": { "height": "36px" } }).form; //创建窗体
  5858. _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); } }
  5859. break;
  5860. case "resources": //国家教育
  5861. _formdiv = new U.UF.UI.form(
  5862. "国家教育",
  5863. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5864. "id": "resources",
  5865. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5866. "onresize": function () { }
  5867. }, {
  5868. closecallback: function () { }
  5869. }, { "style": { "height": "36px" } }).form; //创建窗体
  5870. _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); } }
  5871. break;
  5872. case "codeEdit": //源码编辑
  5873. _formdiv = new U.UF.UI.form(
  5874. "源码编辑",
  5875. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5876. "id": "codeEdit",
  5877. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5878. "onresize": function () { }
  5879. }, {
  5880. closecallback: function () { }
  5881. }, { "style": { "height": "36px" } }).form; //创建窗体
  5882. _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); } }
  5883. break; //
  5884. case "MindMap": //MindMap
  5885. _formdiv = new U.UF.UI.form(
  5886. "MindMap",
  5887. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5888. "id": "MindMap",
  5889. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5890. "onresize": function () { }
  5891. }, {
  5892. closecallback: function () { }
  5893. }, { "style": { "height": "36px" } }).form; //创建窗体
  5894. _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); } }
  5895. break;
  5896. case "netWorkPanel": //netWorkPanel
  5897. _formdiv = new U.UF.UI.form(
  5898. "netWorkPanel",
  5899. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5900. "id": "netWorkPanel",
  5901. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5902. "onresize": function () { }
  5903. }, {
  5904. closecallback: function () { }
  5905. }, { "style": { "height": "36px" } }).form; //创建窗体
  5906. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5907. break;
  5908. case "GeoGebra": //GeoGebra
  5909. _formdiv = new U.UF.UI.form(
  5910. "GeoGebra",
  5911. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  5912. "id": "GeoGebra",
  5913. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5914. "onresize": function () { }
  5915. }, {
  5916. closecallback: function () { }
  5917. }, { "style": { "height": "36px" } }).form; //创建窗体
  5918. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5919. break;
  5920. case "translation": //翻译
  5921. _formdiv = new U.UF.UI.form(
  5922. "翻译",
  5923. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5924. "id": "translation",
  5925. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5926. "onresize": function () { }
  5927. }, {
  5928. closecallback: function () { }
  5929. }, { "style": { "height": "36px" } }).form; //创建窗体
  5930. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5931. break;
  5932. case "mohe": //魔盒
  5933. _formdiv = new U.UF.UI.form(
  5934. "魔盒识字",
  5935. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5936. "id": "mohe",
  5937. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5938. "onresize": function () { }
  5939. }, {
  5940. closecallback: function () { }
  5941. }, { "style": { "height": "36px" } }).form; //创建窗体
  5942. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5943. break;
  5944. case "24game": //24点
  5945. _formdiv = new U.UF.UI.form(
  5946. "24点",
  5947. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5948. "id": "24game",
  5949. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5950. "onresize": function () { }
  5951. }, {
  5952. closecallback: function () { }
  5953. }, { "style": { "height": "36px" } }).form; //创建窗体
  5954. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5955. break;
  5956. case "case":
  5957. _formdiv = new U.UF.UI.form(
  5958. "课程进展",
  5959. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5960. "id": "case",
  5961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5962. "onresize": function () { }
  5963. }, {
  5964. closecallback: function () { }
  5965. }, { "style": { "height": "36px" } }).form; //创建窗体
  5966. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5967. break;
  5968. case "snf":
  5969. _formdiv = new U.UF.UI.form(
  5970. "赛诺梵",
  5971. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  5972. "id": "snf",
  5973. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5974. "onresize": function () { }
  5975. }, {
  5976. closecallback: function () { }
  5977. }, { "style": { "height": "36px" } }).form; //创建窗体
  5978. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5979. break;
  5980. case "hanFamily":
  5981. _formdiv = new U.UF.UI.form(
  5982. "汉字家族",
  5983. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5984. "id": "hanFamily",
  5985. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //创建窗体
  5990. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5991. break;
  5992. case "hanClassics":
  5993. _formdiv = new U.UF.UI.form(
  5994. "国学经典",
  5995. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5996. "id": "hanClassics",
  5997. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5998. "onresize": function () { }
  5999. }, {
  6000. closecallback: function () { }
  6001. }, { "style": { "height": "36px" } }).form; //创建窗体
  6002. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6003. break;
  6004. case "hanTraining":
  6005. _formdiv = new U.UF.UI.form(
  6006. "笔画训练",
  6007. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6008. "id": "hanTraining",
  6009. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6010. "onresize": function () { }
  6011. }, {
  6012. closecallback: function () { }
  6013. }, { "style": { "height": "36px" } }).form; //创建窗体
  6014. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6015. break;
  6016. case "hanClass":
  6017. _formdiv = new U.UF.UI.form(
  6018. "书法课堂",
  6019. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6020. "id": "hanClass",
  6021. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6022. "onresize": function () { }
  6023. }, {
  6024. closecallback: function () { }
  6025. }, { "style": { "height": "36px" } }).form; //创建窗体
  6026. _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); } }
  6027. break;
  6028. case "han":
  6029. _formdiv = new U.UF.UI.form(
  6030. "汉字宫",
  6031. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6032. "id": "han",
  6033. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6034. "onresize": function () { }
  6035. }, {
  6036. closecallback: function () { }
  6037. }, { "style": { "height": "36px" } }).form; //创建窗体
  6038. _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); } }
  6039. break;
  6040. case "projectGM": //课程管理
  6041. _formdiv = new U.UF.UI.form(
  6042. "课程管理",
  6043. $$("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 }), {
  6044. "id": "projectGM",
  6045. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6046. "onresize": function () { }
  6047. }, {
  6048. closecallback: function () { }
  6049. }, { "style": { "height": "36px" } }).form; //创建窗体
  6050. _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); } }
  6051. break;
  6052. case "studyGM": //课程中心
  6053. _formdiv = new U.UF.UI.form(
  6054. "课程中心",
  6055. $$("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
  6056. "id": "study",
  6057. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6058. "onresize": function () { }
  6059. }, {
  6060. closecallback: function () { }
  6061. }, { "style": { "height": "36px" } }).form; //创建窗体
  6062. _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); } }
  6063. break;
  6064. // studentGM
  6065. case "studentGM": //学生管理
  6066. _formdiv = new U.UF.UI.form(
  6067. "学生管理",
  6068. $$("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 }), {
  6069. "id": "studentGM",
  6070. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6071. "onresize": function () { }
  6072. }, {
  6073. closecallback: function () { }
  6074. }, { "style": { "height": "36px" } }).form; //创建窗体
  6075. _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); } }
  6076. break;
  6077. case "evaluateGM": //学生评价
  6078. _formdiv = new U.UF.UI.form(
  6079. "学生评价",
  6080. $$("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 }), {
  6081. "id": "evaluateGM",
  6082. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6083. "onresize": function () { }
  6084. }, {
  6085. closecallback: function () { }
  6086. }, { "style": { "height": "36px" } }).form; //创建窗体
  6087. _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); } }
  6088. break;
  6089. // classGM
  6090. case "classGM": //班级管理
  6091. _formdiv = new U.UF.UI.form(
  6092. "班级管理",
  6093. $$("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 }), {
  6094. "id": "classGM",
  6095. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6096. "onresize": function () { }
  6097. }, {
  6098. closecallback: function () { }
  6099. }, { "style": { "height": "36px" } }).form; //创建窗体
  6100. _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); } }
  6101. break;
  6102. // dataGM
  6103. case "dataGM":
  6104. _formdiv = new U.UF.UI.form(
  6105. "我的资料",
  6106. $$("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 }), {
  6107. "id": "dataGM",
  6108. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6109. "onresize": function () { }
  6110. }, {
  6111. closecallback: function () { }
  6112. }, { "style": { "height": "36px" } }).form; //创建窗体
  6113. _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); } }
  6114. break;
  6115. // caseGM
  6116. case "caseGM": //课程进展
  6117. _formdiv = new U.UF.UI.form(
  6118. "课程进展",
  6119. $$("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 }), {
  6120. "id": "caseGM",
  6121. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6122. "onresize": function () { }
  6123. }, {
  6124. closecallback: function () { }
  6125. }, { "style": { "height": "36px" } }).form; //创建窗体
  6126. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6127. break;
  6128. // meterialGM
  6129. case "meterialGM": //素材库
  6130. _formdiv = new U.UF.UI.form(
  6131. "素材库",
  6132. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  6133. "id": "meterialGM",
  6134. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6135. "onresize": function () { }
  6136. }, {
  6137. closecallback: function () { }
  6138. }, { "style": { "height": "36px" } }).form; //创建窗体
  6139. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6140. break;
  6141. // evaluateSGM
  6142. case "evaluateSGM": //我的评价
  6143. _formdiv = new U.UF.UI.form(
  6144. "我的评价",
  6145. $$("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 }), {
  6146. "id": "evaluateSGM",
  6147. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6148. "onresize": function () { }
  6149. }, {
  6150. closecallback: function () { }
  6151. }, { "style": { "height": "36px" } }).form; //创建窗体
  6152. _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); } }
  6153. break;
  6154. case "jupyter": //jupyter
  6155. _formdiv = new U.UF.UI.form(
  6156. "jupyter",
  6157. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6158. "id": "jupyter",
  6159. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6160. "onresize": function () { }
  6161. }, {
  6162. closecallback: function () { }
  6163. }, { "style": { "height": "36px" } }).form; //创建窗体
  6164. _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); } }
  6165. break;
  6166. case "number": //数字实验室
  6167. _formdiv = new U.UF.UI.form(
  6168. "数字实验室",
  6169. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6170. "id": "number",
  6171. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6172. "onresize": function () { }
  6173. }, {
  6174. closecallback: function () { }
  6175. }, { "style": { "height": "36px" } }).form; //创建窗体
  6176. _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); } }
  6177. break;
  6178. case "studentCourse": //项目管理 学生
  6179. _formdiv = new U.UF.UI.form(
  6180. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6181. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6182. "id": "studentCourse",
  6183. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6184. "onresize": function () { }
  6185. }, {
  6186. closecallback: function () { }
  6187. }, { "style": { "height": "36px" } }).form; //创建窗体
  6188. _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); } }
  6189. break;
  6190. case "studentCourseS": //项目管理 老师
  6191. _formdiv = new U.UF.UI.form(
  6192. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6193. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/scourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6194. "id": "studentCourseS",
  6195. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6196. "onresize": function () { }
  6197. }, {
  6198. closecallback: function () { }
  6199. }, { "style": { "height": "36px" } }).form; //创建窗体
  6200. _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); } }
  6201. break;
  6202. case "studentIndex": //项目中心
  6203. _formdiv = new U.UF.UI.form(
  6204. "项目中心",
  6205. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6206. "id": "studentIndex",
  6207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6208. "onresize": function () { }
  6209. }, {
  6210. closecallback: function () { }
  6211. }, { "style": { "height": "36px" } }).form; //创建窗体
  6212. _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); } }
  6213. break;
  6214. case "CaseDesignS":
  6215. _formdiv = new U.UF.UI.form(
  6216. "项目进展",
  6217. $$("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 }), {
  6218. "id": "case",
  6219. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6220. "onresize": function () { }
  6221. }, {
  6222. closecallback: function () { }
  6223. }, { "style": { "height": "36px" } }).form; //创建窗体
  6224. _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); } }
  6225. break;
  6226. case "tcStudent": //腾讯学生管理
  6227. _formdiv = new U.UF.UI.form(
  6228. "学生管理",
  6229. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6230. "id": "tcStudent",
  6231. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6232. "onresize": function () { }
  6233. }, {
  6234. closecallback: function () { }
  6235. }, { "style": { "height": "36px" } }).form; //创建窗体
  6236. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6237. break;
  6238. case "tcSchool": //腾讯学校管理
  6239. _formdiv = new U.UF.UI.form(
  6240. "学校管理",
  6241. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6242. "id": "tcSchool",
  6243. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6244. "onresize": function () { }
  6245. }, {
  6246. closecallback: function () { }
  6247. }, { "style": { "height": "36px" } }).form; //创建窗体
  6248. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6249. break;
  6250. case "tcTeacher": //腾讯学校管理
  6251. _formdiv = new U.UF.UI.form(
  6252. "教师管理",
  6253. $$("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 }), {
  6254. "id": "tcTeacher",
  6255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6256. "onresize": function () { }
  6257. }, {
  6258. closecallback: function () { }
  6259. }, { "style": { "height": "36px" } }).form; //创建窗体
  6260. _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); } }
  6261. break;
  6262. case "tcData": //腾讯我的资料
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6266. "id": "tcData",
  6267. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6268. "onresize": function () { }
  6269. }, {
  6270. closecallback: function () { }
  6271. }, { "style": { "height": "36px" } }).form; //创建窗体
  6272. _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); } }
  6273. break;
  6274. case "tcNotice": //腾讯消息通知
  6275. _formdiv = new U.UF.UI.form(
  6276. "消息通知",
  6277. $$("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 }), {
  6278. "id": "tcNotice",
  6279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6280. "onresize": function () { }
  6281. }, {
  6282. closecallback: function () { }
  6283. }, { "style": { "height": "36px" } }).form; //创建窗体
  6284. _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); } }
  6285. break;
  6286. case "myReport": //好友打开
  6287. _formdiv = new U.UF.UI.form(
  6288. "我的评价",
  6289. $$("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 }), {
  6290. "id": "myReport",
  6291. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //创建窗体
  6296. _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); } }
  6297. break;
  6298. case "learnAna": //好友打开
  6299. _formdiv = new U.UF.UI.form(
  6300. "学习分析",
  6301. $$("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 }), {
  6302. "id": "learnAna",
  6303. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6304. "onresize": function () { }
  6305. }, {
  6306. closecallback: function () { }
  6307. }, { "style": { "height": "36px" } }).form; //创建窗体
  6308. _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); } }
  6309. break;
  6310. case "AIChat": //AI共创
  6311. _formdiv = new U.UF.UI.form(
  6312. "AI共创",
  6313. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6314. "id": "AIChat",
  6315. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6316. "onresize": function () { }
  6317. }, {
  6318. istop: true,
  6319. closecallback: function () { $("#aichat_icon").remove(); },
  6320. narrowcallback: function () {
  6321. if (!$("#aichat_icon")[0]) {
  6322. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6323. }
  6324. },
  6325. }, { "style": { "height": "36px" } }).form; //创建窗体
  6326. _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); } }
  6327. break;
  6328. case "ainew": //AI共创
  6329. _formdiv = new U.UF.UI.form(
  6330. "AI协同",
  6331. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6332. "id": "ainew",
  6333. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6334. "onresize": function () { }
  6335. }, {
  6336. closecallback: function () { }
  6337. }, { "style": { "height": "36px" } }).form; //创建窗体
  6338. _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); } }
  6339. break;
  6340. case "gpt4": //gpt4
  6341. _formdiv = new U.UF.UI.form(
  6342. "AI助手",
  6343. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/gpt4/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6344. "id": "gpt4",
  6345. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6346. "onresize": function () { }
  6347. }, {
  6348. closecallback: function () { }
  6349. }, { "style": { "height": "36px" } }).form; //创建窗体
  6350. _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); } }
  6351. break;
  6352. case "aigpt": //gpt4
  6353. _formdiv = new U.UF.UI.form(
  6354. "AI助手+",
  6355. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6356. "id": "aigpt",
  6357. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6358. "onresize": function () { }
  6359. }, {
  6360. closecallback: function () {
  6361. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6362. }
  6363. }, { "style": { "height": "36px" } }).form; //创建窗体
  6364. _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); } }
  6365. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6366. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6367. })
  6368. break;
  6369. case "aiKnowledge": //aiKnowledge
  6370. _formdiv = new U.UF.UI.form(
  6371. "知识建构",
  6372. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  6373. "id": "aiKnowledge",
  6374. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6375. "onresize": function () { }
  6376. }, {
  6377. closecallback: function () { }
  6378. }, { "style": { "height": "36px" } }).form; //创建窗体
  6379. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6380. break;
  6381. case "futureClass": //AI共创
  6382. _formdiv = new U.UF.UI.form(
  6383. "协同建构",
  6384. $$("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
  6385. "id": "synergyCourse",
  6386. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6387. "onresize": function () { }
  6388. }, {
  6389. closecallback: function () {
  6390. $("iframe", _formdiv)[0].contentWindow.loginout();
  6391. }
  6392. }, { "style": { "height": "36px" } }).form; //创建窗体
  6393. _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); } }
  6394. break;
  6395. case "aiagent": //ai agent
  6396. _formdiv = new U.UF.UI.form(
  6397. "AI Agent",
  6398. $$("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" }), {
  6399. "id": "AIAgent",
  6400. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6401. "onresize": function () { }
  6402. }, {
  6403. closecallback: function () { }
  6404. }, { "style": { "height": "36px" } }).form; //创建窗体
  6405. _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); } }
  6406. break;
  6407. case "dataBoard": //数据看板
  6408. _formdiv = new U.UF.UI.form(
  6409. "数据看板",
  6410. $$("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 }), {
  6411. "id": "dataBoard",
  6412. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6413. "onresize": function () { }
  6414. }, {
  6415. closecallback: function () { }
  6416. }, { "style": { "height": "36px" } }).form; //创建窗体
  6417. _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); } }
  6418. break;
  6419. case "dataBoardSies": //数据融合
  6420. _formdiv = new U.UF.UI.form(
  6421. "数据融合",
  6422. $$("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 }), {
  6423. "id": "dataBoardSies",
  6424. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6425. "onresize": function () { }
  6426. }, {
  6427. closecallback: function () { }
  6428. }, { "style": { "height": "36px" } }).form; //创建窗体
  6429. _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); } }
  6430. break;
  6431. case "dataBoardNew": //数据看板
  6432. _formdiv = new U.UF.UI.form(
  6433. "综合看板",
  6434. $$("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 }), {
  6435. "id": "dataBoardNew",
  6436. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6437. "onresize": function () { }
  6438. }, {
  6439. closecallback: function () { }
  6440. }, { "style": { "height": "36px" } }).form; //创建窗体
  6441. _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); } }
  6442. break;
  6443. case "dataBoardTest": //数据看板
  6444. _formdiv = new U.UF.UI.form(
  6445. "评测看板",
  6446. $$("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 }), {
  6447. "id": "dataBoardTest",
  6448. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6449. "onresize": function () { }
  6450. }, {
  6451. closecallback: function () { }
  6452. }, { "style": { "height": "36px" } }).form; //创建窗体
  6453. _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); } }
  6454. break;
  6455. case "AIAnalyse": //AI共创
  6456. _formdiv = new U.UF.UI.form(
  6457. "AI分析",
  6458. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6459. "id": "AIAnalyse",
  6460. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6461. "onresize": function () { }
  6462. }, {
  6463. closecallback: function () { }
  6464. }, { "style": { "height": "36px" } }).form; //创建窗体
  6465. _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); } }
  6466. break;
  6467. case "studioCourse": //AI共创
  6468. _formdiv = new U.UF.UI.form(
  6469. "工作管理",
  6470. $$("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 }), {
  6471. "id": "studioCourse",
  6472. "style": { "width": "100%", "height": "100%", "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/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6478. break;
  6479. case "studioIndex": //AI共创
  6480. _formdiv = new U.UF.UI.form(
  6481. "工作中心",
  6482. $$("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 }), {
  6483. "id": "studioIndex",
  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/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6490. break;
  6491. case "source":
  6492. _formdiv = new U.UF.UI.form(
  6493. "教学资源",
  6494. $$("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 }), {
  6495. "id": "source",
  6496. "style": { "width": "80%", "height": "80%", "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/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6502. break;
  6503. case "testTeacher":
  6504. _formdiv = new U.UF.UI.form(
  6505. "教师管理",
  6506. $$("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 }), {
  6507. "id": "testTeacher",
  6508. "style": { "width": "80%", "height": "80%", "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/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6514. break;
  6515. case "testStudent":
  6516. _formdiv = new U.UF.UI.form(
  6517. "教师中心",
  6518. $$("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 }), {
  6519. "id": "testStudent",
  6520. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6521. "onresize": function () { }
  6522. }, {
  6523. closecallback: function () { }
  6524. }, { "style": { "height": "36px" } }).form; //创建窗体
  6525. _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); } }
  6526. break;
  6527. case "testTeacherSies":
  6528. _formdiv = new U.UF.UI.form(
  6529. "教师管理",
  6530. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6531. "id": "testTeacherSies",
  6532. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6533. "onresize": function () { }
  6534. }, {
  6535. closecallback: function () { }
  6536. }, { "style": { "height": "36px" } }).form; //创建窗体
  6537. _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); } }
  6538. break;
  6539. case "testStudentSies":
  6540. _formdiv = new U.UF.UI.form(
  6541. "教师中心",
  6542. $$("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 }), {
  6543. "id": "testStudentSies",
  6544. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6545. "onresize": function () { }
  6546. }, {
  6547. closecallback: function () { }
  6548. }, { "style": { "height": "36px" } }).form; //创建窗体
  6549. _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); } }
  6550. break;
  6551. case "ytpbl": //消息通知
  6552. _formdiv = new U.UF.UI.form(
  6553. "案例征集",
  6554. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pblyt.cocorobo.cn/#/login?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6555. "id": "ytpbl",
  6556. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6557. "onresize": function () { }
  6558. }, {
  6559. closecallback: function () { }
  6560. }, { "style": { "height": "36px" } }).form; //创建窗体
  6561. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6562. // 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");
  6563. break;
  6564. case "aiCourseResource": //人工智能窗体
  6565. _formdiv = new U.UF.UI.form(
  6566. false,
  6567. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/index.html" + window.location.search }), {
  6568. "id": "aiCourseResource",
  6569. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6570. "onresize": function () { },
  6571. "isdrag": false,
  6572. }, {
  6573. closecallback: function () { }
  6574. }, { "style": { "height": "36px" } }).form; //创建窗体
  6575. _taskbar = ''
  6576. break;
  6577. case "szdjgCocooroboX": //图形化编程
  6578. _formdiv = new U.UF.UI.form(
  6579. "图形化编程",
  6580. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/index.html" }), {
  6581. "id": "szdjgCocooroboX",
  6582. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6583. "onresize": function () { }
  6584. }, {
  6585. closecallback: function () { }
  6586. }, { "style": { "height": "36px" } }).form; //创建窗体
  6587. _taskbar = ''
  6588. break;
  6589. case "szdjgPython": //python编程
  6590. _formdiv = new U.UF.UI.form(
  6591. "Python编程",
  6592. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  6593. "id": "szdjgPython",
  6594. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6595. "onresize": function () { }
  6596. }, {
  6597. closecallback: function () { }
  6598. }, { "style": { "height": "36px" } }).form; //创建窗体
  6599. _taskbar = ''
  6600. break;
  6601. case "Record":
  6602. _formdiv = new U.UF.UI.form(
  6603. "观察记录",
  6604. $$("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 }), {
  6605. "id": "Record",
  6606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6607. "onresize": function () { }
  6608. }, {
  6609. closecallback: function () { }
  6610. }, { "style": { "height": "36px" } }).form; //创建窗体
  6611. _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); } }
  6612. break;
  6613. case "aigptCourse":
  6614. _formdiv = new U.UF.UI.form(
  6615. "AI智能体",
  6616. $$("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' }), {
  6617. "id": "aigptCourse",
  6618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6619. "onresize": function () { }
  6620. }, {
  6621. closecallback: function () { }
  6622. }, { "style": { "height": "36px" } }).form; //创建窗体
  6623. _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); } }
  6624. break;
  6625. case "classroomObservation":
  6626. _formdiv = new U.UF.UI.form(
  6627. "课堂观察",
  6628. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6629. "id": "classroomObservation",
  6630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6631. "onresize": function () { }
  6632. }, {
  6633. closecallback: function () { }
  6634. }, { "style": { "height": "36px" } }).form; //创建窗体
  6635. _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); } }
  6636. break;
  6637. case "pblCourse":
  6638. _formdiv = new U.UF.UI.form(
  6639. "学生PBL",
  6640. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6641. "id": "pblCourse",
  6642. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6643. "onresize": function () { }
  6644. }, {
  6645. closecallback: function () { }
  6646. }, { "style": { "height": "36px" } }).form; //创建窗体
  6647. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6648. break;
  6649. }
  6650. //U.MD.D.I.openClick(str);
  6651. //如果有任务栏信息
  6652. if (_taskbar) {
  6653. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6654. }
  6655. }
  6656. // U.MD.D.I.openClick = function(str){
  6657. // var click = '';
  6658. // switch(str){
  6659. // case 'friend':
  6660. // click = '我的好友';
  6661. // break;
  6662. // case 'domain':
  6663. // click = '域名管理';
  6664. // break;
  6665. // case 'disk':
  6666. // click = '我的云盘';
  6667. // break;
  6668. // case 'word':
  6669. // click = 'Word';
  6670. // break;
  6671. // case 'excel':
  6672. // click = 'Execl';
  6673. // break;
  6674. // case 'txt':
  6675. // click = '文本文件';
  6676. // break;
  6677. // case 'lookupFriend':
  6678. // click = '查找好友';
  6679. // break;
  6680. // case 'ftp':
  6681. // click = 'FTP';
  6682. // break;
  6683. // case 'group':
  6684. // click = '群组';
  6685. // break;
  6686. // case 'set':
  6687. // click = '我的设置';
  6688. // break;
  6689. // case 'systemSet':
  6690. // click = '系统设置';
  6691. // break;
  6692. // case 'boomYun':
  6693. // click = '互联办公';
  6694. // break;
  6695. // case 'xz':
  6696. // click = '云端下载';
  6697. // break;
  6698. // case 'client':
  6699. // click = '有思浏览器';
  6700. // break;
  6701. // case 'backEndProgramming':
  6702. // click = '在线后台编程';
  6703. // break;
  6704. // case 'frontEndProgramming':
  6705. // click = '在线前端编程';
  6706. // break;
  6707. // default: break;
  6708. // }
  6709. // if(U.MD.D.I.Ip && click){
  6710. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6711. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6712. // })
  6713. // }
  6714. // }
  6715. /**
  6716. *函数作用:ajax简易函数,使用post格式
  6717. *@param url {data} 后台地址
  6718. *@param data {data} 参数json
  6719. *@param fn {data} 回调函数
  6720. *
  6721. */
  6722. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6723. // var xhr = new XMLHttpRequest();
  6724. // xhr.open("GET",url,true);
  6725. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6726. // xhr.onreadystatechange = function(){
  6727. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6728. // fn.call(this,xhr.responseText);
  6729. // }
  6730. // };
  6731. // xhr.send();
  6732. // }
  6733. /*判断是否是内网IP*/
  6734. // U.MD.D.I.isInnerIPFn = function(str){
  6735. // var curPageUrl = str;
  6736. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6737. // curPageUrl =curPageUrl.replace(reg1,'');
  6738. // // console.log('curPageUrl-1 '+curPageUrl);
  6739. // var reg2 = /\:+/g;//替换冒号为一点
  6740. // curPageUrl =curPageUrl.replace(reg2,'.');
  6741. // // console.log('curPageUrl-2 '+curPageUrl);
  6742. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6743. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6744. // if(curPageUrl[2] != '16'){
  6745. // return ipAddress;
  6746. // }else{
  6747. // return false;
  6748. // }
  6749. // }
  6750. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6751. // //compatibility for firefox and chrome
  6752. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6753. // var pc = new myPeerConnection({
  6754. // iceServers: []
  6755. // }),
  6756. // noop = function() {},
  6757. // localIPs = {},
  6758. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6759. // key;
  6760. // function iterateIP(ip) {
  6761. // if (!localIPs[ip]) onNewIP(ip);
  6762. // localIPs[ip] = true;
  6763. // }
  6764. // //create a bogus data channel
  6765. // pc.createDataChannel("");
  6766. // // create offer and set local description
  6767. // pc.createOffer().then(function(sdp) {
  6768. // sdp.sdp.split('\n').forEach(function(line) {
  6769. // if (line.indexOf('candidate') < 0) return;
  6770. // line.match(ipRegex).forEach(iterateIP);
  6771. // });
  6772. // pc.setLocalDescription(sdp, noop, noop);
  6773. // }).catch(function(reason) {
  6774. // // An error occurred, so handle the failure to connect
  6775. // });
  6776. // //sten for candidate events
  6777. // pc.onicecandidate = function(ice) {
  6778. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6779. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6780. // };
  6781. // }
  6782. // U.MD.D.I.getUserIpBool = function(callback){
  6783. // U.MD.D.I.getUserIP(function(ip){
  6784. // alert("Got IP! :" + ip);
  6785. // });
  6786. //}
  6787. //#endregion
  6788. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6789. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6790. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6791. _userinfo = US.userInfo, //登录用户信息
  6792. _userid = US.userInfo.userid //登录用户id
  6793. let _iframe;
  6794. let _cid = cid,
  6795. _stage = stage,
  6796. _task = task,
  6797. _tool = tool;
  6798. var _jie = $$("div", {
  6799. "style": {
  6800. "position": "absolute",
  6801. "bottom": "50px",
  6802. "right": "50px",
  6803. "zIndex": "9999",
  6804. "backgroundColor": "#2268bc",
  6805. "color": "#fff",
  6806. "padding": "12px 20px",
  6807. "cursor": "pointer",
  6808. "borderRadius": "4px",
  6809. },
  6810. "innerHTML": "提交作业"
  6811. })
  6812. let aTool = ''
  6813. let _loading = document.createElement('div')
  6814. _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;"
  6815. // _loading.id = "";
  6816. let _lchild = document.createElement('div')
  6817. let _limg = document.createElement('img')
  6818. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6819. _limg.style = "width: 26px;margin-right: 10px;"
  6820. _lchild.appendChild(_limg)
  6821. let _lspan = document.createElement('span')
  6822. _lspan.innerHTML = "上传中..."
  6823. _lchild.appendChild(_lspan)
  6824. _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%);"
  6825. _loading.appendChild(_lchild)
  6826. var _box = $$('div', {
  6827. "style": {
  6828. "position": "relative",
  6829. "width": "100%",
  6830. "height": "100%",
  6831. },
  6832. })
  6833. _box.appendChild(_loading)
  6834. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6835. switch (str) {
  6836. case "whiteboard":
  6837. aTool = 1;
  6838. _iframe = $$("iframe", {
  6839. "frameborder": "no",
  6840. "border": "0",
  6841. "scrolling ": "no",
  6842. "style": {
  6843. "cssText": "border:0;width:100%;height:100%"
  6844. },
  6845. "src": "https://beta.iwb.cocorobo.cn/"
  6846. })
  6847. _box.appendChild(_iframe);
  6848. _box.appendChild(_jie);
  6849. _formdiv = new U.UF.UI.form(
  6850. "电子白板",
  6851. _box, {
  6852. "id": "whiteboard" + cid + stage + task + tool,
  6853. "style": {
  6854. "width": "90%",
  6855. "height": "90%",
  6856. "overflow": 'hidden'
  6857. },
  6858. "onresize": function () { }
  6859. }, {
  6860. closecallback: function () { }
  6861. }, {
  6862. "style": {
  6863. "height": "36px"
  6864. }
  6865. }).form; //创建窗体
  6866. _taskbar = {
  6867. "id": str + _formdiv.id,
  6868. "style": {
  6869. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6870. },
  6871. "name": "电子白板",
  6872. "forms": _formdiv,
  6873. "click": function () {
  6874. U.MD.D.I.openApplication(str, obj, info);
  6875. }
  6876. }
  6877. break;
  6878. case "mind":
  6879. aTool = 3;
  6880. _iframe = $$("iframe", {
  6881. "frameborder": "no",
  6882. "border": "0",
  6883. "scrolling ": "no",
  6884. "style": {
  6885. "cssText": "border:0;width:100%;height:100%"
  6886. },
  6887. "src": "/kityminder-editor/dist/index.html"
  6888. })
  6889. _box.appendChild(_iframe);
  6890. _box.appendChild(_jie);
  6891. _formdiv = new U.UF.UI.form(
  6892. "思维导图",
  6893. _box, { //"/jsmind/example/demo.html"
  6894. "id": "mind" + cid + stage + task + tool,
  6895. "style": {
  6896. "width": "90%",
  6897. "height": "90%",
  6898. "overflow": 'hidden'
  6899. },
  6900. "onresize": function () { }
  6901. }, {
  6902. closecallback: function () { }
  6903. }, {
  6904. "style": {
  6905. "height": "36px"
  6906. }
  6907. }).form; //创建窗体
  6908. _taskbar = {
  6909. "id": str + _formdiv.id,
  6910. "style": {
  6911. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6912. },
  6913. "name": "思维导图",
  6914. "forms": _formdiv,
  6915. "click": function () {
  6916. U.MD.D.I.openApplication(str, obj, info);
  6917. }
  6918. }
  6919. break;
  6920. case "MindMap":
  6921. aTool = 3;
  6922. _iframe = $$("iframe", {
  6923. "frameborder": "no",
  6924. "border": "0",
  6925. "scrolling ": "no",
  6926. "style": {
  6927. "cssText": "border:0;width:100%;height:100%"
  6928. },
  6929. "src": "//cloud.cocorobo.cn/mind/"
  6930. })
  6931. _box.appendChild(_iframe);
  6932. _box.appendChild(_jie);
  6933. _formdiv = new U.UF.UI.form(
  6934. "思维导图",
  6935. _box, { //"/jsmind/example/demo.html"
  6936. "id": "mind" + cid + stage + task + tool,
  6937. "style": {
  6938. "width": "90%",
  6939. "height": "90%",
  6940. "overflow": 'hidden'
  6941. },
  6942. "onresize": function () { }
  6943. }, {
  6944. closecallback: function () { }
  6945. }, {
  6946. "style": {
  6947. "height": "36px"
  6948. }
  6949. }).form; //创建窗体
  6950. _taskbar = {
  6951. "id": str + _formdiv.id,
  6952. "style": {
  6953. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6954. },
  6955. "name": "思维导图",
  6956. "forms": _formdiv,
  6957. "click": function () {
  6958. U.MD.D.I.openApplication(str, obj, info);
  6959. }
  6960. }
  6961. break;
  6962. case "doc":
  6963. aTool = 6;
  6964. _iframe = $$("iframe", {
  6965. "frameborder": "no",
  6966. "border": "0",
  6967. "scrolling ": "no",
  6968. "style": {
  6969. "cssText": "border:0;width:100%;height:100%"
  6970. },
  6971. "src": "/Office/Word/WordEditArea.htm"
  6972. })
  6973. _box.appendChild(_iframe);
  6974. _box.appendChild(_jie);
  6975. _formdiv = new U.UF.UI.form(
  6976. "协同文档",
  6977. _box, {
  6978. "id": "doc" + cid + stage + task + tool,
  6979. "style": {
  6980. "width": "90%",
  6981. "height": "90%",
  6982. "overflow": 'hidden'
  6983. },
  6984. "onresize": function () { }
  6985. }, {
  6986. closecallback: function () { }
  6987. }, {
  6988. "style": {
  6989. "height": "36px"
  6990. }
  6991. }).form; //创建窗体
  6992. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6993. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6994. })
  6995. _taskbar = {
  6996. "id": str + _formdiv.id,
  6997. "style": {
  6998. "backgroundImage": "url(/img/icon/doc.png)"
  6999. },
  7000. "name": "协同文档",
  7001. "forms": _formdiv,
  7002. "click": function () {
  7003. U.MD.D.I.openApplication(str, obj, info);
  7004. }
  7005. }
  7006. break;
  7007. case "mindNetwork": //好友打开
  7008. aTool = 7;
  7009. _iframe = $$("iframe", {
  7010. "webkitallowfullscreen": "",
  7011. "mozallowfullscreen": "",
  7012. "allowfullscreen": "",
  7013. "frameborder": "no",
  7014. "border": "0",
  7015. "scrolling ": "no",
  7016. "style": {
  7017. "cssText": "border:0; width:100%; height:100%;"
  7018. },
  7019. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7020. })
  7021. _box.appendChild(_iframe);
  7022. _box.appendChild(_jie);
  7023. _formdiv = new U.UF.UI.form(
  7024. "思维网格",
  7025. _box, {
  7026. "id": "mindNetwork" + cid + stage + task + tool,
  7027. "style": {
  7028. "width": "90%",
  7029. "height": "90%",
  7030. "overflow": 'hidden'
  7031. },
  7032. "onresize": function () { }
  7033. }, {
  7034. closecallback: function () { }
  7035. }, {
  7036. "style": {
  7037. "height": "36px"
  7038. }
  7039. }).form; //创建窗体
  7040. _taskbar = {
  7041. "id": str + _formdiv.id,
  7042. "style": {
  7043. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7044. },
  7045. "name": "思维网格",
  7046. "forms": _formdiv,
  7047. "click": function () {
  7048. U.MD.D.I.openApplication(str, obj, info);
  7049. }
  7050. }
  7051. break;
  7052. case "courseDesign":
  7053. _iframe = $$("iframe", {
  7054. "webkitallowfullscreen": "",
  7055. "mozallowfullscreen": "",
  7056. "allowfullscreen": "",
  7057. "frameborder": "no",
  7058. "border": "0",
  7059. "scrolling ": "no",
  7060. "style": {
  7061. "cssText": "border:0; width:100%; height:100%;"
  7062. },
  7063. "src": "/course-design-vue"
  7064. })
  7065. _box.appendChild(_iframe);
  7066. _box.appendChild(_jie);
  7067. _formdiv = new U.UF.UI.form(
  7068. "项目设计",
  7069. _box, {
  7070. "id": "courseDesign" + cid + stage + task + tool,
  7071. "style": {
  7072. "width": "90%",
  7073. "height": "90%",
  7074. "overflow": 'hidden'
  7075. },
  7076. "onresize": function () { }
  7077. }, {
  7078. closecallback: function () { }
  7079. }, {
  7080. "style": {
  7081. "height": "36px"
  7082. }
  7083. }).form; //创建窗体
  7084. _taskbar = {
  7085. "id": str + _formdiv.id,
  7086. "style": {
  7087. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7088. },
  7089. "name": "项目设计",
  7090. "forms": _formdiv,
  7091. "click": function () {
  7092. U.MD.D.I.openApplication(str, obj, info);
  7093. }
  7094. }
  7095. break;
  7096. }
  7097. const script1 = document.createElement("script");
  7098. script1.type = "text/javascript";
  7099. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7100. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7101. const script2 = document.createElement("script");
  7102. script2.type = "text/javascript";
  7103. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7104. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7105. const script3 = document.createElement("script");
  7106. script3.type = "text/javascript";
  7107. script3.charset = "UTF-8";
  7108. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7109. const script4 = document.createElement("script");
  7110. script4.type = "text/javascript";
  7111. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7112. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7113. if (_iframe) {
  7114. if (str == 'doc') {
  7115. _iframe = _formdiv.querySelector('iframe')
  7116. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7117. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7118. _iframe.contentWindow.document.body.appendChild(script1);
  7119. _iframe.contentWindow.document.body.appendChild(script2);
  7120. // _iframe.contentWindow.document.body.appendChild(script3);
  7121. _iframe.contentWindow.document.body.appendChild(script4);
  7122. })
  7123. if (onloadListener) {
  7124. _iframe.contentDocument.location.reload()
  7125. } else {
  7126. _iframe.contentDocument.location.reload()
  7127. }
  7128. } else if (str == 'courseDesign') {
  7129. U.UF.DL.iframeLoad(_iframe, function () {
  7130. // _iframe.contentWindow.U.MD.O.W.load();
  7131. // _iframe.contentWindow.document.body.appendChild(script1);
  7132. _iframe.contentWindow.document.body.appendChild(script2);
  7133. _iframe.contentWindow.document.body.appendChild(script4);
  7134. })
  7135. } else if (str == 'mind') {
  7136. _iframe = _formdiv.querySelector('iframe')
  7137. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7138. //
  7139. _iframe.contentWindow.document.body.appendChild(script1);
  7140. _iframe.contentWindow.document.body.appendChild(script2);
  7141. _iframe.contentWindow.document.body.appendChild(script4);
  7142. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7143. })
  7144. if (onloadListener) {
  7145. _iframe.contentDocument.location.reload()
  7146. } else {
  7147. _iframe.contentDocument.location.reload()
  7148. }
  7149. } else if (str == 'whiteboard') {
  7150. _iframe = _formdiv.querySelector('iframe')
  7151. let onloadListener = _iframe.onload = () => {
  7152. _iframe.contentWindow.document.body.appendChild(script1);
  7153. _iframe.contentWindow.document.body.appendChild(script2);
  7154. _iframe.contentWindow.document.body.appendChild(script4);
  7155. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7156. };
  7157. // if (onloadListener) {
  7158. // try {
  7159. // _iframe.src += "?cocorobo="+new Date().getTime()
  7160. // _iframe.contentWindow.document.location.reload()
  7161. // } catch (error) {
  7162. // }
  7163. // } else {
  7164. // _iframe.contentDocument.location.reload()
  7165. // }
  7166. } else {
  7167. _iframe.onload = () => {
  7168. _iframe.contentWindow.document.body.appendChild(script1);
  7169. _iframe.contentWindow.document.body.appendChild(script2);
  7170. // _iframe.contentWindow.document.body.appendChild(script3);
  7171. _iframe.contentWindow.document.body.appendChild(script4);
  7172. };
  7173. }
  7174. _jie.onclick = async () => {
  7175. let text = ''
  7176. if (aTool == 1) {
  7177. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7178. } else if (aTool == 6) {
  7179. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7180. } else if (aTool == 3) {
  7181. text = await U.MD.D.I.getEditorContent(_iframe);
  7182. }
  7183. _loading.style.display = 'flex'
  7184. console.log(_loading);
  7185. var _ajs = _iframe.contentWindow.document.createElement("script");
  7186. _ajs.type = "text/javascript";
  7187. _ajs.innerHTML =
  7188. // 'console.log(' + _loading + ');\n' +
  7189. 'var _js = document.createElement("script");\n' +
  7190. '_js.type="text/javascript";\n' +
  7191. '_js.charset="UTF-8";\n' +
  7192. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7193. "_js.onload = function(){\n" +
  7194. ' var a = document.getElementsByTagName("img")\n' +
  7195. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7196. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7197. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7198. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7199. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7200. "beforeUpload_shishi(file," +
  7201. "'" +
  7202. _userid +
  7203. "'" +
  7204. ", " +
  7205. "'" +
  7206. _cid +
  7207. "'" +
  7208. ", " +
  7209. "'" +
  7210. _stage +
  7211. "'" +
  7212. ", " +
  7213. "'" +
  7214. _task +
  7215. "'" +
  7216. ", " +
  7217. "'" +
  7218. _tool +
  7219. "'" +
  7220. ", " +
  7221. "'" +
  7222. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7223. "'" +
  7224. ", " +
  7225. "'" +
  7226. aTool +
  7227. "'" +
  7228. ", " +
  7229. "`" +
  7230. text +
  7231. "`" +
  7232. ")\n" +
  7233. " });\n" +
  7234. "}\n" +
  7235. "document.head.appendChild(_js);\n";
  7236. _iframe.contentWindow.document.head.appendChild(_ajs);
  7237. }
  7238. }
  7239. //U.MD.D.I.openClick(str);
  7240. //如果有任务栏信息
  7241. // if (_taskbar) {
  7242. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7243. // }
  7244. }
  7245. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7246. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7247. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7248. _userinfo = US.userInfo, //登录用户信息
  7249. _userid = US.userInfo.userid //登录用户id
  7250. let _iframe;
  7251. let _cid = cid,
  7252. _stage = stage,
  7253. _task = task,
  7254. _tool = tool;
  7255. var _jie = $$("div", {
  7256. "style": {
  7257. "position": "absolute",
  7258. "bottom": "50px",
  7259. "right": "50px",
  7260. "zIndex": "9999",
  7261. "backgroundColor": "#2268bc",
  7262. "color": "#fff",
  7263. "padding": "12px 20px",
  7264. "cursor": "pointer",
  7265. "borderRadius": "4px",
  7266. },
  7267. "innerHTML": "提交作业"
  7268. })
  7269. let aTool = ''
  7270. let _loading = document.createElement('div')
  7271. _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;"
  7272. // _loading.id = "";
  7273. let _lchild = document.createElement('div')
  7274. let _limg = document.createElement('img')
  7275. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7276. _limg.style = "width: 26px;margin-right: 10px;"
  7277. _lchild.appendChild(_limg)
  7278. let _lspan = document.createElement('span')
  7279. _lspan.innerHTML = "上传中..."
  7280. _lchild.appendChild(_lspan)
  7281. _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%);"
  7282. _loading.appendChild(_lchild)
  7283. let _box = $$('div', {
  7284. "style": {
  7285. "position": "relative",
  7286. "width": "100%",
  7287. "height": "100%",
  7288. },
  7289. })
  7290. _box.appendChild(_loading)
  7291. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7292. switch (str) {
  7293. case "whiteboard":
  7294. aTool = 1;
  7295. _iframe = $$("iframe", {
  7296. "frameborder": "no",
  7297. "border": "0",
  7298. "scrolling ": "no",
  7299. "style": {
  7300. "cssText": "border:0;width:100%;height:100%"
  7301. },
  7302. "src": "https://beta.iwb.cocorobo.cn/"
  7303. })
  7304. _box.appendChild(_iframe);
  7305. _box.appendChild(_jie);
  7306. _formdiv = new U.UF.UI.form(
  7307. "电子白板",
  7308. _box, {
  7309. "id": "whiteboard" + cid + stage + task + tool,
  7310. "style": {
  7311. "width": "90%",
  7312. "height": "90%",
  7313. "overflow": 'hidden'
  7314. },
  7315. "onresize": function () { }
  7316. }, {
  7317. closecallback: function () { }
  7318. }, {
  7319. "style": {
  7320. "height": "36px"
  7321. }
  7322. }).form; //创建窗体
  7323. _taskbar = {
  7324. "id": str + _formdiv.id,
  7325. "style": {
  7326. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7327. },
  7328. "name": "电子白板",
  7329. "forms": _formdiv,
  7330. "click": function () {
  7331. U.MD.D.I.openApplication(str, obj, info);
  7332. }
  7333. }
  7334. break;
  7335. case "mind":
  7336. aTool = 3;
  7337. _iframe = $$("iframe", {
  7338. "frameborder": "no",
  7339. "border": "0",
  7340. "scrolling ": "no",
  7341. "style": {
  7342. "cssText": "border:0;width:100%;height:100%"
  7343. },
  7344. "src": "/kityminder-editor/dist/index.html"
  7345. })
  7346. _box.appendChild(_iframe);
  7347. _box.appendChild(_jie);
  7348. _formdiv = new U.UF.UI.form(
  7349. "思维导图",
  7350. _box, { //"/jsmind/example/demo.html"
  7351. "id": "mind" + cid + stage + task + tool,
  7352. "style": {
  7353. "width": "90%",
  7354. "height": "90%",
  7355. "overflow": 'hidden'
  7356. },
  7357. "onresize": function () { }
  7358. }, {
  7359. closecallback: function () { }
  7360. }, {
  7361. "style": {
  7362. "height": "36px"
  7363. }
  7364. }).form; //创建窗体
  7365. _taskbar = {
  7366. "id": str + _formdiv.id,
  7367. "style": {
  7368. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7369. },
  7370. "name": "思维导图",
  7371. "forms": _formdiv,
  7372. "click": function () {
  7373. U.MD.D.I.openApplication(str, obj, info);
  7374. }
  7375. }
  7376. break;
  7377. case "MindMap":
  7378. aTool = 3;
  7379. _iframe = $$("iframe", {
  7380. "frameborder": "no",
  7381. "border": "0",
  7382. "scrolling ": "no",
  7383. "style": {
  7384. "cssText": "border:0;width:100%;height:100%"
  7385. },
  7386. "src": "//cloud.cocorobo.cn/mind/"
  7387. })
  7388. _box.appendChild(_iframe);
  7389. _box.appendChild(_jie);
  7390. _formdiv = new U.UF.UI.form(
  7391. "思维导图",
  7392. _box, { //"/jsmind/example/demo.html"
  7393. "id": "mind" + cid + stage + task + tool,
  7394. "style": {
  7395. "width": "90%",
  7396. "height": "90%",
  7397. "overflow": 'hidden'
  7398. },
  7399. "onresize": function () { }
  7400. }, {
  7401. closecallback: function () { }
  7402. }, {
  7403. "style": {
  7404. "height": "36px"
  7405. }
  7406. }).form; //创建窗体
  7407. _taskbar = {
  7408. "id": str + _formdiv.id,
  7409. "style": {
  7410. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7411. },
  7412. "name": "思维导图",
  7413. "forms": _formdiv,
  7414. "click": function () {
  7415. U.MD.D.I.openApplication(str, obj, info);
  7416. }
  7417. }
  7418. break;
  7419. case "doc":
  7420. aTool = 6;
  7421. _iframe = $$("iframe", {
  7422. "frameborder": "no",
  7423. "border": "0",
  7424. "scrolling ": "no",
  7425. "style": {
  7426. "cssText": "border:0;width:100%;height:100%"
  7427. },
  7428. "src": "/Office/Word/WordEditArea.htm"
  7429. })
  7430. _box.appendChild(_iframe);
  7431. _box.appendChild(_jie);
  7432. _formdiv = new U.UF.UI.form(
  7433. "协同文档",
  7434. _box, {
  7435. "id": "doc" + cid + stage + task + tool,
  7436. "style": {
  7437. "width": "90%",
  7438. "height": "90%",
  7439. "overflow": 'hidden'
  7440. },
  7441. "onresize": function () { }
  7442. }, {
  7443. closecallback: function () { }
  7444. }, {
  7445. "style": {
  7446. "height": "36px"
  7447. }
  7448. }).form; //创建窗体
  7449. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7450. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7451. })
  7452. _taskbar = {
  7453. "id": str + _formdiv.id,
  7454. "style": {
  7455. "backgroundImage": "url(/img/icon/doc.png)"
  7456. },
  7457. "name": "协同文档",
  7458. "forms": _formdiv,
  7459. "click": function () {
  7460. U.MD.D.I.openApplication(str, obj, info);
  7461. }
  7462. }
  7463. break;
  7464. case "mindNetwork": //好友打开
  7465. aTool = 7;
  7466. _iframe = $$("iframe", {
  7467. "webkitallowfullscreen": "",
  7468. "mozallowfullscreen": "",
  7469. "allowfullscreen": "",
  7470. "frameborder": "no",
  7471. "border": "0",
  7472. "scrolling ": "no",
  7473. "style": {
  7474. "cssText": "border:0; width:100%; height:100%;"
  7475. },
  7476. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7477. })
  7478. _box.appendChild(_iframe);
  7479. _box.appendChild(_jie);
  7480. _formdiv = new U.UF.UI.form(
  7481. "思维网格",
  7482. _box, {
  7483. "id": "mindNetwork" + cid + stage + task + tool,
  7484. "style": {
  7485. "width": "90%",
  7486. "height": "90%",
  7487. "overflow": 'hidden'
  7488. },
  7489. "onresize": function () { }
  7490. }, {
  7491. closecallback: function () { }
  7492. }, {
  7493. "style": {
  7494. "height": "36px"
  7495. }
  7496. }).form; //创建窗体
  7497. _taskbar = {
  7498. "id": str + _formdiv.id,
  7499. "style": {
  7500. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7501. },
  7502. "name": "思维网格",
  7503. "forms": _formdiv,
  7504. "click": function () {
  7505. U.MD.D.I.openApplication(str, obj, info);
  7506. }
  7507. }
  7508. break;
  7509. case "courseDesign":
  7510. _iframe = $$("iframe", {
  7511. "webkitallowfullscreen": "",
  7512. "mozallowfullscreen": "",
  7513. "allowfullscreen": "",
  7514. "frameborder": "no",
  7515. "border": "0",
  7516. "scrolling ": "no",
  7517. "style": {
  7518. "cssText": "border:0; width:100%; height:100%;"
  7519. },
  7520. "src": "/course-design-vue"
  7521. })
  7522. _box.appendChild(_iframe);
  7523. _box.appendChild(_jie);
  7524. _formdiv = new U.UF.UI.form(
  7525. "项目设计",
  7526. _box, {
  7527. "id": "courseDesign" + cid + stage + task + tool,
  7528. "style": {
  7529. "width": "90%",
  7530. "height": "90%",
  7531. "overflow": 'hidden'
  7532. },
  7533. "onresize": function () { }
  7534. }, {
  7535. closecallback: function () { }
  7536. }, {
  7537. "style": {
  7538. "height": "36px"
  7539. }
  7540. }).form; //创建窗体
  7541. _taskbar = {
  7542. "id": str + _formdiv.id,
  7543. "style": {
  7544. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7545. },
  7546. "name": "项目设计",
  7547. "forms": _formdiv,
  7548. "click": function () {
  7549. U.MD.D.I.openApplication(str, obj, info);
  7550. }
  7551. }
  7552. break;
  7553. }
  7554. const script1 = document.createElement("script");
  7555. script1.type = "text/javascript";
  7556. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7557. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7558. const script2 = document.createElement("script");
  7559. script2.type = "text/javascript";
  7560. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7561. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7562. const script3 = document.createElement("script");
  7563. script3.type = "text/javascript";
  7564. script3.charset = "UTF-8";
  7565. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7566. const script4 = document.createElement("script");
  7567. script4.type = "text/javascript";
  7568. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7569. script4.src = window.origin + "/js/Common/jietu2E.js";
  7570. if (_iframe) {
  7571. if (str == 'doc') {
  7572. _iframe = _formdiv.querySelector('iframe')
  7573. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7574. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7575. _iframe.contentWindow.document.body.appendChild(script1);
  7576. _iframe.contentWindow.document.body.appendChild(script2);
  7577. // _iframe.contentWindow.document.body.appendChild(script3);
  7578. _iframe.contentWindow.document.body.appendChild(script4);
  7579. })
  7580. if (onloadListener) {
  7581. _iframe.contentDocument.location.reload()
  7582. } else {
  7583. _iframe.contentDocument.location.reload()
  7584. }
  7585. } else if (str == 'courseDesign') {
  7586. U.UF.DL.iframeLoad(_iframe, function () {
  7587. // _iframe.contentWindow.U.MD.O.W.load();
  7588. // _iframe.contentWindow.document.body.appendChild(script1);
  7589. _iframe.contentWindow.document.body.appendChild(script2);
  7590. _iframe.contentWindow.document.body.appendChild(script4);
  7591. })
  7592. } else if (str == 'mind') {
  7593. _iframe = _formdiv.querySelector('iframe')
  7594. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7595. //
  7596. _iframe.contentWindow.document.body.appendChild(script1);
  7597. _iframe.contentWindow.document.body.appendChild(script2);
  7598. _iframe.contentWindow.document.body.appendChild(script4);
  7599. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7600. })
  7601. if (onloadListener) {
  7602. _iframe.contentDocument.location.reload()
  7603. } else {
  7604. _iframe.contentDocument.location.reload()
  7605. }
  7606. } else if (str == 'whiteboard') {
  7607. _iframe = _formdiv.querySelector('iframe')
  7608. let onloadListener = _iframe.onload = () => {
  7609. _iframe.contentWindow.document.body.appendChild(script1);
  7610. _iframe.contentWindow.document.body.appendChild(script2);
  7611. _iframe.contentWindow.document.body.appendChild(script4);
  7612. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7613. };
  7614. // if (onloadListener) {
  7615. // try {
  7616. // _iframe.src += "?cocorobo="+new Date().getTime()
  7617. // _iframe.contentWindow.document.location.reload()
  7618. // } catch (error) {
  7619. // }
  7620. // } else {
  7621. // _iframe.contentDocument.location.reload()
  7622. // }
  7623. } else {
  7624. _iframe.onload = () => {
  7625. _iframe.contentWindow.document.body.appendChild(script1);
  7626. _iframe.contentWindow.document.body.appendChild(script2);
  7627. // _iframe.contentWindow.document.body.appendChild(script3);
  7628. _iframe.contentWindow.document.body.appendChild(script4);
  7629. };
  7630. }
  7631. _jie.onclick = async () => {
  7632. let text = ''
  7633. if (aTool == 1) {
  7634. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7635. } else if (aTool == 6) {
  7636. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7637. } else if (aTool == 3) {
  7638. text = await U.MD.D.I.getEditorContent(_iframe);
  7639. }
  7640. _loading.style.display = 'flex'
  7641. console.log(_loading);
  7642. var _ajs = _iframe.contentWindow.document.createElement("script");
  7643. _ajs.type = "text/javascript";
  7644. _ajs.innerHTML =
  7645. // 'console.log(' + _loading + ');\n' +
  7646. 'var _js = document.createElement("script");\n' +
  7647. '_js.type="text/javascript";\n' +
  7648. '_js.charset="UTF-8";\n' +
  7649. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7650. "_js.onload = function(){\n" +
  7651. ' var a = document.getElementsByTagName("img")\n' +
  7652. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7653. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7654. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7655. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7656. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7657. "beforeUpload_shishi(file," +
  7658. "'" +
  7659. _userid +
  7660. "'" +
  7661. ", " +
  7662. "'" +
  7663. _cid +
  7664. "'" +
  7665. ", " +
  7666. "'" +
  7667. _stage +
  7668. "'" +
  7669. ", " +
  7670. "'" +
  7671. _task +
  7672. "'" +
  7673. ", " +
  7674. "'" +
  7675. _tool +
  7676. "'" +
  7677. ", " +
  7678. "'" +
  7679. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7680. "'" +
  7681. ", " +
  7682. "'" +
  7683. aTool +
  7684. "'" +
  7685. ", " +
  7686. "`" +
  7687. text +
  7688. "`" +
  7689. ")\n" +
  7690. " });\n" +
  7691. "}\n" +
  7692. "document.head.appendChild(_js);\n";
  7693. _iframe.contentWindow.document.head.appendChild(_ajs);
  7694. }
  7695. }
  7696. //U.MD.D.I.openClick(str);
  7697. //如果有任务栏信息
  7698. // if (_taskbar) {
  7699. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7700. // }
  7701. }
  7702. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7703. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7704. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7705. _userid = student.userid, //登录用户id
  7706. _username = student.student //用户名字
  7707. let _iframe;
  7708. let _cid = cid,
  7709. _stage = stage,
  7710. _task = task,
  7711. _tool = tool;
  7712. var _jie = $$("div", {
  7713. "style": {
  7714. "position": "absolute",
  7715. "bottom": "50px",
  7716. "right": "50px",
  7717. "zIndex": "9999",
  7718. "backgroundColor": "#2268bc",
  7719. "color": "#fff",
  7720. "padding": "12px 20px",
  7721. "cursor": "pointer",
  7722. "borderRadius": "4px",
  7723. },
  7724. "innerHTML": "提交作业"
  7725. })
  7726. let aTool = ''
  7727. let _loading = document.createElement('div')
  7728. _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;"
  7729. // _loading.id = "";
  7730. let _lchild = document.createElement('div')
  7731. let _limg = document.createElement('img')
  7732. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7733. _limg.style = "width: 26px;margin-right: 10px;"
  7734. _lchild.appendChild(_limg)
  7735. let _lspan = document.createElement('span')
  7736. _lspan.innerHTML = "上传中..."
  7737. _lchild.appendChild(_lspan)
  7738. _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%);"
  7739. _loading.appendChild(_lchild)
  7740. var _box = $$('div', {
  7741. "style": {
  7742. "position": "relative",
  7743. "width": "100%",
  7744. "height": "100%",
  7745. },
  7746. })
  7747. _box.appendChild(_loading)
  7748. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7749. switch (str) {
  7750. case "whiteboard":
  7751. aTool = 1;
  7752. _iframe = $$("iframe", {
  7753. "frameborder": "no",
  7754. "border": "0",
  7755. "scrolling ": "no",
  7756. "style": {
  7757. "cssText": "border:0;width:100%;height:100%"
  7758. },
  7759. "src": "https://beta.iwb.cocorobo.cn/"
  7760. })
  7761. _box.appendChild(_iframe);
  7762. _box.appendChild(_jie);
  7763. _formdiv = new U.UF.UI.form(
  7764. "电子白板-" + _username,
  7765. _box, {
  7766. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7767. "style": {
  7768. "width": "90%",
  7769. "height": "90%",
  7770. "overflow": 'hidden'
  7771. },
  7772. "onresize": function () { }
  7773. }, {
  7774. closecallback: function () { }
  7775. }, {
  7776. "style": {
  7777. "height": "36px"
  7778. }
  7779. }).form; //创建窗体
  7780. _taskbar = {
  7781. "id": str + _formdiv.id,
  7782. "style": {
  7783. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7784. },
  7785. "name": "电子白板",
  7786. "forms": _formdiv,
  7787. "click": function () {
  7788. U.MD.D.I.openApplication(str, obj, info);
  7789. }
  7790. }
  7791. break;
  7792. case "mind":
  7793. aTool = 3;
  7794. _iframe = $$("iframe", {
  7795. "frameborder": "no",
  7796. "border": "0",
  7797. "scrolling ": "no",
  7798. "style": {
  7799. "cssText": "border:0;width:100%;height:100%"
  7800. },
  7801. "src": "/kityminder-editor/dist/index.html"
  7802. })
  7803. _box.appendChild(_iframe);
  7804. _box.appendChild(_jie);
  7805. _formdiv = new U.UF.UI.form(
  7806. "思维导图-" + _username,
  7807. _box, { //"/jsmind/example/demo.html"
  7808. "id": "mind" + cid + stage + task + tool + _userid,
  7809. "style": {
  7810. "width": "90%",
  7811. "height": "90%",
  7812. "overflow": 'hidden'
  7813. },
  7814. "onresize": function () { }
  7815. }, {
  7816. closecallback: function () { }
  7817. }, {
  7818. "style": {
  7819. "height": "36px"
  7820. }
  7821. }).form; //创建窗体
  7822. _taskbar = {
  7823. "id": str + _formdiv.id,
  7824. "style": {
  7825. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7826. },
  7827. "name": "思维导图",
  7828. "forms": _formdiv,
  7829. "click": function () {
  7830. U.MD.D.I.openApplication(str, obj, info);
  7831. }
  7832. }
  7833. break;
  7834. case "MindMap":
  7835. aTool = 3;
  7836. _iframe = $$("iframe", {
  7837. "frameborder": "no",
  7838. "border": "0",
  7839. "scrolling ": "no",
  7840. "style": {
  7841. "cssText": "border:0;width:100%;height:100%"
  7842. },
  7843. "src": "//cloud.cocorobo.cn/mind/"
  7844. })
  7845. _box.appendChild(_iframe);
  7846. _box.appendChild(_jie);
  7847. _formdiv = new U.UF.UI.form(
  7848. "思维导图-" + _username,
  7849. _box, { //"/jsmind/example/demo.html"
  7850. "id": "mind" + cid + stage + task + tool + _userid,
  7851. "style": {
  7852. "width": "90%",
  7853. "height": "90%",
  7854. "overflow": 'hidden'
  7855. },
  7856. "onresize": function () { }
  7857. }, {
  7858. closecallback: function () { }
  7859. }, {
  7860. "style": {
  7861. "height": "36px"
  7862. }
  7863. }).form; //创建窗体
  7864. _taskbar = {
  7865. "id": str + _formdiv.id,
  7866. "style": {
  7867. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7868. },
  7869. "name": "思维导图",
  7870. "forms": _formdiv,
  7871. "click": function () {
  7872. U.MD.D.I.openApplication(str, obj, info);
  7873. }
  7874. }
  7875. break;
  7876. case "doc":
  7877. aTool = 6;
  7878. _iframe = $$("iframe", {
  7879. "frameborder": "no",
  7880. "border": "0",
  7881. "scrolling ": "no",
  7882. "style": {
  7883. "cssText": "border:0;width:100%;height:100%"
  7884. },
  7885. "src": "/Office/Word/WordEditArea.htm"
  7886. })
  7887. _box.appendChild(_iframe);
  7888. _box.appendChild(_jie);
  7889. _formdiv = new U.UF.UI.form(
  7890. "协同文档-" + _username,
  7891. _box, {
  7892. "id": "doc" + cid + stage + task + tool + _userid,
  7893. "style": {
  7894. "width": "90%",
  7895. "height": "90%",
  7896. "overflow": 'hidden'
  7897. },
  7898. "onresize": function () { }
  7899. }, {
  7900. closecallback: function () { }
  7901. }, {
  7902. "style": {
  7903. "height": "36px"
  7904. }
  7905. }).form; //创建窗体
  7906. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7907. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7908. })
  7909. _taskbar = {
  7910. "id": str + _formdiv.id,
  7911. "style": {
  7912. "backgroundImage": "url(/img/icon/doc.png)"
  7913. },
  7914. "name": "协同文档",
  7915. "forms": _formdiv,
  7916. "click": function () {
  7917. U.MD.D.I.openApplication(str, obj, info);
  7918. }
  7919. }
  7920. break;
  7921. case "mindNetwork": //好友打开
  7922. aTool = 7;
  7923. _iframe = $$("iframe", {
  7924. "webkitallowfullscreen": "",
  7925. "mozallowfullscreen": "",
  7926. "allowfullscreen": "",
  7927. "frameborder": "no",
  7928. "border": "0",
  7929. "scrolling ": "no",
  7930. "style": {
  7931. "cssText": "border:0; width:100%; height:100%;"
  7932. },
  7933. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7934. })
  7935. _box.appendChild(_iframe);
  7936. _box.appendChild(_jie);
  7937. _formdiv = new U.UF.UI.form(
  7938. "思维网格-" + _username,
  7939. _box, {
  7940. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7941. "style": {
  7942. "width": "90%",
  7943. "height": "90%",
  7944. "overflow": 'hidden'
  7945. },
  7946. "onresize": function () { }
  7947. }, {
  7948. closecallback: function () { }
  7949. }, {
  7950. "style": {
  7951. "height": "36px"
  7952. }
  7953. }).form; //创建窗体
  7954. _taskbar = {
  7955. "id": str + _formdiv.id,
  7956. "style": {
  7957. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7958. },
  7959. "name": "思维网格",
  7960. "forms": _formdiv,
  7961. "click": function () {
  7962. U.MD.D.I.openApplication(str, obj, info);
  7963. }
  7964. }
  7965. break;
  7966. case "courseDesign":
  7967. _iframe = $$("iframe", {
  7968. "webkitallowfullscreen": "",
  7969. "mozallowfullscreen": "",
  7970. "allowfullscreen": "",
  7971. "frameborder": "no",
  7972. "border": "0",
  7973. "scrolling ": "no",
  7974. "style": {
  7975. "cssText": "border:0; width:100%; height:100%;"
  7976. },
  7977. "src": "/course-design-vue"
  7978. })
  7979. _box.appendChild(_iframe);
  7980. _box.appendChild(_jie);
  7981. _formdiv = new U.UF.UI.form(
  7982. "项目设计-" + _username,
  7983. _box, {
  7984. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7985. "style": {
  7986. "width": "90%",
  7987. "height": "90%",
  7988. "overflow": 'hidden'
  7989. },
  7990. "onresize": function () { }
  7991. }, {
  7992. closecallback: function () { }
  7993. }, {
  7994. "style": {
  7995. "height": "36px"
  7996. }
  7997. }).form; //创建窗体
  7998. _taskbar = {
  7999. "id": str + _formdiv.id,
  8000. "style": {
  8001. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8002. },
  8003. "name": "项目设计",
  8004. "forms": _formdiv,
  8005. "click": function () {
  8006. U.MD.D.I.openApplication(str, obj, info);
  8007. }
  8008. }
  8009. break;
  8010. }
  8011. const script1 = document.createElement("script");
  8012. script1.type = "text/javascript";
  8013. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8014. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8015. const script2 = document.createElement("script");
  8016. script2.type = "text/javascript";
  8017. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8018. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8019. const script3 = document.createElement("script");
  8020. script3.type = "text/javascript";
  8021. script3.charset = "UTF-8";
  8022. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8023. const script4 = document.createElement("script");
  8024. script4.type = "text/javascript";
  8025. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8026. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8027. if (_iframe) {
  8028. if (str == 'doc') {
  8029. _iframe = _formdiv.querySelector('iframe')
  8030. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8031. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8032. _iframe.contentWindow.document.body.appendChild(script1);
  8033. _iframe.contentWindow.document.body.appendChild(script2);
  8034. // _iframe.contentWindow.document.body.appendChild(script3);
  8035. _iframe.contentWindow.document.body.appendChild(script4);
  8036. })
  8037. if (onloadListener) {
  8038. _iframe.contentDocument.location.reload()
  8039. } else {
  8040. _iframe.contentDocument.location.reload()
  8041. }
  8042. } else if (str == 'courseDesign') {
  8043. U.UF.DL.iframeLoad(_iframe, function () {
  8044. // _iframe.contentWindow.U.MD.O.W.load();
  8045. // _iframe.contentWindow.document.body.appendChild(script1);
  8046. _iframe.contentWindow.document.body.appendChild(script2);
  8047. _iframe.contentWindow.document.body.appendChild(script4);
  8048. })
  8049. } else if (str == 'mind') {
  8050. _iframe = _formdiv.querySelector('iframe')
  8051. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8052. //
  8053. _iframe.contentWindow.document.body.appendChild(script1);
  8054. _iframe.contentWindow.document.body.appendChild(script2);
  8055. _iframe.contentWindow.document.body.appendChild(script4);
  8056. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8057. })
  8058. if (onloadListener) {
  8059. _iframe.contentDocument.location.reload()
  8060. } else {
  8061. _iframe.contentDocument.location.reload()
  8062. }
  8063. } else if (str == 'whiteboard') {
  8064. _iframe = _formdiv.querySelector('iframe')
  8065. let onloadListener = _iframe.onload = () => {
  8066. _iframe.contentWindow.document.body.appendChild(script1);
  8067. _iframe.contentWindow.document.body.appendChild(script2);
  8068. _iframe.contentWindow.document.body.appendChild(script4);
  8069. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8070. };
  8071. // if (onloadListener) {
  8072. // try {
  8073. // _iframe.src += "?cocorobo="+new Date().getTime()
  8074. // _iframe.contentWindow.document.location.reload()
  8075. // } catch (error) {
  8076. // }
  8077. // } else {
  8078. // _iframe.contentDocument.location.reload()
  8079. // }
  8080. } else {
  8081. _iframe.onload = () => {
  8082. _iframe.contentWindow.document.body.appendChild(script1);
  8083. _iframe.contentWindow.document.body.appendChild(script2);
  8084. // _iframe.contentWindow.document.body.appendChild(script3);
  8085. _iframe.contentWindow.document.body.appendChild(script4);
  8086. };
  8087. }
  8088. _jie.onclick = async () => {
  8089. let text = ''
  8090. if (aTool == 1) {
  8091. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8092. } else if (aTool == 6) {
  8093. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8094. } else if (aTool == 3) {
  8095. text = await U.MD.D.I.getEditorContent(_iframe);
  8096. }
  8097. _loading.style.display = 'flex'
  8098. console.log(_loading);
  8099. var _ajs = _iframe.contentWindow.document.createElement("script");
  8100. _ajs.type = "text/javascript";
  8101. _ajs.innerHTML =
  8102. // 'console.log(' + _loading + ');\n' +
  8103. 'var _js = document.createElement("script");\n' +
  8104. '_js.type="text/javascript";\n' +
  8105. '_js.charset="UTF-8";\n' +
  8106. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8107. "_js.onload = function(){\n" +
  8108. ' var a = document.getElementsByTagName("img")\n' +
  8109. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8110. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8111. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8112. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8113. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8114. "beforeUpload_shishi(file," +
  8115. "'" +
  8116. _userid +
  8117. "'" +
  8118. ", " +
  8119. "'" +
  8120. _cid +
  8121. "'" +
  8122. ", " +
  8123. "'" +
  8124. _stage +
  8125. "'" +
  8126. ", " +
  8127. "'" +
  8128. _task +
  8129. "'" +
  8130. ", " +
  8131. "'" +
  8132. _tool +
  8133. "'" +
  8134. ", " +
  8135. "'" +
  8136. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8137. "'" +
  8138. ", " +
  8139. "'" +
  8140. aTool +
  8141. "'" +
  8142. ", " +
  8143. "`" +
  8144. text +
  8145. "`" +
  8146. ")\n" +
  8147. " });\n" +
  8148. "}\n" +
  8149. "document.head.appendChild(_js);\n";
  8150. _iframe.contentWindow.document.head.appendChild(_ajs);
  8151. }
  8152. }
  8153. }
  8154. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8155. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8156. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8157. _userid = student.userid, //登录用户id
  8158. _username = student.student //用户名字
  8159. let _iframe;
  8160. let _cid = cid,
  8161. _stage = stage,
  8162. _task = task,
  8163. _tool = tool;
  8164. var _jie = $$("div", {
  8165. "style": {
  8166. "position": "absolute",
  8167. "bottom": "50px",
  8168. "right": "50px",
  8169. "zIndex": "9999",
  8170. "backgroundColor": "#2268bc",
  8171. "color": "#fff",
  8172. "padding": "12px 20px",
  8173. "cursor": "pointer",
  8174. "borderRadius": "4px",
  8175. },
  8176. "innerHTML": "提交作业"
  8177. })
  8178. let aTool = ''
  8179. let _loading = document.createElement('div')
  8180. _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;"
  8181. // _loading.id = "";
  8182. let _lchild = document.createElement('div')
  8183. let _limg = document.createElement('img')
  8184. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8185. _limg.style = "width: 26px;margin-right: 10px;"
  8186. _lchild.appendChild(_limg)
  8187. let _lspan = document.createElement('span')
  8188. _lspan.innerHTML = "上传中..."
  8189. _lchild.appendChild(_lspan)
  8190. _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%);"
  8191. _loading.appendChild(_lchild)
  8192. var _box = $$('div', {
  8193. "style": {
  8194. "position": "relative",
  8195. "width": "100%",
  8196. "height": "100%",
  8197. },
  8198. })
  8199. _box.appendChild(_loading)
  8200. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8201. switch (str) {
  8202. case "whiteboard":
  8203. aTool = 1;
  8204. _iframe = $$("iframe", {
  8205. "frameborder": "no",
  8206. "border": "0",
  8207. "scrolling ": "no",
  8208. "style": {
  8209. "cssText": "border:0;width:100%;height:100%"
  8210. },
  8211. "src": "https://beta.iwb.cocorobo.cn/"
  8212. })
  8213. _box.appendChild(_iframe);
  8214. _box.appendChild(_jie);
  8215. _formdiv = new U.UF.UI.form(
  8216. "电子白板-" + _username,
  8217. _box, {
  8218. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8219. "style": {
  8220. "width": "90%",
  8221. "height": "90%",
  8222. "overflow": 'hidden'
  8223. },
  8224. "onresize": function () { }
  8225. }, {
  8226. closecallback: function () { }
  8227. }, {
  8228. "style": {
  8229. "height": "36px"
  8230. }
  8231. }).form; //创建窗体
  8232. _taskbar = {
  8233. "id": str + _formdiv.id,
  8234. "style": {
  8235. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8236. },
  8237. "name": "电子白板",
  8238. "forms": _formdiv,
  8239. "click": function () {
  8240. U.MD.D.I.openApplication(str, obj, info);
  8241. }
  8242. }
  8243. break;
  8244. case "mind":
  8245. aTool = 3;
  8246. _iframe = $$("iframe", {
  8247. "frameborder": "no",
  8248. "border": "0",
  8249. "scrolling ": "no",
  8250. "style": {
  8251. "cssText": "border:0;width:100%;height:100%"
  8252. },
  8253. "src": "/kityminder-editor/dist/index.html"
  8254. })
  8255. _box.appendChild(_iframe);
  8256. _box.appendChild(_jie);
  8257. _formdiv = new U.UF.UI.form(
  8258. "思维导图-" + _username,
  8259. _box, { //"/jsmind/example/demo.html"
  8260. "id": "mind" + cid + stage + task + tool + _userid,
  8261. "style": {
  8262. "width": "90%",
  8263. "height": "90%",
  8264. "overflow": 'hidden'
  8265. },
  8266. "onresize": function () { }
  8267. }, {
  8268. closecallback: function () { }
  8269. }, {
  8270. "style": {
  8271. "height": "36px"
  8272. }
  8273. }).form; //创建窗体
  8274. _taskbar = {
  8275. "id": str + _formdiv.id,
  8276. "style": {
  8277. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8278. },
  8279. "name": "思维导图",
  8280. "forms": _formdiv,
  8281. "click": function () {
  8282. U.MD.D.I.openApplication(str, obj, info);
  8283. }
  8284. }
  8285. break;
  8286. case "MindMap":
  8287. aTool = 3;
  8288. _iframe = $$("iframe", {
  8289. "frameborder": "no",
  8290. "border": "0",
  8291. "scrolling ": "no",
  8292. "style": {
  8293. "cssText": "border:0;width:100%;height:100%"
  8294. },
  8295. "src": "//cloud.cocorobo.cn/mind/"
  8296. })
  8297. _box.appendChild(_iframe);
  8298. _box.appendChild(_jie);
  8299. _formdiv = new U.UF.UI.form(
  8300. "思维导图-" + _username,
  8301. _box, { //"/jsmind/example/demo.html"
  8302. "id": "mind" + cid + stage + task + tool + _userid,
  8303. "style": {
  8304. "width": "90%",
  8305. "height": "90%",
  8306. "overflow": 'hidden'
  8307. },
  8308. "onresize": function () { }
  8309. }, {
  8310. closecallback: function () { }
  8311. }, {
  8312. "style": {
  8313. "height": "36px"
  8314. }
  8315. }).form; //创建窗体
  8316. _taskbar = {
  8317. "id": str + _formdiv.id,
  8318. "style": {
  8319. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8320. },
  8321. "name": "思维导图",
  8322. "forms": _formdiv,
  8323. "click": function () {
  8324. U.MD.D.I.openApplication(str, obj, info);
  8325. }
  8326. }
  8327. break;
  8328. case "doc":
  8329. aTool = 6;
  8330. _iframe = $$("iframe", {
  8331. "frameborder": "no",
  8332. "border": "0",
  8333. "scrolling ": "no",
  8334. "style": {
  8335. "cssText": "border:0;width:100%;height:100%"
  8336. },
  8337. "src": "/Office/Word/WordEditArea.htm"
  8338. })
  8339. _box.appendChild(_iframe);
  8340. _box.appendChild(_jie);
  8341. _formdiv = new U.UF.UI.form(
  8342. "协同文档-" + _username,
  8343. _box, {
  8344. "id": "doc" + cid + stage + task + tool + _userid,
  8345. "style": {
  8346. "width": "90%",
  8347. "height": "90%",
  8348. "overflow": 'hidden'
  8349. },
  8350. "onresize": function () { }
  8351. }, {
  8352. closecallback: function () { }
  8353. }, {
  8354. "style": {
  8355. "height": "36px"
  8356. }
  8357. }).form; //创建窗体
  8358. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8359. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8360. })
  8361. _taskbar = {
  8362. "id": str + _formdiv.id,
  8363. "style": {
  8364. "backgroundImage": "url(/img/icon/doc.png)"
  8365. },
  8366. "name": "协同文档",
  8367. "forms": _formdiv,
  8368. "click": function () {
  8369. U.MD.D.I.openApplication(str, obj, info);
  8370. }
  8371. }
  8372. break;
  8373. case "mindNetwork": //好友打开
  8374. aTool = 7;
  8375. _iframe = $$("iframe", {
  8376. "webkitallowfullscreen": "",
  8377. "mozallowfullscreen": "",
  8378. "allowfullscreen": "",
  8379. "frameborder": "no",
  8380. "border": "0",
  8381. "scrolling ": "no",
  8382. "style": {
  8383. "cssText": "border:0; width:100%; height:100%;"
  8384. },
  8385. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8386. })
  8387. _box.appendChild(_iframe);
  8388. _box.appendChild(_jie);
  8389. _formdiv = new U.UF.UI.form(
  8390. "思维网格-" + _username,
  8391. _box, {
  8392. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8393. "style": {
  8394. "width": "90%",
  8395. "height": "90%",
  8396. "overflow": 'hidden'
  8397. },
  8398. "onresize": function () { }
  8399. }, {
  8400. closecallback: function () { }
  8401. }, {
  8402. "style": {
  8403. "height": "36px"
  8404. }
  8405. }).form; //创建窗体
  8406. _taskbar = {
  8407. "id": str + _formdiv.id,
  8408. "style": {
  8409. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8410. },
  8411. "name": "思维网格",
  8412. "forms": _formdiv,
  8413. "click": function () {
  8414. U.MD.D.I.openApplication(str, obj, info);
  8415. }
  8416. }
  8417. break;
  8418. case "courseDesign":
  8419. _iframe = $$("iframe", {
  8420. "webkitallowfullscreen": "",
  8421. "mozallowfullscreen": "",
  8422. "allowfullscreen": "",
  8423. "frameborder": "no",
  8424. "border": "0",
  8425. "scrolling ": "no",
  8426. "style": {
  8427. "cssText": "border:0; width:100%; height:100%;"
  8428. },
  8429. "src": "/course-design-vue"
  8430. })
  8431. _box.appendChild(_iframe);
  8432. _box.appendChild(_jie);
  8433. _formdiv = new U.UF.UI.form(
  8434. "项目设计-" + _username,
  8435. _box, {
  8436. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8437. "style": {
  8438. "width": "90%",
  8439. "height": "90%",
  8440. "overflow": 'hidden'
  8441. },
  8442. "onresize": function () { }
  8443. }, {
  8444. closecallback: function () { }
  8445. }, {
  8446. "style": {
  8447. "height": "36px"
  8448. }
  8449. }).form; //创建窗体
  8450. _taskbar = {
  8451. "id": str + _formdiv.id,
  8452. "style": {
  8453. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8454. },
  8455. "name": "项目设计",
  8456. "forms": _formdiv,
  8457. "click": function () {
  8458. U.MD.D.I.openApplication(str, obj, info);
  8459. }
  8460. }
  8461. break;
  8462. }
  8463. const script1 = document.createElement("script");
  8464. script1.type = "text/javascript";
  8465. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8466. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8467. const script2 = document.createElement("script");
  8468. script2.type = "text/javascript";
  8469. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8470. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8471. const script3 = document.createElement("script");
  8472. script3.type = "text/javascript";
  8473. script3.charset = "UTF-8";
  8474. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8475. const script4 = document.createElement("script");
  8476. script4.type = "text/javascript";
  8477. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8478. script4.src = window.origin + "/js/Common/jietu2E.js";
  8479. if (_iframe) {
  8480. if (str == 'doc') {
  8481. _iframe = _formdiv.querySelector('iframe')
  8482. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8483. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8484. _iframe.contentWindow.document.body.appendChild(script1);
  8485. _iframe.contentWindow.document.body.appendChild(script2);
  8486. // _iframe.contentWindow.document.body.appendChild(script3);
  8487. _iframe.contentWindow.document.body.appendChild(script4);
  8488. })
  8489. if (onloadListener) {
  8490. _iframe.contentDocument.location.reload()
  8491. } else {
  8492. _iframe.contentDocument.location.reload()
  8493. }
  8494. } else if (str == 'courseDesign') {
  8495. U.UF.DL.iframeLoad(_iframe, function () {
  8496. // _iframe.contentWindow.U.MD.O.W.load();
  8497. // _iframe.contentWindow.document.body.appendChild(script1);
  8498. _iframe.contentWindow.document.body.appendChild(script2);
  8499. _iframe.contentWindow.document.body.appendChild(script4);
  8500. })
  8501. } else if (str == 'mind') {
  8502. _iframe = _formdiv.querySelector('iframe')
  8503. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8504. //
  8505. _iframe.contentWindow.document.body.appendChild(script1);
  8506. _iframe.contentWindow.document.body.appendChild(script2);
  8507. _iframe.contentWindow.document.body.appendChild(script4);
  8508. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8509. })
  8510. if (onloadListener) {
  8511. _iframe.contentDocument.location.reload()
  8512. } else {
  8513. _iframe.contentDocument.location.reload()
  8514. }
  8515. } else if (str == 'whiteboard') {
  8516. _iframe = _formdiv.querySelector('iframe')
  8517. let onloadListener = _iframe.onload = () => {
  8518. _iframe.contentWindow.document.body.appendChild(script1);
  8519. _iframe.contentWindow.document.body.appendChild(script2);
  8520. _iframe.contentWindow.document.body.appendChild(script4);
  8521. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8522. };
  8523. // if (onloadListener) {
  8524. // try {
  8525. // _iframe.src += "?cocorobo="+new Date().getTime()
  8526. // _iframe.contentWindow.document.location.reload()
  8527. // } catch (error) {
  8528. // }
  8529. // } else {
  8530. // _iframe.contentDocument.location.reload()
  8531. // }
  8532. } else {
  8533. _iframe.onload = () => {
  8534. _iframe.contentWindow.document.body.appendChild(script1);
  8535. _iframe.contentWindow.document.body.appendChild(script2);
  8536. // _iframe.contentWindow.document.body.appendChild(script3);
  8537. _iframe.contentWindow.document.body.appendChild(script4);
  8538. };
  8539. }
  8540. _jie.onclick = async () => {
  8541. let text = ''
  8542. if (aTool == 1) {
  8543. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8544. } else if (aTool == 6) {
  8545. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8546. } else if (aTool == 3) {
  8547. text = await U.MD.D.I.getEditorContent(_iframe);
  8548. }
  8549. _loading.style.display = 'flex'
  8550. console.log(_loading);
  8551. var _ajs = _iframe.contentWindow.document.createElement("script");
  8552. _ajs.type = "text/javascript";
  8553. _ajs.innerHTML =
  8554. // 'console.log(' + _loading + ');\n' +
  8555. 'var _js = document.createElement("script");\n' +
  8556. '_js.type="text/javascript";\n' +
  8557. '_js.charset="UTF-8";\n' +
  8558. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8559. "_js.onload = function(){\n" +
  8560. ' var a = document.getElementsByTagName("img")\n' +
  8561. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8562. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8563. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8564. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8565. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8566. "beforeUpload_shishi(file," +
  8567. "'" +
  8568. _userid +
  8569. "'" +
  8570. ", " +
  8571. "'" +
  8572. _cid +
  8573. "'" +
  8574. ", " +
  8575. "'" +
  8576. _stage +
  8577. "'" +
  8578. ", " +
  8579. "'" +
  8580. _task +
  8581. "'" +
  8582. ", " +
  8583. "'" +
  8584. _tool +
  8585. "'" +
  8586. ", " +
  8587. "'" +
  8588. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8589. "'" +
  8590. ", " +
  8591. "'" +
  8592. aTool +
  8593. "'" +
  8594. ", " +
  8595. "`" +
  8596. text +
  8597. "`" +
  8598. ")\n" +
  8599. " });\n" +
  8600. "}\n" +
  8601. "document.head.appendChild(_js);\n";
  8602. _iframe.contentWindow.document.head.appendChild(_ajs);
  8603. }
  8604. }
  8605. }
  8606. U.MD.D.I.getEditorContent = function (iframe) {
  8607. return new Promise((resolve, reject) => {
  8608. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8609. console.log(content);
  8610. resolve(content)
  8611. });
  8612. });
  8613. }
  8614. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8615. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8616. // if (res.value[0].length > 0) {
  8617. // // resolve(res.value[0][0].text);
  8618. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8619. // $(fileInput).val('');
  8620. // });
  8621. // }
  8622. // }, [], { "type": "GET", "withCredentials": true });
  8623. var xmlhttp;
  8624. var Mac, Sn, DeviceId
  8625. if (window.XMLHttpRequest) {
  8626. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8627. xmlhttp = new XMLHttpRequest();
  8628. } else {
  8629. // IE6, IE5 浏览器执行代码
  8630. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8631. }
  8632. xmlhttp.onreadystatechange = function () {
  8633. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8634. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8635. // resolve(res.value[0][0].text);
  8636. if (type == '2') {
  8637. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8638. } else if (type == '3') {
  8639. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8640. }
  8641. } else {
  8642. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8643. }
  8644. }
  8645. }
  8646. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8647. xmlhttp.send();
  8648. }
  8649. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8650. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8651. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8652. _userinfo = US.userInfo, //登录用户信息
  8653. _userid = US.userInfo.userid //登录用户id
  8654. let _iframe;
  8655. let _cid = cid,
  8656. _stage = stage,
  8657. _task = task,
  8658. _tool = tool;
  8659. var _jie = $$("div", {
  8660. "style": {
  8661. "position": "absolute",
  8662. "bottom": "50px",
  8663. "right": "50px",
  8664. "zIndex": "9999",
  8665. "backgroundColor": "#2268bc",
  8666. "color": "#fff",
  8667. "padding": "12px 20px",
  8668. "cursor": "pointer",
  8669. "borderRadius": "4px",
  8670. },
  8671. "innerHTML": "确认并提交"
  8672. })
  8673. let aTool = ''
  8674. let _loading = document.createElement('div')
  8675. _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;"
  8676. // _loading.id = "";
  8677. let _lchild = document.createElement('div')
  8678. let _limg = document.createElement('img')
  8679. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8680. _limg.style = "width: 26px;margin-right: 10px;"
  8681. _lchild.appendChild(_limg)
  8682. let _lspan = document.createElement('span')
  8683. _lspan.innerHTML = "上传中..."
  8684. _lchild.appendChild(_lspan)
  8685. _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%);"
  8686. _loading.appendChild(_lchild)
  8687. var _box = $$('div', {
  8688. "style": {
  8689. "position": "relative",
  8690. "width": "100%",
  8691. "height": "100%",
  8692. },
  8693. })
  8694. _box.appendChild(_loading)
  8695. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8696. switch (str) {
  8697. case "whiteboard":
  8698. aTool = 1;
  8699. _iframe = $$("iframe", {
  8700. "frameborder": "no",
  8701. "border": "0",
  8702. "scrolling ": "no",
  8703. "style": {
  8704. "cssText": "border:0;width:100%;height:100%"
  8705. },
  8706. "src": "https://beta.iwb.cocorobo.cn/"
  8707. })
  8708. _box.appendChild(_iframe);
  8709. _box.appendChild(_jie);
  8710. _formdiv = new U.UF.UI.form(
  8711. "电子白板",
  8712. _box, {
  8713. "id": "whiteboards" + cid + stage + task + tool,
  8714. "style": {
  8715. "width": "90%",
  8716. "height": "90%",
  8717. "overflow": 'hidden'
  8718. },
  8719. "onresize": function () { }
  8720. }, {
  8721. closecallback: function () { }
  8722. }, {
  8723. "style": {
  8724. "height": "36px"
  8725. }
  8726. }).form; //创建窗体
  8727. _taskbar = {
  8728. "id": str + _formdiv.id,
  8729. "style": {
  8730. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8731. },
  8732. "name": "电子白板",
  8733. "forms": _formdiv,
  8734. "click": function () {
  8735. U.MD.D.I.openApplication(str, obj, info);
  8736. }
  8737. }
  8738. break;
  8739. case "mind":
  8740. aTool = 3;
  8741. _iframe = $$("iframe", {
  8742. "frameborder": "no",
  8743. "border": "0",
  8744. "scrolling ": "no",
  8745. "style": {
  8746. "cssText": "border:0;width:100%;height:100%"
  8747. },
  8748. "src": "/kityminder-editor/dist/index.html"
  8749. });
  8750. _box.appendChild(_iframe);
  8751. _box.appendChild(_jie);
  8752. _formdiv = new U.UF.UI.form(
  8753. "思维导图",
  8754. _box, { //"/jsmind/example/demo.html"
  8755. "id": "minds" + cid + stage + task + tool,
  8756. "style": {
  8757. "width": "90%",
  8758. "height": "90%",
  8759. "overflow": 'hidden'
  8760. },
  8761. "onresize": function () { }
  8762. }, {
  8763. closecallback: function () { }
  8764. }, {
  8765. "style": {
  8766. "height": "36px"
  8767. }
  8768. }).form; //创建窗体
  8769. _taskbar = {
  8770. "id": str + _formdiv.id,
  8771. "style": {
  8772. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8773. },
  8774. "name": "思维导图",
  8775. "forms": _formdiv,
  8776. "click": function () {
  8777. U.MD.D.I.openApplication(str, obj, info);
  8778. }
  8779. }
  8780. break;
  8781. case "doc":
  8782. aTool = 6;
  8783. _iframe = $$("iframe", {
  8784. "frameborder": "no",
  8785. "border": "0",
  8786. "scrolling ": "no",
  8787. "style": {
  8788. "cssText": "border:0;width:100%;height:100%"
  8789. },
  8790. "src": "/Office/Word/WordEditArea.htm"
  8791. })
  8792. _box.appendChild(_iframe);
  8793. _box.appendChild(_jie);
  8794. _formdiv = new U.UF.UI.form(
  8795. "协同文档",
  8796. _box, {
  8797. "id": "docs" + cid + stage + task + tool,
  8798. "style": {
  8799. "width": "90%",
  8800. "height": "90%",
  8801. "overflow": 'hidden'
  8802. },
  8803. "onresize": function () { }
  8804. }, {
  8805. closecallback: function () { }
  8806. }, {
  8807. "style": {
  8808. "height": "36px"
  8809. }
  8810. }).form; //创建窗体
  8811. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8812. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8813. })
  8814. _taskbar = {
  8815. "id": str + _formdiv.id,
  8816. "style": {
  8817. "backgroundImage": "url(/img/icon/doc.png)"
  8818. },
  8819. "name": "协同文档",
  8820. "forms": _formdiv,
  8821. "click": function () {
  8822. U.MD.D.I.openApplication(str, obj, info);
  8823. }
  8824. }
  8825. break;
  8826. }
  8827. const script1 = document.createElement("script");
  8828. script1.type = "text/javascript";
  8829. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8830. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8831. const script2 = document.createElement("script");
  8832. script2.type = "text/javascript";
  8833. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8834. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8835. const script3 = document.createElement("script");
  8836. script3.type = "text/javascript";
  8837. script3.charset = "UTF-8";
  8838. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8839. const script4 = document.createElement("script");
  8840. script4.type = "text/javascript";
  8841. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8842. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8843. if (_iframe) {
  8844. if (str == 'doc') {
  8845. _iframe = _formdiv.querySelector('iframe')
  8846. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8847. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8848. _iframe.contentWindow.document.body.appendChild(script1);
  8849. _iframe.contentWindow.document.body.appendChild(script2);
  8850. // _iframe.contentWindow.document.body.appendChild(script3);
  8851. _iframe.contentWindow.document.body.appendChild(script4);
  8852. })
  8853. if (onloadListener) {
  8854. _iframe.contentDocument.location.reload()
  8855. } else {
  8856. _iframe.contentDocument.location.reload()
  8857. }
  8858. } else if (str == 'mind') {
  8859. _iframe = _formdiv.querySelector('iframe')
  8860. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8861. _iframe.contentWindow.document.body.appendChild(script1);
  8862. _iframe.contentWindow.document.body.appendChild(script2);
  8863. _iframe.contentWindow.document.body.appendChild(script4);
  8864. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8865. })
  8866. if (onloadListener) {
  8867. _iframe.contentDocument.location.reload()
  8868. } else {
  8869. _iframe.contentDocument.location.reload()
  8870. }
  8871. } else {
  8872. _iframe.onload = () => {
  8873. _iframe.contentWindow.document.body.appendChild(script1);
  8874. _iframe.contentWindow.document.body.appendChild(script2);
  8875. // _iframe.contentWindow.document.body.appendChild(script3);
  8876. _iframe.contentWindow.document.body.appendChild(script4);
  8877. };
  8878. }
  8879. _jie.onclick = async () => {
  8880. let text = ''
  8881. if (aTool == 6) {
  8882. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8883. } else if (aTool == 3) {
  8884. text = await U.MD.D.I.getEditorContent(_iframe);
  8885. }
  8886. _loading.style.display = 'flex'
  8887. console.log(_loading);
  8888. var _ajs = _iframe.contentWindow.document.createElement("script");
  8889. _ajs.type = "text/javascript";
  8890. _ajs.innerHTML =
  8891. // 'console.log(' + _loading + ');\n' +
  8892. 'var _js = document.createElement("script");\n' +
  8893. '_js.type="text/javascript";\n' +
  8894. '_js.charset="UTF-8";\n' +
  8895. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8896. "_js.onload = function(){\n" +
  8897. ' var a = document.getElementsByTagName("img")\n' +
  8898. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8899. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8900. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8901. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8902. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8903. "beforeUpload_shishi(file," +
  8904. "'" +
  8905. _userid +
  8906. "'" +
  8907. ", " +
  8908. "'" +
  8909. _cid +
  8910. "'" +
  8911. ", " +
  8912. "'" +
  8913. _stage +
  8914. "'" +
  8915. ", " +
  8916. "'" +
  8917. _task +
  8918. "'" +
  8919. ", " +
  8920. "'" +
  8921. _tool +
  8922. "'" +
  8923. ", " +
  8924. "'" +
  8925. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8926. "'" +
  8927. ", " +
  8928. "'" +
  8929. aTool +
  8930. "'" +
  8931. ", " +
  8932. "`" +
  8933. text +
  8934. "`" +
  8935. ")\n" +
  8936. " });\n" +
  8937. "}\n" +
  8938. "document.head.appendChild(_js);\n";
  8939. _iframe.contentWindow.document.head.appendChild(_ajs);
  8940. }
  8941. }
  8942. //U.MD.D.I.openClick(str);
  8943. //如果有任务栏信息
  8944. // if (_taskbar) {
  8945. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8946. // }
  8947. }
  8948. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8949. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8950. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8951. _userinfo = US.userInfo, //登录用户信息
  8952. _userid = US.userInfo.userid //登录用户id
  8953. let _iframe;
  8954. let _cid = cid,
  8955. _stage = stage,
  8956. _task = task,
  8957. _tool = tool;
  8958. var _jie = $$("div", {
  8959. "style": {
  8960. "position": "absolute",
  8961. "bottom": "50px",
  8962. "right": "50px",
  8963. "zIndex": "9999",
  8964. "backgroundColor": "#2268bc",
  8965. "color": "#fff",
  8966. "padding": "12px 20px",
  8967. "cursor": "pointer",
  8968. "borderRadius": "4px",
  8969. },
  8970. "innerHTML": "确认并提交"
  8971. })
  8972. let aTool = ''
  8973. let _loading = document.createElement('div')
  8974. _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;"
  8975. // _loading.id = "";
  8976. let _lchild = document.createElement('div')
  8977. let _limg = document.createElement('img')
  8978. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8979. _limg.style = "width: 26px;margin-right: 10px;"
  8980. _lchild.appendChild(_limg)
  8981. let _lspan = document.createElement('span')
  8982. _lspan.innerHTML = "上传中..."
  8983. _lchild.appendChild(_lspan)
  8984. _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%);"
  8985. _loading.appendChild(_lchild)
  8986. var _box = $$('div', {
  8987. "style": {
  8988. "position": "relative",
  8989. "width": "100%",
  8990. "height": "100%",
  8991. },
  8992. })
  8993. _box.appendChild(_loading)
  8994. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8995. switch (str) {
  8996. case "whiteboard":
  8997. aTool = 1;
  8998. _iframe = $$("iframe", {
  8999. "frameborder": "no",
  9000. "border": "0",
  9001. "scrolling ": "no",
  9002. "style": {
  9003. "cssText": "border:0;width:100%;height:100%"
  9004. },
  9005. "src": "https://beta.iwb.cocorobo.cn/"
  9006. })
  9007. _box.appendChild(_iframe);
  9008. _box.appendChild(_jie);
  9009. _formdiv = new U.UF.UI.form(
  9010. "电子白板",
  9011. _box, {
  9012. "id": "whiteboards" + cid + stage + task + tool,
  9013. "style": {
  9014. "width": "90%",
  9015. "height": "90%",
  9016. "overflow": 'hidden'
  9017. },
  9018. "onresize": function () { }
  9019. }, {
  9020. closecallback: function () { }
  9021. }, {
  9022. "style": {
  9023. "height": "36px"
  9024. }
  9025. }).form; //创建窗体
  9026. _taskbar = {
  9027. "id": str + _formdiv.id,
  9028. "style": {
  9029. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9030. },
  9031. "name": "电子白板",
  9032. "forms": _formdiv,
  9033. "click": function () {
  9034. U.MD.D.I.openApplication(str, obj, info);
  9035. }
  9036. }
  9037. break;
  9038. case "mind":
  9039. aTool = 3;
  9040. _iframe = $$("iframe", {
  9041. "frameborder": "no",
  9042. "border": "0",
  9043. "scrolling ": "no",
  9044. "style": {
  9045. "cssText": "border:0;width:100%;height:100%"
  9046. },
  9047. "src": "/kityminder-editor/dist/index.html"
  9048. });
  9049. _box.appendChild(_iframe);
  9050. _box.appendChild(_jie);
  9051. _formdiv = new U.UF.UI.form(
  9052. "思维导图",
  9053. _box, { //"/jsmind/example/demo.html"
  9054. "id": "minds" + cid + stage + task + tool,
  9055. "style": {
  9056. "width": "90%",
  9057. "height": "90%",
  9058. "overflow": 'hidden'
  9059. },
  9060. "onresize": function () { }
  9061. }, {
  9062. closecallback: function () { }
  9063. }, {
  9064. "style": {
  9065. "height": "36px"
  9066. }
  9067. }).form; //创建窗体
  9068. _taskbar = {
  9069. "id": str + _formdiv.id,
  9070. "style": {
  9071. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9072. },
  9073. "name": "思维导图",
  9074. "forms": _formdiv,
  9075. "click": function () {
  9076. U.MD.D.I.openApplication(str, obj, info);
  9077. }
  9078. }
  9079. break;
  9080. case "doc":
  9081. aTool = 6;
  9082. _iframe = $$("iframe", {
  9083. "frameborder": "no",
  9084. "border": "0",
  9085. "scrolling ": "no",
  9086. "style": {
  9087. "cssText": "border:0;width:100%;height:100%"
  9088. },
  9089. "src": "/Office/Word/WordEditArea.htm"
  9090. })
  9091. _box.appendChild(_iframe);
  9092. _box.appendChild(_jie);
  9093. _formdiv = new U.UF.UI.form(
  9094. "协同文档",
  9095. _box, {
  9096. "id": "docs" + cid + stage + task + tool,
  9097. "style": {
  9098. "width": "90%",
  9099. "height": "90%",
  9100. "overflow": 'hidden'
  9101. },
  9102. "onresize": function () { }
  9103. }, {
  9104. closecallback: function () { }
  9105. }, {
  9106. "style": {
  9107. "height": "36px"
  9108. }
  9109. }).form; //创建窗体
  9110. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9111. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9112. })
  9113. _taskbar = {
  9114. "id": str + _formdiv.id,
  9115. "style": {
  9116. "backgroundImage": "url(/img/icon/doc.png)"
  9117. },
  9118. "name": "协同文档",
  9119. "forms": _formdiv,
  9120. "click": function () {
  9121. U.MD.D.I.openApplication(str, obj, info);
  9122. }
  9123. }
  9124. break;
  9125. }
  9126. const script1 = document.createElement("script");
  9127. script1.type = "text/javascript";
  9128. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9129. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9130. const script2 = document.createElement("script");
  9131. script2.type = "text/javascript";
  9132. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9133. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9134. const script3 = document.createElement("script");
  9135. script3.type = "text/javascript";
  9136. script3.charset = "UTF-8";
  9137. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9138. const script4 = document.createElement("script");
  9139. script4.type = "text/javascript";
  9140. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9141. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9142. if (_iframe) {
  9143. if (str == 'doc') {
  9144. _iframe = _formdiv.querySelector('iframe')
  9145. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9146. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9147. _iframe.contentWindow.document.body.appendChild(script1);
  9148. _iframe.contentWindow.document.body.appendChild(script2);
  9149. // _iframe.contentWindow.document.body.appendChild(script3);
  9150. _iframe.contentWindow.document.body.appendChild(script4);
  9151. })
  9152. if (onloadListener) {
  9153. _iframe.contentDocument.location.reload()
  9154. } else {
  9155. _iframe.contentDocument.location.reload()
  9156. }
  9157. } else if (str == 'mind') {
  9158. _iframe = _formdiv.querySelector('iframe')
  9159. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9160. _iframe.contentWindow.document.body.appendChild(script1);
  9161. _iframe.contentWindow.document.body.appendChild(script2);
  9162. _iframe.contentWindow.document.body.appendChild(script4);
  9163. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9164. })
  9165. if (onloadListener) {
  9166. _iframe.contentDocument.location.reload()
  9167. } else {
  9168. _iframe.contentDocument.location.reload()
  9169. }
  9170. } else {
  9171. _iframe.onload = () => {
  9172. _iframe.contentWindow.document.body.appendChild(script1);
  9173. _iframe.contentWindow.document.body.appendChild(script2);
  9174. // _iframe.contentWindow.document.body.appendChild(script3);
  9175. _iframe.contentWindow.document.body.appendChild(script4);
  9176. };
  9177. }
  9178. _jie.onclick = async () => {
  9179. let text = ''
  9180. if (aTool == 6) {
  9181. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9182. } else if (aTool == 3) {
  9183. text = await U.MD.D.I.getEditorContent(_iframe);
  9184. }
  9185. _loading.style.display = 'flex'
  9186. console.log(_loading);
  9187. var _ajs = _iframe.contentWindow.document.createElement("script");
  9188. _ajs.type = "text/javascript";
  9189. _ajs.innerHTML =
  9190. // 'console.log(' + _loading + ');\n' +
  9191. 'var _js = document.createElement("script");\n' +
  9192. '_js.type="text/javascript";\n' +
  9193. '_js.charset="UTF-8";\n' +
  9194. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9195. "_js.onload = function(){\n" +
  9196. ' var a = document.getElementsByTagName("img")\n' +
  9197. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9198. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9199. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9200. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9201. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9202. "beforeUpload_shishi(file," +
  9203. "'" +
  9204. _userid +
  9205. "'" +
  9206. ", " +
  9207. "'" +
  9208. _cid +
  9209. "'" +
  9210. ", " +
  9211. "'" +
  9212. _stage +
  9213. "'" +
  9214. ", " +
  9215. "'" +
  9216. _task +
  9217. "'" +
  9218. ", " +
  9219. "'" +
  9220. _tool +
  9221. "'" +
  9222. ", " +
  9223. "'" +
  9224. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9225. "'" +
  9226. ", " +
  9227. "'" +
  9228. aTool +
  9229. "'" +
  9230. ", " +
  9231. "`" +
  9232. text +
  9233. "`" +
  9234. ")\n" +
  9235. " });\n" +
  9236. "}\n" +
  9237. "document.head.appendChild(_js);\n";
  9238. _iframe.contentWindow.document.head.appendChild(_ajs);
  9239. }
  9240. }
  9241. //U.MD.D.I.openClick(str);
  9242. //如果有任务栏信息
  9243. // if (_taskbar) {
  9244. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9245. // }
  9246. }
  9247. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9248. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9249. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9250. _userinfo = US.userInfo, //登录用户信息
  9251. _userid = US.userInfo.userid //登录用户id
  9252. let _iframe;
  9253. let _cid = cid,
  9254. _stage = stage,
  9255. _task = task,
  9256. _tool = tool;
  9257. var _jie = $$("div", {
  9258. "style": {
  9259. "position": "absolute",
  9260. "bottom": "50px",
  9261. "right": "50px",
  9262. "zIndex": "9999",
  9263. "backgroundColor": "#2268bc",
  9264. "color": "#fff",
  9265. "padding": "12px 20px",
  9266. "cursor": "pointer",
  9267. "borderRadius": "4px",
  9268. },
  9269. "innerHTML": "上传模板"
  9270. })
  9271. let aTool = ''
  9272. let _loading = document.createElement('div')
  9273. _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;"
  9274. // _loading.id = "";
  9275. let _lchild = document.createElement('div')
  9276. let _limg = document.createElement('img')
  9277. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9278. _limg.style = "width: 26px;margin-right: 10px;"
  9279. _lchild.appendChild(_limg)
  9280. let _lspan = document.createElement('span')
  9281. _lspan.innerHTML = "上传中..."
  9282. _lchild.appendChild(_lspan)
  9283. _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%);"
  9284. _loading.appendChild(_lchild)
  9285. var _box = $$('div', {
  9286. "style": {
  9287. "position": "relative",
  9288. "width": "100%",
  9289. "height": "100%",
  9290. },
  9291. })
  9292. _box.appendChild(_loading)
  9293. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9294. switch (str) {
  9295. case "whiteboard":
  9296. aTool = 1;
  9297. _iframe = $$("iframe", {
  9298. "frameborder": "no",
  9299. "border": "0",
  9300. "scrolling ": "no",
  9301. "style": {
  9302. "cssText": "border:0;width:100%;height:100%"
  9303. },
  9304. "src": "https://beta.iwb.cocorobo.cn/"
  9305. })
  9306. _box.appendChild(_iframe);
  9307. _box.appendChild(_jie);
  9308. _formdiv = new U.UF.UI.form(
  9309. "电子白板",
  9310. _box, {
  9311. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9312. "style": {
  9313. "width": "90%",
  9314. "height": "90%",
  9315. "overflow": 'hidden'
  9316. },
  9317. "onresize": function () { }
  9318. }, {
  9319. closecallback: function () { }
  9320. }, {
  9321. "style": {
  9322. "height": "36px"
  9323. }
  9324. }).form; //创建窗体
  9325. _taskbar = {
  9326. "id": str + _formdiv.id,
  9327. "style": {
  9328. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9329. },
  9330. "name": "电子白板",
  9331. "forms": _formdiv,
  9332. "click": function () {
  9333. U.MD.D.I.openApplication(str, obj, info);
  9334. }
  9335. }
  9336. break;
  9337. case "mind":
  9338. aTool = 3;
  9339. _iframe = $$("iframe", {
  9340. "frameborder": "no",
  9341. "border": "0",
  9342. "scrolling ": "no",
  9343. "style": {
  9344. "cssText": "border:0;width:100%;height:100%"
  9345. },
  9346. "src": "/kityminder-editor/dist/index.html"
  9347. });
  9348. _box.appendChild(_iframe);
  9349. _box.appendChild(_jie);
  9350. _formdiv = new U.UF.UI.form(
  9351. "思维导图",
  9352. _box, { //"/jsmind/example/demo.html"
  9353. "id": "minds_Yu" + cid + stage + task + tool,
  9354. "style": {
  9355. "width": "90%",
  9356. "height": "90%",
  9357. "overflow": 'hidden'
  9358. },
  9359. "onresize": function () { }
  9360. }, {
  9361. closecallback: function () { }
  9362. }, {
  9363. "style": {
  9364. "height": "36px"
  9365. }
  9366. }).form; //创建窗体
  9367. _taskbar = {
  9368. "id": str + _formdiv.id,
  9369. "style": {
  9370. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9371. },
  9372. "name": "思维导图",
  9373. "forms": _formdiv,
  9374. "click": function () {
  9375. U.MD.D.I.openApplication(str, obj, info);
  9376. }
  9377. }
  9378. break;
  9379. case "doc":
  9380. aTool = 6;
  9381. _iframe = $$("iframe", {
  9382. "frameborder": "no",
  9383. "border": "0",
  9384. "scrolling ": "no",
  9385. "style": {
  9386. "cssText": "border:0;width:100%;height:100%"
  9387. },
  9388. "src": "/Office/Word/WordEditArea.htm"
  9389. })
  9390. _box.appendChild(_iframe);
  9391. _box.appendChild(_jie);
  9392. _formdiv = new U.UF.UI.form(
  9393. "协同文档",
  9394. _box, {
  9395. "id": "docs_Yu" + cid + stage + task + tool,
  9396. "style": {
  9397. "width": "90%",
  9398. "height": "90%",
  9399. "overflow": 'hidden'
  9400. },
  9401. "onresize": function () { }
  9402. }, {
  9403. closecallback: function () { }
  9404. }, {
  9405. "style": {
  9406. "height": "36px"
  9407. }
  9408. }).form; //创建窗体
  9409. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9410. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9411. })
  9412. _taskbar = {
  9413. "id": str + _formdiv.id,
  9414. "style": {
  9415. "backgroundImage": "url(/img/icon/doc.png)"
  9416. },
  9417. "name": "协同文档",
  9418. "forms": _formdiv,
  9419. "click": function () {
  9420. U.MD.D.I.openApplication(str, obj, info);
  9421. }
  9422. }
  9423. break;
  9424. case "CocoPi":
  9425. aTool = 57;
  9426. _iframe = $$("iframe", {
  9427. "allowpaymentrequest": "allowpaymentrequest",
  9428. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9429. "webkitallowfullscreen": "",
  9430. "mozallowfullscreen": "",
  9431. "frameborder": "no",
  9432. "border": "0",
  9433. "scrolling ": "no",
  9434. "style": {
  9435. "cssText": "border:0;width:100%;height:100%"
  9436. },
  9437. "src": "https://pi.cocorobo.cn/"
  9438. })
  9439. _box.appendChild(_iframe);
  9440. _box.appendChild(_jie);
  9441. _formdiv = new U.UF.UI.form(
  9442. "CocoPi",
  9443. _box, {
  9444. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9445. "style": {
  9446. "width": "90%",
  9447. "height": "90%",
  9448. "overflow": 'hidden'
  9449. },
  9450. "onresize": function () { }
  9451. }, {
  9452. closecallback: function () { }
  9453. }, {
  9454. "style": {
  9455. "height": "36px"
  9456. }
  9457. }).form; //创建窗体
  9458. _taskbar = {
  9459. "id": str + _formdiv.id,
  9460. "style": {
  9461. "backgroundImage": "url(/img/icon/cocopi.png)"
  9462. },
  9463. "name": "CocoPi",
  9464. "forms": _formdiv,
  9465. "click": function () {
  9466. U.MD.D.I.openApplication(str, obj, info);
  9467. }
  9468. }
  9469. break;
  9470. }
  9471. if (_iframe) {
  9472. if (str == 'doc') {
  9473. _iframe = _formdiv.querySelector('iframe')
  9474. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9475. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9476. })
  9477. if (onloadListener) {
  9478. _iframe.contentDocument.location.reload()
  9479. } else {
  9480. _iframe.contentDocument.location.reload()
  9481. }
  9482. } else if (str == 'mind') {
  9483. _iframe = _formdiv.querySelector('iframe')
  9484. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9485. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9486. })
  9487. if (onloadListener) {
  9488. _iframe.contentDocument.location.reload()
  9489. } else {
  9490. _iframe.contentDocument.location.reload()
  9491. }
  9492. } else if (str == 'whiteboard') {
  9493. _iframe = _formdiv.querySelector('iframe')
  9494. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9495. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9496. })
  9497. // if (onloadListener) {
  9498. // try {
  9499. // _iframe.src += "?cocorobo="+new Date().getTime()
  9500. // _iframe.contentWindow.document.location.reload()
  9501. // } catch (error) {
  9502. // }
  9503. // } else {
  9504. // _iframe.contentDocument.location.reload()
  9505. // }
  9506. } else if (str == 'CocoPi') {
  9507. _iframe = _formdiv.querySelector('iframe')
  9508. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9509. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9510. })
  9511. if (onloadListener) {
  9512. _iframe.contentDocument.location.reload()
  9513. } else {
  9514. _iframe.contentDocument.location.reload()
  9515. }
  9516. } else {
  9517. _iframe.onload = () => { };
  9518. }
  9519. _jie.onclick = async () => {
  9520. let text = ''
  9521. let type = '2'
  9522. if (aTool == 1) {
  9523. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9524. type = '3'
  9525. } else if (aTool == 6) {
  9526. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9527. type = '1'
  9528. } else if (aTool == 3) {
  9529. text = await U.MD.D.I.getEditorContent(_iframe);
  9530. type = '2'
  9531. } else if (aTool == 57) {
  9532. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9533. type = '4'
  9534. }
  9535. _loading.style.display = 'flex'
  9536. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9537. }
  9538. }
  9539. //U.MD.D.I.openClick(str);
  9540. //如果有任务栏信息
  9541. // if (_taskbar) {
  9542. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9543. // }
  9544. }
  9545. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9546. var xmlhttp;
  9547. var Mac, Sn, DeviceId
  9548. if (window.XMLHttpRequest) {
  9549. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9550. xmlhttp = new XMLHttpRequest();
  9551. } else {
  9552. // IE6, IE5 浏览器执行代码
  9553. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9554. }
  9555. xmlhttp.onreadystatechange = function () {
  9556. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9557. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9558. // resolve(res.value[0][0].text);
  9559. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9560. }
  9561. }
  9562. }
  9563. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9564. xmlhttp.send();
  9565. }
  9566. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9567. var xmlhttp;
  9568. var Mac, Sn, DeviceId
  9569. if (window.XMLHttpRequest) {
  9570. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9571. xmlhttp = new XMLHttpRequest();
  9572. } else {
  9573. // IE6, IE5 浏览器执行代码
  9574. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9575. }
  9576. xmlhttp.onreadystatechange = function () {
  9577. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9578. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9579. // resolve(res.value[0][0].text);
  9580. if (type == '2') {
  9581. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9582. } else if (type == '3') {
  9583. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9584. } else if (type == '4') {
  9585. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9586. }
  9587. } else {
  9588. if (type == '2') {
  9589. iframe.contentWindow.editor.minder.importData('json', '')
  9590. } else if (type == '3') {
  9591. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9592. } else if (type == '4') {
  9593. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9594. }
  9595. }
  9596. }
  9597. }
  9598. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9599. xmlhttp.send();
  9600. }
  9601. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9602. var xmlhttp;
  9603. var Mac, Sn, DeviceId
  9604. if (window.XMLHttpRequest) {
  9605. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9606. xmlhttp = new XMLHttpRequest();
  9607. } else {
  9608. // IE6, IE5 浏览器执行代码
  9609. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9610. }
  9611. xmlhttp.onreadystatechange = function () {
  9612. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9613. if (xmlhttp.response) {
  9614. // resolve(res.value[0][0].text);
  9615. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9616. // $(fileInput).val('');
  9617. // });
  9618. span.innerHTML = '上传成功'
  9619. setTimeout(() => {
  9620. loading.style.display = 'none'
  9621. }, 1000);
  9622. }
  9623. }
  9624. }
  9625. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9626. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9627. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9628. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9629. // 设置请求头,表示请求体的编码格式
  9630. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9631. // 设置请求体,使用url-encoded格式的数据
  9632. }
  9633. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9634. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9635. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9636. _userinfo = US.userInfo, //登录用户信息
  9637. _userid = US.userInfo.userid //登录用户id
  9638. let _iframe;
  9639. let _cid = cid,
  9640. _stage = stage,
  9641. _task = task,
  9642. _tool = tool;
  9643. var _jie = $$("div", {
  9644. "style": {
  9645. "position": "absolute",
  9646. "bottom": "50px",
  9647. "right": "50px",
  9648. "zIndex": "9999",
  9649. "backgroundColor": "#2268bc",
  9650. "color": "#fff",
  9651. "padding": "12px 20px",
  9652. "cursor": "pointer",
  9653. "borderRadius": "4px",
  9654. },
  9655. "innerHTML": "提交作业"
  9656. })
  9657. let aTool = ''
  9658. let _loading = document.createElement('div')
  9659. _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;"
  9660. // _loading.id = "";
  9661. let _lchild = document.createElement('div')
  9662. let _limg = document.createElement('img')
  9663. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9664. _limg.style = "width: 26px;margin-right: 10px;"
  9665. _lchild.appendChild(_limg)
  9666. let _lspan = document.createElement('span')
  9667. _lspan.innerHTML = "上传中..."
  9668. _lchild.appendChild(_lspan)
  9669. _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%);"
  9670. _loading.appendChild(_lchild)
  9671. var _box = $$('div', {
  9672. "style": {
  9673. "position": "relative",
  9674. "width": "100%",
  9675. "height": "100%",
  9676. },
  9677. })
  9678. _box.appendChild(_loading)
  9679. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9680. switch (str) {
  9681. case "CocoPi":
  9682. aTool = 57;
  9683. _iframe = $$("iframe", {
  9684. "allowpaymentrequest": "allowpaymentrequest",
  9685. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9686. "webkitallowfullscreen": "",
  9687. "mozallowfullscreen": "",
  9688. "frameborder": "no",
  9689. "border": "0",
  9690. "scrolling ": "no",
  9691. "style": {
  9692. "cssText": "border:0;width:100%;height:100%"
  9693. },
  9694. "src": "https://pi.cocorobo.cn/"
  9695. })
  9696. _box.appendChild(_iframe);
  9697. _box.appendChild(_jie);
  9698. _formdiv = new U.UF.UI.form(
  9699. "CocoPi",
  9700. _box, {
  9701. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9702. "style": {
  9703. "width": "90%",
  9704. "height": "90%",
  9705. "overflow": 'hidden'
  9706. },
  9707. "onresize": function () { }
  9708. }, {
  9709. closecallback: function () { }
  9710. }, {
  9711. "style": {
  9712. "height": "36px"
  9713. }
  9714. }).form; //创建窗体
  9715. _taskbar = {
  9716. "id": str + _formdiv.id,
  9717. "style": {
  9718. "backgroundImage": "url(/img/icon/cocopi.png)"
  9719. },
  9720. "name": "CocoPi",
  9721. "forms": _formdiv,
  9722. "click": function () {
  9723. U.MD.D.I.openApplication(str, obj, info);
  9724. }
  9725. }
  9726. break;
  9727. }
  9728. if (_iframe) {
  9729. if (str == 'CocoPi') {
  9730. _iframe = _formdiv.querySelector('iframe')
  9731. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9732. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9733. })
  9734. if (onloadListener) {
  9735. _iframe.contentDocument.location.reload()
  9736. } else {
  9737. _iframe.contentDocument.location.reload()
  9738. }
  9739. }
  9740. _jie.onclick = async () => {
  9741. let text = ''
  9742. if (aTool == 57) {
  9743. text = _iframe.contentWindow.getLoadXmlStr()
  9744. }
  9745. _loading.style.display = 'flex'
  9746. console.log(_loading);
  9747. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9748. _loading.style.display = 'none'
  9749. let _div = document.createElement('div')
  9750. _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;"
  9751. let _inner = document.createElement('div')
  9752. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9753. _inner.innerHTML = "上传成功"
  9754. _div.appendChild(_inner)
  9755. _iframe.contentWindow.window.document.body.appendChild(_div)
  9756. _div.onclick = () => {
  9757. _iframe.contentWindow.window.document.body.removeChild(_div)
  9758. }
  9759. setTimeout(() => {
  9760. _iframe.contentWindow.window.document.body.removeChild(_div)
  9761. }, 1000);
  9762. }, [], { "type": "POST", "withCredentials": true });
  9763. }
  9764. }
  9765. }
  9766. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9767. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9768. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9769. _userid = student.userid, //登录用户id
  9770. _username = student.student //用户名字
  9771. let _iframe;
  9772. let _cid = cid,
  9773. _stage = stage,
  9774. _task = task,
  9775. _tool = tool;
  9776. var _jie = $$("div", {
  9777. "style": {
  9778. "position": "absolute",
  9779. "bottom": "50px",
  9780. "right": "50px",
  9781. "zIndex": "9999",
  9782. "backgroundColor": "#2268bc",
  9783. "color": "#fff",
  9784. "padding": "12px 20px",
  9785. "cursor": "pointer",
  9786. "borderRadius": "4px",
  9787. },
  9788. "innerHTML": "提交作业"
  9789. })
  9790. let aTool = ''
  9791. let _loading = document.createElement('div')
  9792. _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;"
  9793. // _loading.id = "";
  9794. let _lchild = document.createElement('div')
  9795. let _limg = document.createElement('img')
  9796. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9797. _limg.style = "width: 26px;margin-right: 10px;"
  9798. _lchild.appendChild(_limg)
  9799. let _lspan = document.createElement('span')
  9800. _lspan.innerHTML = "上传中..."
  9801. _lchild.appendChild(_lspan)
  9802. _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%);"
  9803. _loading.appendChild(_lchild)
  9804. var _box = $$('div', {
  9805. "style": {
  9806. "position": "relative",
  9807. "width": "100%",
  9808. "height": "100%",
  9809. },
  9810. })
  9811. _box.appendChild(_loading)
  9812. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9813. switch (str) {
  9814. case "CocoPi":
  9815. aTool = 57;
  9816. _iframe = $$("iframe", {
  9817. "allowpaymentrequest": "allowpaymentrequest",
  9818. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9819. "webkitallowfullscreen": "",
  9820. "mozallowfullscreen": "",
  9821. "frameborder": "no",
  9822. "border": "0",
  9823. "scrolling ": "no",
  9824. "style": {
  9825. "cssText": "border:0;width:100%;height:100%"
  9826. },
  9827. "src": "https://pi.cocorobo.cn/"
  9828. })
  9829. _box.appendChild(_iframe);
  9830. _box.appendChild(_jie);
  9831. _formdiv = new U.UF.UI.form(
  9832. "CocoPi-" + _username,
  9833. _box, {
  9834. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9835. "style": {
  9836. "width": "90%",
  9837. "height": "90%",
  9838. "overflow": 'hidden'
  9839. },
  9840. "onresize": function () { }
  9841. }, {
  9842. closecallback: function () { }
  9843. }, {
  9844. "style": {
  9845. "height": "36px"
  9846. }
  9847. }).form; //创建窗体
  9848. _taskbar = {
  9849. "id": str + _formdiv.id,
  9850. "style": {
  9851. "backgroundImage": "url(/img/icon/cocopi.png)"
  9852. },
  9853. "name": "CocoPi",
  9854. "forms": _formdiv,
  9855. "click": function () {
  9856. U.MD.D.I.openApplication(str, obj, info);
  9857. }
  9858. }
  9859. break;
  9860. }
  9861. if (_iframe) {
  9862. if (str == 'CocoPi') {
  9863. _iframe = _formdiv.querySelector('iframe')
  9864. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9865. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9866. })
  9867. if (onloadListener) {
  9868. _iframe.contentDocument.location.reload()
  9869. } else {
  9870. _iframe.contentDocument.location.reload()
  9871. }
  9872. }
  9873. _jie.onclick = async () => {
  9874. let text = ''
  9875. if (aTool == 57) {
  9876. text = _iframe.contentWindow.getLoadXmlStr()
  9877. }
  9878. _loading.style.display = 'flex'
  9879. console.log(_loading);
  9880. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9881. _loading.style.display = 'none'
  9882. let _div = document.createElement('div')
  9883. _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;"
  9884. let _inner = document.createElement('div')
  9885. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9886. _inner.innerHTML = "上传成功"
  9887. _div.appendChild(_inner)
  9888. _iframe.contentWindow.window.document.body.appendChild(_div)
  9889. _div.onclick = () => {
  9890. _iframe.contentWindow.window.document.body.removeChild(_div)
  9891. }
  9892. setTimeout(() => {
  9893. _iframe.contentWindow.window.document.body.removeChild(_div)
  9894. }, 1000);
  9895. }, [], { "type": "POST", "withCredentials": true });
  9896. }
  9897. }
  9898. }
  9899. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9900. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9901. if (res.value[0].length > 0) {
  9902. if (atool == 57) {
  9903. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9904. }
  9905. } else {
  9906. if (atool == 57) {
  9907. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9908. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9909. }
  9910. }
  9911. }, [], { "type": "POST", "withCredentials": true });
  9912. }