DeskTop.js 663 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成华教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成华教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成华教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourse", "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. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //盐田区幼儿园
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyStudentDeskIcon = [
  1230. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. ];
  1234. //scnuai
  1235. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1239. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1240. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1241. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1242. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1245. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1246. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1247. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1248. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1251. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1252. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1253. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1254. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1255. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1257. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1258. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1259. ];
  1260. //scnuai
  1261. U.MD.D.I.scnuaiAdminDeskIcon = [
  1262. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1263. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1264. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1265. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1266. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1267. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1268. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1269. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1271. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1272. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1273. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1274. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1277. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1278. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1279. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1280. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1281. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1283. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1284. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1285. ];
  1286. //scnuai
  1287. U.MD.D.I.scnuaiStudentDeskIcon = [
  1288. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1290. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. ];
  1293. //cocobiz
  1294. U.MD.D.I.cocobizteacherDeskIcon = [
  1295. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1296. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1297. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1298. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1302. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1303. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1304. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1305. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1306. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1307. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1308. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1312. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1325. ];
  1326. //xxzjky
  1327. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1328. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1330. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1331. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1337. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1338. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1339. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1340. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1341. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1345. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1347. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1348. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1352. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1353. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1354. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1355. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1358. ];
  1359. //nsfx
  1360. U.MD.D.I.nsfxTeacherDeskIcon = [
  1361. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1362. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1364. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1369. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1370. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1374. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1375. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1376. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1377. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1378. ];
  1379. //nsfx
  1380. U.MD.D.I.nsfxStudentDeskIcon = [
  1381. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. ];
  1386. //stia
  1387. U.MD.D.I.stiaTeacherDeskIcon = [
  1388. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1389. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1390. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1391. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1392. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1395. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1396. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1397. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1398. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1399. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1400. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1401. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1402. ];
  1403. //stia
  1404. U.MD.D.I.stiaStudentDeskIcon = [
  1405. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1406. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1407. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1409. ];
  1410. //szdjg
  1411. U.MD.D.I.szdjgTeacherDeskIcon = [
  1412. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1413. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgStudentDeskIcon = [
  1417. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1418. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1419. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1420. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1421. ];
  1422. //010607
  1423. U.MD.D.I.x010607TeacherDeskIcon = [
  1424. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1425. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1426. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1427. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1428. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1429. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1430. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1431. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1432. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1435. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1436. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1437. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1438. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1439. ];
  1440. //010607
  1441. U.MD.D.I.x010607StudentDeskIcon = [
  1442. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1444. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. ];
  1447. //010608
  1448. U.MD.D.I.x010608TeacherDeskIcon = [
  1449. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1450. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1451. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1452. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1453. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1454. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1455. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1456. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1457. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1459. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1460. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1461. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1462. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1463. ];
  1464. //010608
  1465. U.MD.D.I.x010608StudentDeskIcon = [
  1466. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1467. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1470. ];
  1471. //xhly
  1472. U.MD.D.I.xhlyTeacherDeskIcon = [
  1473. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1474. ];
  1475. //010608
  1476. U.MD.D.I.xhlyStudentDeskIcon = [
  1477. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1478. ];
  1479. //北师大
  1480. U.MD.D.I.BSDNSteacherDeskIcon = [
  1481. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1482. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1484. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1485. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1488. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1491. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1492. ];
  1493. //北师大
  1494. U.MD.D.I.BSDNSstudentDeskIcon = [
  1495. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1496. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1497. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. ];
  1500. //CUHK_EDU
  1501. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1504. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1505. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1508. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1512. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1513. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1514. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1515. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1516. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1517. ];
  1518. //CUHK_EDU
  1519. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1520. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1522. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1524. ];
  1525. //010503
  1526. U.MD.D.I.x010503TeacherDeskIcon = [
  1527. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1528. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1529. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1530. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1531. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1532. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1533. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1534. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1535. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1536. ];
  1537. //010503
  1538. U.MD.D.I.x010503StudentDeskIcon = [
  1539. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1543. ];
  1544. //SPROUT Lab
  1545. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  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. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1549. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1550. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1551. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1552. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1553. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1554. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1555. ];
  1556. //SPROUT Lab
  1557. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1558. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1559. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1560. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1561. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. ];
  1563. //010204
  1564. U.MD.D.I.x010204TeacherDeskIcon = [
  1565. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1566. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. ];
  1568. //010204
  1569. U.MD.D.I.x010204StudentDeskIcon = [
  1570. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1571. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1572. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1574. ];
  1575. //trail
  1576. U.MD.D.I.trailTeacherDeskIcon = [
  1577. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1578. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1579. ];
  1580. //trail
  1581. U.MD.D.I.trailStudentDeskIcon = [
  1582. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //010504
  1588. U.MD.D.I.x010504TeacherDeskIcon = [
  1589. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1590. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1592. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1593. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1594. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1595. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1596. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1598. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1599. ];
  1600. //010504
  1601. U.MD.D.I.x010504StudentDeskIcon = [
  1602. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1605. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1606. ];
  1607. //SCNUET
  1608. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1613. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1614. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1615. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1616. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1617. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1619. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1621. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1622. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1623. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1625. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1626. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1627. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1628. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1630. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1631. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1632. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1633. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1634. ];
  1635. //SCNUET
  1636. U.MD.D.I.SCNUETAdminDeskIcon = [
  1637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1641. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1642. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1643. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1644. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1645. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1646. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1647. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1648. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1649. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1650. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1651. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1652. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1653. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1654. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1655. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1656. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1657. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1658. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1659. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1660. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1661. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1662. ];
  1663. //SCNUET
  1664. U.MD.D.I.SCNUETStudentDeskIcon = [
  1665. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1666. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1667. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1668. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. ];
  1670. //x020201
  1671. U.MD.D.I.x020201TeacherDeskIcon = [
  1672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1676. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1677. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1678. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1679. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1680. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1681. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1682. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1683. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1684. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1685. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1686. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1687. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1688. ];
  1689. //x020201
  1690. U.MD.D.I.x020201AdminDeskIcon = [
  1691. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1692. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1693. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1694. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1695. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1696. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1697. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1698. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1699. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1700. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1701. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1702. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1704. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1705. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1706. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1707. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1708. ];
  1709. //020201
  1710. U.MD.D.I.x020201StudentDeskIcon = [
  1711. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1712. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1713. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1715. ];
  1716. //010611
  1717. U.MD.D.I.x010611TeacherDeskIcon = [
  1718. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1719. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1720. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1721. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1722. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1723. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1725. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1726. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1727. ];
  1728. //010611
  1729. U.MD.D.I.x010611StudentDeskIcon = [
  1730. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1731. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1732. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1734. ];
  1735. //tianyuan
  1736. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1737. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1738. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1739. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1740. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1741. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1742. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1743. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1744. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1745. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1746. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1747. ];
  1748. //010611
  1749. U.MD.D.I.tianyuanStudentDeskIcon = [
  1750. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1751. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1752. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1754. ];
  1755. //#region 桌面初始化a
  1756. /**
  1757. * 初始化桌面的起始函数
  1758. *
  1759. */
  1760. U.MD.D.I.init = function () {
  1761. if ($("#U_MD_D_K")[0]) {
  1762. //初始化桌面图标
  1763. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1764. // var clickUrl = ':12588/requestIp.php';
  1765. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1766. // U.MD.D.I.Ip = data;
  1767. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1768. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1769. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1770. // })
  1771. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1772. // })
  1773. }
  1774. }
  1775. /**
  1776. * 模式切换
  1777. *
  1778. */
  1779. U.MD.D.I.ModeCheck = function (type) {
  1780. if (US.Config.type == type) {
  1781. return
  1782. }
  1783. US.Config.type = type
  1784. $('.U_PBL_Check .active')[0].className = ''
  1785. if (type == 1) {
  1786. $('.U_PBL_Check div')[0].className = 'active'
  1787. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1788. } else {
  1789. $('.U_PBL_Check div')[1].className = 'active'
  1790. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1791. }
  1792. //初始化桌面图标
  1793. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1794. if (type == 2) {
  1795. U.MD.D.I.openApplication("project")
  1796. }
  1797. }
  1798. /**
  1799. * 隐藏任务栏
  1800. *
  1801. * @param {element} 桌面元素
  1802. */
  1803. U.MD.D.I.hiddenTaskbar = function (el) {
  1804. //任务栏位置变小
  1805. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1806. //桌面的位置变大
  1807. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1808. }
  1809. /**
  1810. * 隐藏任务栏
  1811. *
  1812. * @param {element} 桌面元素
  1813. */
  1814. U.MD.D.I.hiddenTaskbarout = function (el) {
  1815. //任务栏位置变小
  1816. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1817. //任务栏位置变化
  1818. U.selectEl(el).css({ "bottom": "-60px" });
  1819. //桌面的位置变大
  1820. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1821. }
  1822. }
  1823. /**
  1824. * 初始化打印桌面图标
  1825. *
  1826. * @param {element} 桌面元素
  1827. */
  1828. U.MD.D.I.initDesktopIcons = function (el, type) {
  1829. var i, //用于循环
  1830. _content, //桌面图标元素
  1831. _iconcontent, //桌面图标元素
  1832. _frag = $$("frag"), //定义一个碎片元素
  1833. _type = US.userInfo.type,
  1834. _org = US.userInfo.org,
  1835. _oid = US.userInfo.organizeid,
  1836. _role = US.userInfo.role,
  1837. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1838. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1839. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1840. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1841. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1842. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1843. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1844. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1845. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1846. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1847. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1848. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1849. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1850. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1851. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1852. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1853. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1854. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1855. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1856. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1857. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1858. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1859. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1860. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1861. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1862. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1863. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1864. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1865. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1866. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1867. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1868. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1869. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1870. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1871. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1872. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1873. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1874. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1875. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1876. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1877. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1878. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1879. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1880. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1881. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1882. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1883. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1884. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1885. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1886. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1887. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1888. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1889. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1890. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1891. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1892. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1893. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1894. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1895. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1896. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1897. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1898. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1899. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1900. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1901. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1902. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1903. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1904. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1905. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1906. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1907. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1908. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1909. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1910. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1911. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1912. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1913. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1914. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1915. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1916. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1917. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1918. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1919. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1920. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1921. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1922. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1923. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1924. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1925. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1926. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1927. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1928. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1929. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1930. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1931. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1932. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1933. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1934. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1935. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1936. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1937. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1938. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1939. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1940. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1941. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1942. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1943. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1944. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1945. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1946. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1947. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1948. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5'];
  1949. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc'];
  1950. //清楚桌面图标
  1951. el.innerHTML = "";
  1952. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1953. _teacherDesktopIconInfo.push(
  1954. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1955. { "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)" } },
  1956. )
  1957. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1958. }
  1959. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1960. _teacherDesktopIconInfo.push(
  1961. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1962. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1963. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1964. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1965. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1966. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1967. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1968. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1969. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1970. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1971. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1972. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1973. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1974. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1975. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1976. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1977. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1978. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1979. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1980. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1981. )
  1982. }
  1983. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1984. _teacherDesktopIconInfo.push(
  1985. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1986. )
  1987. }
  1988. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1989. // _teacherDesktopIconInfo.push(
  1990. // )
  1991. // }
  1992. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1993. _teacherDesktopIconInfo.push(
  1994. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1995. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1996. )
  1997. }
  1998. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1999. _teacherDesktopIconInfo.push(
  2000. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2001. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2002. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2003. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2004. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2005. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2006. )
  2007. _studentDesktopIconInfo.push(
  2008. )
  2009. }
  2010. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2011. _teacherDesktopIconInfo.push(
  2012. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2013. )
  2014. _studentDesktopIconInfo.push(
  2015. )
  2016. }
  2017. //010606 组织
  2018. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2019. _teacherDesktopIconInfo.push(
  2020. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2021. )
  2022. _studentDesktopIconInfo.push(
  2023. )
  2024. }
  2025. //麒麟二中 和 民新小学
  2026. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2027. _teacherDesktopIconInfo.push(
  2028. )
  2029. }
  2030. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2031. _teacherDesktopIconInfo.push(
  2032. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2033. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2034. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2035. )
  2036. }
  2037. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2038. _hkTeacherDeskIconInfo.push(
  2039. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2040. )
  2041. }
  2042. //北师大附中(010601)
  2043. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2044. // _teacherDesktopIconInfo.push(
  2045. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2046. // )
  2047. // _studentDesktopIconInfo.push(
  2048. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2049. // )
  2050. // }
  2051. //樂善堂余近卿中學
  2052. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2053. _teacherDesktopIconInfo.push(
  2054. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2055. )
  2056. }
  2057. // Education Artificial Intelligence
  2058. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2059. _teacherDesktopIconInfo.push(
  2060. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2061. )
  2062. }
  2063. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2064. _teacherDesktopIconInfo.push(
  2065. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2066. )
  2067. }
  2068. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2069. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2070. _teacherDesktopIconInfo.push(
  2071. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2072. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2073. )
  2074. }
  2075. //麒麟二中
  2076. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2077. _studentDesktopIconInfo.push(
  2078. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2079. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2080. )
  2081. }
  2082. //万科双语
  2083. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2084. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2085. if (el.Name == '项目管理') {
  2086. el.Name = 'PBL项目'
  2087. }
  2088. return el
  2089. })
  2090. _studentDesktopIconInfo3.push(
  2091. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2092. )
  2093. }
  2094. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2095. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2096. return el.Name != '魔盒识字' && el.Name != '24点'
  2097. })
  2098. }
  2099. 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) {
  2100. _studentDesktopIconInfo.push(
  2101. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2102. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2103. )
  2104. }
  2105. //循环创建桌面图标
  2106. if (type == 1) {
  2107. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2108. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2109. _content = $$("div", {
  2110. className: "U_MD_D_KO",
  2111. "onmousedown": U.UF.C.closure(function (obj) {
  2112. //防止拖动图标即打开了桌面应用
  2113. U.MD.D.click(this, obj);
  2114. }, [_studentDesktopIconInfo[i]]),
  2115. "onclick": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_studentDesktopIconInfo[i]])
  2119. }, _frag); //
  2120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2123. }
  2124. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2125. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2126. _content = $$("div", {
  2127. className: "U_MD_D_KO",
  2128. "onmousedown": U.UF.C.closure(function (obj) {
  2129. //防止拖动图标即打开了桌面应用
  2130. U.MD.D.click(this, obj);
  2131. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2132. "onclick": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_hkZJLSStudentDeskIconInfo[i]])
  2136. }, _frag); //
  2137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2140. } //
  2141. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2142. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2143. _content = $$("div", {
  2144. className: "U_MD_D_KO",
  2145. "onmousedown": U.UF.C.closure(function (obj) {
  2146. //防止拖动图标即打开了桌面应用
  2147. U.MD.D.click(this, obj);
  2148. }, [_ytyStudentDeskIconInfo[i]]),
  2149. "onclick": U.UF.C.closure(function (obj) {
  2150. //防止拖动图标即打开了桌面应用
  2151. U.MD.D.click(this, obj);
  2152. }, [_ytyStudentDeskIconInfo[i]])
  2153. }, _frag); //
  2154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2157. } //
  2158. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2159. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2160. _content = $$("div", {
  2161. className: "U_MD_D_KO",
  2162. "onmousedown": U.UF.C.closure(function (obj) {
  2163. //防止拖动图标即打开了桌面应用
  2164. U.MD.D.click(this, obj);
  2165. }, [_jccssylStudentDeskIconInfo[i]]),
  2166. "onclick": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_jccssylStudentDeskIconInfo[i]])
  2170. }, _frag); //
  2171. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2174. }
  2175. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2176. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2177. _content = $$("div", {
  2178. className: "U_MD_D_KO",
  2179. "onmousedown": U.UF.C.closure(function (obj) {
  2180. //防止拖动图标即打开了桌面应用
  2181. U.MD.D.click(this, obj);
  2182. }, [_scnuaiStudentDeskIconInfo[i]]),
  2183. "onclick": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_scnuaiStudentDeskIconInfo[i]])
  2187. }, _frag); //
  2188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2191. }
  2192. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2193. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2194. _content = $$("div", {
  2195. className: "U_MD_D_KO",
  2196. "onmousedown": U.UF.C.closure(function (obj) {
  2197. //防止拖动图标即打开了桌面应用
  2198. U.MD.D.click(this, obj);
  2199. }, [_caleStudentDeskIconInfo[i]]),
  2200. "onclick": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_caleStudentDeskIconInfo[i]])
  2204. }, _frag); //
  2205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2208. }
  2209. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2210. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2211. _content = $$("div", {
  2212. className: "U_MD_D_KO",
  2213. "onmousedown": U.UF.C.closure(function (obj) {
  2214. //防止拖动图标即打开了桌面应用
  2215. U.MD.D.click(this, obj);
  2216. }, [_thuioeStudentDeskIconInfo[i]]),
  2217. "onclick": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_thuioeStudentDeskIconInfo[i]])
  2221. }, _frag); //
  2222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2225. }
  2226. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2227. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2228. _content = $$("div", {
  2229. className: "U_MD_D_KO",
  2230. "onmousedown": U.UF.C.closure(function (obj) {
  2231. //防止拖动图标即打开了桌面应用
  2232. U.MD.D.click(this, obj);
  2233. }, [_tpcStudentDeskIconInfo[i]]),
  2234. "onclick": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_tpcStudentDeskIconInfo[i]])
  2238. }, _frag); //
  2239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2242. } //
  2243. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2244. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2245. _content = $$("div", {
  2246. className: "U_MD_D_KO",
  2247. "onmousedown": U.UF.C.closure(function (obj) {
  2248. //防止拖动图标即打开了桌面应用
  2249. U.MD.D.click(this, obj);
  2250. }, [_chjyjStudentDeskIconInfo[i]]),
  2251. "onclick": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_chjyjStudentDeskIconInfo[i]])
  2255. }, _frag); //
  2256. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2257. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2258. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2259. }
  2260. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2261. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2262. _content = $$("div", {
  2263. className: "U_MD_D_KO",
  2264. "onmousedown": U.UF.C.closure(function (obj) {
  2265. //防止拖动图标即打开了桌面应用
  2266. U.MD.D.click(this, obj);
  2267. }, [_szjkyStudentDeskIconInfo[i]]),
  2268. "onclick": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_szjkyStudentDeskIconInfo[i]])
  2272. }, _frag); //
  2273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2276. }
  2277. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2278. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2279. _content = $$("div", {
  2280. className: "U_MD_D_KO",
  2281. "onmousedown": U.UF.C.closure(function (obj) {
  2282. //防止拖动图标即打开了桌面应用
  2283. U.MD.D.click(this, obj);
  2284. }, [_x020201StudentDeskIconInfo[i]]),
  2285. "onclick": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_x020201StudentDeskIconInfo[i]])
  2289. }, _frag); //
  2290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2293. }
  2294. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2295. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2296. _content = $$("div", {
  2297. className: "U_MD_D_KO",
  2298. "onmousedown": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_SCNUETStudentDeskIconInfo[i]]),
  2302. "onclick": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_SCNUETStudentDeskIconInfo[i]])
  2306. }, _frag); //
  2307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2310. }
  2311. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2312. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2313. _content = $$("div", {
  2314. className: "U_MD_D_KO",
  2315. "onmousedown": U.UF.C.closure(function (obj) {
  2316. //防止拖动图标即打开了桌面应用
  2317. U.MD.D.click(this, obj);
  2318. }, [_dseiStudentDeskIconInfo[i]]),
  2319. "onclick": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_dseiStudentDeskIconInfo[i]])
  2323. }, _frag); //
  2324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2327. }
  2328. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2329. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2330. _content = $$("div", {
  2331. className: "U_MD_D_KO",
  2332. "onmousedown": U.UF.C.closure(function (obj) {
  2333. //防止拖动图标即打开了桌面应用
  2334. U.MD.D.click(this, obj);
  2335. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2336. "onclick": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2340. }, _frag); //
  2341. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2342. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2343. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2344. }
  2345. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2346. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2347. _content = $$("div", {
  2348. className: "U_MD_D_KO",
  2349. "onmousedown": U.UF.C.closure(function (obj) {
  2350. //防止拖动图标即打开了桌面应用
  2351. U.MD.D.click(this, obj);
  2352. }, [_nsfxStudentDeskIconInfo[i]]),
  2353. "onclick": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_nsfxStudentDeskIconInfo[i]])
  2357. }, _frag); //
  2358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2361. }
  2362. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2363. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2364. _content = $$("div", {
  2365. className: "U_MD_D_KO",
  2366. "onmousedown": U.UF.C.closure(function (obj) {
  2367. //防止拖动图标即打开了桌面应用
  2368. U.MD.D.click(this, obj);
  2369. }, [_stiaStudentDeskIconInfo[i]]),
  2370. "onclick": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_stiaStudentDeskIconInfo[i]])
  2374. }, _frag); //
  2375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2378. }
  2379. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2380. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2381. _content = $$("div", {
  2382. className: "U_MD_D_KO",
  2383. "onmousedown": U.UF.C.closure(function (obj) {
  2384. //防止拖动图标即打开了桌面应用
  2385. U.MD.D.click(this, obj);
  2386. }, [_szdjgStudentDeskIconInfo[i]]),
  2387. "onclick": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_szdjgStudentDeskIconInfo[i]])
  2391. }, _frag); //
  2392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2395. }
  2396. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2397. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2398. _content = $$("div", {
  2399. className: "U_MD_D_KO",
  2400. "onmousedown": U.UF.C.closure(function (obj) {
  2401. //防止拖动图标即打开了桌面应用
  2402. U.MD.D.click(this, obj);
  2403. }, [_x010607StudentDeskIconInfo[i]]),
  2404. "onclick": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_x010607StudentDeskIconInfo[i]])
  2408. }, _frag); //
  2409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2412. }
  2413. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2414. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2415. _content = $$("div", {
  2416. className: "U_MD_D_KO",
  2417. "onmousedown": U.UF.C.closure(function (obj) {
  2418. //防止拖动图标即打开了桌面应用
  2419. U.MD.D.click(this, obj);
  2420. }, [_xhlyStudentDeskIconInfo[i]]),
  2421. "onclick": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_xhlyStudentDeskIconInfo[i]])
  2425. }, _frag); //
  2426. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2427. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2428. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2429. }
  2430. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2431. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2432. _content = $$("div", {
  2433. className: "U_MD_D_KO",
  2434. "onmousedown": U.UF.C.closure(function (obj) {
  2435. //防止拖动图标即打开了桌面应用
  2436. U.MD.D.click(this, obj);
  2437. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2438. "onclick": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2442. }, _frag); //
  2443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2446. }
  2447. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2448. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2449. _content = $$("div", {
  2450. className: "U_MD_D_KO",
  2451. "onmousedown": U.UF.C.closure(function (obj) {
  2452. //防止拖动图标即打开了桌面应用
  2453. U.MD.D.click(this, obj);
  2454. }, [_x010503StudentDeskIconInfo[i]]),
  2455. "onclick": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_x010503StudentDeskIconInfo[i]])
  2459. }, _frag); //
  2460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2463. }
  2464. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2465. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2466. _content = $$("div", {
  2467. className: "U_MD_D_KO",
  2468. "onmousedown": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_x010504StudentDeskIconInfo[i]]),
  2472. "onclick": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_x010504StudentDeskIconInfo[i]])
  2476. }, _frag); //
  2477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2480. }
  2481. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2482. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2483. _content = $$("div", {
  2484. className: "U_MD_D_KO",
  2485. "onmousedown": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_x010204StudentDeskIconInfo[i]]),
  2489. "onclick": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_x010204StudentDeskIconInfo[i]])
  2493. }, _frag); //
  2494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2497. }
  2498. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2499. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2500. _content = $$("div", {
  2501. className: "U_MD_D_KO",
  2502. "onmousedown": U.UF.C.closure(function (obj) {
  2503. //防止拖动图标即打开了桌面应用
  2504. U.MD.D.click(this, obj);
  2505. }, [_trailStudentDeskIconInfo[i]]),
  2506. "onclick": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_trailStudentDeskIconInfo[i]])
  2510. }, _frag); //
  2511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2514. }
  2515. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2516. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2517. _content = $$("div", {
  2518. className: "U_MD_D_KO",
  2519. "onmousedown": U.UF.C.closure(function (obj) {
  2520. //防止拖动图标即打开了桌面应用
  2521. U.MD.D.click(this, obj);
  2522. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2523. "onclick": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2527. }, _frag); //
  2528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2531. }
  2532. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2533. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2534. _content = $$("div", {
  2535. className: "U_MD_D_KO",
  2536. "onmousedown": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_x010608StudentDeskIconInfo[i]]),
  2540. "onclick": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_x010608StudentDeskIconInfo[i]])
  2544. }, _frag); //
  2545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2548. }
  2549. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2550. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2551. _content = $$("div", {
  2552. className: "U_MD_D_KO",
  2553. "onmousedown": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_x010611StudentDeskIconInfo[i]]),
  2557. "onclick": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_x010611StudentDeskIconInfo[i]])
  2561. }, _frag); //
  2562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2565. }
  2566. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2567. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2568. _content = $$("div", {
  2569. className: "U_MD_D_KO",
  2570. "onmousedown": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_tianyuantudentDeskIconInfo[i]]),
  2574. "onclick": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_tianyuantudentDeskIconInfo[i]])
  2578. }, _frag); //
  2579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2582. }
  2583. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2584. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2585. _content = $$("div", {
  2586. className: "U_MD_D_KO",
  2587. "onmousedown": U.UF.C.closure(function (obj) {
  2588. //防止拖动图标即打开了桌面应用
  2589. U.MD.D.click(this, obj);
  2590. }, [_siesStudentDeskIconInfo[i]]),
  2591. "onclick": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_siesStudentDeskIconInfo[i]])
  2595. }, _frag); //
  2596. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2597. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2598. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2599. }
  2600. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2601. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2602. _content = $$("div", {
  2603. className: "U_MD_D_KO",
  2604. "onmousedown": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_guzmsStudentDeskIconInfo[i]]),
  2608. "onclick": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_guzmsStudentDeskIconInfo[i]])
  2612. }, _frag); //
  2613. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2614. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2615. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2616. }
  2617. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2618. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2619. _content = $$("div", {
  2620. className: "U_MD_D_KO",
  2621. "onmousedown": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_hkStudentDeskIconInfo[i]]),
  2625. "onclick": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_hkStudentDeskIconInfo[i]])
  2629. }, _frag); //
  2630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2633. }
  2634. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2635. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2636. _content = $$("div", {
  2637. className: "U_MD_D_KO",
  2638. "onmousedown": U.UF.C.closure(function (obj) {
  2639. //防止拖动图标即打开了桌面应用
  2640. U.MD.D.click(this, obj);
  2641. }, [_hkaceStudentDeskIconInfo[i]]),
  2642. "onclick": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_hkaceStudentDeskIconInfo[i]])
  2646. }, _frag); //
  2647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2650. }
  2651. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2652. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2653. _content = $$("div", {
  2654. className: "U_MD_D_KO",
  2655. "onmousedown": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2659. "onclick": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_BSDNSstudentDesktopIconInfo[i]])
  2663. }, _frag); //
  2664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2667. }
  2668. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2669. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2670. _content = $$("div", {
  2671. className: "U_MD_D_KO",
  2672. "onmousedown": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_cocobizStudentDeskIconInfo[i]]),
  2676. "onclick": U.UF.C.closure(function (obj) {
  2677. //防止拖动图标即打开了桌面应用
  2678. U.MD.D.click(this, obj);
  2679. }, [_cocobizStudentDeskIconInfo[i]])
  2680. }, _frag); //
  2681. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2682. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2683. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2684. }
  2685. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2686. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2687. _content = $$("div", {
  2688. className: "U_MD_D_KO",
  2689. "onmousedown": U.UF.C.closure(function (obj) {
  2690. //防止拖动图标即打开了桌面应用
  2691. U.MD.D.click(this, obj);
  2692. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2693. "onclick": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_xxzjkyStudentDeskIconInfo[i]])
  2697. }, _frag); //
  2698. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2699. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2700. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2701. }
  2702. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2703. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2704. _content = $$("div", {
  2705. className: "U_MD_D_KO",
  2706. "onmousedown": U.UF.C.closure(function (obj) {
  2707. //防止拖动图标即打开了桌面应用
  2708. U.MD.D.click(this, obj);
  2709. }, [_studentDesktopIconInfo[i]]),
  2710. "onclick": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_studentDesktopIconInfo[i]])
  2714. }, _frag); //
  2715. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2716. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2717. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2718. }
  2719. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2720. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2721. _content = $$("div", {
  2722. className: "U_MD_D_KO",
  2723. "onmousedown": U.UF.C.closure(function (obj) {
  2724. //防止拖动图标即打开了桌面应用
  2725. U.MD.D.click(this, obj);
  2726. }, [_tcStudentDeskIconInfo[i]]),
  2727. "onclick": U.UF.C.closure(function (obj) {
  2728. //防止拖动图标即打开了桌面应用
  2729. U.MD.D.click(this, obj);
  2730. }, [_tcStudentDeskIconInfo[i]])
  2731. }, _frag); //
  2732. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2733. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2734. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2735. }
  2736. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2737. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  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. }, [_szscStudentDeskIconInfo[i]]),
  2744. "onclick": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_szscStudentDeskIconInfo[i]])
  2748. }, _frag); //
  2749. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2750. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2751. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2752. }
  2753. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2754. for (i = 0; i < _studentDesktopIconInfo3.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. }, [_studentDesktopIconInfo3[i]]),
  2761. "onclick": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_studentDesktopIconInfo3[i]])
  2765. }, _frag); //
  2766. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2767. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2768. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2769. }
  2770. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2771. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2772. _content = $$("div", {
  2773. className: "U_MD_D_KO",
  2774. "onmousedown": U.UF.C.closure(function (obj) {
  2775. //防止拖动图标即打开了桌面应用
  2776. U.MD.D.click(this, obj);
  2777. }, [_studentDesktopIconInfo2[i]]),
  2778. "onclick": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_studentDesktopIconInfo2[i]])
  2782. }, _frag); //
  2783. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2784. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2785. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2786. }
  2787. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2788. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2789. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2790. continue
  2791. }
  2792. _content = $$("div", {
  2793. className: "U_MD_D_KO",
  2794. "onmousedown": U.UF.C.closure(function (obj) {
  2795. //防止拖动图标即打开了桌面应用
  2796. U.MD.D.click(this, obj);
  2797. }, [_wanketeacherDesktopIconInfo[i]]),
  2798. "onclick": U.UF.C.closure(function (obj) {
  2799. //防止拖动图标即打开了桌面应用
  2800. U.MD.D.click(this, obj);
  2801. }, [_wanketeacherDesktopIconInfo[i]])
  2802. }, _frag); //
  2803. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2804. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2805. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2806. }
  2807. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2808. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2809. _content = $$("div", {
  2810. className: "U_MD_D_KO",
  2811. "onmousedown": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_wankeAdminDesktopIconInfo[i]]),
  2815. "onclick": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_wankeAdminDesktopIconInfo[i]])
  2819. }, _frag); //
  2820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2823. }
  2824. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2825. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2826. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2827. continue
  2828. }
  2829. _content = $$("div", {
  2830. className: "U_MD_D_KO",
  2831. "onmousedown": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2835. "onclick": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_scnuaiTeacherDeskIconInfo[i]])
  2839. }, _frag); //
  2840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2843. }
  2844. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2845. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2846. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2847. continue
  2848. }
  2849. _content = $$("div", {
  2850. className: "U_MD_D_KO",
  2851. "onmousedown": U.UF.C.closure(function (obj) {
  2852. //防止拖动图标即打开了桌面应用
  2853. U.MD.D.click(this, obj);
  2854. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2855. "onclick": U.UF.C.closure(function (obj) {
  2856. //防止拖动图标即打开了桌面应用
  2857. U.MD.D.click(this, obj);
  2858. }, [_BSDNSteacherDesktopIconInfo[i]])
  2859. }, _frag); //
  2860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2863. }
  2864. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2865. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2866. _content = $$("div", {
  2867. className: "U_MD_D_KO",
  2868. "onmousedown": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_scnuaiAdminDeskIconInfo[i]]),
  2872. "onclick": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_scnuaiAdminDeskIconInfo[i]])
  2876. }, _frag); //
  2877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2880. }
  2881. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2882. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2883. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2884. continue
  2885. }
  2886. _content = $$("div", {
  2887. className: "U_MD_D_KO",
  2888. "onmousedown": U.UF.C.closure(function (obj) {
  2889. //防止拖动图标即打开了桌面应用
  2890. U.MD.D.click(this, obj);
  2891. }, [_jccssylTeacherDeskIconInfo[i]]),
  2892. "onclick": U.UF.C.closure(function (obj) {
  2893. //防止拖动图标即打开了桌面应用
  2894. U.MD.D.click(this, obj);
  2895. }, [_jccssylTeacherDeskIconInfo[i]])
  2896. }, _frag); //
  2897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2900. }
  2901. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2902. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2903. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2904. continue
  2905. }
  2906. _content = $$("div", {
  2907. className: "U_MD_D_KO",
  2908. "onmousedown": U.UF.C.closure(function (obj) {
  2909. //防止拖动图标即打开了桌面应用
  2910. U.MD.D.click(this, obj);
  2911. }, [_caleTeacherDeskIconInfo[i]]),
  2912. "onclick": U.UF.C.closure(function (obj) {
  2913. //防止拖动图标即打开了桌面应用
  2914. U.MD.D.click(this, obj);
  2915. }, [_caleTeacherDeskIconInfo[i]])
  2916. }, _frag); //
  2917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2920. }
  2921. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2922. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2923. _content = $$("div", {
  2924. className: "U_MD_D_KO",
  2925. "onmousedown": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_tpcOrganizerDeskIconInfo[i]]),
  2929. "onclick": U.UF.C.closure(function (obj) {
  2930. //防止拖动图标即打开了桌面应用
  2931. U.MD.D.click(this, obj);
  2932. }, [_tpcOrganizerDeskIconInfo[i]])
  2933. }, _frag); //
  2934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2937. }
  2938. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2939. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2940. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2941. continue
  2942. }
  2943. _content = $$("div", {
  2944. className: "U_MD_D_KO",
  2945. "onmousedown": U.UF.C.closure(function (obj) {
  2946. //防止拖动图标即打开了桌面应用
  2947. U.MD.D.click(this, obj);
  2948. }, [_tpcTeacherDeskIconInfo[i]]),
  2949. "onclick": U.UF.C.closure(function (obj) {
  2950. //防止拖动图标即打开了桌面应用
  2951. U.MD.D.click(this, obj);
  2952. }, [_tpcTeacherDeskIconInfo[i]])
  2953. }, _frag); //
  2954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2957. }
  2958. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2959. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2960. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2961. continue
  2962. }
  2963. _content = $$("div", {
  2964. className: "U_MD_D_KO",
  2965. "onmousedown": U.UF.C.closure(function (obj) {
  2966. //防止拖动图标即打开了桌面应用
  2967. U.MD.D.click(this, obj);
  2968. }, [_teacherDesktopIconInfo2[i]]),
  2969. "onclick": U.UF.C.closure(function (obj) {
  2970. //防止拖动图标即打开了桌面应用
  2971. U.MD.D.click(this, obj);
  2972. }, [_teacherDesktopIconInfo2[i]])
  2973. }, _frag); //
  2974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2977. }
  2978. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2979. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2980. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2981. continue
  2982. }
  2983. _content = $$("div", {
  2984. className: "U_MD_D_KO",
  2985. "onmousedown": U.UF.C.closure(function (obj) {
  2986. //防止拖动图标即打开了桌面应用
  2987. U.MD.D.click(this, obj);
  2988. }, [_thuioeTeacherDeskIconInfo[i]]),
  2989. "onclick": U.UF.C.closure(function (obj) {
  2990. //防止拖动图标即打开了桌面应用
  2991. U.MD.D.click(this, obj);
  2992. }, [_thuioeTeacherDeskIconInfo[i]])
  2993. }, _frag); //
  2994. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2995. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2996. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2997. }
  2998. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2999. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3000. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3001. continue
  3002. }
  3003. _content = $$("div", {
  3004. className: "U_MD_D_KO",
  3005. "onmousedown": U.UF.C.closure(function (obj) {
  3006. //防止拖动图标即打开了桌面应用
  3007. U.MD.D.click(this, obj);
  3008. }, [_lotechTeacherDeskIconInfo[i]]),
  3009. "onclick": U.UF.C.closure(function (obj) {
  3010. //防止拖动图标即打开了桌面应用
  3011. U.MD.D.click(this, obj);
  3012. }, [_lotechTeacherDeskIconInfo[i]])
  3013. }, _frag); //
  3014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3017. }//
  3018. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3019. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3020. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3021. continue
  3022. }
  3023. _content = $$("div", {
  3024. className: "U_MD_D_KO",
  3025. "onmousedown": U.UF.C.closure(function (obj) {
  3026. //防止拖动图标即打开了桌面应用
  3027. U.MD.D.click(this, obj);
  3028. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3029. "onclick": U.UF.C.closure(function (obj) {
  3030. //防止拖动图标即打开了桌面应用
  3031. U.MD.D.click(this, obj);
  3032. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3033. }, _frag); //
  3034. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3035. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3036. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3037. }
  3038. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3039. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3040. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3041. continue
  3042. }
  3043. _content = $$("div", {
  3044. className: "U_MD_D_KO",
  3045. "onmousedown": U.UF.C.closure(function (obj) {
  3046. //防止拖动图标即打开了桌面应用
  3047. U.MD.D.click(this, obj);
  3048. }, [_siesTeacherDeskIconInfo[i]]),
  3049. "onclick": U.UF.C.closure(function (obj) {
  3050. //防止拖动图标即打开了桌面应用
  3051. U.MD.D.click(this, obj);
  3052. }, [_siesTeacherDeskIconInfo[i]])
  3053. }, _frag); //
  3054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3057. }
  3058. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3059. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3060. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3061. continue
  3062. }
  3063. _content = $$("div", {
  3064. className: "U_MD_D_KO",
  3065. "onmousedown": U.UF.C.closure(function (obj) {
  3066. //防止拖动图标即打开了桌面应用
  3067. U.MD.D.click(this, obj);
  3068. }, [_guzmsTeacherDeskIconInfo[i]]),
  3069. "onclick": U.UF.C.closure(function (obj) {
  3070. //防止拖动图标即打开了桌面应用
  3071. U.MD.D.click(this, obj);
  3072. }, [_guzmsTeacherDeskIconInfo[i]])
  3073. }, _frag); //
  3074. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3075. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3076. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3077. }
  3078. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3079. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3080. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3081. continue
  3082. }
  3083. _content = $$("div", {
  3084. className: "U_MD_D_KO",
  3085. "onmousedown": U.UF.C.closure(function (obj) {
  3086. //防止拖动图标即打开了桌面应用
  3087. U.MD.D.click(this, obj);
  3088. }, [_longhuaTeacherDeskIconInfo[i]]),
  3089. "onclick": U.UF.C.closure(function (obj) {
  3090. //防止拖动图标即打开了桌面应用
  3091. U.MD.D.click(this, obj);
  3092. }, [_longhuaTeacherDeskIconInfo[i]])
  3093. }, _frag); //
  3094. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3095. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3096. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3097. }
  3098. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3099. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3100. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3101. continue
  3102. }
  3103. _content = $$("div", {
  3104. className: "U_MD_D_KO",
  3105. "onmousedown": U.UF.C.closure(function (obj) {
  3106. //防止拖动图标即打开了桌面应用
  3107. U.MD.D.click(this, obj);
  3108. }, [_ytyTeacherDeskIconInfo[i]]),
  3109. "onclick": U.UF.C.closure(function (obj) {
  3110. //防止拖动图标即打开了桌面应用
  3111. U.MD.D.click(this, obj);
  3112. }, [_ytyTeacherDeskIconInfo[i]])
  3113. }, _frag); //
  3114. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3115. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3116. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3117. }
  3118. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3119. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3120. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3121. continue
  3122. }
  3123. _content = $$("div", {
  3124. className: "U_MD_D_KO",
  3125. "onmousedown": U.UF.C.closure(function (obj) {
  3126. //防止拖动图标即打开了桌面应用
  3127. U.MD.D.click(this, obj);
  3128. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3129. "onclick": U.UF.C.closure(function (obj) {
  3130. //防止拖动图标即打开了桌面应用
  3131. U.MD.D.click(this, obj);
  3132. }, [_yunhaiTeacherDeskIconInfo[i]])
  3133. }, _frag); //
  3134. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3135. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3136. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3137. } //_hkStudentDeskIconInfo
  3138. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3139. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3140. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3141. continue
  3142. }
  3143. _content = $$("div", {
  3144. className: "U_MD_D_KO",
  3145. "onmousedown": U.UF.C.closure(function (obj) {
  3146. //防止拖动图标即打开了桌面应用
  3147. U.MD.D.click(this, obj);
  3148. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3149. "onclick": U.UF.C.closure(function (obj) {
  3150. //防止拖动图标即打开了桌面应用
  3151. U.MD.D.click(this, obj);
  3152. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3153. }, _frag); //
  3154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3157. }
  3158. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3159. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3160. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3161. continue
  3162. }
  3163. _content = $$("div", {
  3164. className: "U_MD_D_KO",
  3165. "onmousedown": U.UF.C.closure(function (obj) {
  3166. //防止拖动图标即打开了桌面应用
  3167. U.MD.D.click(this, obj);
  3168. }, [_hkTeacherDeskIconInfo[i]]),
  3169. "onclick": U.UF.C.closure(function (obj) {
  3170. //防止拖动图标即打开了桌面应用
  3171. U.MD.D.click(this, obj);
  3172. }, [_hkTeacherDeskIconInfo[i]])
  3173. }, _frag); //
  3174. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3175. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3176. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3177. }
  3178. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3179. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3180. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3181. continue
  3182. }
  3183. _content = $$("div", {
  3184. className: "U_MD_D_KO",
  3185. "onmousedown": U.UF.C.closure(function (obj) {
  3186. //防止拖动图标即打开了桌面应用
  3187. U.MD.D.click(this, obj);
  3188. }, [_hkaceTeacherDeskIconInfo[i]]),
  3189. "onclick": U.UF.C.closure(function (obj) {
  3190. //防止拖动图标即打开了桌面应用
  3191. U.MD.D.click(this, obj);
  3192. }, [_hkaceTeacherDeskIconInfo[i]])
  3193. }, _frag); //
  3194. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3195. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3196. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3197. }
  3198. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3199. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3200. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3201. continue
  3202. }
  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. }, [_cocobizTeacherDeskIconInfo[i]]),
  3209. "onclick": U.UF.C.closure(function (obj) {
  3210. //防止拖动图标即打开了桌面应用
  3211. U.MD.D.click(this, obj);
  3212. }, [_cocobizTeacherDeskIconInfo[i]])
  3213. }, _frag); //
  3214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3217. }
  3218. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3219. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3220. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[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. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3229. "onclick": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3233. }, _frag); //
  3234. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3235. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3236. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3237. }
  3238. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3239. for (i = 0; i < _gdjgAdminDeskIconInfo.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. }, [_gdjgAdminDeskIconInfo[i]]),
  3246. "onclick": U.UF.C.closure(function (obj) {
  3247. //防止拖动图标即打开了桌面应用
  3248. U.MD.D.click(this, obj);
  3249. }, [_gdjgAdminDeskIconInfo[i]])
  3250. }, _frag); //
  3251. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3252. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3253. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3254. }
  3255. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3256. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3257. if(_role === 0 && _gdjgTeacherDeskIconInfo[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. }, [_gdjgTeacherDeskIconInfo[i]]),
  3266. "onclick": U.UF.C.closure(function (obj) {
  3267. //防止拖动图标即打开了桌面应用
  3268. U.MD.D.click(this, obj);
  3269. }, [_gdjgTeacherDeskIconInfo[i]])
  3270. }, _frag); //
  3271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3274. }
  3275. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3276. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3277. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3278. continue
  3279. }
  3280. _content = $$("div", {
  3281. className: "U_MD_D_KO",
  3282. "onmousedown": U.UF.C.closure(function (obj) {
  3283. //防止拖动图标即打开了桌面应用
  3284. U.MD.D.click(this, obj);
  3285. }, [_szherTeacherDeskIconInfo[i]]),
  3286. "onclick": U.UF.C.closure(function (obj) {
  3287. //防止拖动图标即打开了桌面应用
  3288. U.MD.D.click(this, obj);
  3289. }, [_szherTeacherDeskIconInfo[i]])
  3290. }, _frag); //
  3291. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3292. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3293. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3294. }
  3295. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3296. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  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. }, [_heyuannAdminDeskIconInfo[i]]),
  3303. "onclick": U.UF.C.closure(function (obj) {
  3304. //防止拖动图标即打开了桌面应用
  3305. U.MD.D.click(this, obj);
  3306. }, [_heyuannAdminDeskIconInfo[i]])
  3307. }, _frag); //
  3308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3311. }
  3312. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3313. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3314. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3315. continue
  3316. }
  3317. _content = $$("div", {
  3318. className: "U_MD_D_KO",
  3319. "onmousedown": U.UF.C.closure(function (obj) {
  3320. //防止拖动图标即打开了桌面应用
  3321. U.MD.D.click(this, obj);
  3322. }, [_heyuanTeacherDeskIconInfo[i]]),
  3323. "onclick": U.UF.C.closure(function (obj) {
  3324. //防止拖动图标即打开了桌面应用
  3325. U.MD.D.click(this, obj);
  3326. }, [_heyuanTeacherDeskIconInfo[i]])
  3327. }, _frag); //
  3328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3331. } //
  3332. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3333. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  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. }, [_dseiAdminDeskIconInfo[i]]),
  3340. "onclick": U.UF.C.closure(function (obj) {
  3341. //防止拖动图标即打开了桌面应用
  3342. U.MD.D.click(this, obj);
  3343. }, [_dseiAdminDeskIconInfo[i]])
  3344. }, _frag); //
  3345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3348. }
  3349. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3350. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3351. if(_role === 0 && _dseiTeacherDeskIconInfo[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. }, [_dseiTeacherDeskIconInfo[i]]),
  3360. "onclick": U.UF.C.closure(function (obj) {
  3361. //防止拖动图标即打开了桌面应用
  3362. U.MD.D.click(this, obj);
  3363. }, [_dseiTeacherDeskIconInfo[i]])
  3364. }, _frag); //
  3365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3368. } //
  3369. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3370. for (i = 0; i < _chjyjAdminDeskIconInfo.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. }, [_chjyjAdminDeskIconInfo[i]]),
  3377. "onclick": U.UF.C.closure(function (obj) {
  3378. //防止拖动图标即打开了桌面应用
  3379. U.MD.D.click(this, obj);
  3380. }, [_chjyjAdminDeskIconInfo[i]])
  3381. }, _frag); //
  3382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3385. }//
  3386. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3387. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3388. if(_role === 0 && _chjyjTeacherDeskIconInfo[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. }, [_chjyjTeacherDeskIconInfo[i]]),
  3397. "onclick": U.UF.C.closure(function (obj) {
  3398. //防止拖动图标即打开了桌面应用
  3399. U.MD.D.click(this, obj);
  3400. }, [_chjyjTeacherDeskIconInfo[i]])
  3401. }, _frag); //
  3402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3405. }
  3406. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3407. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3408. _content = $$("div", {
  3409. className: "U_MD_D_KO",
  3410. "onmousedown": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_szjkyAdminDeskIconInfo[i]]),
  3414. "onclick": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_szjkyAdminDeskIconInfo[i]])
  3418. }, _frag); //
  3419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3422. }//
  3423. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3424. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3425. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3426. continue
  3427. }
  3428. _content = $$("div", {
  3429. className: "U_MD_D_KO",
  3430. "onmousedown": U.UF.C.closure(function (obj) {
  3431. //防止拖动图标即打开了桌面应用
  3432. U.MD.D.click(this, obj);
  3433. }, [_szjkyTeacherDeskIconInfo[i]]),
  3434. "onclick": U.UF.C.closure(function (obj) {
  3435. //防止拖动图标即打开了桌面应用
  3436. U.MD.D.click(this, obj);
  3437. }, [_szjkyTeacherDeskIconInfo[i]])
  3438. }, _frag); //
  3439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3442. }
  3443. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3444. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3445. _content = $$("div", {
  3446. className: "U_MD_D_KO",
  3447. "onmousedown": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_x020201AdminDeskIconInfo[i]]),
  3451. "onclick": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_x020201AdminDeskIconInfo[i]])
  3455. }, _frag); //
  3456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3459. }//
  3460. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3461. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3462. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3463. continue
  3464. }
  3465. _content = $$("div", {
  3466. className: "U_MD_D_KO",
  3467. "onmousedown": U.UF.C.closure(function (obj) {
  3468. //防止拖动图标即打开了桌面应用
  3469. U.MD.D.click(this, obj);
  3470. }, [_x020201TeacherDeskIconInfo[i]]),
  3471. "onclick": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_x020201TeacherDeskIconInfo[i]])
  3475. }, _frag); //
  3476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3479. }
  3480. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3481. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3482. _content = $$("div", {
  3483. className: "U_MD_D_KO",
  3484. "onmousedown": U.UF.C.closure(function (obj) {
  3485. //防止拖动图标即打开了桌面应用
  3486. U.MD.D.click(this, obj);
  3487. }, [_SCNUETAdminDeskIconInfo[i]]),
  3488. "onclick": U.UF.C.closure(function (obj) {
  3489. //防止拖动图标即打开了桌面应用
  3490. U.MD.D.click(this, obj);
  3491. }, [_SCNUETAdminDeskIconInfo[i]])
  3492. }, _frag); //
  3493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3496. }//
  3497. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3498. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3499. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3500. continue
  3501. }
  3502. _content = $$("div", {
  3503. className: "U_MD_D_KO",
  3504. "onmousedown": U.UF.C.closure(function (obj) {
  3505. //防止拖动图标即打开了桌面应用
  3506. U.MD.D.click(this, obj);
  3507. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3508. "onclick": U.UF.C.closure(function (obj) {
  3509. //防止拖动图标即打开了桌面应用
  3510. U.MD.D.click(this, obj);
  3511. }, [_SCNUETTeacherDeskIconInfo[i]])
  3512. }, _frag); //
  3513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3516. }
  3517. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3518. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3519. _content = $$("div", {
  3520. className: "U_MD_D_KO",
  3521. "onmousedown": U.UF.C.closure(function (obj) {
  3522. //防止拖动图标即打开了桌面应用
  3523. U.MD.D.click(this, obj);
  3524. }, [_futianAdminDeskIconInfo[i]]),
  3525. "onclick": U.UF.C.closure(function (obj) {
  3526. //防止拖动图标即打开了桌面应用
  3527. U.MD.D.click(this, obj);
  3528. }, [_futianAdminDeskIconInfo[i]])
  3529. }, _frag); //
  3530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3533. }
  3534. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3535. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3536. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3537. continue
  3538. }
  3539. _content = $$("div", {
  3540. className: "U_MD_D_KO",
  3541. "onmousedown": U.UF.C.closure(function (obj) {
  3542. //防止拖动图标即打开了桌面应用
  3543. U.MD.D.click(this, obj);
  3544. }, [_futianTeacherDeskIconInfo[i]]),
  3545. "onclick": U.UF.C.closure(function (obj) {
  3546. //防止拖动图标即打开了桌面应用
  3547. U.MD.D.click(this, obj);
  3548. }, [_futianTeacherDeskIconInfo[i]])
  3549. }, _frag); //
  3550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3553. }
  3554. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3555. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3556. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3557. continue
  3558. }
  3559. _content = $$("div", {
  3560. className: "U_MD_D_KO",
  3561. "onmousedown": U.UF.C.closure(function (obj) {
  3562. //防止拖动图标即打开了桌面应用
  3563. U.MD.D.click(this, obj);
  3564. }, [_MingdeTeacherDeskIcon[i]]),
  3565. "onclick": U.UF.C.closure(function (obj) {
  3566. //防止拖动图标即打开了桌面应用
  3567. U.MD.D.click(this, obj);
  3568. }, [_MingdeTeacherDeskIcon[i]])
  3569. }, _frag); //
  3570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3573. }
  3574. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3575. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3576. _content = $$("div", {
  3577. className: "U_MD_D_KO",
  3578. "onmousedown": U.UF.C.closure(function (obj) {
  3579. //防止拖动图标即打开了桌面应用
  3580. U.MD.D.click(this, obj);
  3581. }, [_lhsAdminDesktopIconInfo[i]]),
  3582. "onclick": U.UF.C.closure(function (obj) {
  3583. //防止拖动图标即打开了桌面应用
  3584. U.MD.D.click(this, obj);
  3585. }, [_lhsAdminDesktopIconInfo[i]])
  3586. }, _frag); //
  3587. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3588. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3589. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3590. }
  3591. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3592. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3593. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3594. continue
  3595. }
  3596. _content = $$("div", {
  3597. className: "U_MD_D_KO",
  3598. "onmousedown": U.UF.C.closure(function (obj) {
  3599. //防止拖动图标即打开了桌面应用
  3600. U.MD.D.click(this, obj);
  3601. }, [_lhsteacherDesktopIconInfo[i]]),
  3602. "onclick": U.UF.C.closure(function (obj) {
  3603. //防止拖动图标即打开了桌面应用
  3604. U.MD.D.click(this, obj);
  3605. }, [_lhsteacherDesktopIconInfo[i]])
  3606. }, _frag); //
  3607. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3608. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3609. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3610. }
  3611. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3612. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3613. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3614. continue
  3615. }
  3616. _content = $$("div", {
  3617. className: "U_MD_D_KO",
  3618. "onmousedown": U.UF.C.closure(function (obj) {
  3619. //防止拖动图标即打开了桌面应用
  3620. U.MD.D.click(this, obj);
  3621. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3622. "onclick": U.UF.C.closure(function (obj) {
  3623. //防止拖动图标即打开了桌面应用
  3624. U.MD.D.click(this, obj);
  3625. }, [_zhoujiateacherDesktopIconInfo[i]])
  3626. }, _frag); //
  3627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3630. }
  3631. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3632. for (i = 0; i < _hanDeskIcon.length; i++) {
  3633. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3634. continue
  3635. }
  3636. _content = $$("div", {
  3637. className: "U_MD_D_KO",
  3638. "onmousedown": U.UF.C.closure(function (obj) {
  3639. //防止拖动图标即打开了桌面应用
  3640. U.MD.D.click(this, obj);
  3641. }, [_hanDeskIcon[i]]),
  3642. "onclick": U.UF.C.closure(function (obj) {
  3643. //防止拖动图标即打开了桌面应用
  3644. U.MD.D.click(this, obj);
  3645. }, [_hanDeskIcon[i]])
  3646. }, _frag); //
  3647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3650. }
  3651. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3652. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3653. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3654. continue
  3655. }
  3656. _content = $$("div", {
  3657. className: "U_MD_D_KO",
  3658. "onmousedown": U.UF.C.closure(function (obj) {
  3659. //防止拖动图标即打开了桌面应用
  3660. U.MD.D.click(this, obj);
  3661. }, [_orgStemDeskIcon[i]]),
  3662. "onclick": U.UF.C.closure(function (obj) {
  3663. //防止拖动图标即打开了桌面应用
  3664. U.MD.D.click(this, obj);
  3665. }, [_orgStemDeskIcon[i]])
  3666. }, _frag); //
  3667. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3668. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3669. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3670. }
  3671. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3672. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3673. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3674. continue
  3675. }
  3676. _content = $$("div", {
  3677. className: "U_MD_D_KO",
  3678. "onmousedown": U.UF.C.closure(function (obj) {
  3679. //防止拖动图标即打开了桌面应用
  3680. U.MD.D.click(this, obj);
  3681. }, [_szulsDeskIcon[i]]),
  3682. "onclick": U.UF.C.closure(function (obj) {
  3683. //防止拖动图标即打开了桌面应用
  3684. U.MD.D.click(this, obj);
  3685. }, [_szulsDeskIcon[i]])
  3686. }, _frag); //
  3687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3690. }
  3691. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3692. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3693. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3694. continue
  3695. }
  3696. _content = $$("div", {
  3697. className: "U_MD_D_KO",
  3698. "onmousedown": U.UF.C.closure(function (obj) {
  3699. //防止拖动图标即打开了桌面应用
  3700. U.MD.D.click(this, obj);
  3701. }, [_orgDesktopIconInfo[i]]),
  3702. "onclick": U.UF.C.closure(function (obj) {
  3703. //防止拖动图标即打开了桌面应用
  3704. U.MD.D.click(this, obj);
  3705. }, [_orgDesktopIconInfo[i]])
  3706. }, _frag); //
  3707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3710. }
  3711. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3712. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3713. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3714. continue
  3715. }
  3716. _content = $$("div", {
  3717. className: "U_MD_D_KO",
  3718. "onmousedown": U.UF.C.closure(function (obj) {
  3719. //防止拖动图标即打开了桌面应用
  3720. U.MD.D.click(this, obj);
  3721. }, [_schoolDesktopIconInfo[i]]),
  3722. "onclick": U.UF.C.closure(function (obj) {
  3723. //防止拖动图标即打开了桌面应用
  3724. U.MD.D.click(this, obj);
  3725. }, [_schoolDesktopIconInfo[i]])
  3726. }, _frag); //
  3727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3730. }
  3731. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3732. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3733. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3734. continue
  3735. }
  3736. _content = $$("div", {
  3737. className: "U_MD_D_KO",
  3738. "onmousedown": U.UF.C.closure(function (obj) {
  3739. //防止拖动图标即打开了桌面应用
  3740. U.MD.D.click(this, obj);
  3741. }, [_GMteacherDesktopIconInfo[i]]),
  3742. "onclick": U.UF.C.closure(function (obj) {
  3743. //防止拖动图标即打开了桌面应用
  3744. U.MD.D.click(this, obj);
  3745. }, [_GMteacherDesktopIconInfo[i]])
  3746. }, _frag); //
  3747. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3748. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3749. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3750. }
  3751. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3752. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3753. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3754. continue
  3755. }
  3756. _content = $$("div", {
  3757. className: "U_MD_D_KO",
  3758. "onmousedown": U.UF.C.closure(function (obj) {
  3759. //防止拖动图标即打开了桌面应用
  3760. U.MD.D.click(this, obj);
  3761. }, [_SONGteacherDesktopIconInfo[i]]),
  3762. "onclick": U.UF.C.closure(function (obj) {
  3763. //防止拖动图标即打开了桌面应用
  3764. U.MD.D.click(this, obj);
  3765. }, [_SONGteacherDesktopIconInfo[i]])
  3766. }, _frag); //
  3767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3770. }
  3771. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3772. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3773. _content = $$("div", {
  3774. className: "U_MD_D_KO",
  3775. "onmousedown": U.UF.C.closure(function (obj) {
  3776. //防止拖动图标即打开了桌面应用
  3777. U.MD.D.click(this, obj);
  3778. }, [_GMstudentDesktopIconInfo[i]]),
  3779. "onclick": U.UF.C.closure(function (obj) {
  3780. //防止拖动图标即打开了桌面应用
  3781. U.MD.D.click(this, obj);
  3782. }, [_GMstudentDesktopIconInfo[i]])
  3783. }, _frag); //
  3784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3787. }
  3788. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3789. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3790. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3791. continue
  3792. }
  3793. _content = $$("div", {
  3794. className: "U_MD_D_KO",
  3795. "onmousedown": U.UF.C.closure(function (obj) {
  3796. //防止拖动图标即打开了桌面应用
  3797. U.MD.D.click(this, obj);
  3798. }, [_tcTeacherDeskIconInfo[i]]),
  3799. "onclick": U.UF.C.closure(function (obj) {
  3800. //防止拖动图标即打开了桌面应用
  3801. U.MD.D.click(this, obj);
  3802. }, [_tcTeacherDeskIconInfo[i]])
  3803. }, _frag); //
  3804. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3805. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3806. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3807. }
  3808. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3809. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3810. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3811. continue
  3812. }
  3813. _content = $$("div", {
  3814. className: "U_MD_D_KO",
  3815. "onmousedown": U.UF.C.closure(function (obj) {
  3816. //防止拖动图标即打开了桌面应用
  3817. U.MD.D.click(this, obj);
  3818. }, [_tcOrganizerDeskIconInfo[i]]),
  3819. "onclick": U.UF.C.closure(function (obj) {
  3820. //防止拖动图标即打开了桌面应用
  3821. U.MD.D.click(this, obj);
  3822. }, [_tcOrganizerDeskIconInfo[i]])
  3823. }, _frag); //
  3824. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3825. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3826. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3827. }
  3828. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3829. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3830. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3831. continue
  3832. }
  3833. _content = $$("div", {
  3834. className: "U_MD_D_KO",
  3835. "onmousedown": U.UF.C.closure(function (obj) {
  3836. //防止拖动图标即打开了桌面应用
  3837. U.MD.D.click(this, obj);
  3838. }, [_szscTeacherDeskIconInfo[i]]),
  3839. "onclick": U.UF.C.closure(function (obj) {
  3840. //防止拖动图标即打开了桌面应用
  3841. U.MD.D.click(this, obj);
  3842. }, [_szscTeacherDeskIconInfo[i]])
  3843. }, _frag); //
  3844. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3845. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3846. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3847. }
  3848. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3849. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3850. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3851. continue
  3852. }
  3853. _content = $$("div", {
  3854. className: "U_MD_D_KO",
  3855. "onmousedown": U.UF.C.closure(function (obj) {
  3856. //防止拖动图标即打开了桌面应用
  3857. U.MD.D.click(this, obj);
  3858. }, [_szscOrganizerDeskIconInfo[i]]),
  3859. "onclick": U.UF.C.closure(function (obj) {
  3860. //防止拖动图标即打开了桌面应用
  3861. U.MD.D.click(this, obj);
  3862. }, [_szscOrganizerDeskIconInfo[i]])
  3863. }, _frag); //
  3864. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3865. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3866. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3867. }
  3868. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3869. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3870. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3871. continue
  3872. }
  3873. _content = $$("div", {
  3874. className: "U_MD_D_KO",
  3875. "onmousedown": U.UF.C.closure(function (obj) {
  3876. //防止拖动图标即打开了桌面应用
  3877. U.MD.D.click(this, obj);
  3878. }, [_nsfxTeacherDeskIconInfo[i]]),
  3879. "onclick": U.UF.C.closure(function (obj) {
  3880. //防止拖动图标即打开了桌面应用
  3881. U.MD.D.click(this, obj);
  3882. }, [_nsfxTeacherDeskIconInfo[i]])
  3883. }, _frag); //
  3884. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3885. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3886. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3887. }
  3888. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3889. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3890. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3891. continue
  3892. }
  3893. _content = $$("div", {
  3894. className: "U_MD_D_KO",
  3895. "onmousedown": U.UF.C.closure(function (obj) {
  3896. //防止拖动图标即打开了桌面应用
  3897. U.MD.D.click(this, obj);
  3898. }, [_stiaTeacherDeskIconInfo[i]]),
  3899. "onclick": U.UF.C.closure(function (obj) {
  3900. //防止拖动图标即打开了桌面应用
  3901. U.MD.D.click(this, obj);
  3902. }, [_stiaTeacherDeskIconInfo[i]])
  3903. }, _frag); //
  3904. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3905. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3906. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3907. }
  3908. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3909. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3910. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3911. continue
  3912. }
  3913. _content = $$("div", {
  3914. className: "U_MD_D_KO",
  3915. "onmousedown": U.UF.C.closure(function (obj) {
  3916. //防止拖动图标即打开了桌面应用
  3917. U.MD.D.click(this, obj);
  3918. }, [_szdjgTeacherDeskIconInfo[i]]),
  3919. "onclick": U.UF.C.closure(function (obj) {
  3920. //防止拖动图标即打开了桌面应用
  3921. U.MD.D.click(this, obj);
  3922. }, [_szdjgTeacherDeskIconInfo[i]])
  3923. }, _frag); //
  3924. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3925. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3926. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3927. }
  3928. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3929. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3930. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3931. continue
  3932. }
  3933. _content = $$("div", {
  3934. className: "U_MD_D_KO",
  3935. "onmousedown": U.UF.C.closure(function (obj) {
  3936. //防止拖动图标即打开了桌面应用
  3937. U.MD.D.click(this, obj);
  3938. }, [_x010607TeacherDeskIconInfo[i]]),
  3939. "onclick": U.UF.C.closure(function (obj) {
  3940. //防止拖动图标即打开了桌面应用
  3941. U.MD.D.click(this, obj);
  3942. }, [_x010607TeacherDeskIconInfo[i]])
  3943. }, _frag); //
  3944. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3945. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3946. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3947. }
  3948. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3949. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3950. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3951. continue
  3952. }
  3953. _content = $$("div", {
  3954. className: "U_MD_D_KO",
  3955. "onmousedown": U.UF.C.closure(function (obj) {
  3956. //防止拖动图标即打开了桌面应用
  3957. U.MD.D.click(this, obj);
  3958. }, [_xhlyTeacherDeskIconInfo[i]]),
  3959. "onclick": U.UF.C.closure(function (obj) {
  3960. //防止拖动图标即打开了桌面应用
  3961. U.MD.D.click(this, obj);
  3962. }, [_xhlyTeacherDeskIconInfo[i]])
  3963. }, _frag); //
  3964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3967. }
  3968. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3969. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3970. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3971. continue
  3972. }
  3973. _content = $$("div", {
  3974. className: "U_MD_D_KO",
  3975. "onmousedown": U.UF.C.closure(function (obj) {
  3976. //防止拖动图标即打开了桌面应用
  3977. U.MD.D.click(this, obj);
  3978. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3979. "onclick": U.UF.C.closure(function (obj) {
  3980. //防止拖动图标即打开了桌面应用
  3981. U.MD.D.click(this, obj);
  3982. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3983. }, _frag); //
  3984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3987. }
  3988. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3989. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3990. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3991. continue
  3992. }
  3993. _content = $$("div", {
  3994. className: "U_MD_D_KO",
  3995. "onmousedown": U.UF.C.closure(function (obj) {
  3996. //防止拖动图标即打开了桌面应用
  3997. U.MD.D.click(this, obj);
  3998. }, [_x010503TeacherDeskIconInfo[i]]),
  3999. "onclick": U.UF.C.closure(function (obj) {
  4000. //防止拖动图标即打开了桌面应用
  4001. U.MD.D.click(this, obj);
  4002. }, [_x010503TeacherDeskIconInfo[i]])
  4003. }, _frag); //
  4004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4007. }
  4008. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4009. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4010. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4011. continue
  4012. }
  4013. _content = $$("div", {
  4014. className: "U_MD_D_KO",
  4015. "onmousedown": U.UF.C.closure(function (obj) {
  4016. //防止拖动图标即打开了桌面应用
  4017. U.MD.D.click(this, obj);
  4018. }, [_x010504TeacherDeskIconInfo[i]]),
  4019. "onclick": U.UF.C.closure(function (obj) {
  4020. //防止拖动图标即打开了桌面应用
  4021. U.MD.D.click(this, obj);
  4022. }, [_x010504TeacherDeskIconInfo[i]])
  4023. }, _frag); //
  4024. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4025. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4026. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4027. }
  4028. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4029. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4030. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4031. continue
  4032. }
  4033. _content = $$("div", {
  4034. className: "U_MD_D_KO",
  4035. "onmousedown": U.UF.C.closure(function (obj) {
  4036. //防止拖动图标即打开了桌面应用
  4037. U.MD.D.click(this, obj);
  4038. }, [_x010204TeacherDeskIconInfo[i]]),
  4039. "onclick": U.UF.C.closure(function (obj) {
  4040. //防止拖动图标即打开了桌面应用
  4041. U.MD.D.click(this, obj);
  4042. }, [_x010204TeacherDeskIconInfo[i]])
  4043. }, _frag); //
  4044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4047. }
  4048. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4049. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4050. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4051. continue
  4052. }
  4053. _content = $$("div", {
  4054. className: "U_MD_D_KO",
  4055. "onmousedown": U.UF.C.closure(function (obj) {
  4056. //防止拖动图标即打开了桌面应用
  4057. U.MD.D.click(this, obj);
  4058. }, [_trailTeacherDeskIconInfo[i]]),
  4059. "onclick": U.UF.C.closure(function (obj) {
  4060. //防止拖动图标即打开了桌面应用
  4061. U.MD.D.click(this, obj);
  4062. }, [_trailTeacherDeskIconInfo[i]])
  4063. }, _frag); //
  4064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4067. }
  4068. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4069. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4070. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4071. continue
  4072. }
  4073. _content = $$("div", {
  4074. className: "U_MD_D_KO",
  4075. "onmousedown": U.UF.C.closure(function (obj) {
  4076. //防止拖动图标即打开了桌面应用
  4077. U.MD.D.click(this, obj);
  4078. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4079. "onclick": U.UF.C.closure(function (obj) {
  4080. //防止拖动图标即打开了桌面应用
  4081. U.MD.D.click(this, obj);
  4082. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4083. }, _frag); //
  4084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4087. }
  4088. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4089. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4090. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4091. continue
  4092. }
  4093. _content = $$("div", {
  4094. className: "U_MD_D_KO",
  4095. "onmousedown": U.UF.C.closure(function (obj) {
  4096. //防止拖动图标即打开了桌面应用
  4097. U.MD.D.click(this, obj);
  4098. }, [_x010608TeacherDeskIconInfo[i]]),
  4099. "onclick": U.UF.C.closure(function (obj) {
  4100. //防止拖动图标即打开了桌面应用
  4101. U.MD.D.click(this, obj);
  4102. }, [_x010608TeacherDeskIconInfo[i]])
  4103. }, _frag); //
  4104. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4105. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4106. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4107. }
  4108. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4109. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4110. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4111. continue
  4112. }
  4113. _content = $$("div", {
  4114. className: "U_MD_D_KO",
  4115. "onmousedown": U.UF.C.closure(function (obj) {
  4116. //防止拖动图标即打开了桌面应用
  4117. U.MD.D.click(this, obj);
  4118. }, [_x010611TeacherDeskIconInfo[i]]),
  4119. "onclick": U.UF.C.closure(function (obj) {
  4120. //防止拖动图标即打开了桌面应用
  4121. U.MD.D.click(this, obj);
  4122. }, [_x010611TeacherDeskIconInfo[i]])
  4123. }, _frag); //
  4124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4127. }
  4128. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4129. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4130. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4131. continue
  4132. }
  4133. _content = $$("div", {
  4134. className: "U_MD_D_KO",
  4135. "onmousedown": U.UF.C.closure(function (obj) {
  4136. //防止拖动图标即打开了桌面应用
  4137. U.MD.D.click(this, obj);
  4138. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4139. "onclick": U.UF.C.closure(function (obj) {
  4140. //防止拖动图标即打开了桌面应用
  4141. U.MD.D.click(this, obj);
  4142. }, [_tianyuanTeacherDeskIconInfo[i]])
  4143. }, _frag); //
  4144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4147. }
  4148. } else {
  4149. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4150. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4151. continue
  4152. }
  4153. _content = $$("div", {
  4154. className: "U_MD_D_KO",
  4155. "onmousedown": U.UF.C.closure(function (obj) {
  4156. //防止拖动图标即打开了桌面应用
  4157. U.MD.D.click(this, obj);
  4158. }, [_teacherDesktopIconInfo[i]]),
  4159. "onclick": U.UF.C.closure(function (obj) {
  4160. //防止拖动图标即打开了桌面应用
  4161. U.MD.D.click(this, obj);
  4162. }, [_teacherDesktopIconInfo[i]])
  4163. }, _frag); //
  4164. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4165. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4166. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4167. }
  4168. }
  4169. } else {
  4170. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4171. _content = $$("div", {
  4172. className: "U_MD_D_KO",
  4173. style: { 'width': '124px', 'height': '145px' },
  4174. "onmousedown": U.UF.C.closure(function (obj) {
  4175. //防止拖动图标即打开了桌面应用
  4176. U.MD.D.click(this, obj);
  4177. }, [_easyDesktopIconInfo[i]]),
  4178. "onclick": U.UF.C.closure(function (obj) {
  4179. //防止拖动图标即打开了桌面应用
  4180. U.MD.D.click(this, obj);
  4181. }, [_easyDesktopIconInfo[i]])
  4182. }, _frag); //
  4183. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4186. }
  4187. }
  4188. if (type == 1) {
  4189. //加载好后给图标定位
  4190. U.MD.D.iconPostion($(_frag).Child());
  4191. } else {
  4192. //加载好后给图标定位
  4193. U.MD.D.iconPostion2($(_frag).Child());
  4194. }
  4195. //把图标加载到页面
  4196. el.appendChild(_frag);
  4197. }
  4198. /**
  4199. * 显示任务栏
  4200. *
  4201. * @param {element} 桌面元素
  4202. */
  4203. U.MD.D.I.displayTaskbar = function (el) {
  4204. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4205. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4206. //任务栏位置变化
  4207. U.selectEl(el).css({ "bottom": "0px" });
  4208. //桌面位置变话
  4209. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4210. }
  4211. }
  4212. //#region 桌面图标拖动逻辑
  4213. /**
  4214. * 桌面排列图标
  4215. *
  4216. * @param {element} 桌面元素
  4217. * @param {object} 上下相距的距离
  4218. * @param {object} 左右相距的距离
  4219. * @return {object} 命名空间
  4220. */
  4221. U.MD.D.iconPostion = function (childs, top, left) {
  4222. var i; //用于循环处理
  4223. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4224. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4225. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4226. for (i = 0; i < childs.length; i++) {
  4227. //如果竖排top超过了范围处理
  4228. if (top + 95 > US.height - 10) {
  4229. //left超过了页面范围处理,则向上重叠打印处理
  4230. if ((left + 180) > US.width) {
  4231. top -= 110;
  4232. left -= 90;
  4233. }
  4234. //没有超过范围,那么left+90添加到下一个竖排打印
  4235. else {
  4236. left += 90;
  4237. top = 15;
  4238. };
  4239. }
  4240. //给图标的位置赋值
  4241. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4242. if (i < childs.length - 1) {
  4243. //页面图标每次向下加95
  4244. top += 95;
  4245. }
  4246. }
  4247. //返回最后调用的图标的位置
  4248. return [top, left];
  4249. }
  4250. /**
  4251. * 桌面排列图标
  4252. *
  4253. * @param {element} 桌面元素
  4254. * @param {object} 上下相距的距离
  4255. * @param {object} 左右相距的距离
  4256. * @return {object} 命名空间
  4257. */
  4258. U.MD.D.iconPostion2 = function (childs, top, left) {
  4259. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4260. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4261. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4262. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4263. for (i = 0; i < childs.length; i++) {
  4264. //如果竖排top超过了范围处理
  4265. if (left + 150 > US.width - 10) {
  4266. //left超过了页面范围处理,则向上重叠打印处理
  4267. if ((top + 180) > US.Height) {
  4268. top -= 150;
  4269. left -= 150;
  4270. }
  4271. //没有超过范围,那么left+90添加到下一个竖排打印
  4272. else {
  4273. top += 150;
  4274. left = ol;
  4275. };
  4276. }
  4277. //给图标的位置赋值
  4278. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4279. if (i < childs.length - 1) {
  4280. //页面图标每次向下加95
  4281. left += 150;
  4282. }
  4283. }
  4284. //返回最后调用的图标的位置
  4285. return [top, left];
  4286. }
  4287. /**
  4288. * 桌面点击事件逻辑
  4289. *
  4290. * @param {element} 桌面元素
  4291. * @param {object} 上下相距的距离
  4292. * @param {object} 左右相距的距离
  4293. * @return {object} 命名空间
  4294. */
  4295. U.MD.D.click = function (el, obj) {
  4296. var _buttonnumber = event.button; //点击的按钮的事件值
  4297. var _userinfo = US.userInfo;
  4298. U.UF.EV.stopBubble(); //阻止向上冒泡
  4299. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4300. if (_buttonnumber < 2) {
  4301. //如果是click事件的处理
  4302. if (event.type == "click") {
  4303. //如果元素在mousemove事件中没有移动则出发click事件
  4304. if (!U.MD.D.I.IsDrag) {
  4305. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4306. U.alert("请先登录您的账号!");
  4307. setTimeout(() => {
  4308. U.MD.U.L.login();
  4309. }, 2000);
  4310. } else {
  4311. //打开应用处理
  4312. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4313. }
  4314. }
  4315. }
  4316. //如果是mouse事件的处理
  4317. else {
  4318. if (US.Config.type == '1') {
  4319. //拖动处理,添加拖动和拖动结束事件
  4320. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4321. }
  4322. }
  4323. U.MD.D.I.IsDrag = false;
  4324. }
  4325. }
  4326. /**
  4327. * 拖动的处理
  4328. *
  4329. */
  4330. U.MD.D.iconMove = function () {
  4331. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4332. U.MD.D.I.IsDrag = true;
  4333. }
  4334. /**
  4335. * 拖动结束后,这里是定位处理,以网状的形式定位
  4336. *
  4337. * @param {element} 拖动的元素
  4338. * @return {object} 命名空间
  4339. */
  4340. U.MD.D.iconUp = function (el) {
  4341. var _top = 15,
  4342. _left = 20,
  4343. _margin,
  4344. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4345. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4346. if (_positioninfo["OT"] > 15) {
  4347. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4348. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4349. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4350. }
  4351. if (_positioninfo["OL"] > 20) {
  4352. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4353. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4354. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4355. }
  4356. //while循环判断么一个重叠的元素
  4357. do {
  4358. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4359. _top = _positioninfo[0] + 95; //得到定位后的top
  4360. _left = _positioninfo[1]; //得到定位后的left
  4361. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4362. }
  4363. /**
  4364. * 判断拖动后图标是否重叠
  4365. *
  4366. * @param {element} 拖动的元素
  4367. * @param {element} 桌面所有的元素
  4368. * @param {array} 拖动元素的位置
  4369. ----------[0] 上 top
  4370. ----------[1] 左 left
  4371. * @return {object} 命名空间
  4372. */
  4373. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4374. //循环所有的图标
  4375. for (var i = 0; i < childs.length; i++) {
  4376. //判断有没有和该图标诶子重叠的元素
  4377. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4378. return childs[i]; //如果有返回
  4379. }
  4380. }
  4381. }
  4382. //#endregion
  4383. //#endregion
  4384. //#region 桌面应用
  4385. /**
  4386. * 打开应用
  4387. *
  4388. * @param {string} 类型
  4389. -----------------Disk 网盘系统
  4390. -----------------PDisk 学习系统网盘
  4391. -----------------Poto 图片
  4392. -----------------Video 视频
  4393. -----------------Music 音乐
  4394. -----------------Word word
  4395. -----------------Excel excel
  4396. -----------------Txt 记事本
  4397. -----------------PB 学习系统
  4398. -----------------Blog 朋友圈系统
  4399. -----------------FTP ftp系统
  4400. -----------------Group 好友群
  4401. -----------------SY 首页系统
  4402. -----------------Set 个人设置
  4403. -----------------XSet 系统设置
  4404. -----------------App 我们所有的app
  4405. -----------------BC c.1473.cn 平台
  4406. -----------------CWeb d.1473.cn 变成平台
  4407. -----------------其他的外联系统 我们统一用iframe打开
  4408. * @param {array} 类型
  4409. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4410. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4411. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4412. 如果第一个参数为其他,则无第二个参数
  4413. * @returns {array}
  4414. */
  4415. window.addEventListener('message', function (e) { // 监听 message 事件
  4416. // alert(e.data.type);
  4417. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4418. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4419. //3是展示全部阶段 2学生 1老师 4专家
  4420. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4421. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4422. //3是展示全部阶段 2学生 1老师 4专家
  4423. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4424. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4425. //3是展示全部阶段 2学生 1老师 4专家
  4426. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4427. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4428. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4429. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4430. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4431. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4432. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4433. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4434. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4435. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4436. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4437. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4438. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4439. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4440. //3是展示全部阶段 2学生 1老师 4专家
  4441. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4442. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4443. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4444. U.MD.D.I.selectUser();
  4445. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4446. var _formel = document.getElementById("study");
  4447. U.UF.F.windowZooming(_formel);
  4448. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4449. var _formel = document.getElementById("studyDetail");
  4450. U.UF.F.windowZooming(_formel);
  4451. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4452. var _formel = document.getElementById("studyDetail");
  4453. U.UF.F.windowZooming(_formel);
  4454. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4455. var _formel = document.getElementById("studentStudy");
  4456. U.UF.F.windowZooming(_formel);
  4457. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4458. // var _formel = document.getElementById("study");
  4459. //如果最大化了,那么就把他缩小
  4460. // if (_formel.ismaximize) {
  4461. // return;
  4462. // }
  4463. // U.UF.F.windowZooming(_formel);
  4464. // U.UF.F.topWindow(_formel);
  4465. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4466. // var _formel = document.getElementById("studyDetail");
  4467. //如果最大化了,那么就把他缩小
  4468. // if (_formel.ismaximize) {
  4469. // return;
  4470. // }
  4471. // U.UF.F.windowZooming(_formel);
  4472. // U.UF.F.topWindow(_formel);
  4473. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4474. // var _formel = document.getElementById("studentStudy");
  4475. // if (_formel.ismaximize) {
  4476. // return;
  4477. // }
  4478. // U.UF.F.windowZooming(_formel);
  4479. // U.UF.F.topWindow(_formel);
  4480. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4481. var _formel = document.getElementById("study");
  4482. // if (_formel.ismaximize) {
  4483. // return;
  4484. // }
  4485. // U.UF.F.windowZooming(_formel);
  4486. U.UF.F.topWindow(_formel);
  4487. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4488. var _formel = document.getElementById("studentIndex");
  4489. U.UF.F.windowZooming(_formel);
  4490. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4491. var _formel = document.getElementById("studyDetailS");
  4492. U.UF.F.windowZooming(_formel);
  4493. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4494. var _formel = document.getElementById("studioIndex");
  4495. U.UF.F.windowZooming(_formel);
  4496. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4497. var _formel = document.getElementById("studyDetailStudio");
  4498. U.UF.F.windowZooming(_formel);
  4499. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4500. var _formel = document.getElementById("studyDetailStudio");
  4501. U.UF.F.windowZooming(_formel);
  4502. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4503. var _formel = document.getElementById("studyDetailNT");
  4504. U.UF.F.windowZooming(_formel);
  4505. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4506. var _formel = document.getElementById("studyDetailS");
  4507. U.UF.F.windowZooming(_formel);
  4508. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4509. var _formel = document.getElementById("studyDetailS");
  4510. U.UF.F.topWindow(_formel);
  4511. } else if (e.data.tools && e.data.tools == "1") {
  4512. // U.MD.D.I.openApplication("whiteboard")
  4513. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4514. } else if (e.data.tools && e.data.tools == "2") {
  4515. U.MD.D.I.openApplication("note")
  4516. } else if (e.data.tools && e.data.tools == "3") {
  4517. // U.MD.D.I.openApplication("mind")
  4518. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4519. } else if (e.data.tools && e.data.tools == "4") {
  4520. U.MD.D.I.openApplication("investigation")
  4521. } else if (e.data.tools && e.data.tools == "6") {
  4522. // U.MD.D.I.openApplication("doc")
  4523. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4524. } else if (e.data.tools && e.data.tools == "7") {
  4525. // U.MD.D.I.openApplication("mindNetwork")
  4526. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4527. } else if (e.data.tools && e.data.tools == "8") {
  4528. U.MD.D.I.openApplication("library")
  4529. } else if (e.data.tools && e.data.tools == "17") {
  4530. U.MD.D.I.openApplication("stuLibrary")
  4531. } else if (e.data.tools && e.data.tools == "18") {
  4532. U.MD.D.I.openApplication("train")
  4533. } else if (e.data.tools && e.data.tools == "21") {
  4534. U.MD.D.I.openApplication("program")
  4535. } else if (e.data.tools && e.data.tools == "22") {
  4536. U.MD.D.I.openApplication("AIprogram2")
  4537. } else if (e.data.tools && e.data.tools == "23") {
  4538. U.MD.D.I.openApplication("Pythonprogram")
  4539. } else if (e.data.tools && e.data.tools == "24") {
  4540. U.MD.D.I.openApplication("AIprogram")
  4541. } else if (e.data.tools && e.data.tools == "25") {
  4542. U.MD.D.I.openApplication("sys")
  4543. } else if (e.data.tools && e.data.tools == "26") {
  4544. // U.MD.D.I.openApplication("courseDesign")
  4545. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4546. } else if (e.data.tools && e.data.tools == "31") {
  4547. U.MD.D.I.openApplication("netWorkPanel")
  4548. } else if (e.data.tools && e.data.tools == "32") {
  4549. U.MD.D.I.openApplication("codeEdit")
  4550. } else if (e.data.tools && e.data.tools == "57") {
  4551. U.MD.D.I.openApplication("CocoPi")
  4552. } else if (e.data.tools && e.data.tools == "63") {
  4553. U.MD.D.I.openApplication("Wood")
  4554. } else if (e.data.tools && e.data.tools == "58") {
  4555. U.MD.D.I.openApplication("car")
  4556. } else if (e.data.tools && e.data.tools == "59") {
  4557. U.MD.D.I.openApplication("lineSearch")
  4558. } else if (e.data.tools && e.data.tools == "60") {
  4559. U.MD.D.I.openApplication("deepLearning")
  4560. } else if (e.data.tools && e.data.tools == "61") {
  4561. U.MD.D.I.openApplication("allHistory")
  4562. } else if (e.data.tools && e.data.tools == "28") {
  4563. U.MD.D.I.openApplication("translation")
  4564. } else if (e.data.tools && e.data.tools == "37") {
  4565. U.MD.D.I.openApplication("mohe")
  4566. } else if (e.data.tools && e.data.tools == "38") {
  4567. U.MD.D.I.openApplication("24game")
  4568. } else if (e.data.tools && e.data.tools == "39") {
  4569. U.MD.D.I.openApplication("GeoGebra")
  4570. } else if (e.data.tools && e.data.tools == "43") {
  4571. U.MD.D.I.openApplication("studentEvaluate")
  4572. } else if (e.data.tools && e.data.tools == "44") {
  4573. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4574. } else if (e.data.tools && e.data.tools == "46") {
  4575. U.MD.D.I.openApplication("project")
  4576. } else if (e.data.tools && e.data.tools == "71") {
  4577. U.MD.D.I.openApplication("aigptCourse")
  4578. } else if (e.data.tools && e.data.tools == "1s") {
  4579. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4580. } else if (e.data.tools && e.data.tools == "3s") {
  4581. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4582. } else if (e.data.tools && e.data.tools == "6s") {
  4583. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4584. } else if (e.data.tools && e.data.tools == "1studio") {
  4585. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4586. } else if (e.data.tools && e.data.tools == "3studio") {
  4587. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4588. } else if (e.data.tools && e.data.tools == "6studio") {
  4589. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4590. } else if (e.data.tools && e.data.tools == "3y") {
  4591. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4592. } else if (e.data.tools && e.data.tools == "1y") {
  4593. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4594. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4595. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4596. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4597. U.MD.D.I.openApplication("AIAnalyse")
  4598. } else if (e.data.tools && e.data.tools == "1teacher") {
  4599. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4600. } else if (e.data.tools && e.data.tools == "3teacher") {
  4601. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4602. } else if (e.data.tools && e.data.tools == "7teacher") {
  4603. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4604. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4605. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4606. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4607. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4608. } else if (e.data.tools && e.data.tools == "1E") {
  4609. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4610. } else if (e.data.tools && e.data.tools == "3E") {
  4611. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4612. } else if (e.data.tools && e.data.tools == "57y") {
  4613. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4614. } else if (e.data.tools && e.data.tools == "57u") {
  4615. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4616. } else if (e.data.tools && e.data.tools == "57teacher") {
  4617. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4618. } else if (e.data.tools && e.data.tools == "64") {
  4619. U.MD.D.I.openApplication("AIChat")
  4620. } else if (e.data.tools && e.data.tools == "66") {
  4621. U.MD.D.I.openApplication("formulaEdi")
  4622. } else if (e.data.tools && e.data.tools == "67") {
  4623. U.MD.D.I.openApplication("molStr")
  4624. } else if (e.data.tools && e.data.tools == "68") {
  4625. U.MD.D.I.openApplication("timeAxis")
  4626. } else if (e.data.tools && e.data.tools == "openCourse") {
  4627. let _data = {
  4628. typea: e.data.typea || '',
  4629. typeb: e.data.typeb || '',
  4630. typed: e.data.typed || '',
  4631. }
  4632. U.MD.D.I.openInApplication("index", _data)
  4633. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4634. let _data = {
  4635. classid: e.data.classid || '',
  4636. }
  4637. U.MD.D.I.openInApplication("dataClass", _data)
  4638. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4639. let _data = {
  4640. cid: e.data.cid || '',
  4641. gid: e.data.gid || '',
  4642. }
  4643. U.MD.D.I.openInApplication("opencCscl", _data)
  4644. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4645. U.MD.D.I.openApplication("dataBoardTest")
  4646. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4647. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4648. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4649. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4650. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4651. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4652. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4653. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4654. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4655. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4656. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4657. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4658. }else if (e.data.tools && e.data.tools == "loginSz") {
  4659. U.MD.D.I.openInApplication("loginSz")
  4660. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4661. if($('#classroom_observation_board')[0]){
  4662. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4663. }
  4664. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4665. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4666. if($('#classroom_observation_ob_comment')[0]){
  4667. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4668. }
  4669. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4670. }else if (e.data.tools && e.data.tools == "logout"){
  4671. U.MD.U.LO.logoutSystem()
  4672. }else if (e.data.tools && e.data.tools == "getLogin"){
  4673. let _iframe = $('#UI_Login')[0];
  4674. if (_iframe) {
  4675. var userInfo = US.userInfo;
  4676. var type = 2
  4677. if(userInfo && userInfo.userid){
  4678. type = 1
  4679. }
  4680. _contentWindow = _iframe.contentWindow;
  4681. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4682. }
  4683. }
  4684. });
  4685. U.MD.D.I.selectUser = function () {
  4686. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4687. if (res.value[0].length > 0) {
  4688. US.userInfo = res.value[0][0];
  4689. $(".userName")[0].innerHTML = US.userInfo.username;
  4690. }
  4691. }, [], { "type": "GET", "withCredentials": true });
  4692. }
  4693. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4694. var _userinfo = US.userInfo, //登录用户信息
  4695. _userid = US.userInfo.userid, //登录用户id
  4696. _oid = _userinfo.organizeid,
  4697. _type = US.userInfo.type,
  4698. _org = US.userInfo.org,
  4699. _role = US.userInfo.role,
  4700. _classId = US.userInfo.classid;
  4701. if (_type == 4) {
  4702. tType = 4
  4703. }
  4704. switch (str) {
  4705. case "studyDetailNT": //无终端模式
  4706. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4707. setTimeout(() => {
  4708. U.MD.U.L.login();
  4709. }, 2000);
  4710. } else {
  4711. _formdiv = new U.UF.UI.form(
  4712. "课程详情",
  4713. $$("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 }), {
  4714. "id": "studyDetailNT",
  4715. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4716. "onresize": function () { }
  4717. }, {
  4718. closecallback: function () { }
  4719. }, { "style": { "height": "36px" } }).form; //创建窗体
  4720. _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); } }
  4721. break;
  4722. }
  4723. case "studyDetail":
  4724. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4725. setTimeout(() => {
  4726. U.MD.U.L.login();
  4727. }, 2000);
  4728. } else {
  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-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4732. "id": "studyDetail",
  4733. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4734. "onresize": function () { }
  4735. }, {
  4736. closecallback: function () { }
  4737. }, { "style": { "height": "36px" } }).form; //创建窗体
  4738. _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); } }
  4739. break;
  4740. }
  4741. case "studyDetailTrain":
  4742. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4743. setTimeout(() => {
  4744. U.MD.U.L.login();
  4745. }, 2000);
  4746. } else {
  4747. _formdiv = new U.UF.UI.form(
  4748. "培训详情",
  4749. $$("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 }), {
  4750. "id": "studyDetailTrain",
  4751. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4752. "onresize": function () { }
  4753. }, {
  4754. closecallback: function () { }
  4755. }, { "style": { "height": "36px" } }).form; //创建窗体
  4756. _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); } }
  4757. break;
  4758. }
  4759. case "studyDetailS":
  4760. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4761. setTimeout(() => {
  4762. U.MD.U.L.login();
  4763. }, 2000);
  4764. } else {
  4765. _formdiv = new U.UF.UI.form(
  4766. "项目详情",
  4767. $$("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 }), {
  4768. "id": "studyDetailS",
  4769. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4770. "onresize": function () { }
  4771. }, {
  4772. closecallback: function () { }
  4773. }, { "style": { "height": "36px" } }).form; //创建窗体
  4774. _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); } }
  4775. break;
  4776. }
  4777. case "studyDetailStudio":
  4778. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4779. setTimeout(() => {
  4780. U.MD.U.L.login();
  4781. }, 2000);
  4782. } else {
  4783. _formdiv = new U.UF.UI.form(
  4784. "工作详情",
  4785. $$("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 }), {
  4786. "id": "studyDetailStudio",
  4787. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4788. "onresize": function () { }
  4789. }, {
  4790. closecallback: function () { }
  4791. }, { "style": { "height": "36px" } }).form; //创建窗体
  4792. _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); } }
  4793. break;
  4794. }
  4795. case "studyDetailS5":
  4796. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4797. setTimeout(() => {
  4798. U.MD.U.L.login();
  4799. }, 2000);
  4800. } else {
  4801. _formdiv = new U.UF.UI.form(
  4802. "项目详情",
  4803. $$("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 }), {
  4804. "id": "studyDetailS",
  4805. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4806. "onresize": function () { }
  4807. }, {
  4808. closecallback: function () { }
  4809. }, { "style": { "height": "36px" } }).form; //创建窗体
  4810. _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); } }
  4811. break;
  4812. }
  4813. case "studyDetailGM":
  4814. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4815. setTimeout(() => {
  4816. U.MD.U.L.login();
  4817. }, 2000);
  4818. } else {
  4819. _formdiv = new U.UF.UI.form(
  4820. "课程详情",
  4821. $$("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 }), {
  4822. "id": "studyDetail",
  4823. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4824. "onresize": function () { }
  4825. }, {
  4826. closecallback: function () { }
  4827. }, { "style": { "height": "36px" } }).form; //创建窗体
  4828. _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); } }
  4829. break;
  4830. }
  4831. case "hanUrl":
  4832. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4833. setTimeout(() => {
  4834. U.MD.U.L.login();
  4835. }, 2000);
  4836. } else {
  4837. _formdiv = new U.UF.UI.form(
  4838. "汉字宫",
  4839. $$("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" }), {
  4840. "id": "hanUrl",
  4841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4842. "onresize": function () { }
  4843. }, {
  4844. closecallback: function () { }
  4845. }, { "style": { "height": "36px" } }).form; //创建窗体
  4846. _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); } }
  4847. break;
  4848. }
  4849. case "index":
  4850. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4851. setTimeout(() => {
  4852. U.MD.U.L.login();
  4853. }, 2000);
  4854. } else {
  4855. _formdiv = new U.UF.UI.form(
  4856. "课程中心",
  4857. $$("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 }), {
  4858. "id": "study",
  4859. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4860. "onresize": function () { }
  4861. }, {
  4862. closecallback: function () { }
  4863. }, { "style": { "height": "36px" } }).form; //创建窗体
  4864. _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); } }
  4865. break;
  4866. }
  4867. case "dataClass":
  4868. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4869. setTimeout(() => {
  4870. U.MD.U.L.login();
  4871. }, 2000);
  4872. } else {
  4873. _formdiv = new U.UF.UI.form(
  4874. "数据报告",
  4875. $$("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 }), {
  4876. "id": "dataClass",
  4877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4878. "onresize": function () { }
  4879. }, {
  4880. closecallback: function () { }
  4881. }, { "style": { "height": "36px" } }).form; //创建窗体
  4882. _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); } }
  4883. break;
  4884. }
  4885. case "opencCscl":
  4886. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4887. setTimeout(() => {
  4888. U.MD.U.L.login();
  4889. }, 2000);
  4890. } else {
  4891. _formdiv = new U.UF.UI.form(
  4892. "协同建构",
  4893. $$("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.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4894. "id": "futureClass",
  4895. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4896. "onresize": function () { }
  4897. }, {
  4898. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4899. }, { "style": { "height": "36px" } }).form; //创建窗体
  4900. _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); } }
  4901. break;
  4902. }
  4903. case "openCourseUpdate":
  4904. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4905. setTimeout(() => {
  4906. U.MD.U.L.login();
  4907. }, 2000);
  4908. } else {
  4909. _formdiv = new U.UF.UI.form(
  4910. "课程管理",
  4911. $$("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 }), {
  4912. "id": "openCourseUpdate",
  4913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4914. "onresize": function () { }
  4915. }, {
  4916. closecallback: function () { }
  4917. }, { "style": { "height": "36px" } }).form; //创建窗体
  4918. break;
  4919. }
  4920. case "openNewCourseUpdate":
  4921. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4922. setTimeout(() => {
  4923. U.MD.U.L.login();
  4924. }, 2000);
  4925. } else {
  4926. _formdiv = new U.UF.UI.form(
  4927. "课程管理",
  4928. $$("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 }), {
  4929. "id": "openCourseUpdate",
  4930. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4931. "onresize": function () { }
  4932. }, {
  4933. closecallback: function () { }
  4934. }, { "style": { "height": "36px" } }).form; //创建窗体
  4935. break;
  4936. }
  4937. case "openCourseEUpdate":
  4938. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4939. setTimeout(() => {
  4940. U.MD.U.L.login();
  4941. }, 2000);
  4942. } else {
  4943. _formdiv = new U.UF.UI.form(
  4944. "课程管理",
  4945. $$("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 }), {
  4946. "id": "openCourseUpdate",
  4947. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4948. "onresize": function () { }
  4949. }, {
  4950. closecallback: function () { }
  4951. }, { "style": { "height": "36px" } }).form; //创建窗体
  4952. break;
  4953. }
  4954. case "openCourseAiUpdate":
  4955. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4956. setTimeout(() => {
  4957. U.MD.U.L.login();
  4958. }, 2000);
  4959. } else {
  4960. _formdiv = new U.UF.UI.form(
  4961. "课程管理",
  4962. $$("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 }), {
  4963. "id": "openCourseUpdate",
  4964. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4965. "onresize": function () { }
  4966. }, {
  4967. closecallback: function () { }
  4968. }, { "style": { "height": "36px" } }).form; //创建窗体
  4969. break;
  4970. }
  4971. case "openCourseAiUpdate2":
  4972. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4973. setTimeout(() => {
  4974. U.MD.U.L.login();
  4975. }, 2000);
  4976. } else {
  4977. _formdiv = new U.UF.UI.form(
  4978. "课程管理",
  4979. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4980. "id": "openCourseUpdate",
  4981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4982. "onresize": function () { }
  4983. }, {
  4984. closecallback: function () { }
  4985. }, { "style": { "height": "36px" } }).form; //创建窗体
  4986. break;
  4987. }
  4988. case "openCourseNewUpdate":
  4989. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4990. setTimeout(() => {
  4991. U.MD.U.L.login();
  4992. }, 2000);
  4993. } else {
  4994. _formdiv = new U.UF.UI.form(
  4995. "课程管理",
  4996. $$("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 }), {
  4997. "id": "openCourseUpdate",
  4998. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4999. "onresize": function () { }
  5000. }, {
  5001. closecallback: function () { }
  5002. }, { "style": { "height": "36px" } }).form; //创建窗体
  5003. break;
  5004. }
  5005. case "inviteLoginSz":
  5006. _formdiv = new U.UF.UI.form(
  5007. "随机码登录",
  5008. $$("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 }), {
  5009. "id": "loginSz",
  5010. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5011. "onresize": function () { }
  5012. }, {
  5013. closecallback: function () { }
  5014. }, { "style": { "height": "36px" } }).form; //创建窗体
  5015. break;
  5016. case "loginSz":
  5017. _formdiv = new U.UF.UI.form(
  5018. "教师登录",
  5019. $$("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" }), {
  5020. "id": "loginSz",
  5021. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5022. "onresize": function () { }
  5023. }, {
  5024. closecallback: function () { }
  5025. }, { "style": { "height": "36px" } }).form; //创建窗体
  5026. break;
  5027. case "teacher":
  5028. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5029. setTimeout(() => {
  5030. U.MD.U.L.login();
  5031. }, 2000);
  5032. } else {
  5033. _formdiv = new U.UF.UI.form(
  5034. "教师管理",
  5035. $$("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 }), {
  5036. "id": "teacher",
  5037. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5038. "onresize": function () { }
  5039. }, {
  5040. closecallback: function () { }
  5041. }, { "style": { "height": "36px" } }).form; //创建窗体
  5042. break;
  5043. }
  5044. case "dataBoardSZArea":
  5045. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5046. setTimeout(() => {
  5047. U.MD.U.L.login();
  5048. }, 2000);
  5049. } else {
  5050. _formdiv = new U.UF.UI.form(
  5051. "综合数据看板",
  5052. $$("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 }), {
  5053. "id": "dataBoardSZArea",
  5054. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5055. "onresize": function () { }
  5056. }, {
  5057. closecallback: function () { }
  5058. }, { "style": { "height": "36px" } }).form; //创建窗体
  5059. break;
  5060. }
  5061. case "dataBoardSZCity":
  5062. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5063. setTimeout(() => {
  5064. U.MD.U.L.login();
  5065. }, 2000);
  5066. } else {
  5067. _formdiv = new U.UF.UI.form(
  5068. "综合数据看板",
  5069. $$("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 }), {
  5070. "id": "dataBoardSZCity",
  5071. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5072. "onresize": function () { }
  5073. }, {
  5074. closecallback: function () { }
  5075. }, { "style": { "height": "36px" } }).form; //创建窗体
  5076. break;
  5077. }
  5078. case "classroom_observation_board":
  5079. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5080. setTimeout(() => {
  5081. U.MD.U.L.login();
  5082. }, 2000);
  5083. } else {
  5084. _formdiv = new U.UF.UI.form(
  5085. "课堂观察",
  5086. $$("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 }), {
  5087. "id": "classroom_observation_board",
  5088. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5089. "onresize": function () { }
  5090. }, {
  5091. closecallback: function () { }
  5092. }, { "style": { "height": "36px" } }).form; //创建窗体
  5093. break;
  5094. }
  5095. case "classroom_observation_ob_comment":
  5096. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5097. setTimeout(() => {
  5098. U.MD.U.L.login();
  5099. }, 2000);
  5100. } else {
  5101. _formdiv = new U.UF.UI.form(
  5102. "课堂审核",
  5103. $$("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 }), {
  5104. "id": "classroom_observation_ob_comment",
  5105. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5106. "onresize": function () { }
  5107. }, {
  5108. closecallback: function () { }
  5109. }, { "style": { "height": "36px" } }).form; //创建窗体
  5110. break;
  5111. }
  5112. }
  5113. }
  5114. U.MD.D.I.openApplication = function (str, obj, info) {
  5115. obj = obj || {};
  5116. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5117. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5118. _userinfo = US.userInfo, //登录用户信息
  5119. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5120. _oid = obj.organizeid || _userinfo.organizeid,
  5121. _type = US.userInfo.type,
  5122. _org = US.userInfo.org,
  5123. _role = US.userInfo.role,
  5124. _classId = US.userInfo.classid,
  5125. _TscreenType = 1
  5126. _screenType = 2,
  5127. _SscreenType = 3;
  5128. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5129. return;
  5130. }
  5131. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5132. switch (str) {
  5133. case "studnetProject": //好友打开
  5134. _formdiv = new U.UF.UI.form(
  5135. "我的项目",
  5136. $$("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 }), {
  5137. "id": "studnetProject",
  5138. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5139. "onresize": function () { }
  5140. }, {
  5141. closecallback: function () { }
  5142. }, { "style": { "height": "36px" } }).form; //创建窗体
  5143. _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); } }
  5144. break;
  5145. case "studentEvaluate": //好友打开
  5146. _formdiv = new U.UF.UI.form(
  5147. "我的评价",
  5148. $$("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 }), {
  5149. "id": "studentEvaluate",
  5150. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5151. "onresize": function () { }
  5152. }, {
  5153. closecallback: function () { }
  5154. }, { "style": { "height": "36px" } }).form; //创建窗体
  5155. _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); } }
  5156. break;
  5157. case "my":
  5158. _formdiv = new U.UF.UI.form(
  5159. "我的资料",
  5160. $$("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 }), {
  5161. "id": "my",
  5162. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5163. "onresize": function () { }
  5164. }, {
  5165. closecallback: function () { }
  5166. }, { "style": { "height": "36px" } }).form; //创建窗体
  5167. _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); } }
  5168. break;
  5169. case "program":
  5170. _formdiv = new U.UF.UI.form(
  5171. "编程平台",
  5172. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5173. "id": "program",
  5174. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5175. "onresize": function () { }
  5176. }, {
  5177. closecallback: function () { }
  5178. }, { "style": { "height": "36px" } }).form; //创建窗体
  5179. _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); } }
  5180. break;
  5181. case "library":
  5182. _formdiv = new U.UF.UI.form(
  5183. "素材库",
  5184. $$("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 }), {
  5185. "id": "library",
  5186. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5187. "onresize": function () { }
  5188. }, {
  5189. closecallback: function () { }
  5190. }, { "style": { "height": "36px" } }).form; //创建窗体
  5191. _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); } }
  5192. break;
  5193. case "whiteboard":
  5194. _formdiv = new U.UF.UI.form(
  5195. "电子白板",
  5196. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5197. "id": "whiteboard",
  5198. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5199. "onresize": function () { }
  5200. }, {
  5201. closecallback: function () { }
  5202. }, { "style": { "height": "36px" } }).form; //创建窗体
  5203. _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); } }
  5204. break;
  5205. case "investigation":
  5206. _formdiv = new U.UF.UI.form(
  5207. "问卷调查",
  5208. $$("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 }), {
  5209. "id": "investigation",
  5210. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5211. "onresize": function () { }
  5212. }, {
  5213. closecallback: function () { }
  5214. }, { "style": { "height": "36px" } }).form; //创建窗体
  5215. _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); } }
  5216. break;
  5217. case "note":
  5218. _formdiv = new U.UF.UI.form(
  5219. "便签分类",
  5220. $$("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 }), {
  5221. "id": "note",
  5222. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5223. "onresize": function () { }
  5224. }, {
  5225. closecallback: function () { }
  5226. }, { "style": { "height": "36px" } }).form; //创建窗体
  5227. _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); } }
  5228. break;
  5229. // case "score":
  5230. // _formdiv = new U.UF.UI.form(
  5231. // "量规评分",
  5232. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5233. // "id": "score",
  5234. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5235. // "onresize": function() {}
  5236. // }, {
  5237. // closecallback: function() {}
  5238. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5239. // _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); } }
  5240. // break;
  5241. case "mind":
  5242. _formdiv = new U.UF.UI.form(
  5243. "思维导图",
  5244. $$("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"
  5245. "id": "mind",
  5246. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5247. "onresize": function () { }
  5248. }, {
  5249. closecallback: function () { }
  5250. }, { "style": { "height": "36px" } }).form; //创建窗体
  5251. _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); } }
  5252. break;
  5253. case "doc":
  5254. // U.MD.D.I.isRoom();
  5255. _formdiv = new U.UF.UI.form(
  5256. "协同文档",
  5257. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5258. "id": "doc",
  5259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5260. "onresize": function () { }
  5261. }, {
  5262. closecallback: function () { }
  5263. }, { "style": { "height": "36px" } }).form; //创建窗体
  5264. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5265. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5266. // })
  5267. _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); } }
  5268. break;
  5269. case "studentStudy":
  5270. _formdiv = new U.UF.UI.form(
  5271. "课程中心",
  5272. $$("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
  5273. "id": "studentStudy",
  5274. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5275. "onresize": function () { }
  5276. }, {
  5277. closecallback: function () { }
  5278. }, { "style": { "height": "36px" } }).form; //创建窗体
  5279. _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); } }
  5280. break;
  5281. case "train": //好友打开
  5282. _formdiv = new U.UF.UI.form(
  5283. "训练平台",
  5284. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5285. "id": "train",
  5286. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5287. "onresize": function () { }
  5288. }, {
  5289. closecallback: function () { }
  5290. }, { "style": { "height": "36px" } }).form; //创建窗体
  5291. _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); } }
  5292. break;
  5293. case "mindNetwork": //好友打开
  5294. _formdiv = new U.UF.UI.form(
  5295. "思维网格",
  5296. $$("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 }), {
  5297. "id": "mindNetwork",
  5298. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5299. "onresize": function () { }
  5300. }, {
  5301. closecallback: function () { }
  5302. }, { "style": { "height": "36px" } }).form; //创建窗体
  5303. _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); } }
  5304. break;
  5305. case "studentClassRoom": //好友打开
  5306. _formdiv = new U.UF.UI.form(
  5307. "实时课堂",
  5308. $$("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 }), {
  5309. "id": "studentClassRoom",
  5310. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5311. "onresize": function () { }
  5312. }, {
  5313. closecallback: function () { }
  5314. }, { "style": { "height": "36px" } }).form; //创建窗体
  5315. _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); } }
  5316. setTimeout(() => {
  5317. U.UF.F.windowZooming(_formdiv)
  5318. }, 0);
  5319. break;
  5320. }
  5321. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5322. switch (str) {
  5323. case "studnetProject": //好友打开
  5324. _formdiv = new U.UF.UI.form(
  5325. "我的项目",
  5326. $$("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 }), {
  5327. "id": "studnetProject",
  5328. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5329. "onresize": function () { }
  5330. }, {
  5331. closecallback: function () { }
  5332. }, { "style": { "height": "36px" } }).form; //创建窗体
  5333. _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); } }
  5334. break;
  5335. case "studentEvaluate": //好友打开
  5336. _formdiv = new U.UF.UI.form(
  5337. "我的评价",
  5338. $$("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 }), {
  5339. "id": "studentEvaluate",
  5340. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5341. "onresize": function () { }
  5342. }, {
  5343. closecallback: function () { }
  5344. }, { "style": { "height": "36px" } }).form; //创建窗体
  5345. _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); } }
  5346. break;
  5347. case "my":
  5348. _formdiv = new U.UF.UI.form(
  5349. "我的资料",
  5350. $$("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 }), {
  5351. "id": "my",
  5352. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5353. "onresize": function () { }
  5354. }, {
  5355. closecallback: function () { }
  5356. }, { "style": { "height": "36px" } }).form; //创建窗体
  5357. _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); } }
  5358. break;
  5359. case "program":
  5360. _formdiv = new U.UF.UI.form(
  5361. "编程平台",
  5362. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5363. "id": "program",
  5364. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5365. "onresize": function () { }
  5366. }, {
  5367. closecallback: function () { }
  5368. }, { "style": { "height": "36px" } }).form; //创建窗体
  5369. _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); } }
  5370. break;
  5371. case "library":
  5372. _formdiv = new U.UF.UI.form(
  5373. "素材库",
  5374. $$("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 }), {
  5375. "id": "library",
  5376. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5377. "onresize": function () { }
  5378. }, {
  5379. closecallback: function () { }
  5380. }, { "style": { "height": "36px" } }).form; //创建窗体
  5381. _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); } }
  5382. break;
  5383. case "whiteboard":
  5384. _formdiv = new U.UF.UI.form(
  5385. "电子白板",
  5386. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5387. "id": "whiteboard",
  5388. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5389. "onresize": function () { }
  5390. }, {
  5391. closecallback: function () { }
  5392. }, { "style": { "height": "36px" } }).form; //创建窗体
  5393. _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); } }
  5394. break;
  5395. case "investigation":
  5396. _formdiv = new U.UF.UI.form(
  5397. "问卷调查",
  5398. $$("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 }), {
  5399. "id": "investigation",
  5400. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5401. "onresize": function () { }
  5402. }, {
  5403. closecallback: function () { }
  5404. }, { "style": { "height": "36px" } }).form; //创建窗体
  5405. _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); } }
  5406. break;
  5407. case "note":
  5408. _formdiv = new U.UF.UI.form(
  5409. "便签分类",
  5410. $$("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 }), {
  5411. "id": "note",
  5412. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5413. "onresize": function () { }
  5414. }, {
  5415. closecallback: function () { }
  5416. }, { "style": { "height": "36px" } }).form; //创建窗体
  5417. _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); } }
  5418. break;
  5419. // case "score":
  5420. // _formdiv = new U.UF.UI.form(
  5421. // "量规评分",
  5422. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5423. // "id": "score",
  5424. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5425. // "onresize": function() {}
  5426. // }, {
  5427. // closecallback: function() {}
  5428. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5429. // _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); } }
  5430. // break;
  5431. case "mind":
  5432. _formdiv = new U.UF.UI.form(
  5433. "思维导图",
  5434. $$("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"
  5435. "id": "mind",
  5436. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5437. "onresize": function () { }
  5438. }, {
  5439. closecallback: function () { }
  5440. }, { "style": { "height": "36px" } }).form; //创建窗体
  5441. _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); } }
  5442. break;
  5443. case "doc":
  5444. // U.MD.D.I.isRoom();
  5445. _formdiv = new U.UF.UI.form(
  5446. "协同文档",
  5447. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5448. "id": "doc",
  5449. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5450. "onresize": function () { }
  5451. }, {
  5452. closecallback: function () { }
  5453. }, { "style": { "height": "36px" } }).form; //创建窗体
  5454. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5455. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5456. })
  5457. _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); } }
  5458. break;
  5459. case "train": //好友打开
  5460. _formdiv = new U.UF.UI.form(
  5461. "训练平台",
  5462. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5463. "id": "train",
  5464. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5465. "onresize": function () { }
  5466. }, {
  5467. closecallback: function () { }
  5468. }, { "style": { "height": "36px" } }).form; //创建窗体
  5469. _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); } }
  5470. break;
  5471. case "studentStudy":
  5472. _formdiv = new U.UF.UI.form(
  5473. "课程中心",
  5474. $$("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
  5475. "id": "studentStudy",
  5476. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5477. "onresize": function () { }
  5478. }, {
  5479. closecallback: function () { }
  5480. }, { "style": { "height": "36px" } }).form; //创建窗体
  5481. _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); } }
  5482. break;
  5483. case "mindNetwork": //好友打开
  5484. _formdiv = new U.UF.UI.form(
  5485. "思维网格",
  5486. $$("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 }), {
  5487. "id": "mindNetwork",
  5488. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5489. "onresize": function () { }
  5490. }, {
  5491. closecallback: function () { }
  5492. }, { "style": { "height": "36px" } }).form; //创建窗体
  5493. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5494. break;
  5495. case "studentClassRoom": //好友打开
  5496. _formdiv = new U.UF.UI.form(
  5497. "实时课堂",
  5498. $$("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 }), {
  5499. "id": "studentClassRoom",
  5500. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5501. "onresize": function () { }
  5502. }, {
  5503. closecallback: function () { }
  5504. }, { "style": { "height": "36px" } }).form; //创建窗体
  5505. _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); } }
  5506. setTimeout(() => {
  5507. U.UF.F.windowZooming(_formdiv)
  5508. }, 0);
  5509. break;
  5510. }
  5511. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5512. //选择应用处理
  5513. switch (str) {
  5514. case "project": //好友打开
  5515. _formdiv = new U.UF.UI.form(
  5516. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5517. $$("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 }), {
  5518. "id": "project",
  5519. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5520. "onresize": function () { }
  5521. }, {
  5522. closecallback: function () { }
  5523. }, { "style": { "height": "36px" } }).form; //创建窗体
  5524. _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); } }
  5525. break;
  5526. case "student":
  5527. _formdiv = new U.UF.UI.form(
  5528. "学生管理",
  5529. $$("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 }), {
  5530. "id": "student",
  5531. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5532. "onresize": function () { }
  5533. }, {
  5534. closecallback: function () { }
  5535. }, { "style": { "height": "36px" } }).form; //创建窗体
  5536. _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); } }
  5537. break;
  5538. case "evaluate":
  5539. _formdiv = new U.UF.UI.form(
  5540. "学生评价",
  5541. $$("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 }), {
  5542. "id": "evaluate",
  5543. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5544. "onresize": function () { }
  5545. }, {
  5546. closecallback: function () { }
  5547. }, { "style": { "height": "36px" } }).form; //创建窗体
  5548. _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); } }
  5549. break;
  5550. case "sys":
  5551. _formdiv = new U.UF.UI.form(
  5552. "目标管理",
  5553. $$("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 }), {
  5554. "id": "sys",
  5555. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5556. "onresize": function () { }
  5557. }, {
  5558. closecallback: function () { }
  5559. }, { "style": { "height": "36px" } }).form; //创建窗体
  5560. _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); } }
  5561. break;
  5562. case "courseDesign":
  5563. _formdiv = new U.UF.UI.form(
  5564. "项目设计",
  5565. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5566. "id": "courseDesign",
  5567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5568. "onresize": function () { }
  5569. }, {
  5570. closecallback: function () { }
  5571. }, { "style": { "height": "36px" } }).form; //创建窗体
  5572. _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); } }
  5573. break;
  5574. case "program":
  5575. _formdiv = new U.UF.UI.form(
  5576. "编程平台",
  5577. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5578. "id": "program",
  5579. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5580. "onresize": function () { }
  5581. }, {
  5582. closecallback: function () { }
  5583. }, { "style": { "height": "36px" } }).form; //创建窗体
  5584. _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); } }
  5585. break;
  5586. case "class":
  5587. _formdiv = new U.UF.UI.form(
  5588. "班级管理",
  5589. $$("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 }), {
  5590. "id": "class",
  5591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5592. "onresize": function () { }
  5593. }, {
  5594. closecallback: function () { }
  5595. }, { "style": { "height": "36px" } }).form; //创建窗体
  5596. _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); } }
  5597. break;
  5598. case "Grade":
  5599. _formdiv = new U.UF.UI.form(
  5600. "年级管理",
  5601. $$("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 }), {
  5602. "id": "Grade",
  5603. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5604. "onresize": function () { }
  5605. }, {
  5606. closecallback: function () { }
  5607. }, { "style": { "height": "36px" } }).form; //创建窗体
  5608. _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); } }
  5609. break;
  5610. case "teacherOffice":
  5611. _formdiv = new U.UF.UI.form(
  5612. "教研室",
  5613. $$("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 }), {
  5614. "id": "teacherOffice",
  5615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5616. "onresize": function () { }
  5617. }, {
  5618. closecallback: function () { }
  5619. }, { "style": { "height": "36px" } }).form; //创建窗体
  5620. _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); } }
  5621. break;
  5622. case "my":
  5623. _formdiv = new U.UF.UI.form(
  5624. "我的资料",
  5625. $$("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 }), {
  5626. "id": "my",
  5627. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5628. "onresize": function () { }
  5629. }, {
  5630. closecallback: function () { }
  5631. }, { "style": { "height": "36px" } }).form; //创建窗体
  5632. _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); } }
  5633. break;
  5634. case "notice":
  5635. _formdiv = new U.UF.UI.form(
  5636. "通知公告",
  5637. $$("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 }), {
  5638. "id": "notice",
  5639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5640. "onresize": function () { }
  5641. }, {
  5642. closecallback: function () { }
  5643. }, { "style": { "height": "36px" } }).form; //创建窗体
  5644. _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); } }
  5645. break;
  5646. case "library":
  5647. _formdiv = new U.UF.UI.form(
  5648. "素材库",
  5649. $$("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 }), {
  5650. "id": "library",
  5651. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5652. "onresize": function () { }
  5653. }, {
  5654. closecallback: function () { }
  5655. }, { "style": { "height": "36px" } }).form; //创建窗体
  5656. _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); } }
  5657. break;
  5658. case "whiteboard":
  5659. _formdiv = new U.UF.UI.form(
  5660. "电子白板",
  5661. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5662. "id": "whiteboard",
  5663. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5664. "onresize": function () { }
  5665. }, {
  5666. closecallback: function () { }
  5667. }, { "style": { "height": "36px" } }).form; //创建窗体
  5668. _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); } }
  5669. break;
  5670. case "investigation":
  5671. _formdiv = new U.UF.UI.form(
  5672. "问卷调查",
  5673. $$("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 }), {
  5674. "id": "investigation",
  5675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5676. "onresize": function () { }
  5677. }, {
  5678. closecallback: function () { }
  5679. }, { "style": { "height": "36px" } }).form; //创建窗体
  5680. _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); } }
  5681. break;
  5682. case "note":
  5683. _formdiv = new U.UF.UI.form(
  5684. "便签分类",
  5685. $$("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 }), {
  5686. "id": "note",
  5687. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5688. "onresize": function () { }
  5689. }, {
  5690. closecallback: function () { }
  5691. }, { "style": { "height": "36px" } }).form; //创建窗体
  5692. _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); } }
  5693. break;
  5694. // case "score":
  5695. // _formdiv = new U.UF.UI.form(
  5696. // "量规评分",
  5697. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5698. // "id": "score",
  5699. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5700. // "onresize": function() {}
  5701. // }, {
  5702. // closecallback: function() {}
  5703. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5704. // _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); } }
  5705. // break;
  5706. case "mind":
  5707. _formdiv = new U.UF.UI.form(
  5708. "思维导图",
  5709. $$("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"
  5710. "id": "mind",
  5711. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5712. "onresize": function () { }
  5713. }, {
  5714. closecallback: function () { }
  5715. }, { "style": { "height": "36px" } }).form; //创建窗体
  5716. _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); } }
  5717. break;
  5718. case "doc":
  5719. // U.MD.D.I.isRoom();
  5720. _formdiv = new U.UF.UI.form(
  5721. "协同文档",
  5722. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5723. "id": "doc",
  5724. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5725. "onresize": function () { }
  5726. }, {
  5727. closecallback: function () { }
  5728. }, { "style": { "height": "36px" } }).form; //创建窗体
  5729. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5730. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5731. })
  5732. _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); } }
  5733. break;
  5734. case "study":
  5735. _formdiv = new U.UF.UI.form(
  5736. "课程中心",
  5737. $$("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
  5738. "id": "study",
  5739. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5740. "onresize": function () { }
  5741. }, {
  5742. closecallback: function () { }
  5743. }, { "style": { "height": "36px" } }).form; //创建窗体
  5744. _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); } }
  5745. break;
  5746. case "mindNetwork": //好友打开
  5747. _formdiv = new U.UF.UI.form(
  5748. "思维网格",
  5749. $$("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 }), {
  5750. "id": "mindNetwork",
  5751. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5752. "onresize": function () { }
  5753. }, {
  5754. closecallback: function () { }
  5755. }, { "style": { "height": "36px" } }).form; //创建窗体
  5756. _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); } }
  5757. break;
  5758. case "train": //好友打开
  5759. _formdiv = new U.UF.UI.form(
  5760. "训练平台",
  5761. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5762. "id": "mindNetwork",
  5763. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5764. "onresize": function () { }
  5765. }, {
  5766. closecallback: function () { }
  5767. }, { "style": { "height": "36px" } }).form; //创建窗体
  5768. _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); } }
  5769. break;
  5770. case "teacherClassRoom": //好友打开
  5771. _formdiv = new U.UF.UI.form(
  5772. "实时课堂",
  5773. $$("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 }), {
  5774. "id": "teacherClassRoom",
  5775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5776. "onresize": function () { }
  5777. }, {
  5778. closecallback: function () { }
  5779. }, { "style": { "height": "36px" } }).form; //创建窗体
  5780. _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); } }
  5781. setTimeout(() => {
  5782. U.UF.F.windowZooming(_formdiv)
  5783. }, 0);
  5784. break;
  5785. }
  5786. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5787. switch (str) {
  5788. case "project": //好友打开
  5789. _formdiv = new U.UF.UI.form(
  5790. "课程管理",
  5791. $$("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 }), {
  5792. "id": "project",
  5793. "style": { "width": "90%", "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/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5799. break;
  5800. case "evaluate":
  5801. _formdiv = new U.UF.UI.form(
  5802. "学生评价",
  5803. $$("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 }), {
  5804. "id": "evaluate",
  5805. "style": { "width": "90%", "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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5811. break;
  5812. case "notice":
  5813. _formdiv = new U.UF.UI.form(
  5814. "通知公告",
  5815. $$("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 }), {
  5816. "id": "notice",
  5817. "style": { "width": "90%", "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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5823. break;
  5824. case "stuLibrary":
  5825. _formdiv = new U.UF.UI.form(
  5826. "学习资料",
  5827. $$("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 }), {
  5828. "id": "stuLibrary",
  5829. "style": { "width": "90%", "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/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5835. break;
  5836. case "program":
  5837. _formdiv = new U.UF.UI.form(
  5838. "编程平台",
  5839. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5840. "id": "program",
  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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5847. break;
  5848. case "whiteboard":
  5849. _formdiv = new U.UF.UI.form(
  5850. "电子白板",
  5851. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5852. "id": "whiteboard",
  5853. "style": { "width": "90%", "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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5859. break;
  5860. case "investigation":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5864. "id": "investigation",
  5865. "style": { "width": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5871. break;
  5872. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5876. "id": "mind",
  5877. "style": { "width": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5883. break;
  5884. case "doc":
  5885. // U.MD.D.I.isRoom();
  5886. _formdiv = new U.UF.UI.form(
  5887. "协同文档",
  5888. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5889. "id": "doc",
  5890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5891. "onresize": function () { }
  5892. }, {
  5893. closecallback: function () { }
  5894. }, { "style": { "height": "36px" } }).form; //创建窗体
  5895. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5896. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5897. })
  5898. _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); } }
  5899. break;
  5900. case "study":
  5901. _formdiv = new U.UF.UI.form(
  5902. "课程中心",
  5903. $$("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
  5904. "id": "study",
  5905. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5906. "onresize": function () { }
  5907. }, {
  5908. closecallback: function () { }
  5909. }, { "style": { "height": "36px" } }).form; //创建窗体
  5910. _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); } }
  5911. break;
  5912. case "mindNetwork": //好友打开
  5913. _formdiv = new U.UF.UI.form(
  5914. "思维网格",
  5915. $$("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 }), {
  5916. "id": "mindNetwork",
  5917. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5918. "onresize": function () { }
  5919. }, {
  5920. closecallback: function () { }
  5921. }, { "style": { "height": "36px" } }).form; //创建窗体
  5922. _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); } }
  5923. break;
  5924. case "train": //好友打开
  5925. _formdiv = new U.UF.UI.form(
  5926. "训练平台",
  5927. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5928. "id": "train",
  5929. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5930. "onresize": function () { }
  5931. }, {
  5932. closecallback: function () { }
  5933. }, { "style": { "height": "36px" } }).form; //创建窗体
  5934. _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); } }
  5935. break;
  5936. case "sys":
  5937. _formdiv = new U.UF.UI.form(
  5938. "目标管理",
  5939. $$("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 }), {
  5940. "id": "sys",
  5941. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5942. "onresize": function () { }
  5943. }, {
  5944. closecallback: function () { }
  5945. }, { "style": { "height": "36px" } }).form; //创建窗体
  5946. _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); } }
  5947. break;
  5948. case "courseDesign":
  5949. _formdiv = new U.UF.UI.form(
  5950. "项目设计",
  5951. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5952. "id": "courseDesign",
  5953. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5954. "onresize": function () { }
  5955. }, {
  5956. closecallback: function () { }
  5957. }, { "style": { "height": "36px" } }).form; //创建窗体
  5958. _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); } }
  5959. break;
  5960. }
  5961. } else if (!_type) {
  5962. switch (str) {
  5963. case "my":
  5964. _formdiv = new U.UF.UI.form(
  5965. "我的资料",
  5966. $$("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 }), {
  5967. "id": "my",
  5968. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5969. "onresize": function () { }
  5970. }, {
  5971. closecallback: function () { }
  5972. }, { "style": { "height": "36px" } }).form; //创建窗体
  5973. _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); } }
  5974. break;
  5975. }
  5976. }
  5977. switch (str) {
  5978. // AIprogram2 AI体验 aihub.cocorobo.cn
  5979. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5980. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5981. case "formulaEdi": //公式编辑
  5982. _formdiv = new U.UF.UI.form(
  5983. "公式编辑",
  5984. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5985. "id": "formulaEdi",
  5986. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5987. "onresize": function () { }
  5988. }, {
  5989. closecallback: function () { }
  5990. }, { "style": { "height": "36px" } }).form; //创建窗体
  5991. _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); } }
  5992. break;
  5993. case "molStr": //分子结构
  5994. _formdiv = new U.UF.UI.form(
  5995. "分子结构",
  5996. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5997. "id": "molStr",
  5998. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5999. "onresize": function () { }
  6000. }, {
  6001. closecallback: function () { }
  6002. }, { "style": { "height": "36px" } }).form; //创建窗体
  6003. _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); } }
  6004. break;
  6005. case "timeAxis": //时间轴
  6006. _formdiv = new U.UF.UI.form(
  6007. "时间轴",
  6008. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6009. "id": "timeAxis",
  6010. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6011. "onresize": function () { }
  6012. }, {
  6013. closecallback: function () { }
  6014. }, { "style": { "height": "36px" } }).form; //创建窗体
  6015. _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); } }
  6016. break;
  6017. case "AIprogram2": //AI体验
  6018. _formdiv = new U.UF.UI.form(
  6019. "AI体验",
  6020. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6021. "id": "AIprogram2",
  6022. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6023. "onresize": function () { }
  6024. }, {
  6025. closecallback: function () { }
  6026. }, { "style": { "height": "36px" } }).form; //创建窗体
  6027. _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); } }
  6028. break;
  6029. case "Pythonprogram": //python编程
  6030. _formdiv = new U.UF.UI.form(
  6031. "Python编程",
  6032. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6033. "id": "Pythonprogram",
  6034. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6035. "onresize": function () { }
  6036. }, {
  6037. closecallback: function () { }
  6038. }, { "style": { "height": "36px" } }).form; //创建窗体
  6039. _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); } }
  6040. break;
  6041. case "AIprogram": //ai编程
  6042. _formdiv = new U.UF.UI.form(
  6043. "AI编程平台",
  6044. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6045. "id": "AIprogram",
  6046. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6047. "onresize": function () { }
  6048. }, {
  6049. closecallback: function () { }
  6050. }, { "style": { "height": "36px" } }).form; //创建窗体
  6051. _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); } }
  6052. break;
  6053. case "CocoPi": //CocoPi
  6054. _formdiv = new U.UF.UI.form(
  6055. "CocoPi",
  6056. $$("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" }), {
  6057. "id": "CocoPi",
  6058. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6059. "onresize": function () { }
  6060. }, {
  6061. closecallback: function () { }
  6062. }, { "style": { "height": "36px" } }).form; //创建窗体
  6063. _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); } }
  6064. break;
  6065. case "Wood": //Wood
  6066. _formdiv = new U.UF.UI.form(
  6067. "海龟编程",
  6068. $$("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/" }), {
  6069. "id": "Wood",
  6070. "style": { "width": "70%", "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/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6076. break;
  6077. case "car": //模拟驾驶
  6078. _formdiv = new U.UF.UI.form(
  6079. "模拟驾驶",
  6080. $$("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/" }), {
  6081. "id": "car",
  6082. "style": { "width": "70%", "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/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6088. break;
  6089. case "lineSearch": //路径搜索
  6090. _formdiv = new U.UF.UI.form(
  6091. "路径搜索",
  6092. $$("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/" }), {
  6093. "id": "lineSearch",
  6094. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6095. "onresize": function () { }
  6096. }, {
  6097. closecallback: function () { }
  6098. }, { "style": { "height": "36px" } }).form; //创建窗体
  6099. _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); } }
  6100. break;
  6101. case "deepLearning": //深度学习
  6102. _formdiv = new U.UF.UI.form(
  6103. "深度学习",
  6104. $$("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/#" }), {
  6105. "id": "deepLearning",
  6106. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6107. "onresize": function () { }
  6108. }, {
  6109. closecallback: function () { }
  6110. }, { "style": { "height": "36px" } }).form; //创建窗体
  6111. _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); } }
  6112. break;
  6113. case "allHistory": //深度学习
  6114. _formdiv = new U.UF.UI.form(
  6115. "全历史",
  6116. $$("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/" }), {
  6117. "id": "allHistory",
  6118. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6119. "onresize": function () { }
  6120. }, {
  6121. closecallback: function () { }
  6122. }, { "style": { "height": "36px" } }).form; //创建窗体
  6123. _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); } }
  6124. break;
  6125. case "chatPDF": //ai编程
  6126. _formdiv = new U.UF.UI.form(
  6127. "chatPDF",
  6128. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6129. "id": "chatPDF",
  6130. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6131. "onresize": function () { }
  6132. }, {
  6133. closecallback: function () { }
  6134. }, { "style": { "height": "36px" } }).form; //创建窗体
  6135. _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); } }
  6136. break;
  6137. case "resources": //国家教育
  6138. _formdiv = new U.UF.UI.form(
  6139. "国家教育",
  6140. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6141. "id": "resources",
  6142. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6143. "onresize": function () { }
  6144. }, {
  6145. closecallback: function () { }
  6146. }, { "style": { "height": "36px" } }).form; //创建窗体
  6147. _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); } }
  6148. break;
  6149. case "codeEdit": //源码编辑
  6150. _formdiv = new U.UF.UI.form(
  6151. "源码编辑",
  6152. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6153. "id": "codeEdit",
  6154. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6155. "onresize": function () { }
  6156. }, {
  6157. closecallback: function () { }
  6158. }, { "style": { "height": "36px" } }).form; //创建窗体
  6159. _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); } }
  6160. break; //
  6161. case "MindMap": //MindMap
  6162. _formdiv = new U.UF.UI.form(
  6163. "MindMap",
  6164. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6165. "id": "MindMap",
  6166. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, { "style": { "height": "36px" } }).form; //创建窗体
  6171. _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); } }
  6172. break;
  6173. case "netWorkPanel": //netWorkPanel
  6174. _formdiv = new U.UF.UI.form(
  6175. "netWorkPanel",
  6176. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6177. "id": "netWorkPanel",
  6178. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6179. "onresize": function () { }
  6180. }, {
  6181. closecallback: function () { }
  6182. }, { "style": { "height": "36px" } }).form; //创建窗体
  6183. _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); } }
  6184. break;
  6185. case "GeoGebra": //GeoGebra
  6186. _formdiv = new U.UF.UI.form(
  6187. "GeoGebra",
  6188. $$("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" }), {
  6189. "id": "GeoGebra",
  6190. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6191. "onresize": function () { }
  6192. }, {
  6193. closecallback: function () { }
  6194. }, { "style": { "height": "36px" } }).form; //创建窗体
  6195. _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); } }
  6196. break;
  6197. case "translation": //翻译
  6198. _formdiv = new U.UF.UI.form(
  6199. "翻译",
  6200. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6201. "id": "translation",
  6202. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6203. "onresize": function () { }
  6204. }, {
  6205. closecallback: function () { }
  6206. }, { "style": { "height": "36px" } }).form; //创建窗体
  6207. _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); } }
  6208. break;
  6209. case "mohe": //魔盒
  6210. _formdiv = new U.UF.UI.form(
  6211. "魔盒识字",
  6212. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6213. "id": "mohe",
  6214. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6215. "onresize": function () { }
  6216. }, {
  6217. closecallback: function () { }
  6218. }, { "style": { "height": "36px" } }).form; //创建窗体
  6219. _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); } }
  6220. break;
  6221. case "24game": //24点
  6222. _formdiv = new U.UF.UI.form(
  6223. "24点",
  6224. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6225. "id": "24game",
  6226. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6227. "onresize": function () { }
  6228. }, {
  6229. closecallback: function () { }
  6230. }, { "style": { "height": "36px" } }).form; //创建窗体
  6231. _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); } }
  6232. break;
  6233. case "case":
  6234. _formdiv = new U.UF.UI.form(
  6235. "课程进展",
  6236. $$("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 }), {
  6237. "id": "case",
  6238. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6239. "onresize": function () { }
  6240. }, {
  6241. closecallback: function () { }
  6242. }, { "style": { "height": "36px" } }).form; //创建窗体
  6243. _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); } }
  6244. break;
  6245. case "snf":
  6246. _formdiv = new U.UF.UI.form(
  6247. "赛诺梵",
  6248. $$("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" }), {
  6249. "id": "snf",
  6250. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, { "style": { "height": "36px" } }).form; //创建窗体
  6255. _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); } }
  6256. break;
  6257. case "hanFamily":
  6258. _formdiv = new U.UF.UI.form(
  6259. "汉字家族",
  6260. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6261. "id": "hanFamily",
  6262. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6263. "onresize": function () { }
  6264. }, {
  6265. closecallback: function () { }
  6266. }, { "style": { "height": "36px" } }).form; //创建窗体
  6267. _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); } }
  6268. break;
  6269. case "hanClassics":
  6270. _formdiv = new U.UF.UI.form(
  6271. "国学经典",
  6272. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6273. "id": "hanClassics",
  6274. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6275. "onresize": function () { }
  6276. }, {
  6277. closecallback: function () { }
  6278. }, { "style": { "height": "36px" } }).form; //创建窗体
  6279. _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); } }
  6280. break;
  6281. case "hanTraining":
  6282. _formdiv = new U.UF.UI.form(
  6283. "笔画训练",
  6284. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6285. "id": "hanTraining",
  6286. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6287. "onresize": function () { }
  6288. }, {
  6289. closecallback: function () { }
  6290. }, { "style": { "height": "36px" } }).form; //创建窗体
  6291. _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); } }
  6292. break;
  6293. case "hanClass":
  6294. _formdiv = new U.UF.UI.form(
  6295. "书法课堂",
  6296. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6297. "id": "hanClass",
  6298. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6299. "onresize": function () { }
  6300. }, {
  6301. closecallback: function () { }
  6302. }, { "style": { "height": "36px" } }).form; //创建窗体
  6303. _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); } }
  6304. break;
  6305. case "han":
  6306. _formdiv = new U.UF.UI.form(
  6307. "汉字宫",
  6308. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6309. "id": "han",
  6310. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6311. "onresize": function () { }
  6312. }, {
  6313. closecallback: function () { }
  6314. }, { "style": { "height": "36px" } }).form; //创建窗体
  6315. _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); } }
  6316. break;
  6317. case "projectGM": //课程管理
  6318. _formdiv = new U.UF.UI.form(
  6319. "课程管理",
  6320. $$("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 }), {
  6321. "id": "projectGM",
  6322. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6323. "onresize": function () { }
  6324. }, {
  6325. closecallback: function () { }
  6326. }, { "style": { "height": "36px" } }).form; //创建窗体
  6327. _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); } }
  6328. break;
  6329. case "studyGM": //课程中心
  6330. _formdiv = new U.UF.UI.form(
  6331. "课程中心",
  6332. $$("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
  6333. "id": "study",
  6334. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6335. "onresize": function () { }
  6336. }, {
  6337. closecallback: function () { }
  6338. }, { "style": { "height": "36px" } }).form; //创建窗体
  6339. _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); } }
  6340. break;
  6341. // studentGM
  6342. case "studentGM": //学生管理
  6343. _formdiv = new U.UF.UI.form(
  6344. "学生管理",
  6345. $$("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 }), {
  6346. "id": "studentGM",
  6347. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6348. "onresize": function () { }
  6349. }, {
  6350. closecallback: function () { }
  6351. }, { "style": { "height": "36px" } }).form; //创建窗体
  6352. _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); } }
  6353. break;
  6354. case "evaluateGM": //学生评价
  6355. _formdiv = new U.UF.UI.form(
  6356. "学生评价",
  6357. $$("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 }), {
  6358. "id": "evaluateGM",
  6359. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6360. "onresize": function () { }
  6361. }, {
  6362. closecallback: function () { }
  6363. }, { "style": { "height": "36px" } }).form; //创建窗体
  6364. _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); } }
  6365. break;
  6366. // classGM
  6367. case "classGM": //班级管理
  6368. _formdiv = new U.UF.UI.form(
  6369. "班级管理",
  6370. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6371. "id": "classGM",
  6372. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6373. "onresize": function () { }
  6374. }, {
  6375. closecallback: function () { }
  6376. }, { "style": { "height": "36px" } }).form; //创建窗体
  6377. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6378. break;
  6379. // dataGM
  6380. case "dataGM":
  6381. _formdiv = new U.UF.UI.form(
  6382. "我的资料",
  6383. $$("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 }), {
  6384. "id": "dataGM",
  6385. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6386. "onresize": function () { }
  6387. }, {
  6388. closecallback: function () { }
  6389. }, { "style": { "height": "36px" } }).form; //创建窗体
  6390. _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); } }
  6391. break;
  6392. // caseGM
  6393. case "caseGM": //课程进展
  6394. _formdiv = new U.UF.UI.form(
  6395. "课程进展",
  6396. $$("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 }), {
  6397. "id": "caseGM",
  6398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6399. "onresize": function () { }
  6400. }, {
  6401. closecallback: function () { }
  6402. }, { "style": { "height": "36px" } }).form; //创建窗体
  6403. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6404. break;
  6405. // meterialGM
  6406. case "meterialGM": //素材库
  6407. _formdiv = new U.UF.UI.form(
  6408. "素材库",
  6409. $$("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 }), {
  6410. "id": "meterialGM",
  6411. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6412. "onresize": function () { }
  6413. }, {
  6414. closecallback: function () { }
  6415. }, { "style": { "height": "36px" } }).form; //创建窗体
  6416. _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); } }
  6417. break;
  6418. // evaluateSGM
  6419. case "evaluateSGM": //我的评价
  6420. _formdiv = new U.UF.UI.form(
  6421. "我的评价",
  6422. $$("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 }), {
  6423. "id": "evaluateSGM",
  6424. "style": { "width": "70%", "height": "90%", "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/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6430. break;
  6431. case "jupyter": //jupyter
  6432. _formdiv = new U.UF.UI.form(
  6433. "jupyter",
  6434. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6435. "id": "jupyter",
  6436. "style": { "width": "90%", "height": "90%", "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/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6442. break;
  6443. case "number": //数字实验室
  6444. _formdiv = new U.UF.UI.form(
  6445. "数字实验室",
  6446. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6447. "id": "number",
  6448. "style": { "width": "90%", "height": "90%", "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/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6454. break;
  6455. case "studentCourse": //项目管理 学生
  6456. _formdiv = new U.UF.UI.form(
  6457. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6458. $$("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 }), {
  6459. "id": "studentCourse",
  6460. "style": { "width": "90%", "height": "90%", "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/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6466. break;
  6467. case "studentCourseS": //项目管理 老师
  6468. _formdiv = new U.UF.UI.form(
  6469. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6470. $$("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 }), {
  6471. "id": "studentCourseS",
  6472. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6473. "onresize": function () { }
  6474. }, {
  6475. closecallback: function () { }
  6476. }, { "style": { "height": "36px" } }).form; //创建窗体
  6477. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6478. break;
  6479. case "studentIndex": //项目中心
  6480. _formdiv = new U.UF.UI.form(
  6481. "项目中心",
  6482. $$("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 }), {
  6483. "id": "studentIndex",
  6484. "style": { "width": "90%", "height": "90%", "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/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6490. break;
  6491. case "CaseDesignS":
  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/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6495. "id": "case",
  6496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6497. "onresize": function () { }
  6498. }, {
  6499. closecallback: function () { }
  6500. }, { "style": { "height": "36px" } }).form; //创建窗体
  6501. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6502. break;
  6503. case "tcStudent": //腾讯学生管理
  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/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6507. "id": "tcStudent",
  6508. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6509. "onresize": function () { }
  6510. }, {
  6511. closecallback: function () { }
  6512. }, { "style": { "height": "36px" } }).form; //创建窗体
  6513. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6514. break;
  6515. case "tcSchool": //腾讯学校管理
  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/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6519. "id": "tcSchool",
  6520. "style": { "width": "90%", "height": "90%", "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/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6526. break;
  6527. case "tcTeacher": //腾讯学校管理
  6528. _formdiv = new U.UF.UI.form(
  6529. "教师管理",
  6530. $$("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 }), {
  6531. "id": "tcTeacher",
  6532. "style": { "width": "90%", "height": "90%", "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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6538. break;
  6539. case "teacher":
  6540. _formdiv = new U.UF.UI.form(
  6541. "教师管理",
  6542. $$("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 }), {
  6543. "id": "teacher",
  6544. "style": { "width": "90%", "height": "90%", "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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6550. break;
  6551. case "tcData": //腾讯我的资料
  6552. _formdiv = new U.UF.UI.form(
  6553. "我的资料",
  6554. $$("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 }), {
  6555. "id": "tcData",
  6556. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6557. "onresize": function () { }
  6558. }, {
  6559. closecallback: function () { }
  6560. }, { "style": { "height": "36px" } }).form; //创建窗体
  6561. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6562. break;
  6563. case "tcNotice": //腾讯消息通知
  6564. _formdiv = new U.UF.UI.form(
  6565. "消息通知",
  6566. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6567. "id": "tcNotice",
  6568. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6569. "onresize": function () { }
  6570. }, {
  6571. closecallback: function () { }
  6572. }, { "style": { "height": "36px" } }).form; //创建窗体
  6573. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6574. break;
  6575. case "myReport": //好友打开
  6576. _formdiv = new U.UF.UI.form(
  6577. "我的评价",
  6578. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  6579. "id": "myReport",
  6580. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6581. "onresize": function () { }
  6582. }, {
  6583. closecallback: function () { }
  6584. }, { "style": { "height": "36px" } }).form; //创建窗体
  6585. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6586. break;
  6587. case "learnAna": //好友打开
  6588. _formdiv = new U.UF.UI.form(
  6589. "学习分析",
  6590. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6591. "id": "learnAna",
  6592. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6593. "onresize": function () { }
  6594. }, {
  6595. closecallback: function () { }
  6596. }, { "style": { "height": "36px" } }).form; //创建窗体
  6597. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6598. break;
  6599. case "AIChat": //AI共创
  6600. _formdiv = new U.UF.UI.form(
  6601. "AI共创",
  6602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6603. "id": "AIChat",
  6604. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6605. "onresize": function () { }
  6606. }, {
  6607. istop: true,
  6608. closecallback: function () { $("#aichat_icon").remove(); },
  6609. narrowcallback: function () {
  6610. if (!$("#aichat_icon")[0]) {
  6611. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6612. }
  6613. },
  6614. }, { "style": { "height": "36px" } }).form; //创建窗体
  6615. _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); } }
  6616. break;
  6617. case "ainew": //AI共创
  6618. _formdiv = new U.UF.UI.form(
  6619. "AI协同",
  6620. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6621. "id": "ainew",
  6622. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6623. "onresize": function () { }
  6624. }, {
  6625. closecallback: function () { }
  6626. }, { "style": { "height": "36px" } }).form; //创建窗体
  6627. _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); } }
  6628. break;
  6629. case "gpt4": //gpt4
  6630. _formdiv = new U.UF.UI.form(
  6631. "AI助手",
  6632. $$("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 }), {
  6633. "id": "gpt4",
  6634. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6635. "onresize": function () { }
  6636. }, {
  6637. closecallback: function () { }
  6638. }, { "style": { "height": "36px" } }).form; //创建窗体
  6639. _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); } }
  6640. break;
  6641. case "aigpt": //gpt4
  6642. _formdiv = new U.UF.UI.form(
  6643. "AI助手+",
  6644. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6645. "id": "aigpt",
  6646. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6647. "onresize": function () { }
  6648. }, {
  6649. closecallback: function () {
  6650. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6651. }
  6652. }, { "style": { "height": "36px" } }).form; //创建窗体
  6653. _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); } }
  6654. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6655. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6656. })
  6657. break;
  6658. case "aiKnowledge": //aiKnowledge
  6659. _formdiv = new U.UF.UI.form(
  6660. "知识建构",
  6661. $$("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/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6662. "id": "aiKnowledge",
  6663. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6664. "onresize": function () { }
  6665. }, {
  6666. closecallback: function () { }
  6667. }, { "style": { "height": "36px" } }).form; //创建窗体
  6668. _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); } }
  6669. break;
  6670. case "futureClass": //AI共创
  6671. _formdiv = new U.UF.UI.form(
  6672. "协同建构",
  6673. $$("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://beta.cscl.cocorobo.cn
  6674. "id": "synergyCourse",
  6675. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6676. "onresize": function () { }
  6677. }, {
  6678. closecallback: function () {
  6679. $("iframe", _formdiv)[0].contentWindow.loginout();
  6680. }
  6681. }, { "style": { "height": "36px" } }).form; //创建窗体
  6682. _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); } }
  6683. break;
  6684. case "aiagent": //ai agent
  6685. _formdiv = new U.UF.UI.form(
  6686. "AI Agent",
  6687. $$("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" }), {
  6688. "id": "AIAgent",
  6689. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6690. "onresize": function () { }
  6691. }, {
  6692. closecallback: function () { }
  6693. }, { "style": { "height": "36px" } }).form; //创建窗体
  6694. _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); } }
  6695. break;
  6696. case "dataBoard": //数据看板
  6697. _formdiv = new U.UF.UI.form(
  6698. "数据看板",
  6699. $$("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 }), {
  6700. "id": "dataBoard",
  6701. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6702. "onresize": function () { }
  6703. }, {
  6704. closecallback: function () { }
  6705. }, { "style": { "height": "36px" } }).form; //创建窗体
  6706. _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); } }
  6707. break;
  6708. case "dataBoardSies": //数据融合
  6709. _formdiv = new U.UF.UI.form(
  6710. "数据融合",
  6711. $$("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 }), {
  6712. "id": "dataBoardSies",
  6713. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6714. "onresize": function () { }
  6715. }, {
  6716. closecallback: function () { }
  6717. }, { "style": { "height": "36px" } }).form; //创建窗体
  6718. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6719. break;
  6720. case "dataBoardNew": //数据看板
  6721. _formdiv = new U.UF.UI.form(
  6722. "综合看板",
  6723. $$("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 }), {
  6724. "id": "dataBoardNew",
  6725. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6726. "onresize": function () { }
  6727. }, {
  6728. closecallback: function () { }
  6729. }, { "style": { "height": "36px" } }).form; //创建窗体
  6730. _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); } }
  6731. break;
  6732. case "dataBoardTest": //数据看板
  6733. _formdiv = new U.UF.UI.form(
  6734. "评测看板",
  6735. $$("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 }), {
  6736. "id": "dataBoardTest",
  6737. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6738. "onresize": function () { }
  6739. }, {
  6740. closecallback: function () { }
  6741. }, { "style": { "height": "36px" } }).form; //创建窗体
  6742. _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); } }
  6743. break;
  6744. case "AIAnalyse": //AI共创
  6745. _formdiv = new U.UF.UI.form(
  6746. "AI分析",
  6747. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6748. "id": "AIAnalyse",
  6749. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6750. "onresize": function () { }
  6751. }, {
  6752. closecallback: function () { }
  6753. }, { "style": { "height": "36px" } }).form; //创建窗体
  6754. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6755. break;
  6756. case "studioCourse": //AI共创
  6757. _formdiv = new U.UF.UI.form(
  6758. "工作管理",
  6759. $$("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 }), {
  6760. "id": "studioCourse",
  6761. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6762. "onresize": function () { }
  6763. }, {
  6764. closecallback: function () { }
  6765. }, { "style": { "height": "36px" } }).form; //创建窗体
  6766. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6767. break;
  6768. case "studioIndex": //AI共创
  6769. _formdiv = new U.UF.UI.form(
  6770. "工作中心",
  6771. $$("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 }), {
  6772. "id": "studioIndex",
  6773. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6774. "onresize": function () { }
  6775. }, {
  6776. closecallback: function () { }
  6777. }, { "style": { "height": "36px" } }).form; //创建窗体
  6778. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6779. break;
  6780. case "source":
  6781. _formdiv = new U.UF.UI.form(
  6782. "教学资源",
  6783. $$("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 }), {
  6784. "id": "source",
  6785. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6786. "onresize": function () { }
  6787. }, {
  6788. closecallback: function () { }
  6789. }, { "style": { "height": "36px" } }).form; //创建窗体
  6790. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6791. break;
  6792. case "testTeacher":
  6793. _formdiv = new U.UF.UI.form(
  6794. "智能表单",
  6795. $$("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 }), {
  6796. "id": "testTeacher",
  6797. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6798. "onresize": function () { }
  6799. }, {
  6800. closecallback: function () { }
  6801. }, { "style": { "height": "36px" } }).form; //创建窗体
  6802. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6803. break;
  6804. case "testStudent":
  6805. _formdiv = new U.UF.UI.form(
  6806. "教师中心",
  6807. $$("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 }), {
  6808. "id": "testStudent",
  6809. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6810. "onresize": function () { }
  6811. }, {
  6812. closecallback: function () { }
  6813. }, { "style": { "height": "36px" } }).form; //创建窗体
  6814. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6815. break;
  6816. case "testTeacherSies":
  6817. _formdiv = new U.UF.UI.form(
  6818. "教师管理",
  6819. $$("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 }), {
  6820. "id": "testTeacherSies",
  6821. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6822. "onresize": function () { }
  6823. }, {
  6824. closecallback: function () { }
  6825. }, { "style": { "height": "36px" } }).form; //创建窗体
  6826. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6827. break;
  6828. case "testStudentSies":
  6829. _formdiv = new U.UF.UI.form(
  6830. "教师中心",
  6831. $$("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 }), {
  6832. "id": "testStudentSies",
  6833. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6834. "onresize": function () { }
  6835. }, {
  6836. closecallback: function () { }
  6837. }, { "style": { "height": "36px" } }).form; //创建窗体
  6838. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6839. break;
  6840. case "ytpbl": //消息通知
  6841. _formdiv = new U.UF.UI.form(
  6842. "案例征集",
  6843. $$("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 }), {
  6844. "id": "ytpbl",
  6845. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6846. "onresize": function () { }
  6847. }, {
  6848. closecallback: function () { }
  6849. }, { "style": { "height": "36px" } }).form; //创建窗体
  6850. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6851. // 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");
  6852. break;
  6853. case "aiCourseResource": //人工智能窗体
  6854. _formdiv = new U.UF.UI.form(
  6855. false,
  6856. $$("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 }), {
  6857. "id": "aiCourseResource",
  6858. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6859. "onresize": function () { },
  6860. "isdrag": false,
  6861. }, {
  6862. closecallback: function () { }
  6863. }, { "style": { "height": "36px" } }).form; //创建窗体
  6864. _taskbar = ''
  6865. break;
  6866. case "szdjgCocooroboX": //图形化编程
  6867. _formdiv = new U.UF.UI.form(
  6868. "图形化编程",
  6869. $$("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" }), {
  6870. "id": "szdjgCocooroboX",
  6871. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6872. "onresize": function () { }
  6873. }, {
  6874. closecallback: function () { }
  6875. }, { "style": { "height": "36px" } }).form; //创建窗体
  6876. _taskbar = ''
  6877. break;
  6878. case "szdjgPython": //python编程
  6879. _formdiv = new U.UF.UI.form(
  6880. "Python编程",
  6881. $$("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" }), {
  6882. "id": "szdjgPython",
  6883. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6884. "onresize": function () { }
  6885. }, {
  6886. closecallback: function () { }
  6887. }, { "style": { "height": "36px" } }).form; //创建窗体
  6888. _taskbar = ''
  6889. break;
  6890. case "Record":
  6891. _formdiv = new U.UF.UI.form(
  6892. "观察记录",
  6893. $$("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 }), {
  6894. "id": "Record",
  6895. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6896. "onresize": function () { }
  6897. }, {
  6898. closecallback: function () { }
  6899. }, { "style": { "height": "36px" } }).form; //创建窗体
  6900. _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); } }
  6901. break;
  6902. case "aigptCourse":
  6903. _formdiv = new U.UF.UI.form(
  6904. "AI智能体",
  6905. $$("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' }), {
  6906. "id": "aigptCourse",
  6907. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6908. "onresize": function () { }
  6909. }, {
  6910. closecallback: function () { }
  6911. }, { "style": { "height": "36px" } }).form; //创建窗体
  6912. _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); } }
  6913. break;
  6914. case "classroomObservation":
  6915. _formdiv = new U.UF.UI.form(
  6916. "课堂观察",
  6917. $$("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 }), {
  6918. "id": "classroomObservation",
  6919. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6920. "onresize": function () { }
  6921. }, {
  6922. closecallback: function () { }
  6923. }, { "style": { "height": "36px" } }).form; //创建窗体
  6924. _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); } }
  6925. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6926. break;
  6927. case "pblCourse":
  6928. _formdiv = new U.UF.UI.form(
  6929. "学生PBL",
  6930. $$("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 }), {
  6931. "id": "pblCourse",
  6932. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6933. "onresize": function () { }
  6934. }, {
  6935. closecallback: function () { }
  6936. }, { "style": { "height": "36px" } }).form; //创建窗体
  6937. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6938. break;
  6939. case "appStore":
  6940. _formdiv = new U.UF.UI.form(
  6941. "CocoFlow",
  6942. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6943. "id": "appStore",
  6944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6945. "onresize": function () { }
  6946. }, {
  6947. closecallback: function () { }
  6948. }, { "style": { "height": "36px" } }).form; //创建窗体
  6949. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6950. break;
  6951. case "EDU":
  6952. _formdiv = new U.UF.UI.form(
  6953. "EDU",
  6954. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  6955. "id": "EDU",
  6956. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6957. "onresize": function () { }
  6958. }, {
  6959. closecallback: function () { }
  6960. }, { "style": { "height": "36px" } }).form; //创建窗体
  6961. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6962. break;
  6963. case "knowledge":
  6964. _formdiv = new U.UF.UI.form(
  6965. "知识库",
  6966. $$("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/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6967. "id": "knowledge",
  6968. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6969. "onresize": function () { }
  6970. }, {
  6971. closecallback: function () { }
  6972. }, { "style": { "height": "36px" } }).form; //创建窗体
  6973. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6974. break;
  6975. case "userExamine":
  6976. _formdiv = new U.UF.UI.form(
  6977. "账号申请",
  6978. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  6979. "id": "userExamine",
  6980. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  6981. "onresize": function () { }
  6982. }, {
  6983. closecallback: function () { }
  6984. }, { "style": { "height": "36px" } }).form; //创建窗体
  6985. break;
  6986. }
  6987. //U.MD.D.I.openClick(str);
  6988. //如果有任务栏信息
  6989. if (_taskbar) {
  6990. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6991. }
  6992. }
  6993. // U.MD.D.I.openClick = function(str){
  6994. // var click = '';
  6995. // switch(str){
  6996. // case 'friend':
  6997. // click = '我的好友';
  6998. // break;
  6999. // case 'domain':
  7000. // click = '域名管理';
  7001. // break;
  7002. // case 'disk':
  7003. // click = '我的云盘';
  7004. // break;
  7005. // case 'word':
  7006. // click = 'Word';
  7007. // break;
  7008. // case 'excel':
  7009. // click = 'Execl';
  7010. // break;
  7011. // case 'txt':
  7012. // click = '文本文件';
  7013. // break;
  7014. // case 'lookupFriend':
  7015. // click = '查找好友';
  7016. // break;
  7017. // case 'ftp':
  7018. // click = 'FTP';
  7019. // break;
  7020. // case 'group':
  7021. // click = '群组';
  7022. // break;
  7023. // case 'set':
  7024. // click = '我的设置';
  7025. // break;
  7026. // case 'systemSet':
  7027. // click = '系统设置';
  7028. // break;
  7029. // case 'boomYun':
  7030. // click = '互联办公';
  7031. // break;
  7032. // case 'xz':
  7033. // click = '云端下载';
  7034. // break;
  7035. // case 'client':
  7036. // click = '有思浏览器';
  7037. // break;
  7038. // case 'backEndProgramming':
  7039. // click = '在线后台编程';
  7040. // break;
  7041. // case 'frontEndProgramming':
  7042. // click = '在线前端编程';
  7043. // break;
  7044. // default: break;
  7045. // }
  7046. // if(U.MD.D.I.Ip && click){
  7047. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7048. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7049. // })
  7050. // }
  7051. // }
  7052. /**
  7053. *函数作用:ajax简易函数,使用post格式
  7054. *@param url {data} 后台地址
  7055. *@param data {data} 参数json
  7056. *@param fn {data} 回调函数
  7057. *
  7058. */
  7059. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7060. // var xhr = new XMLHttpRequest();
  7061. // xhr.open("GET",url,true);
  7062. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7063. // xhr.onreadystatechange = function(){
  7064. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7065. // fn.call(this,xhr.responseText);
  7066. // }
  7067. // };
  7068. // xhr.send();
  7069. // }
  7070. /*判断是否是内网IP*/
  7071. // U.MD.D.I.isInnerIPFn = function(str){
  7072. // var curPageUrl = str;
  7073. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7074. // curPageUrl =curPageUrl.replace(reg1,'');
  7075. // // console.log('curPageUrl-1 '+curPageUrl);
  7076. // var reg2 = /\:+/g;//替换冒号为一点
  7077. // curPageUrl =curPageUrl.replace(reg2,'.');
  7078. // // console.log('curPageUrl-2 '+curPageUrl);
  7079. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7080. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7081. // if(curPageUrl[2] != '16'){
  7082. // return ipAddress;
  7083. // }else{
  7084. // return false;
  7085. // }
  7086. // }
  7087. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7088. // //compatibility for firefox and chrome
  7089. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7090. // var pc = new myPeerConnection({
  7091. // iceServers: []
  7092. // }),
  7093. // noop = function() {},
  7094. // localIPs = {},
  7095. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7096. // key;
  7097. // function iterateIP(ip) {
  7098. // if (!localIPs[ip]) onNewIP(ip);
  7099. // localIPs[ip] = true;
  7100. // }
  7101. // //create a bogus data channel
  7102. // pc.createDataChannel("");
  7103. // // create offer and set local description
  7104. // pc.createOffer().then(function(sdp) {
  7105. // sdp.sdp.split('\n').forEach(function(line) {
  7106. // if (line.indexOf('candidate') < 0) return;
  7107. // line.match(ipRegex).forEach(iterateIP);
  7108. // });
  7109. // pc.setLocalDescription(sdp, noop, noop);
  7110. // }).catch(function(reason) {
  7111. // // An error occurred, so handle the failure to connect
  7112. // });
  7113. // //sten for candidate events
  7114. // pc.onicecandidate = function(ice) {
  7115. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7116. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7117. // };
  7118. // }
  7119. // U.MD.D.I.getUserIpBool = function(callback){
  7120. // U.MD.D.I.getUserIP(function(ip){
  7121. // alert("Got IP! :" + ip);
  7122. // });
  7123. //}
  7124. //#endregion
  7125. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7126. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7127. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7128. _userinfo = US.userInfo, //登录用户信息
  7129. _userid = US.userInfo.userid //登录用户id
  7130. let _iframe;
  7131. let _cid = cid,
  7132. _stage = stage,
  7133. _task = task,
  7134. _tool = tool;
  7135. var _jie = $$("div", {
  7136. "style": {
  7137. "position": "absolute",
  7138. "bottom": "50px",
  7139. "right": "50px",
  7140. "zIndex": "9999",
  7141. "backgroundColor": "#2268bc",
  7142. "color": "#fff",
  7143. "padding": "12px 20px",
  7144. "cursor": "pointer",
  7145. "borderRadius": "4px",
  7146. },
  7147. "innerHTML": "提交作业"
  7148. })
  7149. let aTool = ''
  7150. let _loading = document.createElement('div')
  7151. _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;"
  7152. // _loading.id = "";
  7153. let _lchild = document.createElement('div')
  7154. let _limg = document.createElement('img')
  7155. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7156. _limg.style = "width: 26px;margin-right: 10px;"
  7157. _lchild.appendChild(_limg)
  7158. let _lspan = document.createElement('span')
  7159. _lspan.innerHTML = "上传中..."
  7160. _lchild.appendChild(_lspan)
  7161. _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%);"
  7162. _loading.appendChild(_lchild)
  7163. var _box = $$('div', {
  7164. "style": {
  7165. "position": "relative",
  7166. "width": "100%",
  7167. "height": "100%",
  7168. },
  7169. })
  7170. _box.appendChild(_loading)
  7171. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7172. switch (str) {
  7173. case "whiteboard":
  7174. aTool = 1;
  7175. _iframe = $$("iframe", {
  7176. "frameborder": "no",
  7177. "border": "0",
  7178. "scrolling ": "no",
  7179. "style": {
  7180. "cssText": "border:0;width:100%;height:100%"
  7181. },
  7182. "src": "https://beta.iwb.cocorobo.cn/"
  7183. })
  7184. _box.appendChild(_iframe);
  7185. _box.appendChild(_jie);
  7186. _formdiv = new U.UF.UI.form(
  7187. "电子白板",
  7188. _box, {
  7189. "id": "whiteboard" + cid + stage + task + tool,
  7190. "style": {
  7191. "width": "90%",
  7192. "height": "90%",
  7193. "overflow": 'hidden'
  7194. },
  7195. "onresize": function () { }
  7196. }, {
  7197. closecallback: function () { }
  7198. }, {
  7199. "style": {
  7200. "height": "36px"
  7201. }
  7202. }).form; //创建窗体
  7203. _taskbar = {
  7204. "id": str + _formdiv.id,
  7205. "style": {
  7206. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7207. },
  7208. "name": "电子白板",
  7209. "forms": _formdiv,
  7210. "click": function () {
  7211. U.MD.D.I.openApplication(str, obj, info);
  7212. }
  7213. }
  7214. break;
  7215. case "mind":
  7216. aTool = 3;
  7217. _iframe = $$("iframe", {
  7218. "frameborder": "no",
  7219. "border": "0",
  7220. "scrolling ": "no",
  7221. "style": {
  7222. "cssText": "border:0;width:100%;height:100%"
  7223. },
  7224. "src": "/kityminder-editor/dist/index.html"
  7225. })
  7226. _box.appendChild(_iframe);
  7227. _box.appendChild(_jie);
  7228. _formdiv = new U.UF.UI.form(
  7229. "思维导图",
  7230. _box, { //"/jsmind/example/demo.html"
  7231. "id": "mind" + cid + stage + task + tool,
  7232. "style": {
  7233. "width": "90%",
  7234. "height": "90%",
  7235. "overflow": 'hidden'
  7236. },
  7237. "onresize": function () { }
  7238. }, {
  7239. closecallback: function () { }
  7240. }, {
  7241. "style": {
  7242. "height": "36px"
  7243. }
  7244. }).form; //创建窗体
  7245. _taskbar = {
  7246. "id": str + _formdiv.id,
  7247. "style": {
  7248. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7249. },
  7250. "name": "思维导图",
  7251. "forms": _formdiv,
  7252. "click": function () {
  7253. U.MD.D.I.openApplication(str, obj, info);
  7254. }
  7255. }
  7256. break;
  7257. case "MindMap":
  7258. aTool = 3;
  7259. _iframe = $$("iframe", {
  7260. "frameborder": "no",
  7261. "border": "0",
  7262. "scrolling ": "no",
  7263. "style": {
  7264. "cssText": "border:0;width:100%;height:100%"
  7265. },
  7266. "src": "//cloud.cocorobo.cn/mind/"
  7267. })
  7268. _box.appendChild(_iframe);
  7269. _box.appendChild(_jie);
  7270. _formdiv = new U.UF.UI.form(
  7271. "思维导图",
  7272. _box, { //"/jsmind/example/demo.html"
  7273. "id": "mind" + cid + stage + task + tool,
  7274. "style": {
  7275. "width": "90%",
  7276. "height": "90%",
  7277. "overflow": 'hidden'
  7278. },
  7279. "onresize": function () { }
  7280. }, {
  7281. closecallback: function () { }
  7282. }, {
  7283. "style": {
  7284. "height": "36px"
  7285. }
  7286. }).form; //创建窗体
  7287. _taskbar = {
  7288. "id": str + _formdiv.id,
  7289. "style": {
  7290. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7291. },
  7292. "name": "思维导图",
  7293. "forms": _formdiv,
  7294. "click": function () {
  7295. U.MD.D.I.openApplication(str, obj, info);
  7296. }
  7297. }
  7298. break;
  7299. case "doc":
  7300. aTool = 6;
  7301. _iframe = $$("iframe", {
  7302. "frameborder": "no",
  7303. "border": "0",
  7304. "scrolling ": "no",
  7305. "style": {
  7306. "cssText": "border:0;width:100%;height:100%"
  7307. },
  7308. "src": "/Office/Word/WordEditArea.htm"
  7309. })
  7310. _box.appendChild(_iframe);
  7311. _box.appendChild(_jie);
  7312. _formdiv = new U.UF.UI.form(
  7313. "协同文档",
  7314. _box, {
  7315. "id": "doc" + cid + stage + task + tool,
  7316. "style": {
  7317. "width": "90%",
  7318. "height": "90%",
  7319. "overflow": 'hidden'
  7320. },
  7321. "onresize": function () { }
  7322. }, {
  7323. closecallback: function () { }
  7324. }, {
  7325. "style": {
  7326. "height": "36px"
  7327. }
  7328. }).form; //创建窗体
  7329. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7330. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7331. })
  7332. _taskbar = {
  7333. "id": str + _formdiv.id,
  7334. "style": {
  7335. "backgroundImage": "url(/img/icon/doc.png)"
  7336. },
  7337. "name": "协同文档",
  7338. "forms": _formdiv,
  7339. "click": function () {
  7340. U.MD.D.I.openApplication(str, obj, info);
  7341. }
  7342. }
  7343. break;
  7344. case "mindNetwork": //好友打开
  7345. aTool = 7;
  7346. _iframe = $$("iframe", {
  7347. "webkitallowfullscreen": "",
  7348. "mozallowfullscreen": "",
  7349. "allowfullscreen": "",
  7350. "frameborder": "no",
  7351. "border": "0",
  7352. "scrolling ": "no",
  7353. "style": {
  7354. "cssText": "border:0; width:100%; height:100%;"
  7355. },
  7356. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7357. })
  7358. _box.appendChild(_iframe);
  7359. _box.appendChild(_jie);
  7360. _formdiv = new U.UF.UI.form(
  7361. "思维网格",
  7362. _box, {
  7363. "id": "mindNetwork" + cid + stage + task + tool,
  7364. "style": {
  7365. "width": "90%",
  7366. "height": "90%",
  7367. "overflow": 'hidden'
  7368. },
  7369. "onresize": function () { }
  7370. }, {
  7371. closecallback: function () { }
  7372. }, {
  7373. "style": {
  7374. "height": "36px"
  7375. }
  7376. }).form; //创建窗体
  7377. _taskbar = {
  7378. "id": str + _formdiv.id,
  7379. "style": {
  7380. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7381. },
  7382. "name": "思维网格",
  7383. "forms": _formdiv,
  7384. "click": function () {
  7385. U.MD.D.I.openApplication(str, obj, info);
  7386. }
  7387. }
  7388. break;
  7389. case "courseDesign":
  7390. _iframe = $$("iframe", {
  7391. "webkitallowfullscreen": "",
  7392. "mozallowfullscreen": "",
  7393. "allowfullscreen": "",
  7394. "frameborder": "no",
  7395. "border": "0",
  7396. "scrolling ": "no",
  7397. "style": {
  7398. "cssText": "border:0; width:100%; height:100%;"
  7399. },
  7400. "src": "/course-design-vue"
  7401. })
  7402. _box.appendChild(_iframe);
  7403. _box.appendChild(_jie);
  7404. _formdiv = new U.UF.UI.form(
  7405. "项目设计",
  7406. _box, {
  7407. "id": "courseDesign" + cid + stage + task + tool,
  7408. "style": {
  7409. "width": "90%",
  7410. "height": "90%",
  7411. "overflow": 'hidden'
  7412. },
  7413. "onresize": function () { }
  7414. }, {
  7415. closecallback: function () { }
  7416. }, {
  7417. "style": {
  7418. "height": "36px"
  7419. }
  7420. }).form; //创建窗体
  7421. _taskbar = {
  7422. "id": str + _formdiv.id,
  7423. "style": {
  7424. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7425. },
  7426. "name": "项目设计",
  7427. "forms": _formdiv,
  7428. "click": function () {
  7429. U.MD.D.I.openApplication(str, obj, info);
  7430. }
  7431. }
  7432. break;
  7433. }
  7434. const script1 = document.createElement("script");
  7435. script1.type = "text/javascript";
  7436. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7437. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7438. const script2 = document.createElement("script");
  7439. script2.type = "text/javascript";
  7440. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7441. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7442. const script3 = document.createElement("script");
  7443. script3.type = "text/javascript";
  7444. script3.charset = "UTF-8";
  7445. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7446. const script4 = document.createElement("script");
  7447. script4.type = "text/javascript";
  7448. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7449. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7450. if (_iframe) {
  7451. if (str == 'doc') {
  7452. _iframe = _formdiv.querySelector('iframe')
  7453. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7454. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7455. _iframe.contentWindow.document.body.appendChild(script1);
  7456. _iframe.contentWindow.document.body.appendChild(script2);
  7457. // _iframe.contentWindow.document.body.appendChild(script3);
  7458. _iframe.contentWindow.document.body.appendChild(script4);
  7459. })
  7460. if (onloadListener) {
  7461. _iframe.contentDocument.location.reload()
  7462. } else {
  7463. _iframe.contentDocument.location.reload()
  7464. }
  7465. } else if (str == 'courseDesign') {
  7466. U.UF.DL.iframeLoad(_iframe, function () {
  7467. // _iframe.contentWindow.U.MD.O.W.load();
  7468. // _iframe.contentWindow.document.body.appendChild(script1);
  7469. _iframe.contentWindow.document.body.appendChild(script2);
  7470. _iframe.contentWindow.document.body.appendChild(script4);
  7471. })
  7472. } else if (str == 'mind') {
  7473. _iframe = _formdiv.querySelector('iframe')
  7474. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7475. //
  7476. _iframe.contentWindow.document.body.appendChild(script1);
  7477. _iframe.contentWindow.document.body.appendChild(script2);
  7478. _iframe.contentWindow.document.body.appendChild(script4);
  7479. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7480. })
  7481. if (onloadListener) {
  7482. _iframe.contentDocument.location.reload()
  7483. } else {
  7484. _iframe.contentDocument.location.reload()
  7485. }
  7486. } else if (str == 'whiteboard') {
  7487. _iframe = _formdiv.querySelector('iframe')
  7488. let onloadListener = _iframe.onload = () => {
  7489. _iframe.contentWindow.document.body.appendChild(script1);
  7490. _iframe.contentWindow.document.body.appendChild(script2);
  7491. _iframe.contentWindow.document.body.appendChild(script4);
  7492. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7493. };
  7494. // if (onloadListener) {
  7495. // try {
  7496. // _iframe.src += "?cocorobo="+new Date().getTime()
  7497. // _iframe.contentWindow.document.location.reload()
  7498. // } catch (error) {
  7499. // }
  7500. // } else {
  7501. // _iframe.contentDocument.location.reload()
  7502. // }
  7503. } else {
  7504. _iframe.onload = () => {
  7505. _iframe.contentWindow.document.body.appendChild(script1);
  7506. _iframe.contentWindow.document.body.appendChild(script2);
  7507. // _iframe.contentWindow.document.body.appendChild(script3);
  7508. _iframe.contentWindow.document.body.appendChild(script4);
  7509. };
  7510. }
  7511. _jie.onclick = async () => {
  7512. let text = ''
  7513. if (aTool == 1) {
  7514. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7515. } else if (aTool == 6) {
  7516. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7517. } else if (aTool == 3) {
  7518. text = await U.MD.D.I.getEditorContent(_iframe);
  7519. }
  7520. _loading.style.display = 'flex'
  7521. console.log(_loading);
  7522. var _ajs = _iframe.contentWindow.document.createElement("script");
  7523. _ajs.type = "text/javascript";
  7524. _ajs.innerHTML =
  7525. // 'console.log(' + _loading + ');\n' +
  7526. 'var _js = document.createElement("script");\n' +
  7527. '_js.type="text/javascript";\n' +
  7528. '_js.charset="UTF-8";\n' +
  7529. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7530. "_js.onload = function(){\n" +
  7531. ' var a = document.getElementsByTagName("img")\n' +
  7532. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7533. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7534. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7535. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7536. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7537. "beforeUpload_shishi(file," +
  7538. "'" +
  7539. _userid +
  7540. "'" +
  7541. ", " +
  7542. "'" +
  7543. _cid +
  7544. "'" +
  7545. ", " +
  7546. "'" +
  7547. _stage +
  7548. "'" +
  7549. ", " +
  7550. "'" +
  7551. _task +
  7552. "'" +
  7553. ", " +
  7554. "'" +
  7555. _tool +
  7556. "'" +
  7557. ", " +
  7558. "'" +
  7559. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7560. "'" +
  7561. ", " +
  7562. "'" +
  7563. aTool +
  7564. "'" +
  7565. ", " +
  7566. "`" +
  7567. text +
  7568. "`" +
  7569. ")\n" +
  7570. " });\n" +
  7571. "}\n" +
  7572. "document.head.appendChild(_js);\n";
  7573. _iframe.contentWindow.document.head.appendChild(_ajs);
  7574. }
  7575. }
  7576. //U.MD.D.I.openClick(str);
  7577. //如果有任务栏信息
  7578. // if (_taskbar) {
  7579. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7580. // }
  7581. }
  7582. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7583. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7584. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7585. _userinfo = US.userInfo, //登录用户信息
  7586. _userid = US.userInfo.userid //登录用户id
  7587. let _iframe;
  7588. let _cid = cid,
  7589. _stage = stage,
  7590. _task = task,
  7591. _tool = tool;
  7592. var _jie = $$("div", {
  7593. "style": {
  7594. "position": "absolute",
  7595. "bottom": "50px",
  7596. "right": "50px",
  7597. "zIndex": "9999",
  7598. "backgroundColor": "#2268bc",
  7599. "color": "#fff",
  7600. "padding": "12px 20px",
  7601. "cursor": "pointer",
  7602. "borderRadius": "4px",
  7603. },
  7604. "innerHTML": "提交作业"
  7605. })
  7606. let aTool = ''
  7607. let _loading = document.createElement('div')
  7608. _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;"
  7609. // _loading.id = "";
  7610. let _lchild = document.createElement('div')
  7611. let _limg = document.createElement('img')
  7612. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7613. _limg.style = "width: 26px;margin-right: 10px;"
  7614. _lchild.appendChild(_limg)
  7615. let _lspan = document.createElement('span')
  7616. _lspan.innerHTML = "上传中..."
  7617. _lchild.appendChild(_lspan)
  7618. _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%);"
  7619. _loading.appendChild(_lchild)
  7620. let _box = $$('div', {
  7621. "style": {
  7622. "position": "relative",
  7623. "width": "100%",
  7624. "height": "100%",
  7625. },
  7626. })
  7627. _box.appendChild(_loading)
  7628. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7629. switch (str) {
  7630. case "whiteboard":
  7631. aTool = 1;
  7632. _iframe = $$("iframe", {
  7633. "frameborder": "no",
  7634. "border": "0",
  7635. "scrolling ": "no",
  7636. "style": {
  7637. "cssText": "border:0;width:100%;height:100%"
  7638. },
  7639. "src": "https://beta.iwb.cocorobo.cn/"
  7640. })
  7641. _box.appendChild(_iframe);
  7642. _box.appendChild(_jie);
  7643. _formdiv = new U.UF.UI.form(
  7644. "电子白板",
  7645. _box, {
  7646. "id": "whiteboard" + cid + stage + task + tool,
  7647. "style": {
  7648. "width": "90%",
  7649. "height": "90%",
  7650. "overflow": 'hidden'
  7651. },
  7652. "onresize": function () { }
  7653. }, {
  7654. closecallback: function () { }
  7655. }, {
  7656. "style": {
  7657. "height": "36px"
  7658. }
  7659. }).form; //创建窗体
  7660. _taskbar = {
  7661. "id": str + _formdiv.id,
  7662. "style": {
  7663. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7664. },
  7665. "name": "电子白板",
  7666. "forms": _formdiv,
  7667. "click": function () {
  7668. U.MD.D.I.openApplication(str, obj, info);
  7669. }
  7670. }
  7671. break;
  7672. case "mind":
  7673. aTool = 3;
  7674. _iframe = $$("iframe", {
  7675. "frameborder": "no",
  7676. "border": "0",
  7677. "scrolling ": "no",
  7678. "style": {
  7679. "cssText": "border:0;width:100%;height:100%"
  7680. },
  7681. "src": "/kityminder-editor/dist/index.html"
  7682. })
  7683. _box.appendChild(_iframe);
  7684. _box.appendChild(_jie);
  7685. _formdiv = new U.UF.UI.form(
  7686. "思维导图",
  7687. _box, { //"/jsmind/example/demo.html"
  7688. "id": "mind" + cid + stage + task + tool,
  7689. "style": {
  7690. "width": "90%",
  7691. "height": "90%",
  7692. "overflow": 'hidden'
  7693. },
  7694. "onresize": function () { }
  7695. }, {
  7696. closecallback: function () { }
  7697. }, {
  7698. "style": {
  7699. "height": "36px"
  7700. }
  7701. }).form; //创建窗体
  7702. _taskbar = {
  7703. "id": str + _formdiv.id,
  7704. "style": {
  7705. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7706. },
  7707. "name": "思维导图",
  7708. "forms": _formdiv,
  7709. "click": function () {
  7710. U.MD.D.I.openApplication(str, obj, info);
  7711. }
  7712. }
  7713. break;
  7714. case "MindMap":
  7715. aTool = 3;
  7716. _iframe = $$("iframe", {
  7717. "frameborder": "no",
  7718. "border": "0",
  7719. "scrolling ": "no",
  7720. "style": {
  7721. "cssText": "border:0;width:100%;height:100%"
  7722. },
  7723. "src": "//cloud.cocorobo.cn/mind/"
  7724. })
  7725. _box.appendChild(_iframe);
  7726. _box.appendChild(_jie);
  7727. _formdiv = new U.UF.UI.form(
  7728. "思维导图",
  7729. _box, { //"/jsmind/example/demo.html"
  7730. "id": "mind" + cid + stage + task + tool,
  7731. "style": {
  7732. "width": "90%",
  7733. "height": "90%",
  7734. "overflow": 'hidden'
  7735. },
  7736. "onresize": function () { }
  7737. }, {
  7738. closecallback: function () { }
  7739. }, {
  7740. "style": {
  7741. "height": "36px"
  7742. }
  7743. }).form; //创建窗体
  7744. _taskbar = {
  7745. "id": str + _formdiv.id,
  7746. "style": {
  7747. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7748. },
  7749. "name": "思维导图",
  7750. "forms": _formdiv,
  7751. "click": function () {
  7752. U.MD.D.I.openApplication(str, obj, info);
  7753. }
  7754. }
  7755. break;
  7756. case "doc":
  7757. aTool = 6;
  7758. _iframe = $$("iframe", {
  7759. "frameborder": "no",
  7760. "border": "0",
  7761. "scrolling ": "no",
  7762. "style": {
  7763. "cssText": "border:0;width:100%;height:100%"
  7764. },
  7765. "src": "/Office/Word/WordEditArea.htm"
  7766. })
  7767. _box.appendChild(_iframe);
  7768. _box.appendChild(_jie);
  7769. _formdiv = new U.UF.UI.form(
  7770. "协同文档",
  7771. _box, {
  7772. "id": "doc" + cid + stage + task + tool,
  7773. "style": {
  7774. "width": "90%",
  7775. "height": "90%",
  7776. "overflow": 'hidden'
  7777. },
  7778. "onresize": function () { }
  7779. }, {
  7780. closecallback: function () { }
  7781. }, {
  7782. "style": {
  7783. "height": "36px"
  7784. }
  7785. }).form; //创建窗体
  7786. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7787. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7788. })
  7789. _taskbar = {
  7790. "id": str + _formdiv.id,
  7791. "style": {
  7792. "backgroundImage": "url(/img/icon/doc.png)"
  7793. },
  7794. "name": "协同文档",
  7795. "forms": _formdiv,
  7796. "click": function () {
  7797. U.MD.D.I.openApplication(str, obj, info);
  7798. }
  7799. }
  7800. break;
  7801. case "mindNetwork": //好友打开
  7802. aTool = 7;
  7803. _iframe = $$("iframe", {
  7804. "webkitallowfullscreen": "",
  7805. "mozallowfullscreen": "",
  7806. "allowfullscreen": "",
  7807. "frameborder": "no",
  7808. "border": "0",
  7809. "scrolling ": "no",
  7810. "style": {
  7811. "cssText": "border:0; width:100%; height:100%;"
  7812. },
  7813. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7814. })
  7815. _box.appendChild(_iframe);
  7816. _box.appendChild(_jie);
  7817. _formdiv = new U.UF.UI.form(
  7818. "思维网格",
  7819. _box, {
  7820. "id": "mindNetwork" + cid + stage + task + tool,
  7821. "style": {
  7822. "width": "90%",
  7823. "height": "90%",
  7824. "overflow": 'hidden'
  7825. },
  7826. "onresize": function () { }
  7827. }, {
  7828. closecallback: function () { }
  7829. }, {
  7830. "style": {
  7831. "height": "36px"
  7832. }
  7833. }).form; //创建窗体
  7834. _taskbar = {
  7835. "id": str + _formdiv.id,
  7836. "style": {
  7837. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7838. },
  7839. "name": "思维网格",
  7840. "forms": _formdiv,
  7841. "click": function () {
  7842. U.MD.D.I.openApplication(str, obj, info);
  7843. }
  7844. }
  7845. break;
  7846. case "courseDesign":
  7847. _iframe = $$("iframe", {
  7848. "webkitallowfullscreen": "",
  7849. "mozallowfullscreen": "",
  7850. "allowfullscreen": "",
  7851. "frameborder": "no",
  7852. "border": "0",
  7853. "scrolling ": "no",
  7854. "style": {
  7855. "cssText": "border:0; width:100%; height:100%;"
  7856. },
  7857. "src": "/course-design-vue"
  7858. })
  7859. _box.appendChild(_iframe);
  7860. _box.appendChild(_jie);
  7861. _formdiv = new U.UF.UI.form(
  7862. "项目设计",
  7863. _box, {
  7864. "id": "courseDesign" + cid + stage + task + tool,
  7865. "style": {
  7866. "width": "90%",
  7867. "height": "90%",
  7868. "overflow": 'hidden'
  7869. },
  7870. "onresize": function () { }
  7871. }, {
  7872. closecallback: function () { }
  7873. }, {
  7874. "style": {
  7875. "height": "36px"
  7876. }
  7877. }).form; //创建窗体
  7878. _taskbar = {
  7879. "id": str + _formdiv.id,
  7880. "style": {
  7881. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7882. },
  7883. "name": "项目设计",
  7884. "forms": _formdiv,
  7885. "click": function () {
  7886. U.MD.D.I.openApplication(str, obj, info);
  7887. }
  7888. }
  7889. break;
  7890. }
  7891. const script1 = document.createElement("script");
  7892. script1.type = "text/javascript";
  7893. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7894. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7895. const script2 = document.createElement("script");
  7896. script2.type = "text/javascript";
  7897. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7898. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7899. const script3 = document.createElement("script");
  7900. script3.type = "text/javascript";
  7901. script3.charset = "UTF-8";
  7902. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7903. const script4 = document.createElement("script");
  7904. script4.type = "text/javascript";
  7905. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7906. script4.src = window.origin + "/js/Common/jietu2E.js";
  7907. if (_iframe) {
  7908. if (str == 'doc') {
  7909. _iframe = _formdiv.querySelector('iframe')
  7910. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7911. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7912. _iframe.contentWindow.document.body.appendChild(script1);
  7913. _iframe.contentWindow.document.body.appendChild(script2);
  7914. // _iframe.contentWindow.document.body.appendChild(script3);
  7915. _iframe.contentWindow.document.body.appendChild(script4);
  7916. })
  7917. if (onloadListener) {
  7918. _iframe.contentDocument.location.reload()
  7919. } else {
  7920. _iframe.contentDocument.location.reload()
  7921. }
  7922. } else if (str == 'courseDesign') {
  7923. U.UF.DL.iframeLoad(_iframe, function () {
  7924. // _iframe.contentWindow.U.MD.O.W.load();
  7925. // _iframe.contentWindow.document.body.appendChild(script1);
  7926. _iframe.contentWindow.document.body.appendChild(script2);
  7927. _iframe.contentWindow.document.body.appendChild(script4);
  7928. })
  7929. } else if (str == 'mind') {
  7930. _iframe = _formdiv.querySelector('iframe')
  7931. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7932. //
  7933. _iframe.contentWindow.document.body.appendChild(script1);
  7934. _iframe.contentWindow.document.body.appendChild(script2);
  7935. _iframe.contentWindow.document.body.appendChild(script4);
  7936. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7937. })
  7938. if (onloadListener) {
  7939. _iframe.contentDocument.location.reload()
  7940. } else {
  7941. _iframe.contentDocument.location.reload()
  7942. }
  7943. } else if (str == 'whiteboard') {
  7944. _iframe = _formdiv.querySelector('iframe')
  7945. let onloadListener = _iframe.onload = () => {
  7946. _iframe.contentWindow.document.body.appendChild(script1);
  7947. _iframe.contentWindow.document.body.appendChild(script2);
  7948. _iframe.contentWindow.document.body.appendChild(script4);
  7949. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7950. };
  7951. // if (onloadListener) {
  7952. // try {
  7953. // _iframe.src += "?cocorobo="+new Date().getTime()
  7954. // _iframe.contentWindow.document.location.reload()
  7955. // } catch (error) {
  7956. // }
  7957. // } else {
  7958. // _iframe.contentDocument.location.reload()
  7959. // }
  7960. } else {
  7961. _iframe.onload = () => {
  7962. _iframe.contentWindow.document.body.appendChild(script1);
  7963. _iframe.contentWindow.document.body.appendChild(script2);
  7964. // _iframe.contentWindow.document.body.appendChild(script3);
  7965. _iframe.contentWindow.document.body.appendChild(script4);
  7966. };
  7967. }
  7968. _jie.onclick = async () => {
  7969. let text = ''
  7970. if (aTool == 1) {
  7971. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7972. } else if (aTool == 6) {
  7973. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7974. } else if (aTool == 3) {
  7975. text = await U.MD.D.I.getEditorContent(_iframe);
  7976. }
  7977. _loading.style.display = 'flex'
  7978. console.log(_loading);
  7979. var _ajs = _iframe.contentWindow.document.createElement("script");
  7980. _ajs.type = "text/javascript";
  7981. _ajs.innerHTML =
  7982. // 'console.log(' + _loading + ');\n' +
  7983. 'var _js = document.createElement("script");\n' +
  7984. '_js.type="text/javascript";\n' +
  7985. '_js.charset="UTF-8";\n' +
  7986. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7987. "_js.onload = function(){\n" +
  7988. ' var a = document.getElementsByTagName("img")\n' +
  7989. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7990. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7991. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7992. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7993. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7994. "beforeUpload_shishi(file," +
  7995. "'" +
  7996. _userid +
  7997. "'" +
  7998. ", " +
  7999. "'" +
  8000. _cid +
  8001. "'" +
  8002. ", " +
  8003. "'" +
  8004. _stage +
  8005. "'" +
  8006. ", " +
  8007. "'" +
  8008. _task +
  8009. "'" +
  8010. ", " +
  8011. "'" +
  8012. _tool +
  8013. "'" +
  8014. ", " +
  8015. "'" +
  8016. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8017. "'" +
  8018. ", " +
  8019. "'" +
  8020. aTool +
  8021. "'" +
  8022. ", " +
  8023. "`" +
  8024. text +
  8025. "`" +
  8026. ")\n" +
  8027. " });\n" +
  8028. "}\n" +
  8029. "document.head.appendChild(_js);\n";
  8030. _iframe.contentWindow.document.head.appendChild(_ajs);
  8031. }
  8032. }
  8033. //U.MD.D.I.openClick(str);
  8034. //如果有任务栏信息
  8035. // if (_taskbar) {
  8036. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8037. // }
  8038. }
  8039. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8040. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8041. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8042. _userid = student.userid, //登录用户id
  8043. _username = student.student //用户名字
  8044. let _iframe;
  8045. let _cid = cid,
  8046. _stage = stage,
  8047. _task = task,
  8048. _tool = tool;
  8049. var _jie = $$("div", {
  8050. "style": {
  8051. "position": "absolute",
  8052. "bottom": "50px",
  8053. "right": "50px",
  8054. "zIndex": "9999",
  8055. "backgroundColor": "#2268bc",
  8056. "color": "#fff",
  8057. "padding": "12px 20px",
  8058. "cursor": "pointer",
  8059. "borderRadius": "4px",
  8060. },
  8061. "innerHTML": "提交作业"
  8062. })
  8063. let aTool = ''
  8064. let _loading = document.createElement('div')
  8065. _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;"
  8066. // _loading.id = "";
  8067. let _lchild = document.createElement('div')
  8068. let _limg = document.createElement('img')
  8069. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8070. _limg.style = "width: 26px;margin-right: 10px;"
  8071. _lchild.appendChild(_limg)
  8072. let _lspan = document.createElement('span')
  8073. _lspan.innerHTML = "上传中..."
  8074. _lchild.appendChild(_lspan)
  8075. _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%);"
  8076. _loading.appendChild(_lchild)
  8077. var _box = $$('div', {
  8078. "style": {
  8079. "position": "relative",
  8080. "width": "100%",
  8081. "height": "100%",
  8082. },
  8083. })
  8084. _box.appendChild(_loading)
  8085. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8086. switch (str) {
  8087. case "whiteboard":
  8088. aTool = 1;
  8089. _iframe = $$("iframe", {
  8090. "frameborder": "no",
  8091. "border": "0",
  8092. "scrolling ": "no",
  8093. "style": {
  8094. "cssText": "border:0;width:100%;height:100%"
  8095. },
  8096. "src": "https://beta.iwb.cocorobo.cn/"
  8097. })
  8098. _box.appendChild(_iframe);
  8099. _box.appendChild(_jie);
  8100. _formdiv = new U.UF.UI.form(
  8101. "电子白板-" + _username,
  8102. _box, {
  8103. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8104. "style": {
  8105. "width": "90%",
  8106. "height": "90%",
  8107. "overflow": 'hidden'
  8108. },
  8109. "onresize": function () { }
  8110. }, {
  8111. closecallback: function () { }
  8112. }, {
  8113. "style": {
  8114. "height": "36px"
  8115. }
  8116. }).form; //创建窗体
  8117. _taskbar = {
  8118. "id": str + _formdiv.id,
  8119. "style": {
  8120. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8121. },
  8122. "name": "电子白板",
  8123. "forms": _formdiv,
  8124. "click": function () {
  8125. U.MD.D.I.openApplication(str, obj, info);
  8126. }
  8127. }
  8128. break;
  8129. case "mind":
  8130. aTool = 3;
  8131. _iframe = $$("iframe", {
  8132. "frameborder": "no",
  8133. "border": "0",
  8134. "scrolling ": "no",
  8135. "style": {
  8136. "cssText": "border:0;width:100%;height:100%"
  8137. },
  8138. "src": "/kityminder-editor/dist/index.html"
  8139. })
  8140. _box.appendChild(_iframe);
  8141. _box.appendChild(_jie);
  8142. _formdiv = new U.UF.UI.form(
  8143. "思维导图-" + _username,
  8144. _box, { //"/jsmind/example/demo.html"
  8145. "id": "mind" + cid + stage + task + tool + _userid,
  8146. "style": {
  8147. "width": "90%",
  8148. "height": "90%",
  8149. "overflow": 'hidden'
  8150. },
  8151. "onresize": function () { }
  8152. }, {
  8153. closecallback: function () { }
  8154. }, {
  8155. "style": {
  8156. "height": "36px"
  8157. }
  8158. }).form; //创建窗体
  8159. _taskbar = {
  8160. "id": str + _formdiv.id,
  8161. "style": {
  8162. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8163. },
  8164. "name": "思维导图",
  8165. "forms": _formdiv,
  8166. "click": function () {
  8167. U.MD.D.I.openApplication(str, obj, info);
  8168. }
  8169. }
  8170. break;
  8171. case "MindMap":
  8172. aTool = 3;
  8173. _iframe = $$("iframe", {
  8174. "frameborder": "no",
  8175. "border": "0",
  8176. "scrolling ": "no",
  8177. "style": {
  8178. "cssText": "border:0;width:100%;height:100%"
  8179. },
  8180. "src": "//cloud.cocorobo.cn/mind/"
  8181. })
  8182. _box.appendChild(_iframe);
  8183. _box.appendChild(_jie);
  8184. _formdiv = new U.UF.UI.form(
  8185. "思维导图-" + _username,
  8186. _box, { //"/jsmind/example/demo.html"
  8187. "id": "mind" + cid + stage + task + tool + _userid,
  8188. "style": {
  8189. "width": "90%",
  8190. "height": "90%",
  8191. "overflow": 'hidden'
  8192. },
  8193. "onresize": function () { }
  8194. }, {
  8195. closecallback: function () { }
  8196. }, {
  8197. "style": {
  8198. "height": "36px"
  8199. }
  8200. }).form; //创建窗体
  8201. _taskbar = {
  8202. "id": str + _formdiv.id,
  8203. "style": {
  8204. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8205. },
  8206. "name": "思维导图",
  8207. "forms": _formdiv,
  8208. "click": function () {
  8209. U.MD.D.I.openApplication(str, obj, info);
  8210. }
  8211. }
  8212. break;
  8213. case "doc":
  8214. aTool = 6;
  8215. _iframe = $$("iframe", {
  8216. "frameborder": "no",
  8217. "border": "0",
  8218. "scrolling ": "no",
  8219. "style": {
  8220. "cssText": "border:0;width:100%;height:100%"
  8221. },
  8222. "src": "/Office/Word/WordEditArea.htm"
  8223. })
  8224. _box.appendChild(_iframe);
  8225. _box.appendChild(_jie);
  8226. _formdiv = new U.UF.UI.form(
  8227. "协同文档-" + _username,
  8228. _box, {
  8229. "id": "doc" + cid + stage + task + tool + _userid,
  8230. "style": {
  8231. "width": "90%",
  8232. "height": "90%",
  8233. "overflow": 'hidden'
  8234. },
  8235. "onresize": function () { }
  8236. }, {
  8237. closecallback: function () { }
  8238. }, {
  8239. "style": {
  8240. "height": "36px"
  8241. }
  8242. }).form; //创建窗体
  8243. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8244. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8245. })
  8246. _taskbar = {
  8247. "id": str + _formdiv.id,
  8248. "style": {
  8249. "backgroundImage": "url(/img/icon/doc.png)"
  8250. },
  8251. "name": "协同文档",
  8252. "forms": _formdiv,
  8253. "click": function () {
  8254. U.MD.D.I.openApplication(str, obj, info);
  8255. }
  8256. }
  8257. break;
  8258. case "mindNetwork": //好友打开
  8259. aTool = 7;
  8260. _iframe = $$("iframe", {
  8261. "webkitallowfullscreen": "",
  8262. "mozallowfullscreen": "",
  8263. "allowfullscreen": "",
  8264. "frameborder": "no",
  8265. "border": "0",
  8266. "scrolling ": "no",
  8267. "style": {
  8268. "cssText": "border:0; width:100%; height:100%;"
  8269. },
  8270. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8271. })
  8272. _box.appendChild(_iframe);
  8273. _box.appendChild(_jie);
  8274. _formdiv = new U.UF.UI.form(
  8275. "思维网格-" + _username,
  8276. _box, {
  8277. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8278. "style": {
  8279. "width": "90%",
  8280. "height": "90%",
  8281. "overflow": 'hidden'
  8282. },
  8283. "onresize": function () { }
  8284. }, {
  8285. closecallback: function () { }
  8286. }, {
  8287. "style": {
  8288. "height": "36px"
  8289. }
  8290. }).form; //创建窗体
  8291. _taskbar = {
  8292. "id": str + _formdiv.id,
  8293. "style": {
  8294. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8295. },
  8296. "name": "思维网格",
  8297. "forms": _formdiv,
  8298. "click": function () {
  8299. U.MD.D.I.openApplication(str, obj, info);
  8300. }
  8301. }
  8302. break;
  8303. case "courseDesign":
  8304. _iframe = $$("iframe", {
  8305. "webkitallowfullscreen": "",
  8306. "mozallowfullscreen": "",
  8307. "allowfullscreen": "",
  8308. "frameborder": "no",
  8309. "border": "0",
  8310. "scrolling ": "no",
  8311. "style": {
  8312. "cssText": "border:0; width:100%; height:100%;"
  8313. },
  8314. "src": "/course-design-vue"
  8315. })
  8316. _box.appendChild(_iframe);
  8317. _box.appendChild(_jie);
  8318. _formdiv = new U.UF.UI.form(
  8319. "项目设计-" + _username,
  8320. _box, {
  8321. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8322. "style": {
  8323. "width": "90%",
  8324. "height": "90%",
  8325. "overflow": 'hidden'
  8326. },
  8327. "onresize": function () { }
  8328. }, {
  8329. closecallback: function () { }
  8330. }, {
  8331. "style": {
  8332. "height": "36px"
  8333. }
  8334. }).form; //创建窗体
  8335. _taskbar = {
  8336. "id": str + _formdiv.id,
  8337. "style": {
  8338. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8339. },
  8340. "name": "项目设计",
  8341. "forms": _formdiv,
  8342. "click": function () {
  8343. U.MD.D.I.openApplication(str, obj, info);
  8344. }
  8345. }
  8346. break;
  8347. }
  8348. const script1 = document.createElement("script");
  8349. script1.type = "text/javascript";
  8350. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8351. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8352. const script2 = document.createElement("script");
  8353. script2.type = "text/javascript";
  8354. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8355. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8356. const script3 = document.createElement("script");
  8357. script3.type = "text/javascript";
  8358. script3.charset = "UTF-8";
  8359. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8360. const script4 = document.createElement("script");
  8361. script4.type = "text/javascript";
  8362. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8363. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8364. if (_iframe) {
  8365. if (str == 'doc') {
  8366. _iframe = _formdiv.querySelector('iframe')
  8367. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8368. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8369. _iframe.contentWindow.document.body.appendChild(script1);
  8370. _iframe.contentWindow.document.body.appendChild(script2);
  8371. // _iframe.contentWindow.document.body.appendChild(script3);
  8372. _iframe.contentWindow.document.body.appendChild(script4);
  8373. })
  8374. if (onloadListener) {
  8375. _iframe.contentDocument.location.reload()
  8376. } else {
  8377. _iframe.contentDocument.location.reload()
  8378. }
  8379. } else if (str == 'courseDesign') {
  8380. U.UF.DL.iframeLoad(_iframe, function () {
  8381. // _iframe.contentWindow.U.MD.O.W.load();
  8382. // _iframe.contentWindow.document.body.appendChild(script1);
  8383. _iframe.contentWindow.document.body.appendChild(script2);
  8384. _iframe.contentWindow.document.body.appendChild(script4);
  8385. })
  8386. } else if (str == 'mind') {
  8387. _iframe = _formdiv.querySelector('iframe')
  8388. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8389. //
  8390. _iframe.contentWindow.document.body.appendChild(script1);
  8391. _iframe.contentWindow.document.body.appendChild(script2);
  8392. _iframe.contentWindow.document.body.appendChild(script4);
  8393. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8394. })
  8395. if (onloadListener) {
  8396. _iframe.contentDocument.location.reload()
  8397. } else {
  8398. _iframe.contentDocument.location.reload()
  8399. }
  8400. } else if (str == 'whiteboard') {
  8401. _iframe = _formdiv.querySelector('iframe')
  8402. let onloadListener = _iframe.onload = () => {
  8403. _iframe.contentWindow.document.body.appendChild(script1);
  8404. _iframe.contentWindow.document.body.appendChild(script2);
  8405. _iframe.contentWindow.document.body.appendChild(script4);
  8406. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8407. };
  8408. // if (onloadListener) {
  8409. // try {
  8410. // _iframe.src += "?cocorobo="+new Date().getTime()
  8411. // _iframe.contentWindow.document.location.reload()
  8412. // } catch (error) {
  8413. // }
  8414. // } else {
  8415. // _iframe.contentDocument.location.reload()
  8416. // }
  8417. } else {
  8418. _iframe.onload = () => {
  8419. _iframe.contentWindow.document.body.appendChild(script1);
  8420. _iframe.contentWindow.document.body.appendChild(script2);
  8421. // _iframe.contentWindow.document.body.appendChild(script3);
  8422. _iframe.contentWindow.document.body.appendChild(script4);
  8423. };
  8424. }
  8425. _jie.onclick = async () => {
  8426. let text = ''
  8427. if (aTool == 1) {
  8428. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8429. } else if (aTool == 6) {
  8430. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8431. } else if (aTool == 3) {
  8432. text = await U.MD.D.I.getEditorContent(_iframe);
  8433. }
  8434. _loading.style.display = 'flex'
  8435. console.log(_loading);
  8436. var _ajs = _iframe.contentWindow.document.createElement("script");
  8437. _ajs.type = "text/javascript";
  8438. _ajs.innerHTML =
  8439. // 'console.log(' + _loading + ');\n' +
  8440. 'var _js = document.createElement("script");\n' +
  8441. '_js.type="text/javascript";\n' +
  8442. '_js.charset="UTF-8";\n' +
  8443. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8444. "_js.onload = function(){\n" +
  8445. ' var a = document.getElementsByTagName("img")\n' +
  8446. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8447. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8448. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8449. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8450. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8451. "beforeUpload_shishi(file," +
  8452. "'" +
  8453. _userid +
  8454. "'" +
  8455. ", " +
  8456. "'" +
  8457. _cid +
  8458. "'" +
  8459. ", " +
  8460. "'" +
  8461. _stage +
  8462. "'" +
  8463. ", " +
  8464. "'" +
  8465. _task +
  8466. "'" +
  8467. ", " +
  8468. "'" +
  8469. _tool +
  8470. "'" +
  8471. ", " +
  8472. "'" +
  8473. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8474. "'" +
  8475. ", " +
  8476. "'" +
  8477. aTool +
  8478. "'" +
  8479. ", " +
  8480. "`" +
  8481. text +
  8482. "`" +
  8483. ")\n" +
  8484. " });\n" +
  8485. "}\n" +
  8486. "document.head.appendChild(_js);\n";
  8487. _iframe.contentWindow.document.head.appendChild(_ajs);
  8488. }
  8489. }
  8490. }
  8491. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8492. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8493. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8494. _userid = student.userid, //登录用户id
  8495. _username = student.student //用户名字
  8496. let _iframe;
  8497. let _cid = cid,
  8498. _stage = stage,
  8499. _task = task,
  8500. _tool = tool;
  8501. var _jie = $$("div", {
  8502. "style": {
  8503. "position": "absolute",
  8504. "bottom": "50px",
  8505. "right": "50px",
  8506. "zIndex": "9999",
  8507. "backgroundColor": "#2268bc",
  8508. "color": "#fff",
  8509. "padding": "12px 20px",
  8510. "cursor": "pointer",
  8511. "borderRadius": "4px",
  8512. },
  8513. "innerHTML": "提交作业"
  8514. })
  8515. let aTool = ''
  8516. let _loading = document.createElement('div')
  8517. _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;"
  8518. // _loading.id = "";
  8519. let _lchild = document.createElement('div')
  8520. let _limg = document.createElement('img')
  8521. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8522. _limg.style = "width: 26px;margin-right: 10px;"
  8523. _lchild.appendChild(_limg)
  8524. let _lspan = document.createElement('span')
  8525. _lspan.innerHTML = "上传中..."
  8526. _lchild.appendChild(_lspan)
  8527. _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%);"
  8528. _loading.appendChild(_lchild)
  8529. var _box = $$('div', {
  8530. "style": {
  8531. "position": "relative",
  8532. "width": "100%",
  8533. "height": "100%",
  8534. },
  8535. })
  8536. _box.appendChild(_loading)
  8537. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8538. switch (str) {
  8539. case "whiteboard":
  8540. aTool = 1;
  8541. _iframe = $$("iframe", {
  8542. "frameborder": "no",
  8543. "border": "0",
  8544. "scrolling ": "no",
  8545. "style": {
  8546. "cssText": "border:0;width:100%;height:100%"
  8547. },
  8548. "src": "https://beta.iwb.cocorobo.cn/"
  8549. })
  8550. _box.appendChild(_iframe);
  8551. _box.appendChild(_jie);
  8552. _formdiv = new U.UF.UI.form(
  8553. "电子白板-" + _username,
  8554. _box, {
  8555. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8556. "style": {
  8557. "width": "90%",
  8558. "height": "90%",
  8559. "overflow": 'hidden'
  8560. },
  8561. "onresize": function () { }
  8562. }, {
  8563. closecallback: function () { }
  8564. }, {
  8565. "style": {
  8566. "height": "36px"
  8567. }
  8568. }).form; //创建窗体
  8569. _taskbar = {
  8570. "id": str + _formdiv.id,
  8571. "style": {
  8572. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8573. },
  8574. "name": "电子白板",
  8575. "forms": _formdiv,
  8576. "click": function () {
  8577. U.MD.D.I.openApplication(str, obj, info);
  8578. }
  8579. }
  8580. break;
  8581. case "mind":
  8582. aTool = 3;
  8583. _iframe = $$("iframe", {
  8584. "frameborder": "no",
  8585. "border": "0",
  8586. "scrolling ": "no",
  8587. "style": {
  8588. "cssText": "border:0;width:100%;height:100%"
  8589. },
  8590. "src": "/kityminder-editor/dist/index.html"
  8591. })
  8592. _box.appendChild(_iframe);
  8593. _box.appendChild(_jie);
  8594. _formdiv = new U.UF.UI.form(
  8595. "思维导图-" + _username,
  8596. _box, { //"/jsmind/example/demo.html"
  8597. "id": "mind" + cid + stage + task + tool + _userid,
  8598. "style": {
  8599. "width": "90%",
  8600. "height": "90%",
  8601. "overflow": 'hidden'
  8602. },
  8603. "onresize": function () { }
  8604. }, {
  8605. closecallback: function () { }
  8606. }, {
  8607. "style": {
  8608. "height": "36px"
  8609. }
  8610. }).form; //创建窗体
  8611. _taskbar = {
  8612. "id": str + _formdiv.id,
  8613. "style": {
  8614. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8615. },
  8616. "name": "思维导图",
  8617. "forms": _formdiv,
  8618. "click": function () {
  8619. U.MD.D.I.openApplication(str, obj, info);
  8620. }
  8621. }
  8622. break;
  8623. case "MindMap":
  8624. aTool = 3;
  8625. _iframe = $$("iframe", {
  8626. "frameborder": "no",
  8627. "border": "0",
  8628. "scrolling ": "no",
  8629. "style": {
  8630. "cssText": "border:0;width:100%;height:100%"
  8631. },
  8632. "src": "//cloud.cocorobo.cn/mind/"
  8633. })
  8634. _box.appendChild(_iframe);
  8635. _box.appendChild(_jie);
  8636. _formdiv = new U.UF.UI.form(
  8637. "思维导图-" + _username,
  8638. _box, { //"/jsmind/example/demo.html"
  8639. "id": "mind" + cid + stage + task + tool + _userid,
  8640. "style": {
  8641. "width": "90%",
  8642. "height": "90%",
  8643. "overflow": 'hidden'
  8644. },
  8645. "onresize": function () { }
  8646. }, {
  8647. closecallback: function () { }
  8648. }, {
  8649. "style": {
  8650. "height": "36px"
  8651. }
  8652. }).form; //创建窗体
  8653. _taskbar = {
  8654. "id": str + _formdiv.id,
  8655. "style": {
  8656. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8657. },
  8658. "name": "思维导图",
  8659. "forms": _formdiv,
  8660. "click": function () {
  8661. U.MD.D.I.openApplication(str, obj, info);
  8662. }
  8663. }
  8664. break;
  8665. case "doc":
  8666. aTool = 6;
  8667. _iframe = $$("iframe", {
  8668. "frameborder": "no",
  8669. "border": "0",
  8670. "scrolling ": "no",
  8671. "style": {
  8672. "cssText": "border:0;width:100%;height:100%"
  8673. },
  8674. "src": "/Office/Word/WordEditArea.htm"
  8675. })
  8676. _box.appendChild(_iframe);
  8677. _box.appendChild(_jie);
  8678. _formdiv = new U.UF.UI.form(
  8679. "协同文档-" + _username,
  8680. _box, {
  8681. "id": "doc" + cid + stage + task + tool + _userid,
  8682. "style": {
  8683. "width": "90%",
  8684. "height": "90%",
  8685. "overflow": 'hidden'
  8686. },
  8687. "onresize": function () { }
  8688. }, {
  8689. closecallback: function () { }
  8690. }, {
  8691. "style": {
  8692. "height": "36px"
  8693. }
  8694. }).form; //创建窗体
  8695. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8696. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8697. })
  8698. _taskbar = {
  8699. "id": str + _formdiv.id,
  8700. "style": {
  8701. "backgroundImage": "url(/img/icon/doc.png)"
  8702. },
  8703. "name": "协同文档",
  8704. "forms": _formdiv,
  8705. "click": function () {
  8706. U.MD.D.I.openApplication(str, obj, info);
  8707. }
  8708. }
  8709. break;
  8710. case "mindNetwork": //好友打开
  8711. aTool = 7;
  8712. _iframe = $$("iframe", {
  8713. "webkitallowfullscreen": "",
  8714. "mozallowfullscreen": "",
  8715. "allowfullscreen": "",
  8716. "frameborder": "no",
  8717. "border": "0",
  8718. "scrolling ": "no",
  8719. "style": {
  8720. "cssText": "border:0; width:100%; height:100%;"
  8721. },
  8722. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8723. })
  8724. _box.appendChild(_iframe);
  8725. _box.appendChild(_jie);
  8726. _formdiv = new U.UF.UI.form(
  8727. "思维网格-" + _username,
  8728. _box, {
  8729. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8730. "style": {
  8731. "width": "90%",
  8732. "height": "90%",
  8733. "overflow": 'hidden'
  8734. },
  8735. "onresize": function () { }
  8736. }, {
  8737. closecallback: function () { }
  8738. }, {
  8739. "style": {
  8740. "height": "36px"
  8741. }
  8742. }).form; //创建窗体
  8743. _taskbar = {
  8744. "id": str + _formdiv.id,
  8745. "style": {
  8746. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8747. },
  8748. "name": "思维网格",
  8749. "forms": _formdiv,
  8750. "click": function () {
  8751. U.MD.D.I.openApplication(str, obj, info);
  8752. }
  8753. }
  8754. break;
  8755. case "courseDesign":
  8756. _iframe = $$("iframe", {
  8757. "webkitallowfullscreen": "",
  8758. "mozallowfullscreen": "",
  8759. "allowfullscreen": "",
  8760. "frameborder": "no",
  8761. "border": "0",
  8762. "scrolling ": "no",
  8763. "style": {
  8764. "cssText": "border:0; width:100%; height:100%;"
  8765. },
  8766. "src": "/course-design-vue"
  8767. })
  8768. _box.appendChild(_iframe);
  8769. _box.appendChild(_jie);
  8770. _formdiv = new U.UF.UI.form(
  8771. "项目设计-" + _username,
  8772. _box, {
  8773. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8774. "style": {
  8775. "width": "90%",
  8776. "height": "90%",
  8777. "overflow": 'hidden'
  8778. },
  8779. "onresize": function () { }
  8780. }, {
  8781. closecallback: function () { }
  8782. }, {
  8783. "style": {
  8784. "height": "36px"
  8785. }
  8786. }).form; //创建窗体
  8787. _taskbar = {
  8788. "id": str + _formdiv.id,
  8789. "style": {
  8790. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8791. },
  8792. "name": "项目设计",
  8793. "forms": _formdiv,
  8794. "click": function () {
  8795. U.MD.D.I.openApplication(str, obj, info);
  8796. }
  8797. }
  8798. break;
  8799. }
  8800. const script1 = document.createElement("script");
  8801. script1.type = "text/javascript";
  8802. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8803. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8804. const script2 = document.createElement("script");
  8805. script2.type = "text/javascript";
  8806. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8807. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8808. const script3 = document.createElement("script");
  8809. script3.type = "text/javascript";
  8810. script3.charset = "UTF-8";
  8811. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8812. const script4 = document.createElement("script");
  8813. script4.type = "text/javascript";
  8814. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8815. script4.src = window.origin + "/js/Common/jietu2E.js";
  8816. if (_iframe) {
  8817. if (str == 'doc') {
  8818. _iframe = _formdiv.querySelector('iframe')
  8819. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8820. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8821. _iframe.contentWindow.document.body.appendChild(script1);
  8822. _iframe.contentWindow.document.body.appendChild(script2);
  8823. // _iframe.contentWindow.document.body.appendChild(script3);
  8824. _iframe.contentWindow.document.body.appendChild(script4);
  8825. })
  8826. if (onloadListener) {
  8827. _iframe.contentDocument.location.reload()
  8828. } else {
  8829. _iframe.contentDocument.location.reload()
  8830. }
  8831. } else if (str == 'courseDesign') {
  8832. U.UF.DL.iframeLoad(_iframe, function () {
  8833. // _iframe.contentWindow.U.MD.O.W.load();
  8834. // _iframe.contentWindow.document.body.appendChild(script1);
  8835. _iframe.contentWindow.document.body.appendChild(script2);
  8836. _iframe.contentWindow.document.body.appendChild(script4);
  8837. })
  8838. } else if (str == 'mind') {
  8839. _iframe = _formdiv.querySelector('iframe')
  8840. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8841. //
  8842. _iframe.contentWindow.document.body.appendChild(script1);
  8843. _iframe.contentWindow.document.body.appendChild(script2);
  8844. _iframe.contentWindow.document.body.appendChild(script4);
  8845. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8846. })
  8847. if (onloadListener) {
  8848. _iframe.contentDocument.location.reload()
  8849. } else {
  8850. _iframe.contentDocument.location.reload()
  8851. }
  8852. } else if (str == 'whiteboard') {
  8853. _iframe = _formdiv.querySelector('iframe')
  8854. let onloadListener = _iframe.onload = () => {
  8855. _iframe.contentWindow.document.body.appendChild(script1);
  8856. _iframe.contentWindow.document.body.appendChild(script2);
  8857. _iframe.contentWindow.document.body.appendChild(script4);
  8858. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8859. };
  8860. // if (onloadListener) {
  8861. // try {
  8862. // _iframe.src += "?cocorobo="+new Date().getTime()
  8863. // _iframe.contentWindow.document.location.reload()
  8864. // } catch (error) {
  8865. // }
  8866. // } else {
  8867. // _iframe.contentDocument.location.reload()
  8868. // }
  8869. } else {
  8870. _iframe.onload = () => {
  8871. _iframe.contentWindow.document.body.appendChild(script1);
  8872. _iframe.contentWindow.document.body.appendChild(script2);
  8873. // _iframe.contentWindow.document.body.appendChild(script3);
  8874. _iframe.contentWindow.document.body.appendChild(script4);
  8875. };
  8876. }
  8877. _jie.onclick = async () => {
  8878. let text = ''
  8879. if (aTool == 1) {
  8880. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8881. } else 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_JieTeacherE' + 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. }
  8943. U.MD.D.I.getEditorContent = function (iframe) {
  8944. return new Promise((resolve, reject) => {
  8945. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8946. console.log(content);
  8947. resolve(content)
  8948. });
  8949. });
  8950. }
  8951. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8952. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8953. // if (res.value[0].length > 0) {
  8954. // // resolve(res.value[0][0].text);
  8955. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8956. // $(fileInput).val('');
  8957. // });
  8958. // }
  8959. // }, [], { "type": "GET", "withCredentials": true });
  8960. var xmlhttp;
  8961. var Mac, Sn, DeviceId
  8962. if (window.XMLHttpRequest) {
  8963. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8964. xmlhttp = new XMLHttpRequest();
  8965. } else {
  8966. // IE6, IE5 浏览器执行代码
  8967. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8968. }
  8969. xmlhttp.onreadystatechange = function () {
  8970. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8971. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8972. // resolve(res.value[0][0].text);
  8973. if (type == '2') {
  8974. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8975. } else if (type == '3') {
  8976. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8977. }
  8978. } else {
  8979. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8980. }
  8981. }
  8982. }
  8983. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8984. xmlhttp.send();
  8985. }
  8986. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8987. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8988. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8989. _userinfo = US.userInfo, //登录用户信息
  8990. _userid = US.userInfo.userid //登录用户id
  8991. let _iframe;
  8992. let _cid = cid,
  8993. _stage = stage,
  8994. _task = task,
  8995. _tool = tool;
  8996. var _jie = $$("div", {
  8997. "style": {
  8998. "position": "absolute",
  8999. "bottom": "50px",
  9000. "right": "50px",
  9001. "zIndex": "9999",
  9002. "backgroundColor": "#2268bc",
  9003. "color": "#fff",
  9004. "padding": "12px 20px",
  9005. "cursor": "pointer",
  9006. "borderRadius": "4px",
  9007. },
  9008. "innerHTML": "确认并提交"
  9009. })
  9010. let aTool = ''
  9011. let _loading = document.createElement('div')
  9012. _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;"
  9013. // _loading.id = "";
  9014. let _lchild = document.createElement('div')
  9015. let _limg = document.createElement('img')
  9016. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9017. _limg.style = "width: 26px;margin-right: 10px;"
  9018. _lchild.appendChild(_limg)
  9019. let _lspan = document.createElement('span')
  9020. _lspan.innerHTML = "上传中..."
  9021. _lchild.appendChild(_lspan)
  9022. _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%);"
  9023. _loading.appendChild(_lchild)
  9024. var _box = $$('div', {
  9025. "style": {
  9026. "position": "relative",
  9027. "width": "100%",
  9028. "height": "100%",
  9029. },
  9030. })
  9031. _box.appendChild(_loading)
  9032. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9033. switch (str) {
  9034. case "whiteboard":
  9035. aTool = 1;
  9036. _iframe = $$("iframe", {
  9037. "frameborder": "no",
  9038. "border": "0",
  9039. "scrolling ": "no",
  9040. "style": {
  9041. "cssText": "border:0;width:100%;height:100%"
  9042. },
  9043. "src": "https://beta.iwb.cocorobo.cn/"
  9044. })
  9045. _box.appendChild(_iframe);
  9046. _box.appendChild(_jie);
  9047. _formdiv = new U.UF.UI.form(
  9048. "电子白板",
  9049. _box, {
  9050. "id": "whiteboards" + cid + stage + task + tool,
  9051. "style": {
  9052. "width": "90%",
  9053. "height": "90%",
  9054. "overflow": 'hidden'
  9055. },
  9056. "onresize": function () { }
  9057. }, {
  9058. closecallback: function () { }
  9059. }, {
  9060. "style": {
  9061. "height": "36px"
  9062. }
  9063. }).form; //创建窗体
  9064. _taskbar = {
  9065. "id": str + _formdiv.id,
  9066. "style": {
  9067. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9068. },
  9069. "name": "电子白板",
  9070. "forms": _formdiv,
  9071. "click": function () {
  9072. U.MD.D.I.openApplication(str, obj, info);
  9073. }
  9074. }
  9075. break;
  9076. case "mind":
  9077. aTool = 3;
  9078. _iframe = $$("iframe", {
  9079. "frameborder": "no",
  9080. "border": "0",
  9081. "scrolling ": "no",
  9082. "style": {
  9083. "cssText": "border:0;width:100%;height:100%"
  9084. },
  9085. "src": "/kityminder-editor/dist/index.html"
  9086. });
  9087. _box.appendChild(_iframe);
  9088. _box.appendChild(_jie);
  9089. _formdiv = new U.UF.UI.form(
  9090. "思维导图",
  9091. _box, { //"/jsmind/example/demo.html"
  9092. "id": "minds" + cid + stage + task + tool,
  9093. "style": {
  9094. "width": "90%",
  9095. "height": "90%",
  9096. "overflow": 'hidden'
  9097. },
  9098. "onresize": function () { }
  9099. }, {
  9100. closecallback: function () { }
  9101. }, {
  9102. "style": {
  9103. "height": "36px"
  9104. }
  9105. }).form; //创建窗体
  9106. _taskbar = {
  9107. "id": str + _formdiv.id,
  9108. "style": {
  9109. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9110. },
  9111. "name": "思维导图",
  9112. "forms": _formdiv,
  9113. "click": function () {
  9114. U.MD.D.I.openApplication(str, obj, info);
  9115. }
  9116. }
  9117. break;
  9118. case "doc":
  9119. aTool = 6;
  9120. _iframe = $$("iframe", {
  9121. "frameborder": "no",
  9122. "border": "0",
  9123. "scrolling ": "no",
  9124. "style": {
  9125. "cssText": "border:0;width:100%;height:100%"
  9126. },
  9127. "src": "/Office/Word/WordEditArea.htm"
  9128. })
  9129. _box.appendChild(_iframe);
  9130. _box.appendChild(_jie);
  9131. _formdiv = new U.UF.UI.form(
  9132. "协同文档",
  9133. _box, {
  9134. "id": "docs" + cid + stage + task + tool,
  9135. "style": {
  9136. "width": "90%",
  9137. "height": "90%",
  9138. "overflow": 'hidden'
  9139. },
  9140. "onresize": function () { }
  9141. }, {
  9142. closecallback: function () { }
  9143. }, {
  9144. "style": {
  9145. "height": "36px"
  9146. }
  9147. }).form; //创建窗体
  9148. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9149. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9150. })
  9151. _taskbar = {
  9152. "id": str + _formdiv.id,
  9153. "style": {
  9154. "backgroundImage": "url(/img/icon/doc.png)"
  9155. },
  9156. "name": "协同文档",
  9157. "forms": _formdiv,
  9158. "click": function () {
  9159. U.MD.D.I.openApplication(str, obj, info);
  9160. }
  9161. }
  9162. break;
  9163. }
  9164. const script1 = document.createElement("script");
  9165. script1.type = "text/javascript";
  9166. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9167. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9168. const script2 = document.createElement("script");
  9169. script2.type = "text/javascript";
  9170. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9171. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9172. const script3 = document.createElement("script");
  9173. script3.type = "text/javascript";
  9174. script3.charset = "UTF-8";
  9175. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9176. const script4 = document.createElement("script");
  9177. script4.type = "text/javascript";
  9178. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9179. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9180. if (_iframe) {
  9181. if (str == 'doc') {
  9182. _iframe = _formdiv.querySelector('iframe')
  9183. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9184. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9185. _iframe.contentWindow.document.body.appendChild(script1);
  9186. _iframe.contentWindow.document.body.appendChild(script2);
  9187. // _iframe.contentWindow.document.body.appendChild(script3);
  9188. _iframe.contentWindow.document.body.appendChild(script4);
  9189. })
  9190. if (onloadListener) {
  9191. _iframe.contentDocument.location.reload()
  9192. } else {
  9193. _iframe.contentDocument.location.reload()
  9194. }
  9195. } else if (str == 'mind') {
  9196. _iframe = _formdiv.querySelector('iframe')
  9197. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9198. _iframe.contentWindow.document.body.appendChild(script1);
  9199. _iframe.contentWindow.document.body.appendChild(script2);
  9200. _iframe.contentWindow.document.body.appendChild(script4);
  9201. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9202. })
  9203. if (onloadListener) {
  9204. _iframe.contentDocument.location.reload()
  9205. } else {
  9206. _iframe.contentDocument.location.reload()
  9207. }
  9208. } else {
  9209. _iframe.onload = () => {
  9210. _iframe.contentWindow.document.body.appendChild(script1);
  9211. _iframe.contentWindow.document.body.appendChild(script2);
  9212. // _iframe.contentWindow.document.body.appendChild(script3);
  9213. _iframe.contentWindow.document.body.appendChild(script4);
  9214. };
  9215. }
  9216. _jie.onclick = async () => {
  9217. let text = ''
  9218. if (aTool == 6) {
  9219. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9220. } else if (aTool == 3) {
  9221. text = await U.MD.D.I.getEditorContent(_iframe);
  9222. }
  9223. _loading.style.display = 'flex'
  9224. console.log(_loading);
  9225. var _ajs = _iframe.contentWindow.document.createElement("script");
  9226. _ajs.type = "text/javascript";
  9227. _ajs.innerHTML =
  9228. // 'console.log(' + _loading + ');\n' +
  9229. 'var _js = document.createElement("script");\n' +
  9230. '_js.type="text/javascript";\n' +
  9231. '_js.charset="UTF-8";\n' +
  9232. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9233. "_js.onload = function(){\n" +
  9234. ' var a = document.getElementsByTagName("img")\n' +
  9235. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9236. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9237. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9238. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9239. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9240. "beforeUpload_shishi(file," +
  9241. "'" +
  9242. _userid +
  9243. "'" +
  9244. ", " +
  9245. "'" +
  9246. _cid +
  9247. "'" +
  9248. ", " +
  9249. "'" +
  9250. _stage +
  9251. "'" +
  9252. ", " +
  9253. "'" +
  9254. _task +
  9255. "'" +
  9256. ", " +
  9257. "'" +
  9258. _tool +
  9259. "'" +
  9260. ", " +
  9261. "'" +
  9262. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9263. "'" +
  9264. ", " +
  9265. "'" +
  9266. aTool +
  9267. "'" +
  9268. ", " +
  9269. "`" +
  9270. text +
  9271. "`" +
  9272. ")\n" +
  9273. " });\n" +
  9274. "}\n" +
  9275. "document.head.appendChild(_js);\n";
  9276. _iframe.contentWindow.document.head.appendChild(_ajs);
  9277. }
  9278. }
  9279. //U.MD.D.I.openClick(str);
  9280. //如果有任务栏信息
  9281. // if (_taskbar) {
  9282. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9283. // }
  9284. }
  9285. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9286. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9287. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9288. _userinfo = US.userInfo, //登录用户信息
  9289. _userid = US.userInfo.userid //登录用户id
  9290. let _iframe;
  9291. let _cid = cid,
  9292. _stage = stage,
  9293. _task = task,
  9294. _tool = tool;
  9295. var _jie = $$("div", {
  9296. "style": {
  9297. "position": "absolute",
  9298. "bottom": "50px",
  9299. "right": "50px",
  9300. "zIndex": "9999",
  9301. "backgroundColor": "#2268bc",
  9302. "color": "#fff",
  9303. "padding": "12px 20px",
  9304. "cursor": "pointer",
  9305. "borderRadius": "4px",
  9306. },
  9307. "innerHTML": "确认并提交"
  9308. })
  9309. let aTool = ''
  9310. let _loading = document.createElement('div')
  9311. _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;"
  9312. // _loading.id = "";
  9313. let _lchild = document.createElement('div')
  9314. let _limg = document.createElement('img')
  9315. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9316. _limg.style = "width: 26px;margin-right: 10px;"
  9317. _lchild.appendChild(_limg)
  9318. let _lspan = document.createElement('span')
  9319. _lspan.innerHTML = "上传中..."
  9320. _lchild.appendChild(_lspan)
  9321. _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%);"
  9322. _loading.appendChild(_lchild)
  9323. var _box = $$('div', {
  9324. "style": {
  9325. "position": "relative",
  9326. "width": "100%",
  9327. "height": "100%",
  9328. },
  9329. })
  9330. _box.appendChild(_loading)
  9331. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9332. switch (str) {
  9333. case "whiteboard":
  9334. aTool = 1;
  9335. _iframe = $$("iframe", {
  9336. "frameborder": "no",
  9337. "border": "0",
  9338. "scrolling ": "no",
  9339. "style": {
  9340. "cssText": "border:0;width:100%;height:100%"
  9341. },
  9342. "src": "https://beta.iwb.cocorobo.cn/"
  9343. })
  9344. _box.appendChild(_iframe);
  9345. _box.appendChild(_jie);
  9346. _formdiv = new U.UF.UI.form(
  9347. "电子白板",
  9348. _box, {
  9349. "id": "whiteboards" + cid + stage + task + tool,
  9350. "style": {
  9351. "width": "90%",
  9352. "height": "90%",
  9353. "overflow": 'hidden'
  9354. },
  9355. "onresize": function () { }
  9356. }, {
  9357. closecallback: function () { }
  9358. }, {
  9359. "style": {
  9360. "height": "36px"
  9361. }
  9362. }).form; //创建窗体
  9363. _taskbar = {
  9364. "id": str + _formdiv.id,
  9365. "style": {
  9366. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9367. },
  9368. "name": "电子白板",
  9369. "forms": _formdiv,
  9370. "click": function () {
  9371. U.MD.D.I.openApplication(str, obj, info);
  9372. }
  9373. }
  9374. break;
  9375. case "mind":
  9376. aTool = 3;
  9377. _iframe = $$("iframe", {
  9378. "frameborder": "no",
  9379. "border": "0",
  9380. "scrolling ": "no",
  9381. "style": {
  9382. "cssText": "border:0;width:100%;height:100%"
  9383. },
  9384. "src": "/kityminder-editor/dist/index.html"
  9385. });
  9386. _box.appendChild(_iframe);
  9387. _box.appendChild(_jie);
  9388. _formdiv = new U.UF.UI.form(
  9389. "思维导图",
  9390. _box, { //"/jsmind/example/demo.html"
  9391. "id": "minds" + cid + stage + task + tool,
  9392. "style": {
  9393. "width": "90%",
  9394. "height": "90%",
  9395. "overflow": 'hidden'
  9396. },
  9397. "onresize": function () { }
  9398. }, {
  9399. closecallback: function () { }
  9400. }, {
  9401. "style": {
  9402. "height": "36px"
  9403. }
  9404. }).form; //创建窗体
  9405. _taskbar = {
  9406. "id": str + _formdiv.id,
  9407. "style": {
  9408. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9409. },
  9410. "name": "思维导图",
  9411. "forms": _formdiv,
  9412. "click": function () {
  9413. U.MD.D.I.openApplication(str, obj, info);
  9414. }
  9415. }
  9416. break;
  9417. case "doc":
  9418. aTool = 6;
  9419. _iframe = $$("iframe", {
  9420. "frameborder": "no",
  9421. "border": "0",
  9422. "scrolling ": "no",
  9423. "style": {
  9424. "cssText": "border:0;width:100%;height:100%"
  9425. },
  9426. "src": "/Office/Word/WordEditArea.htm"
  9427. })
  9428. _box.appendChild(_iframe);
  9429. _box.appendChild(_jie);
  9430. _formdiv = new U.UF.UI.form(
  9431. "协同文档",
  9432. _box, {
  9433. "id": "docs" + cid + stage + task + tool,
  9434. "style": {
  9435. "width": "90%",
  9436. "height": "90%",
  9437. "overflow": 'hidden'
  9438. },
  9439. "onresize": function () { }
  9440. }, {
  9441. closecallback: function () { }
  9442. }, {
  9443. "style": {
  9444. "height": "36px"
  9445. }
  9446. }).form; //创建窗体
  9447. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9448. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9449. })
  9450. _taskbar = {
  9451. "id": str + _formdiv.id,
  9452. "style": {
  9453. "backgroundImage": "url(/img/icon/doc.png)"
  9454. },
  9455. "name": "协同文档",
  9456. "forms": _formdiv,
  9457. "click": function () {
  9458. U.MD.D.I.openApplication(str, obj, info);
  9459. }
  9460. }
  9461. break;
  9462. }
  9463. const script1 = document.createElement("script");
  9464. script1.type = "text/javascript";
  9465. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9466. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9467. const script2 = document.createElement("script");
  9468. script2.type = "text/javascript";
  9469. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9470. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9471. const script3 = document.createElement("script");
  9472. script3.type = "text/javascript";
  9473. script3.charset = "UTF-8";
  9474. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9475. const script4 = document.createElement("script");
  9476. script4.type = "text/javascript";
  9477. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9478. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9479. if (_iframe) {
  9480. if (str == 'doc') {
  9481. _iframe = _formdiv.querySelector('iframe')
  9482. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9483. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9484. _iframe.contentWindow.document.body.appendChild(script1);
  9485. _iframe.contentWindow.document.body.appendChild(script2);
  9486. // _iframe.contentWindow.document.body.appendChild(script3);
  9487. _iframe.contentWindow.document.body.appendChild(script4);
  9488. })
  9489. if (onloadListener) {
  9490. _iframe.contentDocument.location.reload()
  9491. } else {
  9492. _iframe.contentDocument.location.reload()
  9493. }
  9494. } else if (str == 'mind') {
  9495. _iframe = _formdiv.querySelector('iframe')
  9496. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9497. _iframe.contentWindow.document.body.appendChild(script1);
  9498. _iframe.contentWindow.document.body.appendChild(script2);
  9499. _iframe.contentWindow.document.body.appendChild(script4);
  9500. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9501. })
  9502. if (onloadListener) {
  9503. _iframe.contentDocument.location.reload()
  9504. } else {
  9505. _iframe.contentDocument.location.reload()
  9506. }
  9507. } else {
  9508. _iframe.onload = () => {
  9509. _iframe.contentWindow.document.body.appendChild(script1);
  9510. _iframe.contentWindow.document.body.appendChild(script2);
  9511. // _iframe.contentWindow.document.body.appendChild(script3);
  9512. _iframe.contentWindow.document.body.appendChild(script4);
  9513. };
  9514. }
  9515. _jie.onclick = async () => {
  9516. let text = ''
  9517. if (aTool == 6) {
  9518. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9519. } else if (aTool == 3) {
  9520. text = await U.MD.D.I.getEditorContent(_iframe);
  9521. }
  9522. _loading.style.display = 'flex'
  9523. console.log(_loading);
  9524. var _ajs = _iframe.contentWindow.document.createElement("script");
  9525. _ajs.type = "text/javascript";
  9526. _ajs.innerHTML =
  9527. // 'console.log(' + _loading + ');\n' +
  9528. 'var _js = document.createElement("script");\n' +
  9529. '_js.type="text/javascript";\n' +
  9530. '_js.charset="UTF-8";\n' +
  9531. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9532. "_js.onload = function(){\n" +
  9533. ' var a = document.getElementsByTagName("img")\n' +
  9534. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9535. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9536. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9537. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9538. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9539. "beforeUpload_shishi(file," +
  9540. "'" +
  9541. _userid +
  9542. "'" +
  9543. ", " +
  9544. "'" +
  9545. _cid +
  9546. "'" +
  9547. ", " +
  9548. "'" +
  9549. _stage +
  9550. "'" +
  9551. ", " +
  9552. "'" +
  9553. _task +
  9554. "'" +
  9555. ", " +
  9556. "'" +
  9557. _tool +
  9558. "'" +
  9559. ", " +
  9560. "'" +
  9561. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9562. "'" +
  9563. ", " +
  9564. "'" +
  9565. aTool +
  9566. "'" +
  9567. ", " +
  9568. "`" +
  9569. text +
  9570. "`" +
  9571. ")\n" +
  9572. " });\n" +
  9573. "}\n" +
  9574. "document.head.appendChild(_js);\n";
  9575. _iframe.contentWindow.document.head.appendChild(_ajs);
  9576. }
  9577. }
  9578. //U.MD.D.I.openClick(str);
  9579. //如果有任务栏信息
  9580. // if (_taskbar) {
  9581. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9582. // }
  9583. }
  9584. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9585. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9586. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9587. _userinfo = US.userInfo, //登录用户信息
  9588. _userid = US.userInfo.userid //登录用户id
  9589. let _iframe;
  9590. let _cid = cid,
  9591. _stage = stage,
  9592. _task = task,
  9593. _tool = tool;
  9594. var _jie = $$("div", {
  9595. "style": {
  9596. "position": "absolute",
  9597. "bottom": "50px",
  9598. "right": "50px",
  9599. "zIndex": "9999",
  9600. "backgroundColor": "#2268bc",
  9601. "color": "#fff",
  9602. "padding": "12px 20px",
  9603. "cursor": "pointer",
  9604. "borderRadius": "4px",
  9605. },
  9606. "innerHTML": "上传模板"
  9607. })
  9608. let aTool = ''
  9609. let _loading = document.createElement('div')
  9610. _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;"
  9611. // _loading.id = "";
  9612. let _lchild = document.createElement('div')
  9613. let _limg = document.createElement('img')
  9614. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9615. _limg.style = "width: 26px;margin-right: 10px;"
  9616. _lchild.appendChild(_limg)
  9617. let _lspan = document.createElement('span')
  9618. _lspan.innerHTML = "上传中..."
  9619. _lchild.appendChild(_lspan)
  9620. _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%);"
  9621. _loading.appendChild(_lchild)
  9622. var _box = $$('div', {
  9623. "style": {
  9624. "position": "relative",
  9625. "width": "100%",
  9626. "height": "100%",
  9627. },
  9628. })
  9629. _box.appendChild(_loading)
  9630. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9631. switch (str) {
  9632. case "whiteboard":
  9633. aTool = 1;
  9634. _iframe = $$("iframe", {
  9635. "frameborder": "no",
  9636. "border": "0",
  9637. "scrolling ": "no",
  9638. "style": {
  9639. "cssText": "border:0;width:100%;height:100%"
  9640. },
  9641. "src": "https://beta.iwb.cocorobo.cn/"
  9642. })
  9643. _box.appendChild(_iframe);
  9644. _box.appendChild(_jie);
  9645. _formdiv = new U.UF.UI.form(
  9646. "电子白板",
  9647. _box, {
  9648. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9649. "style": {
  9650. "width": "90%",
  9651. "height": "90%",
  9652. "overflow": 'hidden'
  9653. },
  9654. "onresize": function () { }
  9655. }, {
  9656. closecallback: function () { }
  9657. }, {
  9658. "style": {
  9659. "height": "36px"
  9660. }
  9661. }).form; //创建窗体
  9662. _taskbar = {
  9663. "id": str + _formdiv.id,
  9664. "style": {
  9665. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9666. },
  9667. "name": "电子白板",
  9668. "forms": _formdiv,
  9669. "click": function () {
  9670. U.MD.D.I.openApplication(str, obj, info);
  9671. }
  9672. }
  9673. break;
  9674. case "mind":
  9675. aTool = 3;
  9676. _iframe = $$("iframe", {
  9677. "frameborder": "no",
  9678. "border": "0",
  9679. "scrolling ": "no",
  9680. "style": {
  9681. "cssText": "border:0;width:100%;height:100%"
  9682. },
  9683. "src": "/kityminder-editor/dist/index.html"
  9684. });
  9685. _box.appendChild(_iframe);
  9686. _box.appendChild(_jie);
  9687. _formdiv = new U.UF.UI.form(
  9688. "思维导图",
  9689. _box, { //"/jsmind/example/demo.html"
  9690. "id": "minds_Yu" + cid + stage + task + tool,
  9691. "style": {
  9692. "width": "90%",
  9693. "height": "90%",
  9694. "overflow": 'hidden'
  9695. },
  9696. "onresize": function () { }
  9697. }, {
  9698. closecallback: function () { }
  9699. }, {
  9700. "style": {
  9701. "height": "36px"
  9702. }
  9703. }).form; //创建窗体
  9704. _taskbar = {
  9705. "id": str + _formdiv.id,
  9706. "style": {
  9707. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9708. },
  9709. "name": "思维导图",
  9710. "forms": _formdiv,
  9711. "click": function () {
  9712. U.MD.D.I.openApplication(str, obj, info);
  9713. }
  9714. }
  9715. break;
  9716. case "doc":
  9717. aTool = 6;
  9718. _iframe = $$("iframe", {
  9719. "frameborder": "no",
  9720. "border": "0",
  9721. "scrolling ": "no",
  9722. "style": {
  9723. "cssText": "border:0;width:100%;height:100%"
  9724. },
  9725. "src": "/Office/Word/WordEditArea.htm"
  9726. })
  9727. _box.appendChild(_iframe);
  9728. _box.appendChild(_jie);
  9729. _formdiv = new U.UF.UI.form(
  9730. "协同文档",
  9731. _box, {
  9732. "id": "docs_Yu" + cid + stage + task + tool,
  9733. "style": {
  9734. "width": "90%",
  9735. "height": "90%",
  9736. "overflow": 'hidden'
  9737. },
  9738. "onresize": function () { }
  9739. }, {
  9740. closecallback: function () { }
  9741. }, {
  9742. "style": {
  9743. "height": "36px"
  9744. }
  9745. }).form; //创建窗体
  9746. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9747. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9748. })
  9749. _taskbar = {
  9750. "id": str + _formdiv.id,
  9751. "style": {
  9752. "backgroundImage": "url(/img/icon/doc.png)"
  9753. },
  9754. "name": "协同文档",
  9755. "forms": _formdiv,
  9756. "click": function () {
  9757. U.MD.D.I.openApplication(str, obj, info);
  9758. }
  9759. }
  9760. break;
  9761. case "CocoPi":
  9762. aTool = 57;
  9763. _iframe = $$("iframe", {
  9764. "allowpaymentrequest": "allowpaymentrequest",
  9765. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9766. "webkitallowfullscreen": "",
  9767. "mozallowfullscreen": "",
  9768. "frameborder": "no",
  9769. "border": "0",
  9770. "scrolling ": "no",
  9771. "style": {
  9772. "cssText": "border:0;width:100%;height:100%"
  9773. },
  9774. "src": "https://pi.cocorobo.cn/"
  9775. })
  9776. _box.appendChild(_iframe);
  9777. _box.appendChild(_jie);
  9778. _formdiv = new U.UF.UI.form(
  9779. "CocoPi",
  9780. _box, {
  9781. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9782. "style": {
  9783. "width": "90%",
  9784. "height": "90%",
  9785. "overflow": 'hidden'
  9786. },
  9787. "onresize": function () { }
  9788. }, {
  9789. closecallback: function () { }
  9790. }, {
  9791. "style": {
  9792. "height": "36px"
  9793. }
  9794. }).form; //创建窗体
  9795. _taskbar = {
  9796. "id": str + _formdiv.id,
  9797. "style": {
  9798. "backgroundImage": "url(/img/icon/cocopi.png)"
  9799. },
  9800. "name": "CocoPi",
  9801. "forms": _formdiv,
  9802. "click": function () {
  9803. U.MD.D.I.openApplication(str, obj, info);
  9804. }
  9805. }
  9806. break;
  9807. }
  9808. if (_iframe) {
  9809. if (str == 'doc') {
  9810. _iframe = _formdiv.querySelector('iframe')
  9811. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9812. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9813. })
  9814. if (onloadListener) {
  9815. _iframe.contentDocument.location.reload()
  9816. } else {
  9817. _iframe.contentDocument.location.reload()
  9818. }
  9819. } else if (str == 'mind') {
  9820. _iframe = _formdiv.querySelector('iframe')
  9821. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9822. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9823. })
  9824. if (onloadListener) {
  9825. _iframe.contentDocument.location.reload()
  9826. } else {
  9827. _iframe.contentDocument.location.reload()
  9828. }
  9829. } else if (str == 'whiteboard') {
  9830. _iframe = _formdiv.querySelector('iframe')
  9831. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9832. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9833. })
  9834. // if (onloadListener) {
  9835. // try {
  9836. // _iframe.src += "?cocorobo="+new Date().getTime()
  9837. // _iframe.contentWindow.document.location.reload()
  9838. // } catch (error) {
  9839. // }
  9840. // } else {
  9841. // _iframe.contentDocument.location.reload()
  9842. // }
  9843. } else if (str == 'CocoPi') {
  9844. _iframe = _formdiv.querySelector('iframe')
  9845. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9846. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9847. })
  9848. if (onloadListener) {
  9849. _iframe.contentDocument.location.reload()
  9850. } else {
  9851. _iframe.contentDocument.location.reload()
  9852. }
  9853. } else {
  9854. _iframe.onload = () => { };
  9855. }
  9856. _jie.onclick = async () => {
  9857. let text = ''
  9858. let type = '2'
  9859. if (aTool == 1) {
  9860. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9861. type = '3'
  9862. } else if (aTool == 6) {
  9863. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9864. type = '1'
  9865. } else if (aTool == 3) {
  9866. text = await U.MD.D.I.getEditorContent(_iframe);
  9867. type = '2'
  9868. } else if (aTool == 57) {
  9869. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9870. type = '4'
  9871. }
  9872. _loading.style.display = 'flex'
  9873. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9874. }
  9875. }
  9876. //U.MD.D.I.openClick(str);
  9877. //如果有任务栏信息
  9878. // if (_taskbar) {
  9879. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9880. // }
  9881. }
  9882. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9883. var xmlhttp;
  9884. var Mac, Sn, DeviceId
  9885. if (window.XMLHttpRequest) {
  9886. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9887. xmlhttp = new XMLHttpRequest();
  9888. } else {
  9889. // IE6, IE5 浏览器执行代码
  9890. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9891. }
  9892. xmlhttp.onreadystatechange = function () {
  9893. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9894. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9895. // resolve(res.value[0][0].text);
  9896. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9897. }
  9898. }
  9899. }
  9900. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9901. xmlhttp.send();
  9902. }
  9903. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9904. var xmlhttp;
  9905. var Mac, Sn, DeviceId
  9906. if (window.XMLHttpRequest) {
  9907. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9908. xmlhttp = new XMLHttpRequest();
  9909. } else {
  9910. // IE6, IE5 浏览器执行代码
  9911. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9912. }
  9913. xmlhttp.onreadystatechange = function () {
  9914. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9915. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9916. // resolve(res.value[0][0].text);
  9917. if (type == '2') {
  9918. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9919. } else if (type == '3') {
  9920. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9921. } else if (type == '4') {
  9922. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9923. }
  9924. } else {
  9925. if (type == '2') {
  9926. iframe.contentWindow.editor.minder.importData('json', '')
  9927. } else if (type == '3') {
  9928. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9929. } else if (type == '4') {
  9930. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9931. }
  9932. }
  9933. }
  9934. }
  9935. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9936. xmlhttp.send();
  9937. }
  9938. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9939. var xmlhttp;
  9940. var Mac, Sn, DeviceId
  9941. if (window.XMLHttpRequest) {
  9942. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9943. xmlhttp = new XMLHttpRequest();
  9944. } else {
  9945. // IE6, IE5 浏览器执行代码
  9946. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9947. }
  9948. xmlhttp.onreadystatechange = function () {
  9949. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9950. if (xmlhttp.response) {
  9951. // resolve(res.value[0][0].text);
  9952. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9953. // $(fileInput).val('');
  9954. // });
  9955. span.innerHTML = '上传成功'
  9956. setTimeout(() => {
  9957. loading.style.display = 'none'
  9958. }, 1000);
  9959. }
  9960. }
  9961. }
  9962. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9963. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9964. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9965. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9966. // 设置请求头,表示请求体的编码格式
  9967. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9968. // 设置请求体,使用url-encoded格式的数据
  9969. }
  9970. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9971. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9972. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9973. _userinfo = US.userInfo, //登录用户信息
  9974. _userid = US.userInfo.userid //登录用户id
  9975. let _iframe;
  9976. let _cid = cid,
  9977. _stage = stage,
  9978. _task = task,
  9979. _tool = tool;
  9980. var _jie = $$("div", {
  9981. "style": {
  9982. "position": "absolute",
  9983. "bottom": "50px",
  9984. "right": "50px",
  9985. "zIndex": "9999",
  9986. "backgroundColor": "#2268bc",
  9987. "color": "#fff",
  9988. "padding": "12px 20px",
  9989. "cursor": "pointer",
  9990. "borderRadius": "4px",
  9991. },
  9992. "innerHTML": "提交作业"
  9993. })
  9994. let aTool = ''
  9995. let _loading = document.createElement('div')
  9996. _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;"
  9997. // _loading.id = "";
  9998. let _lchild = document.createElement('div')
  9999. let _limg = document.createElement('img')
  10000. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10001. _limg.style = "width: 26px;margin-right: 10px;"
  10002. _lchild.appendChild(_limg)
  10003. let _lspan = document.createElement('span')
  10004. _lspan.innerHTML = "上传中..."
  10005. _lchild.appendChild(_lspan)
  10006. _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%);"
  10007. _loading.appendChild(_lchild)
  10008. var _box = $$('div', {
  10009. "style": {
  10010. "position": "relative",
  10011. "width": "100%",
  10012. "height": "100%",
  10013. },
  10014. })
  10015. _box.appendChild(_loading)
  10016. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10017. switch (str) {
  10018. case "CocoPi":
  10019. aTool = 57;
  10020. _iframe = $$("iframe", {
  10021. "allowpaymentrequest": "allowpaymentrequest",
  10022. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10023. "webkitallowfullscreen": "",
  10024. "mozallowfullscreen": "",
  10025. "frameborder": "no",
  10026. "border": "0",
  10027. "scrolling ": "no",
  10028. "style": {
  10029. "cssText": "border:0;width:100%;height:100%"
  10030. },
  10031. "src": "https://pi.cocorobo.cn/"
  10032. })
  10033. _box.appendChild(_iframe);
  10034. _box.appendChild(_jie);
  10035. _formdiv = new U.UF.UI.form(
  10036. "CocoPi",
  10037. _box, {
  10038. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10039. "style": {
  10040. "width": "90%",
  10041. "height": "90%",
  10042. "overflow": 'hidden'
  10043. },
  10044. "onresize": function () { }
  10045. }, {
  10046. closecallback: function () { }
  10047. }, {
  10048. "style": {
  10049. "height": "36px"
  10050. }
  10051. }).form; //创建窗体
  10052. _taskbar = {
  10053. "id": str + _formdiv.id,
  10054. "style": {
  10055. "backgroundImage": "url(/img/icon/cocopi.png)"
  10056. },
  10057. "name": "CocoPi",
  10058. "forms": _formdiv,
  10059. "click": function () {
  10060. U.MD.D.I.openApplication(str, obj, info);
  10061. }
  10062. }
  10063. break;
  10064. }
  10065. if (_iframe) {
  10066. if (str == 'CocoPi') {
  10067. _iframe = _formdiv.querySelector('iframe')
  10068. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10069. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10070. })
  10071. if (onloadListener) {
  10072. _iframe.contentDocument.location.reload()
  10073. } else {
  10074. _iframe.contentDocument.location.reload()
  10075. }
  10076. }
  10077. _jie.onclick = async () => {
  10078. let text = ''
  10079. if (aTool == 57) {
  10080. text = _iframe.contentWindow.getLoadXmlStr()
  10081. }
  10082. _loading.style.display = 'flex'
  10083. console.log(_loading);
  10084. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10085. _loading.style.display = 'none'
  10086. let _div = document.createElement('div')
  10087. _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;"
  10088. let _inner = document.createElement('div')
  10089. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10090. _inner.innerHTML = "上传成功"
  10091. _div.appendChild(_inner)
  10092. _iframe.contentWindow.window.document.body.appendChild(_div)
  10093. _div.onclick = () => {
  10094. _iframe.contentWindow.window.document.body.removeChild(_div)
  10095. }
  10096. setTimeout(() => {
  10097. _iframe.contentWindow.window.document.body.removeChild(_div)
  10098. }, 1000);
  10099. }, [], { "type": "POST", "withCredentials": true });
  10100. }
  10101. }
  10102. }
  10103. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10104. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10105. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10106. _userid = student.userid, //登录用户id
  10107. _username = student.student //用户名字
  10108. let _iframe;
  10109. let _cid = cid,
  10110. _stage = stage,
  10111. _task = task,
  10112. _tool = tool;
  10113. var _jie = $$("div", {
  10114. "style": {
  10115. "position": "absolute",
  10116. "bottom": "50px",
  10117. "right": "50px",
  10118. "zIndex": "9999",
  10119. "backgroundColor": "#2268bc",
  10120. "color": "#fff",
  10121. "padding": "12px 20px",
  10122. "cursor": "pointer",
  10123. "borderRadius": "4px",
  10124. },
  10125. "innerHTML": "提交作业"
  10126. })
  10127. let aTool = ''
  10128. let _loading = document.createElement('div')
  10129. _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;"
  10130. // _loading.id = "";
  10131. let _lchild = document.createElement('div')
  10132. let _limg = document.createElement('img')
  10133. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10134. _limg.style = "width: 26px;margin-right: 10px;"
  10135. _lchild.appendChild(_limg)
  10136. let _lspan = document.createElement('span')
  10137. _lspan.innerHTML = "上传中..."
  10138. _lchild.appendChild(_lspan)
  10139. _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%);"
  10140. _loading.appendChild(_lchild)
  10141. var _box = $$('div', {
  10142. "style": {
  10143. "position": "relative",
  10144. "width": "100%",
  10145. "height": "100%",
  10146. },
  10147. })
  10148. _box.appendChild(_loading)
  10149. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10150. switch (str) {
  10151. case "CocoPi":
  10152. aTool = 57;
  10153. _iframe = $$("iframe", {
  10154. "allowpaymentrequest": "allowpaymentrequest",
  10155. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10156. "webkitallowfullscreen": "",
  10157. "mozallowfullscreen": "",
  10158. "frameborder": "no",
  10159. "border": "0",
  10160. "scrolling ": "no",
  10161. "style": {
  10162. "cssText": "border:0;width:100%;height:100%"
  10163. },
  10164. "src": "https://pi.cocorobo.cn/"
  10165. })
  10166. _box.appendChild(_iframe);
  10167. _box.appendChild(_jie);
  10168. _formdiv = new U.UF.UI.form(
  10169. "CocoPi-" + _username,
  10170. _box, {
  10171. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10172. "style": {
  10173. "width": "90%",
  10174. "height": "90%",
  10175. "overflow": 'hidden'
  10176. },
  10177. "onresize": function () { }
  10178. }, {
  10179. closecallback: function () { }
  10180. }, {
  10181. "style": {
  10182. "height": "36px"
  10183. }
  10184. }).form; //创建窗体
  10185. _taskbar = {
  10186. "id": str + _formdiv.id,
  10187. "style": {
  10188. "backgroundImage": "url(/img/icon/cocopi.png)"
  10189. },
  10190. "name": "CocoPi",
  10191. "forms": _formdiv,
  10192. "click": function () {
  10193. U.MD.D.I.openApplication(str, obj, info);
  10194. }
  10195. }
  10196. break;
  10197. }
  10198. if (_iframe) {
  10199. if (str == 'CocoPi') {
  10200. _iframe = _formdiv.querySelector('iframe')
  10201. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10202. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10203. })
  10204. if (onloadListener) {
  10205. _iframe.contentDocument.location.reload()
  10206. } else {
  10207. _iframe.contentDocument.location.reload()
  10208. }
  10209. }
  10210. _jie.onclick = async () => {
  10211. let text = ''
  10212. if (aTool == 57) {
  10213. text = _iframe.contentWindow.getLoadXmlStr()
  10214. }
  10215. _loading.style.display = 'flex'
  10216. console.log(_loading);
  10217. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10218. _loading.style.display = 'none'
  10219. let _div = document.createElement('div')
  10220. _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;"
  10221. let _inner = document.createElement('div')
  10222. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10223. _inner.innerHTML = "上传成功"
  10224. _div.appendChild(_inner)
  10225. _iframe.contentWindow.window.document.body.appendChild(_div)
  10226. _div.onclick = () => {
  10227. _iframe.contentWindow.window.document.body.removeChild(_div)
  10228. }
  10229. setTimeout(() => {
  10230. _iframe.contentWindow.window.document.body.removeChild(_div)
  10231. }, 1000);
  10232. }, [], { "type": "POST", "withCredentials": true });
  10233. }
  10234. }
  10235. }
  10236. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10237. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10238. if (res.value[0].length > 0) {
  10239. if (atool == 57) {
  10240. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10241. }
  10242. } else {
  10243. if (atool == 57) {
  10244. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10245. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10246. }
  10247. }
  10248. }, [], { "type": "POST", "withCredentials": true });
  10249. }