DeskTop.js 671 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1379. ];
  1380. //nsfx
  1381. U.MD.D.I.nsfxStudentDeskIcon = [
  1382. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1385. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1386. ];
  1387. //stia
  1388. U.MD.D.I.stiaTeacherDeskIcon = [
  1389. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1390. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1391. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1392. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1393. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1394. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1395. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1396. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1397. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1398. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1399. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1400. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1401. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1402. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1403. ];
  1404. //stia
  1405. U.MD.D.I.stiaStudentDeskIcon = [
  1406. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1408. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1409. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1410. ];
  1411. //szdjg
  1412. U.MD.D.I.szdjgTeacherDeskIcon = [
  1413. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1414. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1415. ];
  1416. //szdjg
  1417. U.MD.D.I.szdjgStudentDeskIcon = [
  1418. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1419. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1420. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1421. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1422. ];
  1423. //010607
  1424. U.MD.D.I.x010607TeacherDeskIcon = [
  1425. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1426. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1427. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1428. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1429. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1430. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1431. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1432. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1433. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1434. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1436. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1437. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1438. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1439. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1440. ];
  1441. //010607
  1442. U.MD.D.I.x010607StudentDeskIcon = [
  1443. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1444. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1445. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1447. ];
  1448. //010608
  1449. U.MD.D.I.x010608TeacherDeskIcon = [
  1450. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1451. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1452. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1453. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1454. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1455. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1456. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1457. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1458. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1459. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1460. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1461. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1462. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1463. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1464. ];
  1465. //010608
  1466. U.MD.D.I.x010608StudentDeskIcon = [
  1467. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1468. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1469. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1470. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1471. ];
  1472. //xhly
  1473. U.MD.D.I.xhlyTeacherDeskIcon = [
  1474. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1475. ];
  1476. //010608
  1477. U.MD.D.I.xhlyStudentDeskIcon = [
  1478. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1479. ];
  1480. //北师大
  1481. U.MD.D.I.BSDNSteacherDeskIcon = [
  1482. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1483. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1484. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1485. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1486. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1487. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1488. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1489. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1490. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1491. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1492. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1493. ];
  1494. //北师大
  1495. U.MD.D.I.BSDNSstudentDeskIcon = [
  1496. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1497. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1498. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1500. ];
  1501. //CUHK_EDU
  1502. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1503. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1504. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1505. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1506. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1507. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1508. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1509. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1511. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1512. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1513. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1514. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1515. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1516. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1517. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1518. ];
  1519. //CUHK_EDU
  1520. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1521. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1523. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1524. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1525. ];
  1526. //010503
  1527. U.MD.D.I.x010503TeacherDeskIcon = [
  1528. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1529. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1530. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1531. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1532. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1533. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1534. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1535. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1536. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1537. ];
  1538. //010503
  1539. U.MD.D.I.x010503StudentDeskIcon = [
  1540. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1541. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1542. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1543. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1544. ];
  1545. //SPROUT Lab
  1546. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1547. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1548. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1550. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1551. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1552. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1553. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1555. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1556. ];
  1557. //SPROUT Lab
  1558. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1559. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1560. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1561. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1563. ];
  1564. //010204
  1565. U.MD.D.I.x010204TeacherDeskIcon = [
  1566. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1567. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. ];
  1569. //010204
  1570. U.MD.D.I.x010204StudentDeskIcon = [
  1571. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1572. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1573. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1574. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1575. ];
  1576. //trail
  1577. U.MD.D.I.trailTeacherDeskIcon = [
  1578. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1579. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1580. ];
  1581. //trail
  1582. U.MD.D.I.trailStudentDeskIcon = [
  1583. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1584. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1585. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1586. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1587. ];
  1588. //010504
  1589. U.MD.D.I.x010504TeacherDeskIcon = [
  1590. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1591. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1593. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1594. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1595. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1596. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1597. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1598. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1599. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1600. ];
  1601. //010504
  1602. U.MD.D.I.x010504StudentDeskIcon = [
  1603. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1604. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1605. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1606. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1607. ];
  1608. //SCNUET
  1609. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1610. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1611. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1612. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1613. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1614. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1615. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1616. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1617. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1618. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1619. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1620. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1621. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1622. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1623. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1624. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1625. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1626. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1627. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1628. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1629. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1631. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1632. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1633. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1634. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1635. ];
  1636. //SCNUET
  1637. U.MD.D.I.SCNUETAdminDeskIcon = [
  1638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1640. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1641. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1642. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1643. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1644. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1645. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1646. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1647. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1648. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1649. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1650. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1651. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1652. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1653. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1654. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1655. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1656. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1657. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1658. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1659. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1660. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1661. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1662. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1663. ];
  1664. //SCNUET
  1665. U.MD.D.I.SCNUETStudentDeskIcon = [
  1666. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1667. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1668. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1669. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1670. ];
  1671. //x020201
  1672. U.MD.D.I.x020201TeacherDeskIcon = [
  1673. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1674. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1675. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1676. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1677. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1678. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1679. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1680. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1681. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1682. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1686. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1687. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1688. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1689. ];
  1690. //x020201
  1691. U.MD.D.I.x020201AdminDeskIcon = [
  1692. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1693. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1694. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1696. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1697. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1698. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1699. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1700. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1701. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1702. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1703. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1704. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1705. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1706. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1707. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1708. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1709. ];
  1710. //020201
  1711. U.MD.D.I.x020201StudentDeskIcon = [
  1712. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1713. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1716. ];
  1717. //010611
  1718. U.MD.D.I.x010611TeacherDeskIcon = [
  1719. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1720. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1725. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1728. ];
  1729. //010611
  1730. U.MD.D.I.x010611StudentDeskIcon = [
  1731. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1732. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1733. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1734. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1735. ];
  1736. //tianyuan
  1737. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1738. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1739. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1740. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1741. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1742. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1743. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1744. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1747. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1749. ];
  1750. //010611
  1751. U.MD.D.I.tianyuanStudentDeskIcon = [
  1752. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1753. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1756. ];
  1757. //320101
  1758. U.MD.D.I.x320101TeacherDeskIcon = [
  1759. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1760. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1761. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1762. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1763. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1764. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1765. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1766. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1767. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1768. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1769. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1770. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1771. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1772. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1773. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1774. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1775. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1776. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1777. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1778. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1779. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1780. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1781. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1782. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1783. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1784. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1785. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1786. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1787. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1788. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1789. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1790. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1791. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1792. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1793. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1794. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1795. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1796. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1797. ];
  1798. //320101
  1799. U.MD.D.I.x320101StudentDeskIcon = [
  1800. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1801. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1802. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1803. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1804. ];
  1805. //#region 桌面初始化a
  1806. /**
  1807. * 初始化桌面的起始函数
  1808. *
  1809. */
  1810. U.MD.D.I.init = function () {
  1811. if ($("#U_MD_D_K")[0]) {
  1812. //初始化桌面图标
  1813. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1814. // var clickUrl = ':12588/requestIp.php';
  1815. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1816. // U.MD.D.I.Ip = data;
  1817. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1818. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1819. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1820. // })
  1821. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1822. // })
  1823. }
  1824. }
  1825. /**
  1826. * 模式切换
  1827. *
  1828. */
  1829. U.MD.D.I.ModeCheck = function (type) {
  1830. if (US.Config.type == type) {
  1831. return
  1832. }
  1833. US.Config.type = type
  1834. $('.U_PBL_Check .active')[0].className = ''
  1835. if (type == 1) {
  1836. $('.U_PBL_Check div')[0].className = 'active'
  1837. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1838. } else {
  1839. $('.U_PBL_Check div')[1].className = 'active'
  1840. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1841. }
  1842. //初始化桌面图标
  1843. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1844. if (type == 2) {
  1845. U.MD.D.I.openApplication("project")
  1846. }
  1847. }
  1848. /**
  1849. * 隐藏任务栏
  1850. *
  1851. * @param {element} 桌面元素
  1852. */
  1853. U.MD.D.I.hiddenTaskbar = function (el) {
  1854. //任务栏位置变小
  1855. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1856. //桌面的位置变大
  1857. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1858. }
  1859. /**
  1860. * 隐藏任务栏
  1861. *
  1862. * @param {element} 桌面元素
  1863. */
  1864. U.MD.D.I.hiddenTaskbarout = function (el) {
  1865. //任务栏位置变小
  1866. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1867. //任务栏位置变化
  1868. U.selectEl(el).css({ "bottom": "-60px" });
  1869. //桌面的位置变大
  1870. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1871. }
  1872. }
  1873. /**
  1874. * 初始化打印桌面图标
  1875. *
  1876. * @param {element} 桌面元素
  1877. */
  1878. U.MD.D.I.initDesktopIcons = function (el, type) {
  1879. var i, //用于循环
  1880. _content, //桌面图标元素
  1881. _iconcontent, //桌面图标元素
  1882. _frag = $$("frag"), //定义一个碎片元素
  1883. _type = US.userInfo.type,
  1884. _org = US.userInfo.org,
  1885. _oid = US.userInfo.organizeid,
  1886. _role = US.userInfo.role,
  1887. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1888. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1889. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1890. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1891. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1892. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1893. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1894. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1895. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1896. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1897. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1898. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1899. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1900. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1901. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1902. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1903. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1904. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1905. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1906. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1907. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1908. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1909. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1910. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1911. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1912. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1913. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1914. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1915. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1916. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1917. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1918. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1919. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1920. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1921. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1922. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1923. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1924. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1925. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1926. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1927. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1928. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1929. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1930. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1931. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1932. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1933. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1934. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1935. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1936. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1937. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1938. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1939. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1940. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1941. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1942. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1943. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1944. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1945. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1946. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1947. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1948. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1949. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1950. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1951. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1952. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1953. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1954. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1955. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1956. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1957. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1958. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1959. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1960. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1961. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1962. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1963. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1964. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1965. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1966. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1967. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1968. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1969. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1970. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1971. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1972. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1973. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1974. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1975. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1976. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1977. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1978. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1979. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1980. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1981. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1982. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1983. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1984. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  1985. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  1986. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1987. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1988. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1989. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1990. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1991. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1992. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1993. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1994. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1995. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1996. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1997. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1998. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1999. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2000. 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','2c5d4971-ed9e-11ef-b508-005056924926'];
  2001. 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'];
  2002. //清楚桌面图标
  2003. el.innerHTML = "";
  2004. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2005. _teacherDesktopIconInfo.push(
  2006. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2007. { "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)" } },
  2008. )
  2009. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2010. }
  2011. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2012. _teacherDesktopIconInfo.push(
  2013. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2014. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2015. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2016. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2017. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2018. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2019. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2020. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2021. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2022. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2023. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2024. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2025. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2026. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2027. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2028. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2029. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2030. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2031. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2032. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2033. )
  2034. }
  2035. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2036. _teacherDesktopIconInfo.push(
  2037. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2038. )
  2039. }
  2040. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2041. // _teacherDesktopIconInfo.push(
  2042. // )
  2043. // }
  2044. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2045. _teacherDesktopIconInfo.push(
  2046. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2047. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2048. )
  2049. }
  2050. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2051. _teacherDesktopIconInfo.push(
  2052. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2054. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2055. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2056. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2057. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2058. )
  2059. _studentDesktopIconInfo.push(
  2060. )
  2061. }
  2062. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2063. _teacherDesktopIconInfo.push(
  2064. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2065. )
  2066. _studentDesktopIconInfo.push(
  2067. )
  2068. }
  2069. //010606 组织
  2070. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2071. _teacherDesktopIconInfo.push(
  2072. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2073. )
  2074. _studentDesktopIconInfo.push(
  2075. )
  2076. }
  2077. //麒麟二中 和 民新小学
  2078. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2079. _teacherDesktopIconInfo.push(
  2080. )
  2081. }
  2082. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2083. _teacherDesktopIconInfo.push(
  2084. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2085. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2086. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2087. )
  2088. }
  2089. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2090. _hkTeacherDeskIconInfo.push(
  2091. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2092. )
  2093. }
  2094. //北师大附中(010601)
  2095. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2096. // _teacherDesktopIconInfo.push(
  2097. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2098. // )
  2099. // _studentDesktopIconInfo.push(
  2100. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2101. // )
  2102. // }
  2103. //樂善堂余近卿中學
  2104. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2105. _teacherDesktopIconInfo.push(
  2106. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2107. )
  2108. }
  2109. // Education Artificial Intelligence
  2110. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2111. _teacherDesktopIconInfo.push(
  2112. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2113. )
  2114. }
  2115. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2116. _teacherDesktopIconInfo.push(
  2117. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2118. )
  2119. }
  2120. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2121. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2122. _teacherDesktopIconInfo.push(
  2123. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2124. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2125. )
  2126. }
  2127. //麒麟二中
  2128. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2129. _studentDesktopIconInfo.push(
  2130. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2131. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2132. )
  2133. }
  2134. //万科双语
  2135. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2136. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2137. if (el.Name == '项目管理') {
  2138. el.Name = 'PBL项目'
  2139. }
  2140. return el
  2141. })
  2142. _studentDesktopIconInfo3.push(
  2143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2144. )
  2145. }
  2146. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2147. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2148. return el.Name != '魔盒识字' && el.Name != '24点'
  2149. })
  2150. }
  2151. 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) {
  2152. _studentDesktopIconInfo.push(
  2153. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2154. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2155. )
  2156. }
  2157. //循环创建桌面图标
  2158. if (type == 1) {
  2159. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2160. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2161. _content = $$("div", {
  2162. className: "U_MD_D_KO",
  2163. "onmousedown": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_studentDesktopIconInfo[i]]),
  2167. "onclick": U.UF.C.closure(function (obj) {
  2168. //防止拖动图标即打开了桌面应用
  2169. U.MD.D.click(this, obj);
  2170. }, [_studentDesktopIconInfo[i]])
  2171. }, _frag); //
  2172. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2173. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2174. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2175. }
  2176. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2177. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2178. _content = $$("div", {
  2179. className: "U_MD_D_KO",
  2180. "onmousedown": U.UF.C.closure(function (obj) {
  2181. //防止拖动图标即打开了桌面应用
  2182. U.MD.D.click(this, obj);
  2183. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2184. "onclick": U.UF.C.closure(function (obj) {
  2185. //防止拖动图标即打开了桌面应用
  2186. U.MD.D.click(this, obj);
  2187. }, [_hkZJLSStudentDeskIconInfo[i]])
  2188. }, _frag); //
  2189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2192. } //
  2193. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2194. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2195. _content = $$("div", {
  2196. className: "U_MD_D_KO",
  2197. "onmousedown": U.UF.C.closure(function (obj) {
  2198. //防止拖动图标即打开了桌面应用
  2199. U.MD.D.click(this, obj);
  2200. }, [_ytyStudentDeskIconInfo[i]]),
  2201. "onclick": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_ytyStudentDeskIconInfo[i]])
  2205. }, _frag); //
  2206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2209. } //
  2210. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2211. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2212. _content = $$("div", {
  2213. className: "U_MD_D_KO",
  2214. "onmousedown": U.UF.C.closure(function (obj) {
  2215. //防止拖动图标即打开了桌面应用
  2216. U.MD.D.click(this, obj);
  2217. }, [_jccssylStudentDeskIconInfo[i]]),
  2218. "onclick": U.UF.C.closure(function (obj) {
  2219. //防止拖动图标即打开了桌面应用
  2220. U.MD.D.click(this, obj);
  2221. }, [_jccssylStudentDeskIconInfo[i]])
  2222. }, _frag); //
  2223. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2224. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2225. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2226. }
  2227. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2228. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2229. _content = $$("div", {
  2230. className: "U_MD_D_KO",
  2231. "onmousedown": U.UF.C.closure(function (obj) {
  2232. //防止拖动图标即打开了桌面应用
  2233. U.MD.D.click(this, obj);
  2234. }, [_scnuaiStudentDeskIconInfo[i]]),
  2235. "onclick": U.UF.C.closure(function (obj) {
  2236. //防止拖动图标即打开了桌面应用
  2237. U.MD.D.click(this, obj);
  2238. }, [_scnuaiStudentDeskIconInfo[i]])
  2239. }, _frag); //
  2240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2243. }
  2244. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2245. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2246. _content = $$("div", {
  2247. className: "U_MD_D_KO",
  2248. "onmousedown": U.UF.C.closure(function (obj) {
  2249. //防止拖动图标即打开了桌面应用
  2250. U.MD.D.click(this, obj);
  2251. }, [_caleStudentDeskIconInfo[i]]),
  2252. "onclick": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_caleStudentDeskIconInfo[i]])
  2256. }, _frag); //
  2257. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2258. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2259. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2260. }
  2261. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2262. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2263. _content = $$("div", {
  2264. className: "U_MD_D_KO",
  2265. "onmousedown": U.UF.C.closure(function (obj) {
  2266. //防止拖动图标即打开了桌面应用
  2267. U.MD.D.click(this, obj);
  2268. }, [_thuioeStudentDeskIconInfo[i]]),
  2269. "onclick": U.UF.C.closure(function (obj) {
  2270. //防止拖动图标即打开了桌面应用
  2271. U.MD.D.click(this, obj);
  2272. }, [_thuioeStudentDeskIconInfo[i]])
  2273. }, _frag); //
  2274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2277. }
  2278. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2279. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2280. _content = $$("div", {
  2281. className: "U_MD_D_KO",
  2282. "onmousedown": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_tpcStudentDeskIconInfo[i]]),
  2286. "onclick": U.UF.C.closure(function (obj) {
  2287. //防止拖动图标即打开了桌面应用
  2288. U.MD.D.click(this, obj);
  2289. }, [_tpcStudentDeskIconInfo[i]])
  2290. }, _frag); //
  2291. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2292. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2293. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2294. } //
  2295. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2296. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2297. _content = $$("div", {
  2298. className: "U_MD_D_KO",
  2299. "onmousedown": U.UF.C.closure(function (obj) {
  2300. //防止拖动图标即打开了桌面应用
  2301. U.MD.D.click(this, obj);
  2302. }, [_chjyjStudentDeskIconInfo[i]]),
  2303. "onclick": U.UF.C.closure(function (obj) {
  2304. //防止拖动图标即打开了桌面应用
  2305. U.MD.D.click(this, obj);
  2306. }, [_chjyjStudentDeskIconInfo[i]])
  2307. }, _frag); //
  2308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2311. }
  2312. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2313. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2314. _content = $$("div", {
  2315. className: "U_MD_D_KO",
  2316. "onmousedown": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_szjkyStudentDeskIconInfo[i]]),
  2320. "onclick": U.UF.C.closure(function (obj) {
  2321. //防止拖动图标即打开了桌面应用
  2322. U.MD.D.click(this, obj);
  2323. }, [_szjkyStudentDeskIconInfo[i]])
  2324. }, _frag); //
  2325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2328. }
  2329. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2330. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2331. _content = $$("div", {
  2332. className: "U_MD_D_KO",
  2333. "onmousedown": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_x020201StudentDeskIconInfo[i]]),
  2337. "onclick": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_x020201StudentDeskIconInfo[i]])
  2341. }, _frag); //
  2342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2345. }
  2346. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2347. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2348. _content = $$("div", {
  2349. className: "U_MD_D_KO",
  2350. "onmousedown": U.UF.C.closure(function (obj) {
  2351. //防止拖动图标即打开了桌面应用
  2352. U.MD.D.click(this, obj);
  2353. }, [_SCNUETStudentDeskIconInfo[i]]),
  2354. "onclick": U.UF.C.closure(function (obj) {
  2355. //防止拖动图标即打开了桌面应用
  2356. U.MD.D.click(this, obj);
  2357. }, [_SCNUETStudentDeskIconInfo[i]])
  2358. }, _frag); //
  2359. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2360. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2361. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2362. }
  2363. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2364. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2365. _content = $$("div", {
  2366. className: "U_MD_D_KO",
  2367. "onmousedown": U.UF.C.closure(function (obj) {
  2368. //防止拖动图标即打开了桌面应用
  2369. U.MD.D.click(this, obj);
  2370. }, [_dseiStudentDeskIconInfo[i]]),
  2371. "onclick": U.UF.C.closure(function (obj) {
  2372. //防止拖动图标即打开了桌面应用
  2373. U.MD.D.click(this, obj);
  2374. }, [_dseiStudentDeskIconInfo[i]])
  2375. }, _frag); //
  2376. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2377. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2378. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2379. }
  2380. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2381. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2382. _content = $$("div", {
  2383. className: "U_MD_D_KO",
  2384. "onmousedown": U.UF.C.closure(function (obj) {
  2385. //防止拖动图标即打开了桌面应用
  2386. U.MD.D.click(this, obj);
  2387. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2388. "onclick": U.UF.C.closure(function (obj) {
  2389. //防止拖动图标即打开了桌面应用
  2390. U.MD.D.click(this, obj);
  2391. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2392. }, _frag); //
  2393. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2394. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2395. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2396. }
  2397. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2398. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2399. _content = $$("div", {
  2400. className: "U_MD_D_KO",
  2401. "onmousedown": U.UF.C.closure(function (obj) {
  2402. //防止拖动图标即打开了桌面应用
  2403. U.MD.D.click(this, obj);
  2404. }, [_nsfxStudentDeskIconInfo[i]]),
  2405. "onclick": U.UF.C.closure(function (obj) {
  2406. //防止拖动图标即打开了桌面应用
  2407. U.MD.D.click(this, obj);
  2408. }, [_nsfxStudentDeskIconInfo[i]])
  2409. }, _frag); //
  2410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2413. }
  2414. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2415. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2416. _content = $$("div", {
  2417. className: "U_MD_D_KO",
  2418. "onmousedown": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_stiaStudentDeskIconInfo[i]]),
  2422. "onclick": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_stiaStudentDeskIconInfo[i]])
  2426. }, _frag); //
  2427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2430. }
  2431. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2432. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2433. _content = $$("div", {
  2434. className: "U_MD_D_KO",
  2435. "onmousedown": U.UF.C.closure(function (obj) {
  2436. //防止拖动图标即打开了桌面应用
  2437. U.MD.D.click(this, obj);
  2438. }, [_szdjgStudentDeskIconInfo[i]]),
  2439. "onclick": U.UF.C.closure(function (obj) {
  2440. //防止拖动图标即打开了桌面应用
  2441. U.MD.D.click(this, obj);
  2442. }, [_szdjgStudentDeskIconInfo[i]])
  2443. }, _frag); //
  2444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2447. }
  2448. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2449. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2450. _content = $$("div", {
  2451. className: "U_MD_D_KO",
  2452. "onmousedown": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_x010607StudentDeskIconInfo[i]]),
  2456. "onclick": U.UF.C.closure(function (obj) {
  2457. //防止拖动图标即打开了桌面应用
  2458. U.MD.D.click(this, obj);
  2459. }, [_x010607StudentDeskIconInfo[i]])
  2460. }, _frag); //
  2461. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2462. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2463. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2464. }
  2465. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2466. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2467. _content = $$("div", {
  2468. className: "U_MD_D_KO",
  2469. "onmousedown": U.UF.C.closure(function (obj) {
  2470. //防止拖动图标即打开了桌面应用
  2471. U.MD.D.click(this, obj);
  2472. }, [_xhlyStudentDeskIconInfo[i]]),
  2473. "onclick": U.UF.C.closure(function (obj) {
  2474. //防止拖动图标即打开了桌面应用
  2475. U.MD.D.click(this, obj);
  2476. }, [_xhlyStudentDeskIconInfo[i]])
  2477. }, _frag); //
  2478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2481. }
  2482. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2483. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2484. _content = $$("div", {
  2485. className: "U_MD_D_KO",
  2486. "onmousedown": U.UF.C.closure(function (obj) {
  2487. //防止拖动图标即打开了桌面应用
  2488. U.MD.D.click(this, obj);
  2489. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2490. "onclick": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2494. }, _frag); //
  2495. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2496. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2497. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2498. }
  2499. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2500. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2501. _content = $$("div", {
  2502. className: "U_MD_D_KO",
  2503. "onmousedown": U.UF.C.closure(function (obj) {
  2504. //防止拖动图标即打开了桌面应用
  2505. U.MD.D.click(this, obj);
  2506. }, [_x010503StudentDeskIconInfo[i]]),
  2507. "onclick": U.UF.C.closure(function (obj) {
  2508. //防止拖动图标即打开了桌面应用
  2509. U.MD.D.click(this, obj);
  2510. }, [_x010503StudentDeskIconInfo[i]])
  2511. }, _frag); //
  2512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2515. }
  2516. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2517. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2518. _content = $$("div", {
  2519. className: "U_MD_D_KO",
  2520. "onmousedown": U.UF.C.closure(function (obj) {
  2521. //防止拖动图标即打开了桌面应用
  2522. U.MD.D.click(this, obj);
  2523. }, [_x010504StudentDeskIconInfo[i]]),
  2524. "onclick": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_x010504StudentDeskIconInfo[i]])
  2528. }, _frag); //
  2529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2532. }
  2533. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2534. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2535. _content = $$("div", {
  2536. className: "U_MD_D_KO",
  2537. "onmousedown": U.UF.C.closure(function (obj) {
  2538. //防止拖动图标即打开了桌面应用
  2539. U.MD.D.click(this, obj);
  2540. }, [_x010204StudentDeskIconInfo[i]]),
  2541. "onclick": U.UF.C.closure(function (obj) {
  2542. //防止拖动图标即打开了桌面应用
  2543. U.MD.D.click(this, obj);
  2544. }, [_x010204StudentDeskIconInfo[i]])
  2545. }, _frag); //
  2546. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2547. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2548. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2549. }
  2550. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2551. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2552. _content = $$("div", {
  2553. className: "U_MD_D_KO",
  2554. "onmousedown": U.UF.C.closure(function (obj) {
  2555. //防止拖动图标即打开了桌面应用
  2556. U.MD.D.click(this, obj);
  2557. }, [_x320101StudentDeskIconInfo[i]]),
  2558. "onclick": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_x320101StudentDeskIconInfo[i]])
  2562. }, _frag); //
  2563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2566. }
  2567. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2568. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2569. _content = $$("div", {
  2570. className: "U_MD_D_KO",
  2571. "onmousedown": U.UF.C.closure(function (obj) {
  2572. //防止拖动图标即打开了桌面应用
  2573. U.MD.D.click(this, obj);
  2574. }, [_trailStudentDeskIconInfo[i]]),
  2575. "onclick": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_trailStudentDeskIconInfo[i]])
  2579. }, _frag); //
  2580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2583. }
  2584. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2585. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2586. _content = $$("div", {
  2587. className: "U_MD_D_KO",
  2588. "onmousedown": U.UF.C.closure(function (obj) {
  2589. //防止拖动图标即打开了桌面应用
  2590. U.MD.D.click(this, obj);
  2591. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2592. "onclick": U.UF.C.closure(function (obj) {
  2593. //防止拖动图标即打开了桌面应用
  2594. U.MD.D.click(this, obj);
  2595. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2596. }, _frag); //
  2597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2600. }
  2601. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2602. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2603. _content = $$("div", {
  2604. className: "U_MD_D_KO",
  2605. "onmousedown": U.UF.C.closure(function (obj) {
  2606. //防止拖动图标即打开了桌面应用
  2607. U.MD.D.click(this, obj);
  2608. }, [_x010608StudentDeskIconInfo[i]]),
  2609. "onclick": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_x010608StudentDeskIconInfo[i]])
  2613. }, _frag); //
  2614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2617. }
  2618. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2619. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2620. _content = $$("div", {
  2621. className: "U_MD_D_KO",
  2622. "onmousedown": U.UF.C.closure(function (obj) {
  2623. //防止拖动图标即打开了桌面应用
  2624. U.MD.D.click(this, obj);
  2625. }, [_x010611StudentDeskIconInfo[i]]),
  2626. "onclick": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_x010611StudentDeskIconInfo[i]])
  2630. }, _frag); //
  2631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2634. }
  2635. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2636. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2637. _content = $$("div", {
  2638. className: "U_MD_D_KO",
  2639. "onmousedown": U.UF.C.closure(function (obj) {
  2640. //防止拖动图标即打开了桌面应用
  2641. U.MD.D.click(this, obj);
  2642. }, [_tianyuantudentDeskIconInfo[i]]),
  2643. "onclick": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_tianyuantudentDeskIconInfo[i]])
  2647. }, _frag); //
  2648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2651. }
  2652. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2653. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2654. _content = $$("div", {
  2655. className: "U_MD_D_KO",
  2656. "onmousedown": U.UF.C.closure(function (obj) {
  2657. //防止拖动图标即打开了桌面应用
  2658. U.MD.D.click(this, obj);
  2659. }, [_siesStudentDeskIconInfo[i]]),
  2660. "onclick": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_siesStudentDeskIconInfo[i]])
  2664. }, _frag); //
  2665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2668. }
  2669. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2670. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2671. _content = $$("div", {
  2672. className: "U_MD_D_KO",
  2673. "onmousedown": U.UF.C.closure(function (obj) {
  2674. //防止拖动图标即打开了桌面应用
  2675. U.MD.D.click(this, obj);
  2676. }, [_guzmsStudentDeskIconInfo[i]]),
  2677. "onclick": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_guzmsStudentDeskIconInfo[i]])
  2681. }, _frag); //
  2682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2685. }
  2686. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2687. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2688. _content = $$("div", {
  2689. className: "U_MD_D_KO",
  2690. "onmousedown": U.UF.C.closure(function (obj) {
  2691. //防止拖动图标即打开了桌面应用
  2692. U.MD.D.click(this, obj);
  2693. }, [_hkStudentDeskIconInfo[i]]),
  2694. "onclick": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_hkStudentDeskIconInfo[i]])
  2698. }, _frag); //
  2699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2702. }
  2703. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2704. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2705. _content = $$("div", {
  2706. className: "U_MD_D_KO",
  2707. "onmousedown": U.UF.C.closure(function (obj) {
  2708. //防止拖动图标即打开了桌面应用
  2709. U.MD.D.click(this, obj);
  2710. }, [_hkaceStudentDeskIconInfo[i]]),
  2711. "onclick": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_hkaceStudentDeskIconInfo[i]])
  2715. }, _frag); //
  2716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2719. }
  2720. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2721. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2722. _content = $$("div", {
  2723. className: "U_MD_D_KO",
  2724. "onmousedown": U.UF.C.closure(function (obj) {
  2725. //防止拖动图标即打开了桌面应用
  2726. U.MD.D.click(this, obj);
  2727. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2728. "onclick": U.UF.C.closure(function (obj) {
  2729. //防止拖动图标即打开了桌面应用
  2730. U.MD.D.click(this, obj);
  2731. }, [_BSDNSstudentDesktopIconInfo[i]])
  2732. }, _frag); //
  2733. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2734. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2735. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2736. }
  2737. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2738. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2739. _content = $$("div", {
  2740. className: "U_MD_D_KO",
  2741. "onmousedown": U.UF.C.closure(function (obj) {
  2742. //防止拖动图标即打开了桌面应用
  2743. U.MD.D.click(this, obj);
  2744. }, [_cocobizStudentDeskIconInfo[i]]),
  2745. "onclick": U.UF.C.closure(function (obj) {
  2746. //防止拖动图标即打开了桌面应用
  2747. U.MD.D.click(this, obj);
  2748. }, [_cocobizStudentDeskIconInfo[i]])
  2749. }, _frag); //
  2750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2753. }
  2754. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2755. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2756. _content = $$("div", {
  2757. className: "U_MD_D_KO",
  2758. "onmousedown": U.UF.C.closure(function (obj) {
  2759. //防止拖动图标即打开了桌面应用
  2760. U.MD.D.click(this, obj);
  2761. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2762. "onclick": U.UF.C.closure(function (obj) {
  2763. //防止拖动图标即打开了桌面应用
  2764. U.MD.D.click(this, obj);
  2765. }, [_xxzjkyStudentDeskIconInfo[i]])
  2766. }, _frag); //
  2767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2770. }
  2771. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2772. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2773. _content = $$("div", {
  2774. className: "U_MD_D_KO",
  2775. "onmousedown": U.UF.C.closure(function (obj) {
  2776. //防止拖动图标即打开了桌面应用
  2777. U.MD.D.click(this, obj);
  2778. }, [_studentDesktopIconInfo[i]]),
  2779. "onclick": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_studentDesktopIconInfo[i]])
  2783. }, _frag); //
  2784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2787. }
  2788. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2789. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2790. _content = $$("div", {
  2791. className: "U_MD_D_KO",
  2792. "onmousedown": U.UF.C.closure(function (obj) {
  2793. //防止拖动图标即打开了桌面应用
  2794. U.MD.D.click(this, obj);
  2795. }, [_tcStudentDeskIconInfo[i]]),
  2796. "onclick": U.UF.C.closure(function (obj) {
  2797. //防止拖动图标即打开了桌面应用
  2798. U.MD.D.click(this, obj);
  2799. }, [_tcStudentDeskIconInfo[i]])
  2800. }, _frag); //
  2801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2804. }
  2805. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2806. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2807. _content = $$("div", {
  2808. className: "U_MD_D_KO",
  2809. "onmousedown": U.UF.C.closure(function (obj) {
  2810. //防止拖动图标即打开了桌面应用
  2811. U.MD.D.click(this, obj);
  2812. }, [_szscStudentDeskIconInfo[i]]),
  2813. "onclick": U.UF.C.closure(function (obj) {
  2814. //防止拖动图标即打开了桌面应用
  2815. U.MD.D.click(this, obj);
  2816. }, [_szscStudentDeskIconInfo[i]])
  2817. }, _frag); //
  2818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2821. }
  2822. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2823. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2824. _content = $$("div", {
  2825. className: "U_MD_D_KO",
  2826. "onmousedown": U.UF.C.closure(function (obj) {
  2827. //防止拖动图标即打开了桌面应用
  2828. U.MD.D.click(this, obj);
  2829. }, [_studentDesktopIconInfo3[i]]),
  2830. "onclick": U.UF.C.closure(function (obj) {
  2831. //防止拖动图标即打开了桌面应用
  2832. U.MD.D.click(this, obj);
  2833. }, [_studentDesktopIconInfo3[i]])
  2834. }, _frag); //
  2835. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2836. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2837. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2838. }
  2839. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2840. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2841. _content = $$("div", {
  2842. className: "U_MD_D_KO",
  2843. "onmousedown": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_studentDesktopIconInfo2[i]]),
  2847. "onclick": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_studentDesktopIconInfo2[i]])
  2851. }, _frag); //
  2852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2855. }
  2856. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2857. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2858. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2859. continue
  2860. }
  2861. _content = $$("div", {
  2862. className: "U_MD_D_KO",
  2863. "onmousedown": U.UF.C.closure(function (obj) {
  2864. //防止拖动图标即打开了桌面应用
  2865. U.MD.D.click(this, obj);
  2866. }, [_wanketeacherDesktopIconInfo[i]]),
  2867. "onclick": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_wanketeacherDesktopIconInfo[i]])
  2871. }, _frag); //
  2872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2875. }
  2876. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2877. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2878. _content = $$("div", {
  2879. className: "U_MD_D_KO",
  2880. "onmousedown": U.UF.C.closure(function (obj) {
  2881. //防止拖动图标即打开了桌面应用
  2882. U.MD.D.click(this, obj);
  2883. }, [_wankeAdminDesktopIconInfo[i]]),
  2884. "onclick": U.UF.C.closure(function (obj) {
  2885. //防止拖动图标即打开了桌面应用
  2886. U.MD.D.click(this, obj);
  2887. }, [_wankeAdminDesktopIconInfo[i]])
  2888. }, _frag); //
  2889. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2890. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2891. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2892. }
  2893. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2894. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2895. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2896. continue
  2897. }
  2898. _content = $$("div", {
  2899. className: "U_MD_D_KO",
  2900. "onmousedown": U.UF.C.closure(function (obj) {
  2901. //防止拖动图标即打开了桌面应用
  2902. U.MD.D.click(this, obj);
  2903. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2904. "onclick": U.UF.C.closure(function (obj) {
  2905. //防止拖动图标即打开了桌面应用
  2906. U.MD.D.click(this, obj);
  2907. }, [_scnuaiTeacherDeskIconInfo[i]])
  2908. }, _frag); //
  2909. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2910. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2911. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2912. }
  2913. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2914. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2915. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2916. continue
  2917. }
  2918. _content = $$("div", {
  2919. className: "U_MD_D_KO",
  2920. "onmousedown": U.UF.C.closure(function (obj) {
  2921. //防止拖动图标即打开了桌面应用
  2922. U.MD.D.click(this, obj);
  2923. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2924. "onclick": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_BSDNSteacherDesktopIconInfo[i]])
  2928. }, _frag); //
  2929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2932. }
  2933. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2934. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_scnuaiAdminDeskIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_scnuaiAdminDeskIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2951. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2952. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2953. continue
  2954. }
  2955. _content = $$("div", {
  2956. className: "U_MD_D_KO",
  2957. "onmousedown": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_jccssylTeacherDeskIconInfo[i]]),
  2961. "onclick": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_jccssylTeacherDeskIconInfo[i]])
  2965. }, _frag); //
  2966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2969. }
  2970. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2971. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2972. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2973. continue
  2974. }
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_caleTeacherDeskIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_caleTeacherDeskIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2991. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2992. _content = $$("div", {
  2993. className: "U_MD_D_KO",
  2994. "onmousedown": U.UF.C.closure(function (obj) {
  2995. //防止拖动图标即打开了桌面应用
  2996. U.MD.D.click(this, obj);
  2997. }, [_tpcOrganizerDeskIconInfo[i]]),
  2998. "onclick": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_tpcOrganizerDeskIconInfo[i]])
  3002. }, _frag); //
  3003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3006. }
  3007. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3008. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3009. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3010. continue
  3011. }
  3012. _content = $$("div", {
  3013. className: "U_MD_D_KO",
  3014. "onmousedown": U.UF.C.closure(function (obj) {
  3015. //防止拖动图标即打开了桌面应用
  3016. U.MD.D.click(this, obj);
  3017. }, [_tpcTeacherDeskIconInfo[i]]),
  3018. "onclick": U.UF.C.closure(function (obj) {
  3019. //防止拖动图标即打开了桌面应用
  3020. U.MD.D.click(this, obj);
  3021. }, [_tpcTeacherDeskIconInfo[i]])
  3022. }, _frag); //
  3023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3026. }
  3027. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3028. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3029. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3030. continue
  3031. }
  3032. _content = $$("div", {
  3033. className: "U_MD_D_KO",
  3034. "onmousedown": U.UF.C.closure(function (obj) {
  3035. //防止拖动图标即打开了桌面应用
  3036. U.MD.D.click(this, obj);
  3037. }, [_teacherDesktopIconInfo2[i]]),
  3038. "onclick": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_teacherDesktopIconInfo2[i]])
  3042. }, _frag); //
  3043. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3044. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3045. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3046. }
  3047. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3048. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3049. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3050. continue
  3051. }
  3052. _content = $$("div", {
  3053. className: "U_MD_D_KO",
  3054. "onmousedown": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_thuioeTeacherDeskIconInfo[i]]),
  3058. "onclick": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_thuioeTeacherDeskIconInfo[i]])
  3062. }, _frag); //
  3063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3066. }
  3067. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3068. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3069. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3070. continue
  3071. }
  3072. _content = $$("div", {
  3073. className: "U_MD_D_KO",
  3074. "onmousedown": U.UF.C.closure(function (obj) {
  3075. //防止拖动图标即打开了桌面应用
  3076. U.MD.D.click(this, obj);
  3077. }, [_lotechTeacherDeskIconInfo[i]]),
  3078. "onclick": U.UF.C.closure(function (obj) {
  3079. //防止拖动图标即打开了桌面应用
  3080. U.MD.D.click(this, obj);
  3081. }, [_lotechTeacherDeskIconInfo[i]])
  3082. }, _frag); //
  3083. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3084. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3085. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3086. }//
  3087. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3088. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3089. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3090. continue
  3091. }
  3092. _content = $$("div", {
  3093. className: "U_MD_D_KO",
  3094. "onmousedown": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3098. "onclick": U.UF.C.closure(function (obj) {
  3099. //防止拖动图标即打开了桌面应用
  3100. U.MD.D.click(this, obj);
  3101. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3102. }, _frag); //
  3103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3106. }
  3107. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3108. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3109. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3110. continue
  3111. }
  3112. _content = $$("div", {
  3113. className: "U_MD_D_KO",
  3114. "onmousedown": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_siesTeacherDeskIconInfo[i]]),
  3118. "onclick": U.UF.C.closure(function (obj) {
  3119. //防止拖动图标即打开了桌面应用
  3120. U.MD.D.click(this, obj);
  3121. }, [_siesTeacherDeskIconInfo[i]])
  3122. }, _frag); //
  3123. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3124. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3125. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3126. }
  3127. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3128. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3129. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3130. continue
  3131. }
  3132. _content = $$("div", {
  3133. className: "U_MD_D_KO",
  3134. "onmousedown": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_guzmsTeacherDeskIconInfo[i]]),
  3138. "onclick": U.UF.C.closure(function (obj) {
  3139. //防止拖动图标即打开了桌面应用
  3140. U.MD.D.click(this, obj);
  3141. }, [_guzmsTeacherDeskIconInfo[i]])
  3142. }, _frag); //
  3143. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3144. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3145. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3146. }
  3147. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3148. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3149. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3150. continue
  3151. }
  3152. _content = $$("div", {
  3153. className: "U_MD_D_KO",
  3154. "onmousedown": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_longhuaTeacherDeskIconInfo[i]]),
  3158. "onclick": U.UF.C.closure(function (obj) {
  3159. //防止拖动图标即打开了桌面应用
  3160. U.MD.D.click(this, obj);
  3161. }, [_longhuaTeacherDeskIconInfo[i]])
  3162. }, _frag); //
  3163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3166. }
  3167. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3168. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3169. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3170. continue
  3171. }
  3172. _content = $$("div", {
  3173. className: "U_MD_D_KO",
  3174. "onmousedown": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_ytyTeacherDeskIconInfo[i]]),
  3178. "onclick": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_ytyTeacherDeskIconInfo[i]])
  3182. }, _frag); //
  3183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3186. }
  3187. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3188. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3189. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3190. continue
  3191. }
  3192. _content = $$("div", {
  3193. className: "U_MD_D_KO",
  3194. "onmousedown": U.UF.C.closure(function (obj) {
  3195. //防止拖动图标即打开了桌面应用
  3196. U.MD.D.click(this, obj);
  3197. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3198. "onclick": U.UF.C.closure(function (obj) {
  3199. //防止拖动图标即打开了桌面应用
  3200. U.MD.D.click(this, obj);
  3201. }, [_yunhaiTeacherDeskIconInfo[i]])
  3202. }, _frag); //
  3203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3206. } //_hkStudentDeskIconInfo
  3207. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3208. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3209. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3210. continue
  3211. }
  3212. _content = $$("div", {
  3213. className: "U_MD_D_KO",
  3214. "onmousedown": U.UF.C.closure(function (obj) {
  3215. //防止拖动图标即打开了桌面应用
  3216. U.MD.D.click(this, obj);
  3217. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3218. "onclick": U.UF.C.closure(function (obj) {
  3219. //防止拖动图标即打开了桌面应用
  3220. U.MD.D.click(this, obj);
  3221. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3222. }, _frag); //
  3223. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3224. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3225. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3226. }
  3227. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3228. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3229. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3230. continue
  3231. }
  3232. _content = $$("div", {
  3233. className: "U_MD_D_KO",
  3234. "onmousedown": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_hkTeacherDeskIconInfo[i]]),
  3238. "onclick": U.UF.C.closure(function (obj) {
  3239. //防止拖动图标即打开了桌面应用
  3240. U.MD.D.click(this, obj);
  3241. }, [_hkTeacherDeskIconInfo[i]])
  3242. }, _frag); //
  3243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3246. }
  3247. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3248. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3249. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3250. continue
  3251. }
  3252. _content = $$("div", {
  3253. className: "U_MD_D_KO",
  3254. "onmousedown": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_hkaceTeacherDeskIconInfo[i]]),
  3258. "onclick": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_hkaceTeacherDeskIconInfo[i]])
  3262. }, _frag); //
  3263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3266. }
  3267. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3268. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3269. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3270. continue
  3271. }
  3272. _content = $$("div", {
  3273. className: "U_MD_D_KO",
  3274. "onmousedown": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_cocobizTeacherDeskIconInfo[i]]),
  3278. "onclick": U.UF.C.closure(function (obj) {
  3279. //防止拖动图标即打开了桌面应用
  3280. U.MD.D.click(this, obj);
  3281. }, [_cocobizTeacherDeskIconInfo[i]])
  3282. }, _frag); //
  3283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3286. }
  3287. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3288. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3289. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3290. continue
  3291. }
  3292. _content = $$("div", {
  3293. className: "U_MD_D_KO",
  3294. "onmousedown": U.UF.C.closure(function (obj) {
  3295. //防止拖动图标即打开了桌面应用
  3296. U.MD.D.click(this, obj);
  3297. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3298. "onclick": U.UF.C.closure(function (obj) {
  3299. //防止拖动图标即打开了桌面应用
  3300. U.MD.D.click(this, obj);
  3301. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3302. }, _frag); //
  3303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3306. }
  3307. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3308. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3309. _content = $$("div", {
  3310. className: "U_MD_D_KO",
  3311. "onmousedown": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_gdjgAdminDeskIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_gdjgAdminDeskIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3323. }
  3324. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3325. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3326. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3327. continue
  3328. }
  3329. _content = $$("div", {
  3330. className: "U_MD_D_KO",
  3331. "onmousedown": U.UF.C.closure(function (obj) {
  3332. //防止拖动图标即打开了桌面应用
  3333. U.MD.D.click(this, obj);
  3334. }, [_gdjgTeacherDeskIconInfo[i]]),
  3335. "onclick": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_gdjgTeacherDeskIconInfo[i]])
  3339. }, _frag); //
  3340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3343. }
  3344. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3345. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3346. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3347. continue
  3348. }
  3349. _content = $$("div", {
  3350. className: "U_MD_D_KO",
  3351. "onmousedown": U.UF.C.closure(function (obj) {
  3352. //防止拖动图标即打开了桌面应用
  3353. U.MD.D.click(this, obj);
  3354. }, [_szherTeacherDeskIconInfo[i]]),
  3355. "onclick": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_szherTeacherDeskIconInfo[i]])
  3359. }, _frag); //
  3360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3363. }
  3364. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3365. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3366. _content = $$("div", {
  3367. className: "U_MD_D_KO",
  3368. "onmousedown": U.UF.C.closure(function (obj) {
  3369. //防止拖动图标即打开了桌面应用
  3370. U.MD.D.click(this, obj);
  3371. }, [_heyuannAdminDeskIconInfo[i]]),
  3372. "onclick": U.UF.C.closure(function (obj) {
  3373. //防止拖动图标即打开了桌面应用
  3374. U.MD.D.click(this, obj);
  3375. }, [_heyuannAdminDeskIconInfo[i]])
  3376. }, _frag); //
  3377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3380. }
  3381. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3382. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3383. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3384. continue
  3385. }
  3386. _content = $$("div", {
  3387. className: "U_MD_D_KO",
  3388. "onmousedown": U.UF.C.closure(function (obj) {
  3389. //防止拖动图标即打开了桌面应用
  3390. U.MD.D.click(this, obj);
  3391. }, [_heyuanTeacherDeskIconInfo[i]]),
  3392. "onclick": U.UF.C.closure(function (obj) {
  3393. //防止拖动图标即打开了桌面应用
  3394. U.MD.D.click(this, obj);
  3395. }, [_heyuanTeacherDeskIconInfo[i]])
  3396. }, _frag); //
  3397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3400. } //
  3401. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3402. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3403. _content = $$("div", {
  3404. className: "U_MD_D_KO",
  3405. "onmousedown": U.UF.C.closure(function (obj) {
  3406. //防止拖动图标即打开了桌面应用
  3407. U.MD.D.click(this, obj);
  3408. }, [_dseiAdminDeskIconInfo[i]]),
  3409. "onclick": U.UF.C.closure(function (obj) {
  3410. //防止拖动图标即打开了桌面应用
  3411. U.MD.D.click(this, obj);
  3412. }, [_dseiAdminDeskIconInfo[i]])
  3413. }, _frag); //
  3414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3417. }
  3418. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3419. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3420. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3421. continue
  3422. }
  3423. _content = $$("div", {
  3424. className: "U_MD_D_KO",
  3425. "onmousedown": U.UF.C.closure(function (obj) {
  3426. //防止拖动图标即打开了桌面应用
  3427. U.MD.D.click(this, obj);
  3428. }, [_dseiTeacherDeskIconInfo[i]]),
  3429. "onclick": U.UF.C.closure(function (obj) {
  3430. //防止拖动图标即打开了桌面应用
  3431. U.MD.D.click(this, obj);
  3432. }, [_dseiTeacherDeskIconInfo[i]])
  3433. }, _frag); //
  3434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3437. } //
  3438. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3439. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3440. _content = $$("div", {
  3441. className: "U_MD_D_KO",
  3442. "onmousedown": U.UF.C.closure(function (obj) {
  3443. //防止拖动图标即打开了桌面应用
  3444. U.MD.D.click(this, obj);
  3445. }, [_chjyjAdminDeskIconInfo[i]]),
  3446. "onclick": U.UF.C.closure(function (obj) {
  3447. //防止拖动图标即打开了桌面应用
  3448. U.MD.D.click(this, obj);
  3449. }, [_chjyjAdminDeskIconInfo[i]])
  3450. }, _frag); //
  3451. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3452. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3453. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3454. }//
  3455. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3456. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3457. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3458. continue
  3459. }
  3460. _content = $$("div", {
  3461. className: "U_MD_D_KO",
  3462. "onmousedown": U.UF.C.closure(function (obj) {
  3463. //防止拖动图标即打开了桌面应用
  3464. U.MD.D.click(this, obj);
  3465. }, [_chjyjTeacherDeskIconInfo[i]]),
  3466. "onclick": U.UF.C.closure(function (obj) {
  3467. //防止拖动图标即打开了桌面应用
  3468. U.MD.D.click(this, obj);
  3469. }, [_chjyjTeacherDeskIconInfo[i]])
  3470. }, _frag); //
  3471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3474. }
  3475. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3476. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3477. _content = $$("div", {
  3478. className: "U_MD_D_KO",
  3479. "onmousedown": U.UF.C.closure(function (obj) {
  3480. //防止拖动图标即打开了桌面应用
  3481. U.MD.D.click(this, obj);
  3482. }, [_szjkyAdminDeskIconInfo[i]]),
  3483. "onclick": U.UF.C.closure(function (obj) {
  3484. //防止拖动图标即打开了桌面应用
  3485. U.MD.D.click(this, obj);
  3486. }, [_szjkyAdminDeskIconInfo[i]])
  3487. }, _frag); //
  3488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3491. }//
  3492. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3493. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3494. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3495. continue
  3496. }
  3497. _content = $$("div", {
  3498. className: "U_MD_D_KO",
  3499. "onmousedown": U.UF.C.closure(function (obj) {
  3500. //防止拖动图标即打开了桌面应用
  3501. U.MD.D.click(this, obj);
  3502. }, [_szjkyTeacherDeskIconInfo[i]]),
  3503. "onclick": U.UF.C.closure(function (obj) {
  3504. //防止拖动图标即打开了桌面应用
  3505. U.MD.D.click(this, obj);
  3506. }, [_szjkyTeacherDeskIconInfo[i]])
  3507. }, _frag); //
  3508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3511. }
  3512. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3513. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3514. _content = $$("div", {
  3515. className: "U_MD_D_KO",
  3516. "onmousedown": U.UF.C.closure(function (obj) {
  3517. //防止拖动图标即打开了桌面应用
  3518. U.MD.D.click(this, obj);
  3519. }, [_x020201AdminDeskIconInfo[i]]),
  3520. "onclick": U.UF.C.closure(function (obj) {
  3521. //防止拖动图标即打开了桌面应用
  3522. U.MD.D.click(this, obj);
  3523. }, [_x020201AdminDeskIconInfo[i]])
  3524. }, _frag); //
  3525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3528. }//
  3529. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3530. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3531. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3532. continue
  3533. }
  3534. _content = $$("div", {
  3535. className: "U_MD_D_KO",
  3536. "onmousedown": U.UF.C.closure(function (obj) {
  3537. //防止拖动图标即打开了桌面应用
  3538. U.MD.D.click(this, obj);
  3539. }, [_x020201TeacherDeskIconInfo[i]]),
  3540. "onclick": U.UF.C.closure(function (obj) {
  3541. //防止拖动图标即打开了桌面应用
  3542. U.MD.D.click(this, obj);
  3543. }, [_x020201TeacherDeskIconInfo[i]])
  3544. }, _frag); //
  3545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3548. }
  3549. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3550. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3551. _content = $$("div", {
  3552. className: "U_MD_D_KO",
  3553. "onmousedown": U.UF.C.closure(function (obj) {
  3554. //防止拖动图标即打开了桌面应用
  3555. U.MD.D.click(this, obj);
  3556. }, [_SCNUETAdminDeskIconInfo[i]]),
  3557. "onclick": U.UF.C.closure(function (obj) {
  3558. //防止拖动图标即打开了桌面应用
  3559. U.MD.D.click(this, obj);
  3560. }, [_SCNUETAdminDeskIconInfo[i]])
  3561. }, _frag); //
  3562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3565. }//
  3566. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3567. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3568. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3569. continue
  3570. }
  3571. _content = $$("div", {
  3572. className: "U_MD_D_KO",
  3573. "onmousedown": U.UF.C.closure(function (obj) {
  3574. //防止拖动图标即打开了桌面应用
  3575. U.MD.D.click(this, obj);
  3576. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3577. "onclick": U.UF.C.closure(function (obj) {
  3578. //防止拖动图标即打开了桌面应用
  3579. U.MD.D.click(this, obj);
  3580. }, [_SCNUETTeacherDeskIconInfo[i]])
  3581. }, _frag); //
  3582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3585. }
  3586. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3587. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3588. _content = $$("div", {
  3589. className: "U_MD_D_KO",
  3590. "onmousedown": U.UF.C.closure(function (obj) {
  3591. //防止拖动图标即打开了桌面应用
  3592. U.MD.D.click(this, obj);
  3593. }, [_futianAdminDeskIconInfo[i]]),
  3594. "onclick": U.UF.C.closure(function (obj) {
  3595. //防止拖动图标即打开了桌面应用
  3596. U.MD.D.click(this, obj);
  3597. }, [_futianAdminDeskIconInfo[i]])
  3598. }, _frag); //
  3599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3602. }
  3603. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3604. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3605. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3606. continue
  3607. }
  3608. _content = $$("div", {
  3609. className: "U_MD_D_KO",
  3610. "onmousedown": U.UF.C.closure(function (obj) {
  3611. //防止拖动图标即打开了桌面应用
  3612. U.MD.D.click(this, obj);
  3613. }, [_futianTeacherDeskIconInfo[i]]),
  3614. "onclick": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_futianTeacherDeskIconInfo[i]])
  3618. }, _frag); //
  3619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3622. }
  3623. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3624. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3625. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3626. continue
  3627. }
  3628. _content = $$("div", {
  3629. className: "U_MD_D_KO",
  3630. "onmousedown": U.UF.C.closure(function (obj) {
  3631. //防止拖动图标即打开了桌面应用
  3632. U.MD.D.click(this, obj);
  3633. }, [_MingdeTeacherDeskIcon[i]]),
  3634. "onclick": U.UF.C.closure(function (obj) {
  3635. //防止拖动图标即打开了桌面应用
  3636. U.MD.D.click(this, obj);
  3637. }, [_MingdeTeacherDeskIcon[i]])
  3638. }, _frag); //
  3639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3642. }
  3643. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3644. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3645. _content = $$("div", {
  3646. className: "U_MD_D_KO",
  3647. "onmousedown": U.UF.C.closure(function (obj) {
  3648. //防止拖动图标即打开了桌面应用
  3649. U.MD.D.click(this, obj);
  3650. }, [_lhsAdminDesktopIconInfo[i]]),
  3651. "onclick": U.UF.C.closure(function (obj) {
  3652. //防止拖动图标即打开了桌面应用
  3653. U.MD.D.click(this, obj);
  3654. }, [_lhsAdminDesktopIconInfo[i]])
  3655. }, _frag); //
  3656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3659. }
  3660. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3661. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3662. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3663. continue
  3664. }
  3665. _content = $$("div", {
  3666. className: "U_MD_D_KO",
  3667. "onmousedown": U.UF.C.closure(function (obj) {
  3668. //防止拖动图标即打开了桌面应用
  3669. U.MD.D.click(this, obj);
  3670. }, [_lhsteacherDesktopIconInfo[i]]),
  3671. "onclick": U.UF.C.closure(function (obj) {
  3672. //防止拖动图标即打开了桌面应用
  3673. U.MD.D.click(this, obj);
  3674. }, [_lhsteacherDesktopIconInfo[i]])
  3675. }, _frag); //
  3676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3679. }
  3680. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3681. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3682. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3683. continue
  3684. }
  3685. _content = $$("div", {
  3686. className: "U_MD_D_KO",
  3687. "onmousedown": U.UF.C.closure(function (obj) {
  3688. //防止拖动图标即打开了桌面应用
  3689. U.MD.D.click(this, obj);
  3690. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3691. "onclick": U.UF.C.closure(function (obj) {
  3692. //防止拖动图标即打开了桌面应用
  3693. U.MD.D.click(this, obj);
  3694. }, [_zhoujiateacherDesktopIconInfo[i]])
  3695. }, _frag); //
  3696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3699. }
  3700. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3701. for (i = 0; i < _hanDeskIcon.length; i++) {
  3702. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3703. continue
  3704. }
  3705. _content = $$("div", {
  3706. className: "U_MD_D_KO",
  3707. "onmousedown": U.UF.C.closure(function (obj) {
  3708. //防止拖动图标即打开了桌面应用
  3709. U.MD.D.click(this, obj);
  3710. }, [_hanDeskIcon[i]]),
  3711. "onclick": U.UF.C.closure(function (obj) {
  3712. //防止拖动图标即打开了桌面应用
  3713. U.MD.D.click(this, obj);
  3714. }, [_hanDeskIcon[i]])
  3715. }, _frag); //
  3716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3719. }
  3720. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3721. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3722. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3723. continue
  3724. }
  3725. _content = $$("div", {
  3726. className: "U_MD_D_KO",
  3727. "onmousedown": U.UF.C.closure(function (obj) {
  3728. //防止拖动图标即打开了桌面应用
  3729. U.MD.D.click(this, obj);
  3730. }, [_orgStemDeskIcon[i]]),
  3731. "onclick": U.UF.C.closure(function (obj) {
  3732. //防止拖动图标即打开了桌面应用
  3733. U.MD.D.click(this, obj);
  3734. }, [_orgStemDeskIcon[i]])
  3735. }, _frag); //
  3736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3739. }
  3740. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3741. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3742. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3743. continue
  3744. }
  3745. _content = $$("div", {
  3746. className: "U_MD_D_KO",
  3747. "onmousedown": U.UF.C.closure(function (obj) {
  3748. //防止拖动图标即打开了桌面应用
  3749. U.MD.D.click(this, obj);
  3750. }, [_szulsDeskIcon[i]]),
  3751. "onclick": U.UF.C.closure(function (obj) {
  3752. //防止拖动图标即打开了桌面应用
  3753. U.MD.D.click(this, obj);
  3754. }, [_szulsDeskIcon[i]])
  3755. }, _frag); //
  3756. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3757. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3758. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3759. }
  3760. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3761. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3762. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3763. continue
  3764. }
  3765. _content = $$("div", {
  3766. className: "U_MD_D_KO",
  3767. "onmousedown": U.UF.C.closure(function (obj) {
  3768. //防止拖动图标即打开了桌面应用
  3769. U.MD.D.click(this, obj);
  3770. }, [_orgDesktopIconInfo[i]]),
  3771. "onclick": U.UF.C.closure(function (obj) {
  3772. //防止拖动图标即打开了桌面应用
  3773. U.MD.D.click(this, obj);
  3774. }, [_orgDesktopIconInfo[i]])
  3775. }, _frag); //
  3776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3779. }
  3780. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3781. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3782. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3783. continue
  3784. }
  3785. _content = $$("div", {
  3786. className: "U_MD_D_KO",
  3787. "onmousedown": U.UF.C.closure(function (obj) {
  3788. //防止拖动图标即打开了桌面应用
  3789. U.MD.D.click(this, obj);
  3790. }, [_schoolDesktopIconInfo[i]]),
  3791. "onclick": U.UF.C.closure(function (obj) {
  3792. //防止拖动图标即打开了桌面应用
  3793. U.MD.D.click(this, obj);
  3794. }, [_schoolDesktopIconInfo[i]])
  3795. }, _frag); //
  3796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3799. }
  3800. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3801. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3802. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3803. continue
  3804. }
  3805. _content = $$("div", {
  3806. className: "U_MD_D_KO",
  3807. "onmousedown": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_GMteacherDesktopIconInfo[i]]),
  3811. "onclick": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_GMteacherDesktopIconInfo[i]])
  3815. }, _frag); //
  3816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3819. }
  3820. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3821. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3822. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3823. continue
  3824. }
  3825. _content = $$("div", {
  3826. className: "U_MD_D_KO",
  3827. "onmousedown": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_SONGteacherDesktopIconInfo[i]]),
  3831. "onclick": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_SONGteacherDesktopIconInfo[i]])
  3835. }, _frag); //
  3836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3839. }
  3840. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3841. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3842. _content = $$("div", {
  3843. className: "U_MD_D_KO",
  3844. "onmousedown": U.UF.C.closure(function (obj) {
  3845. //防止拖动图标即打开了桌面应用
  3846. U.MD.D.click(this, obj);
  3847. }, [_GMstudentDesktopIconInfo[i]]),
  3848. "onclick": U.UF.C.closure(function (obj) {
  3849. //防止拖动图标即打开了桌面应用
  3850. U.MD.D.click(this, obj);
  3851. }, [_GMstudentDesktopIconInfo[i]])
  3852. }, _frag); //
  3853. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3854. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3855. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3856. }
  3857. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3858. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3859. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3860. continue
  3861. }
  3862. _content = $$("div", {
  3863. className: "U_MD_D_KO",
  3864. "onmousedown": U.UF.C.closure(function (obj) {
  3865. //防止拖动图标即打开了桌面应用
  3866. U.MD.D.click(this, obj);
  3867. }, [_tcTeacherDeskIconInfo[i]]),
  3868. "onclick": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_tcTeacherDeskIconInfo[i]])
  3872. }, _frag); //
  3873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3876. }
  3877. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3878. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3879. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3880. continue
  3881. }
  3882. _content = $$("div", {
  3883. className: "U_MD_D_KO",
  3884. "onmousedown": U.UF.C.closure(function (obj) {
  3885. //防止拖动图标即打开了桌面应用
  3886. U.MD.D.click(this, obj);
  3887. }, [_tcOrganizerDeskIconInfo[i]]),
  3888. "onclick": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_tcOrganizerDeskIconInfo[i]])
  3892. }, _frag); //
  3893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3896. }
  3897. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3898. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3899. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3900. continue
  3901. }
  3902. _content = $$("div", {
  3903. className: "U_MD_D_KO",
  3904. "onmousedown": U.UF.C.closure(function (obj) {
  3905. //防止拖动图标即打开了桌面应用
  3906. U.MD.D.click(this, obj);
  3907. }, [_szscTeacherDeskIconInfo[i]]),
  3908. "onclick": U.UF.C.closure(function (obj) {
  3909. //防止拖动图标即打开了桌面应用
  3910. U.MD.D.click(this, obj);
  3911. }, [_szscTeacherDeskIconInfo[i]])
  3912. }, _frag); //
  3913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3916. }
  3917. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3918. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3919. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3920. continue
  3921. }
  3922. _content = $$("div", {
  3923. className: "U_MD_D_KO",
  3924. "onmousedown": U.UF.C.closure(function (obj) {
  3925. //防止拖动图标即打开了桌面应用
  3926. U.MD.D.click(this, obj);
  3927. }, [_szscOrganizerDeskIconInfo[i]]),
  3928. "onclick": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_szscOrganizerDeskIconInfo[i]])
  3932. }, _frag); //
  3933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3936. }
  3937. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3938. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3939. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3940. continue
  3941. }
  3942. _content = $$("div", {
  3943. className: "U_MD_D_KO",
  3944. "onmousedown": U.UF.C.closure(function (obj) {
  3945. //防止拖动图标即打开了桌面应用
  3946. U.MD.D.click(this, obj);
  3947. }, [_nsfxTeacherDeskIconInfo[i]]),
  3948. "onclick": U.UF.C.closure(function (obj) {
  3949. //防止拖动图标即打开了桌面应用
  3950. U.MD.D.click(this, obj);
  3951. }, [_nsfxTeacherDeskIconInfo[i]])
  3952. }, _frag); //
  3953. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3954. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3955. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3956. }
  3957. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3958. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3959. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3960. continue
  3961. }
  3962. _content = $$("div", {
  3963. className: "U_MD_D_KO",
  3964. "onmousedown": U.UF.C.closure(function (obj) {
  3965. //防止拖动图标即打开了桌面应用
  3966. U.MD.D.click(this, obj);
  3967. }, [_stiaTeacherDeskIconInfo[i]]),
  3968. "onclick": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_stiaTeacherDeskIconInfo[i]])
  3972. }, _frag); //
  3973. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3974. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3975. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3976. }
  3977. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3978. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3979. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3980. continue
  3981. }
  3982. _content = $$("div", {
  3983. className: "U_MD_D_KO",
  3984. "onmousedown": U.UF.C.closure(function (obj) {
  3985. //防止拖动图标即打开了桌面应用
  3986. U.MD.D.click(this, obj);
  3987. }, [_szdjgTeacherDeskIconInfo[i]]),
  3988. "onclick": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_szdjgTeacherDeskIconInfo[i]])
  3992. }, _frag); //
  3993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3996. }
  3997. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3998. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3999. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4000. continue
  4001. }
  4002. _content = $$("div", {
  4003. className: "U_MD_D_KO",
  4004. "onmousedown": U.UF.C.closure(function (obj) {
  4005. //防止拖动图标即打开了桌面应用
  4006. U.MD.D.click(this, obj);
  4007. }, [_x010607TeacherDeskIconInfo[i]]),
  4008. "onclick": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_x010607TeacherDeskIconInfo[i]])
  4012. }, _frag); //
  4013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4016. }
  4017. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4018. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4019. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4020. continue
  4021. }
  4022. _content = $$("div", {
  4023. className: "U_MD_D_KO",
  4024. "onmousedown": U.UF.C.closure(function (obj) {
  4025. //防止拖动图标即打开了桌面应用
  4026. U.MD.D.click(this, obj);
  4027. }, [_xhlyTeacherDeskIconInfo[i]]),
  4028. "onclick": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_xhlyTeacherDeskIconInfo[i]])
  4032. }, _frag); //
  4033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4036. }
  4037. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4038. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4039. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4040. continue
  4041. }
  4042. _content = $$("div", {
  4043. className: "U_MD_D_KO",
  4044. "onmousedown": U.UF.C.closure(function (obj) {
  4045. //防止拖动图标即打开了桌面应用
  4046. U.MD.D.click(this, obj);
  4047. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4048. "onclick": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4052. }, _frag); //
  4053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4056. }
  4057. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4058. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4059. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4060. continue
  4061. }
  4062. _content = $$("div", {
  4063. className: "U_MD_D_KO",
  4064. "onmousedown": U.UF.C.closure(function (obj) {
  4065. //防止拖动图标即打开了桌面应用
  4066. U.MD.D.click(this, obj);
  4067. }, [_x010503TeacherDeskIconInfo[i]]),
  4068. "onclick": U.UF.C.closure(function (obj) {
  4069. //防止拖动图标即打开了桌面应用
  4070. U.MD.D.click(this, obj);
  4071. }, [_x010503TeacherDeskIconInfo[i]])
  4072. }, _frag); //
  4073. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4074. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4075. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4076. }
  4077. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4078. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4079. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4080. continue
  4081. }
  4082. _content = $$("div", {
  4083. className: "U_MD_D_KO",
  4084. "onmousedown": U.UF.C.closure(function (obj) {
  4085. //防止拖动图标即打开了桌面应用
  4086. U.MD.D.click(this, obj);
  4087. }, [_x010504TeacherDeskIconInfo[i]]),
  4088. "onclick": U.UF.C.closure(function (obj) {
  4089. //防止拖动图标即打开了桌面应用
  4090. U.MD.D.click(this, obj);
  4091. }, [_x010504TeacherDeskIconInfo[i]])
  4092. }, _frag); //
  4093. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4094. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4095. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4096. }
  4097. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4098. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4099. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4100. continue
  4101. }
  4102. _content = $$("div", {
  4103. className: "U_MD_D_KO",
  4104. "onmousedown": U.UF.C.closure(function (obj) {
  4105. //防止拖动图标即打开了桌面应用
  4106. U.MD.D.click(this, obj);
  4107. }, [_x010204TeacherDeskIconInfo[i]]),
  4108. "onclick": U.UF.C.closure(function (obj) {
  4109. //防止拖动图标即打开了桌面应用
  4110. U.MD.D.click(this, obj);
  4111. }, [_x010204TeacherDeskIconInfo[i]])
  4112. }, _frag); //
  4113. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4114. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4115. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4116. }
  4117. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4118. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4119. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4120. continue
  4121. }
  4122. _content = $$("div", {
  4123. className: "U_MD_D_KO",
  4124. "onmousedown": U.UF.C.closure(function (obj) {
  4125. //防止拖动图标即打开了桌面应用
  4126. U.MD.D.click(this, obj);
  4127. }, [_x320101TeacherDeskIconInfo[i]]),
  4128. "onclick": U.UF.C.closure(function (obj) {
  4129. //防止拖动图标即打开了桌面应用
  4130. U.MD.D.click(this, obj);
  4131. }, [_x320101TeacherDeskIconInfo[i]])
  4132. }, _frag); //
  4133. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4134. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4135. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4136. }
  4137. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4138. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4139. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4140. continue
  4141. }
  4142. _content = $$("div", {
  4143. className: "U_MD_D_KO",
  4144. "onmousedown": U.UF.C.closure(function (obj) {
  4145. //防止拖动图标即打开了桌面应用
  4146. U.MD.D.click(this, obj);
  4147. }, [_trailTeacherDeskIconInfo[i]]),
  4148. "onclick": U.UF.C.closure(function (obj) {
  4149. //防止拖动图标即打开了桌面应用
  4150. U.MD.D.click(this, obj);
  4151. }, [_trailTeacherDeskIconInfo[i]])
  4152. }, _frag); //
  4153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4156. }
  4157. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4158. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4159. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4160. continue
  4161. }
  4162. _content = $$("div", {
  4163. className: "U_MD_D_KO",
  4164. "onmousedown": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4168. "onclick": U.UF.C.closure(function (obj) {
  4169. //防止拖动图标即打开了桌面应用
  4170. U.MD.D.click(this, obj);
  4171. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4172. }, _frag); //
  4173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4176. }
  4177. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4178. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4179. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4180. continue
  4181. }
  4182. _content = $$("div", {
  4183. className: "U_MD_D_KO",
  4184. "onmousedown": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_x010608TeacherDeskIconInfo[i]]),
  4188. "onclick": U.UF.C.closure(function (obj) {
  4189. //防止拖动图标即打开了桌面应用
  4190. U.MD.D.click(this, obj);
  4191. }, [_x010608TeacherDeskIconInfo[i]])
  4192. }, _frag); //
  4193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4196. }
  4197. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4198. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4199. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4200. continue
  4201. }
  4202. _content = $$("div", {
  4203. className: "U_MD_D_KO",
  4204. "onmousedown": U.UF.C.closure(function (obj) {
  4205. //防止拖动图标即打开了桌面应用
  4206. U.MD.D.click(this, obj);
  4207. }, [_x010611TeacherDeskIconInfo[i]]),
  4208. "onclick": U.UF.C.closure(function (obj) {
  4209. //防止拖动图标即打开了桌面应用
  4210. U.MD.D.click(this, obj);
  4211. }, [_x010611TeacherDeskIconInfo[i]])
  4212. }, _frag); //
  4213. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4214. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4215. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4216. }
  4217. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4218. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4219. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4220. continue
  4221. }
  4222. _content = $$("div", {
  4223. className: "U_MD_D_KO",
  4224. "onmousedown": U.UF.C.closure(function (obj) {
  4225. //防止拖动图标即打开了桌面应用
  4226. U.MD.D.click(this, obj);
  4227. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4228. "onclick": U.UF.C.closure(function (obj) {
  4229. //防止拖动图标即打开了桌面应用
  4230. U.MD.D.click(this, obj);
  4231. }, [_tianyuanTeacherDeskIconInfo[i]])
  4232. }, _frag); //
  4233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4236. }
  4237. } else {
  4238. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4239. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4240. continue
  4241. }
  4242. _content = $$("div", {
  4243. className: "U_MD_D_KO",
  4244. "onmousedown": U.UF.C.closure(function (obj) {
  4245. //防止拖动图标即打开了桌面应用
  4246. U.MD.D.click(this, obj);
  4247. }, [_teacherDesktopIconInfo[i]]),
  4248. "onclick": U.UF.C.closure(function (obj) {
  4249. //防止拖动图标即打开了桌面应用
  4250. U.MD.D.click(this, obj);
  4251. }, [_teacherDesktopIconInfo[i]])
  4252. }, _frag); //
  4253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4256. }
  4257. }
  4258. } else {
  4259. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4260. _content = $$("div", {
  4261. className: "U_MD_D_KO",
  4262. style: { 'width': '124px', 'height': '145px' },
  4263. "onmousedown": U.UF.C.closure(function (obj) {
  4264. //防止拖动图标即打开了桌面应用
  4265. U.MD.D.click(this, obj);
  4266. }, [_easyDesktopIconInfo[i]]),
  4267. "onclick": U.UF.C.closure(function (obj) {
  4268. //防止拖动图标即打开了桌面应用
  4269. U.MD.D.click(this, obj);
  4270. }, [_easyDesktopIconInfo[i]])
  4271. }, _frag); //
  4272. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4275. }
  4276. }
  4277. if (type == 1) {
  4278. //加载好后给图标定位
  4279. U.MD.D.iconPostion($(_frag).Child());
  4280. } else {
  4281. //加载好后给图标定位
  4282. U.MD.D.iconPostion2($(_frag).Child());
  4283. }
  4284. //把图标加载到页面
  4285. el.appendChild(_frag);
  4286. }
  4287. /**
  4288. * 显示任务栏
  4289. *
  4290. * @param {element} 桌面元素
  4291. */
  4292. U.MD.D.I.displayTaskbar = function (el) {
  4293. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4294. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4295. //任务栏位置变化
  4296. U.selectEl(el).css({ "bottom": "0px" });
  4297. //桌面位置变话
  4298. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4299. }
  4300. }
  4301. //#region 桌面图标拖动逻辑
  4302. /**
  4303. * 桌面排列图标
  4304. *
  4305. * @param {element} 桌面元素
  4306. * @param {object} 上下相距的距离
  4307. * @param {object} 左右相距的距离
  4308. * @return {object} 命名空间
  4309. */
  4310. U.MD.D.iconPostion = function (childs, top, left) {
  4311. var i; //用于循环处理
  4312. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4313. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4314. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4315. for (i = 0; i < childs.length; i++) {
  4316. //如果竖排top超过了范围处理
  4317. if (top + 95 > US.height - 10) {
  4318. //left超过了页面范围处理,则向上重叠打印处理
  4319. if ((left + 180) > US.width) {
  4320. top -= 110;
  4321. left -= 90;
  4322. }
  4323. //没有超过范围,那么left+90添加到下一个竖排打印
  4324. else {
  4325. left += 90;
  4326. top = 15;
  4327. };
  4328. }
  4329. //给图标的位置赋值
  4330. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4331. if (i < childs.length - 1) {
  4332. //页面图标每次向下加95
  4333. top += 95;
  4334. }
  4335. }
  4336. //返回最后调用的图标的位置
  4337. return [top, left];
  4338. }
  4339. /**
  4340. * 桌面排列图标
  4341. *
  4342. * @param {element} 桌面元素
  4343. * @param {object} 上下相距的距离
  4344. * @param {object} 左右相距的距离
  4345. * @return {object} 命名空间
  4346. */
  4347. U.MD.D.iconPostion2 = function (childs, top, left) {
  4348. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4349. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4350. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4351. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4352. for (i = 0; i < childs.length; i++) {
  4353. //如果竖排top超过了范围处理
  4354. if (left + 150 > US.width - 10) {
  4355. //left超过了页面范围处理,则向上重叠打印处理
  4356. if ((top + 180) > US.Height) {
  4357. top -= 150;
  4358. left -= 150;
  4359. }
  4360. //没有超过范围,那么left+90添加到下一个竖排打印
  4361. else {
  4362. top += 150;
  4363. left = ol;
  4364. };
  4365. }
  4366. //给图标的位置赋值
  4367. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4368. if (i < childs.length - 1) {
  4369. //页面图标每次向下加95
  4370. left += 150;
  4371. }
  4372. }
  4373. //返回最后调用的图标的位置
  4374. return [top, left];
  4375. }
  4376. /**
  4377. * 桌面点击事件逻辑
  4378. *
  4379. * @param {element} 桌面元素
  4380. * @param {object} 上下相距的距离
  4381. * @param {object} 左右相距的距离
  4382. * @return {object} 命名空间
  4383. */
  4384. U.MD.D.click = function (el, obj) {
  4385. var _buttonnumber = event.button; //点击的按钮的事件值
  4386. var _userinfo = US.userInfo;
  4387. U.UF.EV.stopBubble(); //阻止向上冒泡
  4388. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4389. if (_buttonnumber < 2) {
  4390. //如果是click事件的处理
  4391. if (event.type == "click") {
  4392. //如果元素在mousemove事件中没有移动则出发click事件
  4393. if (!U.MD.D.I.IsDrag) {
  4394. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4395. U.alert("请先登录您的账号!");
  4396. setTimeout(() => {
  4397. U.MD.U.L.login();
  4398. }, 2000);
  4399. } else {
  4400. //打开应用处理
  4401. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4402. }
  4403. }
  4404. }
  4405. //如果是mouse事件的处理
  4406. else {
  4407. if (US.Config.type == '1') {
  4408. //拖动处理,添加拖动和拖动结束事件
  4409. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4410. }
  4411. }
  4412. U.MD.D.I.IsDrag = false;
  4413. }
  4414. }
  4415. /**
  4416. * 拖动的处理
  4417. *
  4418. */
  4419. U.MD.D.iconMove = function () {
  4420. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4421. U.MD.D.I.IsDrag = true;
  4422. }
  4423. /**
  4424. * 拖动结束后,这里是定位处理,以网状的形式定位
  4425. *
  4426. * @param {element} 拖动的元素
  4427. * @return {object} 命名空间
  4428. */
  4429. U.MD.D.iconUp = function (el) {
  4430. var _top = 15,
  4431. _left = 20,
  4432. _margin,
  4433. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4434. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4435. if (_positioninfo["OT"] > 15) {
  4436. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4437. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4438. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4439. }
  4440. if (_positioninfo["OL"] > 20) {
  4441. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4442. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4443. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4444. }
  4445. //while循环判断么一个重叠的元素
  4446. do {
  4447. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4448. _top = _positioninfo[0] + 95; //得到定位后的top
  4449. _left = _positioninfo[1]; //得到定位后的left
  4450. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4451. }
  4452. /**
  4453. * 判断拖动后图标是否重叠
  4454. *
  4455. * @param {element} 拖动的元素
  4456. * @param {element} 桌面所有的元素
  4457. * @param {array} 拖动元素的位置
  4458. ----------[0] 上 top
  4459. ----------[1] 左 left
  4460. * @return {object} 命名空间
  4461. */
  4462. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4463. //循环所有的图标
  4464. for (var i = 0; i < childs.length; i++) {
  4465. //判断有没有和该图标诶子重叠的元素
  4466. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4467. return childs[i]; //如果有返回
  4468. }
  4469. }
  4470. }
  4471. //#endregion
  4472. //#endregion
  4473. //#region 桌面应用
  4474. /**
  4475. * 打开应用
  4476. *
  4477. * @param {string} 类型
  4478. -----------------Disk 网盘系统
  4479. -----------------PDisk 学习系统网盘
  4480. -----------------Poto 图片
  4481. -----------------Video 视频
  4482. -----------------Music 音乐
  4483. -----------------Word word
  4484. -----------------Excel excel
  4485. -----------------Txt 记事本
  4486. -----------------PB 学习系统
  4487. -----------------Blog 朋友圈系统
  4488. -----------------FTP ftp系统
  4489. -----------------Group 好友群
  4490. -----------------SY 首页系统
  4491. -----------------Set 个人设置
  4492. -----------------XSet 系统设置
  4493. -----------------App 我们所有的app
  4494. -----------------BC c.1473.cn 平台
  4495. -----------------CWeb d.1473.cn 变成平台
  4496. -----------------其他的外联系统 我们统一用iframe打开
  4497. * @param {array} 类型
  4498. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4499. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4500. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4501. 如果第一个参数为其他,则无第二个参数
  4502. * @returns {array}
  4503. */
  4504. window.addEventListener('message', function (e) { // 监听 message 事件
  4505. // alert(e.data.type);
  4506. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4507. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4508. //3是展示全部阶段 2学生 1老师 4专家
  4509. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4510. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4511. //3是展示全部阶段 2学生 1老师 4专家
  4512. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4513. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4514. //3是展示全部阶段 2学生 1老师 4专家
  4515. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4516. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4517. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4518. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4519. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4520. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4521. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4522. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4523. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4524. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4525. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4526. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4527. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4528. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4529. //3是展示全部阶段 2学生 1老师 4专家
  4530. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4531. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4532. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4533. U.MD.D.I.selectUser();
  4534. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4535. var _formel = document.getElementById("study");
  4536. U.UF.F.windowZooming(_formel);
  4537. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4538. var _formel = document.getElementById("studyDetail");
  4539. U.UF.F.windowZooming(_formel);
  4540. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4541. var _formel = document.getElementById("studyDetail");
  4542. U.UF.F.windowZooming(_formel);
  4543. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4544. var _formel = document.getElementById("studentStudy");
  4545. U.UF.F.windowZooming(_formel);
  4546. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4547. // var _formel = document.getElementById("study");
  4548. //如果最大化了,那么就把他缩小
  4549. // if (_formel.ismaximize) {
  4550. // return;
  4551. // }
  4552. // U.UF.F.windowZooming(_formel);
  4553. // U.UF.F.topWindow(_formel);
  4554. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4555. // var _formel = document.getElementById("studyDetail");
  4556. //如果最大化了,那么就把他缩小
  4557. // if (_formel.ismaximize) {
  4558. // return;
  4559. // }
  4560. // U.UF.F.windowZooming(_formel);
  4561. // U.UF.F.topWindow(_formel);
  4562. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4563. // var _formel = document.getElementById("studentStudy");
  4564. // if (_formel.ismaximize) {
  4565. // return;
  4566. // }
  4567. // U.UF.F.windowZooming(_formel);
  4568. // U.UF.F.topWindow(_formel);
  4569. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4570. var _formel = document.getElementById("study");
  4571. // if (_formel.ismaximize) {
  4572. // return;
  4573. // }
  4574. // U.UF.F.windowZooming(_formel);
  4575. U.UF.F.topWindow(_formel);
  4576. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4577. var _formel = document.getElementById("studentIndex");
  4578. U.UF.F.windowZooming(_formel);
  4579. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4580. var _formel = document.getElementById("studyDetailS");
  4581. U.UF.F.windowZooming(_formel);
  4582. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4583. var _formel = document.getElementById("studioIndex");
  4584. U.UF.F.windowZooming(_formel);
  4585. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4586. var _formel = document.getElementById("studyDetailStudio");
  4587. U.UF.F.windowZooming(_formel);
  4588. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4589. var _formel = document.getElementById("studyDetailStudio");
  4590. U.UF.F.windowZooming(_formel);
  4591. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4592. var _formel = document.getElementById("studyDetailNT");
  4593. U.UF.F.windowZooming(_formel);
  4594. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4595. var _formel = document.getElementById("studyDetailS");
  4596. U.UF.F.windowZooming(_formel);
  4597. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4598. var _formel = document.getElementById("studyDetailS");
  4599. U.UF.F.topWindow(_formel);
  4600. } else if (e.data.tools && e.data.tools == "1") {
  4601. // U.MD.D.I.openApplication("whiteboard")
  4602. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4603. } else if (e.data.tools && e.data.tools == "2") {
  4604. U.MD.D.I.openApplication("note")
  4605. } else if (e.data.tools && e.data.tools == "3") {
  4606. // U.MD.D.I.openApplication("mind")
  4607. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4608. } else if (e.data.tools && e.data.tools == "4") {
  4609. U.MD.D.I.openApplication("investigation")
  4610. } else if (e.data.tools && e.data.tools == "6") {
  4611. // U.MD.D.I.openApplication("doc")
  4612. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4613. } else if (e.data.tools && e.data.tools == "7") {
  4614. // U.MD.D.I.openApplication("mindNetwork")
  4615. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4616. } else if (e.data.tools && e.data.tools == "8") {
  4617. U.MD.D.I.openApplication("library")
  4618. } else if (e.data.tools && e.data.tools == "17") {
  4619. U.MD.D.I.openApplication("stuLibrary")
  4620. } else if (e.data.tools && e.data.tools == "18") {
  4621. U.MD.D.I.openApplication("train")
  4622. } else if (e.data.tools && e.data.tools == "21") {
  4623. U.MD.D.I.openApplication("program")
  4624. } else if (e.data.tools && e.data.tools == "22") {
  4625. U.MD.D.I.openApplication("AIprogram2")
  4626. } else if (e.data.tools && e.data.tools == "23") {
  4627. U.MD.D.I.openApplication("Pythonprogram")
  4628. } else if (e.data.tools && e.data.tools == "24") {
  4629. U.MD.D.I.openApplication("AIprogram")
  4630. } else if (e.data.tools && e.data.tools == "25") {
  4631. U.MD.D.I.openApplication("sys")
  4632. } else if (e.data.tools && e.data.tools == "26") {
  4633. // U.MD.D.I.openApplication("courseDesign")
  4634. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4635. } else if (e.data.tools && e.data.tools == "31") {
  4636. U.MD.D.I.openApplication("netWorkPanel")
  4637. } else if (e.data.tools && e.data.tools == "32") {
  4638. U.MD.D.I.openApplication("codeEdit")
  4639. } else if (e.data.tools && e.data.tools == "57") {
  4640. U.MD.D.I.openApplication("CocoPi")
  4641. } else if (e.data.tools && e.data.tools == "63") {
  4642. U.MD.D.I.openApplication("Wood")
  4643. } else if (e.data.tools && e.data.tools == "58") {
  4644. U.MD.D.I.openApplication("car")
  4645. } else if (e.data.tools && e.data.tools == "59") {
  4646. U.MD.D.I.openApplication("lineSearch")
  4647. } else if (e.data.tools && e.data.tools == "60") {
  4648. U.MD.D.I.openApplication("deepLearning")
  4649. } else if (e.data.tools && e.data.tools == "61") {
  4650. U.MD.D.I.openApplication("allHistory")
  4651. } else if (e.data.tools && e.data.tools == "28") {
  4652. U.MD.D.I.openApplication("translation")
  4653. } else if (e.data.tools && e.data.tools == "37") {
  4654. U.MD.D.I.openApplication("mohe")
  4655. } else if (e.data.tools && e.data.tools == "38") {
  4656. U.MD.D.I.openApplication("24game")
  4657. } else if (e.data.tools && e.data.tools == "39") {
  4658. U.MD.D.I.openApplication("GeoGebra")
  4659. } else if (e.data.tools && e.data.tools == "43") {
  4660. U.MD.D.I.openApplication("studentEvaluate")
  4661. } else if (e.data.tools && e.data.tools == "44") {
  4662. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4663. } else if (e.data.tools && e.data.tools == "46") {
  4664. U.MD.D.I.openApplication("project")
  4665. } else if (e.data.tools && e.data.tools == "71") {
  4666. U.MD.D.I.openApplication("aigptCourse")
  4667. } else if (e.data.tools && e.data.tools == "1s") {
  4668. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4669. } else if (e.data.tools && e.data.tools == "3s") {
  4670. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4671. } else if (e.data.tools && e.data.tools == "6s") {
  4672. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4673. } else if (e.data.tools && e.data.tools == "1studio") {
  4674. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4675. } else if (e.data.tools && e.data.tools == "3studio") {
  4676. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4677. } else if (e.data.tools && e.data.tools == "6studio") {
  4678. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4679. } else if (e.data.tools && e.data.tools == "3y") {
  4680. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4681. } else if (e.data.tools && e.data.tools == "1y") {
  4682. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4683. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4684. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4685. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4686. U.MD.D.I.openApplication("AIAnalyse")
  4687. } else if (e.data.tools && e.data.tools == "1teacher") {
  4688. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4689. } else if (e.data.tools && e.data.tools == "3teacher") {
  4690. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4691. } else if (e.data.tools && e.data.tools == "7teacher") {
  4692. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4693. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4694. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4695. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4696. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4697. } else if (e.data.tools && e.data.tools == "1E") {
  4698. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4699. } else if (e.data.tools && e.data.tools == "3E") {
  4700. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4701. } else if (e.data.tools && e.data.tools == "57y") {
  4702. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4703. } else if (e.data.tools && e.data.tools == "57u") {
  4704. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4705. } else if (e.data.tools && e.data.tools == "57teacher") {
  4706. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4707. } else if (e.data.tools && e.data.tools == "64") {
  4708. U.MD.D.I.openApplication("AIChat")
  4709. } else if (e.data.tools && e.data.tools == "66") {
  4710. U.MD.D.I.openApplication("formulaEdi")
  4711. } else if (e.data.tools && e.data.tools == "67") {
  4712. U.MD.D.I.openApplication("molStr")
  4713. } else if (e.data.tools && e.data.tools == "68") {
  4714. U.MD.D.I.openApplication("timeAxis")
  4715. } else if (e.data.tools && e.data.tools == "openCourse") {
  4716. let _data = {
  4717. typea: e.data.typea || '',
  4718. typeb: e.data.typeb || '',
  4719. typed: e.data.typed || '',
  4720. }
  4721. U.MD.D.I.openInApplication("index", _data)
  4722. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4723. let _data = {
  4724. classid: e.data.classid || '',
  4725. }
  4726. U.MD.D.I.openInApplication("dataClass", _data)
  4727. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4728. let _data = {
  4729. cid: e.data.cid || '',
  4730. gid: e.data.gid || '',
  4731. }
  4732. U.MD.D.I.openInApplication("opencCscl", _data)
  4733. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4734. U.MD.D.I.openApplication("dataBoardTest")
  4735. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4736. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4737. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4738. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4739. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4740. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4741. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4742. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4743. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4744. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4745. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4746. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4747. }else if (e.data.tools && e.data.tools == "loginSz") {
  4748. U.MD.D.I.openInApplication("loginSz")
  4749. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4750. if($('#classroom_observation_board')[0]){
  4751. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4752. }
  4753. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4754. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4755. if($('#classroom_observation_ob_comment')[0]){
  4756. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4757. }
  4758. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4759. }else if (e.data.tools && e.data.tools == "logout"){
  4760. U.MD.U.LO.logoutSystem()
  4761. }else if (e.data.tools && e.data.tools == "getLogin"){
  4762. let _iframe = $('#UI_Login')[0];
  4763. if (_iframe) {
  4764. var userInfo = US.userInfo;
  4765. var type = 2
  4766. if(userInfo && userInfo.userid){
  4767. type = 1
  4768. }
  4769. _contentWindow = _iframe.contentWindow;
  4770. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4771. }
  4772. }
  4773. });
  4774. U.MD.D.I.selectUser = function () {
  4775. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4776. if (res.value[0].length > 0) {
  4777. US.userInfo = res.value[0][0];
  4778. $(".userName")[0].innerHTML = US.userInfo.username;
  4779. }
  4780. }, [], { "type": "GET", "withCredentials": true });
  4781. }
  4782. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4783. var _userinfo = US.userInfo, //登录用户信息
  4784. _userid = US.userInfo.userid, //登录用户id
  4785. _oid = _userinfo.organizeid,
  4786. _type = US.userInfo.type,
  4787. _org = US.userInfo.org,
  4788. _role = US.userInfo.role,
  4789. _classId = US.userInfo.classid;
  4790. if (_type == 4) {
  4791. tType = 4
  4792. }
  4793. switch (str) {
  4794. case "studyDetailNT": //无终端模式
  4795. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4796. setTimeout(() => {
  4797. U.MD.U.L.login();
  4798. }, 2000);
  4799. } else {
  4800. _formdiv = new U.UF.UI.form(
  4801. "课程详情",
  4802. $$("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 }), {
  4803. "id": "studyDetailNT",
  4804. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4805. "onresize": function () { }
  4806. }, {
  4807. closecallback: function () { }
  4808. }, { "style": { "height": "36px" } }).form; //创建窗体
  4809. _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); } }
  4810. break;
  4811. }
  4812. case "studyDetail":
  4813. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4814. setTimeout(() => {
  4815. U.MD.U.L.login();
  4816. }, 2000);
  4817. } else {
  4818. _formdiv = new U.UF.UI.form(
  4819. "课程详情",
  4820. $$("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 }), {
  4821. "id": "studyDetail",
  4822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4823. "onresize": function () { }
  4824. }, {
  4825. closecallback: function () { }
  4826. }, { "style": { "height": "36px" } }).form; //创建窗体
  4827. _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); } }
  4828. break;
  4829. }
  4830. case "studyDetailTrain":
  4831. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4832. setTimeout(() => {
  4833. U.MD.U.L.login();
  4834. }, 2000);
  4835. } else {
  4836. _formdiv = new U.UF.UI.form(
  4837. "培训详情",
  4838. $$("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 }), {
  4839. "id": "studyDetailTrain",
  4840. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4841. "onresize": function () { }
  4842. }, {
  4843. closecallback: function () { }
  4844. }, { "style": { "height": "36px" } }).form; //创建窗体
  4845. _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); } }
  4846. break;
  4847. }
  4848. case "studyDetailS":
  4849. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4850. setTimeout(() => {
  4851. U.MD.U.L.login();
  4852. }, 2000);
  4853. } else {
  4854. _formdiv = new U.UF.UI.form(
  4855. "项目详情",
  4856. $$("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 }), {
  4857. "id": "studyDetailS",
  4858. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4859. "onresize": function () { }
  4860. }, {
  4861. closecallback: function () { }
  4862. }, { "style": { "height": "36px" } }).form; //创建窗体
  4863. _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); } }
  4864. break;
  4865. }
  4866. case "studyDetailStudio":
  4867. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4868. setTimeout(() => {
  4869. U.MD.U.L.login();
  4870. }, 2000);
  4871. } else {
  4872. _formdiv = new U.UF.UI.form(
  4873. "工作详情",
  4874. $$("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 }), {
  4875. "id": "studyDetailStudio",
  4876. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4877. "onresize": function () { }
  4878. }, {
  4879. closecallback: function () { }
  4880. }, { "style": { "height": "36px" } }).form; //创建窗体
  4881. _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); } }
  4882. break;
  4883. }
  4884. case "studyDetailS5":
  4885. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4886. setTimeout(() => {
  4887. U.MD.U.L.login();
  4888. }, 2000);
  4889. } else {
  4890. _formdiv = new U.UF.UI.form(
  4891. "项目详情",
  4892. $$("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 }), {
  4893. "id": "studyDetailS",
  4894. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4895. "onresize": function () { }
  4896. }, {
  4897. closecallback: function () { }
  4898. }, { "style": { "height": "36px" } }).form; //创建窗体
  4899. _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); } }
  4900. break;
  4901. }
  4902. case "studyDetailGM":
  4903. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4904. setTimeout(() => {
  4905. U.MD.U.L.login();
  4906. }, 2000);
  4907. } else {
  4908. _formdiv = new U.UF.UI.form(
  4909. "课程详情",
  4910. $$("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 }), {
  4911. "id": "studyDetail",
  4912. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4913. "onresize": function () { }
  4914. }, {
  4915. closecallback: function () { }
  4916. }, { "style": { "height": "36px" } }).form; //创建窗体
  4917. _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); } }
  4918. break;
  4919. }
  4920. case "hanUrl":
  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": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  4929. "id": "hanUrl",
  4930. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4931. "onresize": function () { }
  4932. }, {
  4933. closecallback: function () { }
  4934. }, { "style": { "height": "36px" } }).form; //创建窗体
  4935. _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); } }
  4936. break;
  4937. }
  4938. case "index":
  4939. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4940. setTimeout(() => {
  4941. U.MD.U.L.login();
  4942. }, 2000);
  4943. } else {
  4944. _formdiv = new U.UF.UI.form(
  4945. "课程中心",
  4946. $$("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 }), {
  4947. "id": "study",
  4948. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4949. "onresize": function () { }
  4950. }, {
  4951. closecallback: function () { }
  4952. }, { "style": { "height": "36px" } }).form; //创建窗体
  4953. _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); } }
  4954. break;
  4955. }
  4956. case "dataClass":
  4957. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4958. setTimeout(() => {
  4959. U.MD.U.L.login();
  4960. }, 2000);
  4961. } else {
  4962. _formdiv = new U.UF.UI.form(
  4963. "数据报告",
  4964. $$("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 }), {
  4965. "id": "dataClass",
  4966. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4967. "onresize": function () { }
  4968. }, {
  4969. closecallback: function () { }
  4970. }, { "style": { "height": "36px" } }).form; //创建窗体
  4971. _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); } }
  4972. break;
  4973. }
  4974. case "opencCscl":
  4975. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4976. setTimeout(() => {
  4977. U.MD.U.L.login();
  4978. }, 2000);
  4979. } else {
  4980. _formdiv = new U.UF.UI.form(
  4981. "协同建构",
  4982. $$("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 }), {
  4983. "id": "futureClass",
  4984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4985. "onresize": function () { }
  4986. }, {
  4987. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4988. }, { "style": { "height": "36px" } }).form; //创建窗体
  4989. _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); } }
  4990. break;
  4991. }
  4992. case "openCourseUpdate":
  4993. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4994. setTimeout(() => {
  4995. U.MD.U.L.login();
  4996. }, 2000);
  4997. } else {
  4998. _formdiv = new U.UF.UI.form(
  4999. "课程管理",
  5000. $$("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 }), {
  5001. "id": "openCourseUpdate",
  5002. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5003. "onresize": function () { }
  5004. }, {
  5005. closecallback: function () { }
  5006. }, { "style": { "height": "36px" } }).form; //创建窗体
  5007. break;
  5008. }
  5009. case "openNewCourseUpdate":
  5010. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5011. setTimeout(() => {
  5012. U.MD.U.L.login();
  5013. }, 2000);
  5014. } else {
  5015. _formdiv = new U.UF.UI.form(
  5016. "课程管理",
  5017. $$("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 }), {
  5018. "id": "openCourseUpdate",
  5019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5020. "onresize": function () { }
  5021. }, {
  5022. closecallback: function () { }
  5023. }, { "style": { "height": "36px" } }).form; //创建窗体
  5024. break;
  5025. }
  5026. case "openCourseEUpdate":
  5027. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5028. setTimeout(() => {
  5029. U.MD.U.L.login();
  5030. }, 2000);
  5031. } else {
  5032. _formdiv = new U.UF.UI.form(
  5033. "课程管理",
  5034. $$("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 }), {
  5035. "id": "openCourseUpdate",
  5036. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5037. "onresize": function () { }
  5038. }, {
  5039. closecallback: function () { }
  5040. }, { "style": { "height": "36px" } }).form; //创建窗体
  5041. break;
  5042. }
  5043. case "openCourseAiUpdate":
  5044. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5045. setTimeout(() => {
  5046. U.MD.U.L.login();
  5047. }, 2000);
  5048. } else {
  5049. _formdiv = new U.UF.UI.form(
  5050. "课程管理",
  5051. $$("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 }), {
  5052. "id": "openCourseUpdate",
  5053. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5054. "onresize": function () { }
  5055. }, {
  5056. closecallback: function () { }
  5057. }, { "style": { "height": "36px" } }).form; //创建窗体
  5058. break;
  5059. }
  5060. case "openCourseAiUpdate2":
  5061. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5062. setTimeout(() => {
  5063. U.MD.U.L.login();
  5064. }, 2000);
  5065. } else {
  5066. _formdiv = new U.UF.UI.form(
  5067. "课程管理",
  5068. $$("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 }), {
  5069. "id": "openCourseUpdate",
  5070. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5071. "onresize": function () { }
  5072. }, {
  5073. closecallback: function () { }
  5074. }, { "style": { "height": "36px" } }).form; //创建窗体
  5075. break;
  5076. }
  5077. case "openCourseNewUpdate":
  5078. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5079. setTimeout(() => {
  5080. U.MD.U.L.login();
  5081. }, 2000);
  5082. } else {
  5083. _formdiv = new U.UF.UI.form(
  5084. "课程管理",
  5085. $$("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 }), {
  5086. "id": "openCourseUpdate",
  5087. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5088. "onresize": function () { }
  5089. }, {
  5090. closecallback: function () { }
  5091. }, { "style": { "height": "36px" } }).form; //创建窗体
  5092. break;
  5093. }
  5094. case "inviteLoginSz":
  5095. _formdiv = new U.UF.UI.form(
  5096. "随机码登录",
  5097. $$("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 }), {
  5098. "id": "loginSz",
  5099. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5100. "onresize": function () { }
  5101. }, {
  5102. closecallback: function () { }
  5103. }, { "style": { "height": "36px" } }).form; //创建窗体
  5104. break;
  5105. case "loginSz":
  5106. _formdiv = new U.UF.UI.form(
  5107. "教师登录",
  5108. $$("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" }), {
  5109. "id": "loginSz",
  5110. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5111. "onresize": function () { }
  5112. }, {
  5113. closecallback: function () { }
  5114. }, { "style": { "height": "36px" } }).form; //创建窗体
  5115. break;
  5116. case "teacher":
  5117. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5118. setTimeout(() => {
  5119. U.MD.U.L.login();
  5120. }, 2000);
  5121. } else {
  5122. _formdiv = new U.UF.UI.form(
  5123. "教师管理",
  5124. $$("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 }), {
  5125. "id": "teacher",
  5126. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5127. "onresize": function () { }
  5128. }, {
  5129. closecallback: function () { }
  5130. }, { "style": { "height": "36px" } }).form; //创建窗体
  5131. break;
  5132. }
  5133. case "dataBoardSZArea":
  5134. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5135. setTimeout(() => {
  5136. U.MD.U.L.login();
  5137. }, 2000);
  5138. } else {
  5139. _formdiv = new U.UF.UI.form(
  5140. "综合数据看板",
  5141. $$("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 }), {
  5142. "id": "dataBoardSZArea",
  5143. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5144. "onresize": function () { }
  5145. }, {
  5146. closecallback: function () { }
  5147. }, { "style": { "height": "36px" } }).form; //创建窗体
  5148. break;
  5149. }
  5150. case "dataBoardSZCity":
  5151. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5152. setTimeout(() => {
  5153. U.MD.U.L.login();
  5154. }, 2000);
  5155. } else {
  5156. _formdiv = new U.UF.UI.form(
  5157. "综合数据看板",
  5158. $$("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 }), {
  5159. "id": "dataBoardSZCity",
  5160. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5161. "onresize": function () { }
  5162. }, {
  5163. closecallback: function () { }
  5164. }, { "style": { "height": "36px" } }).form; //创建窗体
  5165. break;
  5166. }
  5167. case "classroom_observation_board":
  5168. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5169. setTimeout(() => {
  5170. U.MD.U.L.login();
  5171. }, 2000);
  5172. } else {
  5173. _formdiv = new U.UF.UI.form(
  5174. "课堂观察",
  5175. $$("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 }), {
  5176. "id": "classroom_observation_board",
  5177. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5178. "onresize": function () { }
  5179. }, {
  5180. closecallback: function () { }
  5181. }, { "style": { "height": "36px" } }).form; //创建窗体
  5182. break;
  5183. }
  5184. case "classroom_observation_ob_comment":
  5185. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5186. setTimeout(() => {
  5187. U.MD.U.L.login();
  5188. }, 2000);
  5189. } else {
  5190. _formdiv = new U.UF.UI.form(
  5191. "课堂审核",
  5192. $$("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 }), {
  5193. "id": "classroom_observation_ob_comment",
  5194. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5195. "onresize": function () { }
  5196. }, {
  5197. closecallback: function () { }
  5198. }, { "style": { "height": "36px" } }).form; //创建窗体
  5199. break;
  5200. }
  5201. }
  5202. }
  5203. U.MD.D.I.openApplication = function (str, obj, info) {
  5204. obj = obj || {};
  5205. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5206. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5207. _userinfo = US.userInfo, //登录用户信息
  5208. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5209. _oid = obj.organizeid || _userinfo.organizeid,
  5210. _type = US.userInfo.type,
  5211. _org = US.userInfo.org,
  5212. _role = US.userInfo.role,
  5213. _classId = US.userInfo.classid,
  5214. _TscreenType = 1
  5215. _screenType = 2,
  5216. _SscreenType = 3;
  5217. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5218. return;
  5219. }
  5220. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5221. switch (str) {
  5222. case "studnetProject": //好友打开
  5223. _formdiv = new U.UF.UI.form(
  5224. "我的项目",
  5225. $$("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 }), {
  5226. "id": "studnetProject",
  5227. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5228. "onresize": function () { }
  5229. }, {
  5230. closecallback: function () { }
  5231. }, { "style": { "height": "36px" } }).form; //创建窗体
  5232. _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); } }
  5233. break;
  5234. case "studentEvaluate": //好友打开
  5235. _formdiv = new U.UF.UI.form(
  5236. "我的评价",
  5237. $$("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 }), {
  5238. "id": "studentEvaluate",
  5239. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5240. "onresize": function () { }
  5241. }, {
  5242. closecallback: function () { }
  5243. }, { "style": { "height": "36px" } }).form; //创建窗体
  5244. _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); } }
  5245. break;
  5246. case "my":
  5247. _formdiv = new U.UF.UI.form(
  5248. "我的资料",
  5249. $$("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 }), {
  5250. "id": "my",
  5251. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5252. "onresize": function () { }
  5253. }, {
  5254. closecallback: function () { }
  5255. }, { "style": { "height": "36px" } }).form; //创建窗体
  5256. _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); } }
  5257. break;
  5258. case "program":
  5259. _formdiv = new U.UF.UI.form(
  5260. "编程平台",
  5261. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5262. "id": "program",
  5263. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5264. "onresize": function () { }
  5265. }, {
  5266. closecallback: function () { }
  5267. }, { "style": { "height": "36px" } }).form; //创建窗体
  5268. _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); } }
  5269. break;
  5270. case "library":
  5271. _formdiv = new U.UF.UI.form(
  5272. "素材库",
  5273. $$("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 }), {
  5274. "id": "library",
  5275. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5276. "onresize": function () { }
  5277. }, {
  5278. closecallback: function () { }
  5279. }, { "style": { "height": "36px" } }).form; //创建窗体
  5280. _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); } }
  5281. break;
  5282. case "whiteboard":
  5283. _formdiv = new U.UF.UI.form(
  5284. "电子白板",
  5285. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5286. "id": "whiteboard",
  5287. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5288. "onresize": function () { }
  5289. }, {
  5290. closecallback: function () { }
  5291. }, { "style": { "height": "36px" } }).form; //创建窗体
  5292. _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); } }
  5293. break;
  5294. case "investigation":
  5295. _formdiv = new U.UF.UI.form(
  5296. "问卷调查",
  5297. $$("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 }), {
  5298. "id": "investigation",
  5299. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5300. "onresize": function () { }
  5301. }, {
  5302. closecallback: function () { }
  5303. }, { "style": { "height": "36px" } }).form; //创建窗体
  5304. _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); } }
  5305. break;
  5306. case "note":
  5307. _formdiv = new U.UF.UI.form(
  5308. "便签分类",
  5309. $$("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 }), {
  5310. "id": "note",
  5311. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5312. "onresize": function () { }
  5313. }, {
  5314. closecallback: function () { }
  5315. }, { "style": { "height": "36px" } }).form; //创建窗体
  5316. _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); } }
  5317. break;
  5318. // case "score":
  5319. // _formdiv = new U.UF.UI.form(
  5320. // "量规评分",
  5321. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5322. // "id": "score",
  5323. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5324. // "onresize": function() {}
  5325. // }, {
  5326. // closecallback: function() {}
  5327. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5328. // _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); } }
  5329. // break;
  5330. case "mind":
  5331. _formdiv = new U.UF.UI.form(
  5332. "思维导图",
  5333. $$("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"
  5334. "id": "mind",
  5335. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5336. "onresize": function () { }
  5337. }, {
  5338. closecallback: function () { }
  5339. }, { "style": { "height": "36px" } }).form; //创建窗体
  5340. _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); } }
  5341. break;
  5342. case "doc":
  5343. // U.MD.D.I.isRoom();
  5344. _formdiv = new U.UF.UI.form(
  5345. "协同文档",
  5346. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5347. "id": "doc",
  5348. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5349. "onresize": function () { }
  5350. }, {
  5351. closecallback: function () { }
  5352. }, { "style": { "height": "36px" } }).form; //创建窗体
  5353. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5354. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5355. // })
  5356. _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); } }
  5357. break;
  5358. case "studentStudy":
  5359. _formdiv = new U.UF.UI.form(
  5360. "课程中心",
  5361. $$("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
  5362. "id": "studentStudy",
  5363. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5364. "onresize": function () { }
  5365. }, {
  5366. closecallback: function () { }
  5367. }, { "style": { "height": "36px" } }).form; //创建窗体
  5368. _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); } }
  5369. break;
  5370. case "train": //好友打开
  5371. _formdiv = new U.UF.UI.form(
  5372. "训练平台",
  5373. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5374. "id": "train",
  5375. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5376. "onresize": function () { }
  5377. }, {
  5378. closecallback: function () { }
  5379. }, { "style": { "height": "36px" } }).form; //创建窗体
  5380. _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); } }
  5381. break;
  5382. case "mindNetwork": //好友打开
  5383. _formdiv = new U.UF.UI.form(
  5384. "思维网格",
  5385. $$("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 }), {
  5386. "id": "mindNetwork",
  5387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5388. "onresize": function () { }
  5389. }, {
  5390. closecallback: function () { }
  5391. }, { "style": { "height": "36px" } }).form; //创建窗体
  5392. _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); } }
  5393. break;
  5394. case "studentClassRoom": //好友打开
  5395. _formdiv = new U.UF.UI.form(
  5396. "实时课堂",
  5397. $$("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 }), {
  5398. "id": "studentClassRoom",
  5399. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5400. "onresize": function () { }
  5401. }, {
  5402. closecallback: function () { }
  5403. }, { "style": { "height": "36px" } }).form; //创建窗体
  5404. _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); } }
  5405. setTimeout(() => {
  5406. U.UF.F.windowZooming(_formdiv)
  5407. }, 0);
  5408. break;
  5409. }
  5410. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5411. switch (str) {
  5412. case "studnetProject": //好友打开
  5413. _formdiv = new U.UF.UI.form(
  5414. "我的项目",
  5415. $$("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 }), {
  5416. "id": "studnetProject",
  5417. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5418. "onresize": function () { }
  5419. }, {
  5420. closecallback: function () { }
  5421. }, { "style": { "height": "36px" } }).form; //创建窗体
  5422. _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); } }
  5423. break;
  5424. case "studentEvaluate": //好友打开
  5425. _formdiv = new U.UF.UI.form(
  5426. "我的评价",
  5427. $$("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 }), {
  5428. "id": "studentEvaluate",
  5429. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //创建窗体
  5434. _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); } }
  5435. break;
  5436. case "my":
  5437. _formdiv = new U.UF.UI.form(
  5438. "我的资料",
  5439. $$("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 }), {
  5440. "id": "my",
  5441. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5442. "onresize": function () { }
  5443. }, {
  5444. closecallback: function () { }
  5445. }, { "style": { "height": "36px" } }).form; //创建窗体
  5446. _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); } }
  5447. break;
  5448. case "program":
  5449. _formdiv = new U.UF.UI.form(
  5450. "编程平台",
  5451. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5452. "id": "program",
  5453. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5454. "onresize": function () { }
  5455. }, {
  5456. closecallback: function () { }
  5457. }, { "style": { "height": "36px" } }).form; //创建窗体
  5458. _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); } }
  5459. break;
  5460. case "library":
  5461. _formdiv = new U.UF.UI.form(
  5462. "素材库",
  5463. $$("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 }), {
  5464. "id": "library",
  5465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5466. "onresize": function () { }
  5467. }, {
  5468. closecallback: function () { }
  5469. }, { "style": { "height": "36px" } }).form; //创建窗体
  5470. _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); } }
  5471. break;
  5472. case "whiteboard":
  5473. _formdiv = new U.UF.UI.form(
  5474. "电子白板",
  5475. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5476. "id": "whiteboard",
  5477. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5478. "onresize": function () { }
  5479. }, {
  5480. closecallback: function () { }
  5481. }, { "style": { "height": "36px" } }).form; //创建窗体
  5482. _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); } }
  5483. break;
  5484. case "investigation":
  5485. _formdiv = new U.UF.UI.form(
  5486. "问卷调查",
  5487. $$("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 }), {
  5488. "id": "investigation",
  5489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5490. "onresize": function () { }
  5491. }, {
  5492. closecallback: function () { }
  5493. }, { "style": { "height": "36px" } }).form; //创建窗体
  5494. _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); } }
  5495. break;
  5496. case "note":
  5497. _formdiv = new U.UF.UI.form(
  5498. "便签分类",
  5499. $$("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 }), {
  5500. "id": "note",
  5501. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5502. "onresize": function () { }
  5503. }, {
  5504. closecallback: function () { }
  5505. }, { "style": { "height": "36px" } }).form; //创建窗体
  5506. _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); } }
  5507. break;
  5508. // case "score":
  5509. // _formdiv = new U.UF.UI.form(
  5510. // "量规评分",
  5511. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5512. // "id": "score",
  5513. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5514. // "onresize": function() {}
  5515. // }, {
  5516. // closecallback: function() {}
  5517. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5518. // _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); } }
  5519. // break;
  5520. case "mind":
  5521. _formdiv = new U.UF.UI.form(
  5522. "思维导图",
  5523. $$("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"
  5524. "id": "mind",
  5525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5526. "onresize": function () { }
  5527. }, {
  5528. closecallback: function () { }
  5529. }, { "style": { "height": "36px" } }).form; //创建窗体
  5530. _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); } }
  5531. break;
  5532. case "doc":
  5533. // U.MD.D.I.isRoom();
  5534. _formdiv = new U.UF.UI.form(
  5535. "协同文档",
  5536. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5537. "id": "doc",
  5538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5539. "onresize": function () { }
  5540. }, {
  5541. closecallback: function () { }
  5542. }, { "style": { "height": "36px" } }).form; //创建窗体
  5543. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5544. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5545. })
  5546. _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); } }
  5547. break;
  5548. case "train": //好友打开
  5549. _formdiv = new U.UF.UI.form(
  5550. "训练平台",
  5551. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5552. "id": "train",
  5553. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5554. "onresize": function () { }
  5555. }, {
  5556. closecallback: function () { }
  5557. }, { "style": { "height": "36px" } }).form; //创建窗体
  5558. _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); } }
  5559. break;
  5560. case "studentStudy":
  5561. _formdiv = new U.UF.UI.form(
  5562. "课程中心",
  5563. $$("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
  5564. "id": "studentStudy",
  5565. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //创建窗体
  5570. _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); } }
  5571. break;
  5572. case "mindNetwork": //好友打开
  5573. _formdiv = new U.UF.UI.form(
  5574. "思维网格",
  5575. $$("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 }), {
  5576. "id": "mindNetwork",
  5577. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5578. "onresize": function () { }
  5579. }, {
  5580. closecallback: function () { }
  5581. }, { "style": { "height": "36px" } }).form; //创建窗体
  5582. _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); } }
  5583. break;
  5584. case "studentClassRoom": //好友打开
  5585. _formdiv = new U.UF.UI.form(
  5586. "实时课堂",
  5587. $$("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 }), {
  5588. "id": "studentClassRoom",
  5589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5590. "onresize": function () { }
  5591. }, {
  5592. closecallback: function () { }
  5593. }, { "style": { "height": "36px" } }).form; //创建窗体
  5594. _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); } }
  5595. setTimeout(() => {
  5596. U.UF.F.windowZooming(_formdiv)
  5597. }, 0);
  5598. break;
  5599. }
  5600. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5601. //选择应用处理
  5602. switch (str) {
  5603. case "project": //好友打开
  5604. _formdiv = new U.UF.UI.form(
  5605. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5606. $$("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 }), {
  5607. "id": "project",
  5608. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5609. "onresize": function () { }
  5610. }, {
  5611. closecallback: function () { }
  5612. }, { "style": { "height": "36px" } }).form; //创建窗体
  5613. _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); } }
  5614. break;
  5615. case "student":
  5616. _formdiv = new U.UF.UI.form(
  5617. "学生管理",
  5618. $$("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 }), {
  5619. "id": "student",
  5620. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5621. "onresize": function () { }
  5622. }, {
  5623. closecallback: function () { }
  5624. }, { "style": { "height": "36px" } }).form; //创建窗体
  5625. _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); } }
  5626. break;
  5627. case "evaluate":
  5628. _formdiv = new U.UF.UI.form(
  5629. "学生评价",
  5630. $$("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 }), {
  5631. "id": "evaluate",
  5632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5633. "onresize": function () { }
  5634. }, {
  5635. closecallback: function () { }
  5636. }, { "style": { "height": "36px" } }).form; //创建窗体
  5637. _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); } }
  5638. break;
  5639. case "sys":
  5640. _formdiv = new U.UF.UI.form(
  5641. "目标管理",
  5642. $$("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 }), {
  5643. "id": "sys",
  5644. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5645. "onresize": function () { }
  5646. }, {
  5647. closecallback: function () { }
  5648. }, { "style": { "height": "36px" } }).form; //创建窗体
  5649. _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); } }
  5650. break;
  5651. case "courseDesign":
  5652. _formdiv = new U.UF.UI.form(
  5653. "项目设计",
  5654. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5655. "id": "courseDesign",
  5656. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5657. "onresize": function () { }
  5658. }, {
  5659. closecallback: function () { }
  5660. }, { "style": { "height": "36px" } }).form; //创建窗体
  5661. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5662. break;
  5663. case "program":
  5664. _formdiv = new U.UF.UI.form(
  5665. "编程平台",
  5666. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5667. "id": "program",
  5668. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { }
  5672. }, { "style": { "height": "36px" } }).form; //创建窗体
  5673. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5674. break;
  5675. case "class":
  5676. _formdiv = new U.UF.UI.form(
  5677. "班级管理",
  5678. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5679. "id": "class",
  5680. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //创建窗体
  5685. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5686. break;
  5687. case "Grade":
  5688. _formdiv = new U.UF.UI.form(
  5689. "年级管理",
  5690. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5691. "id": "Grade",
  5692. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5693. "onresize": function () { }
  5694. }, {
  5695. closecallback: function () { }
  5696. }, { "style": { "height": "36px" } }).form; //创建窗体
  5697. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5698. break;
  5699. case "teacherOffice":
  5700. _formdiv = new U.UF.UI.form(
  5701. "教研室",
  5702. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5703. "id": "teacherOffice",
  5704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5705. "onresize": function () { }
  5706. }, {
  5707. closecallback: function () { }
  5708. }, { "style": { "height": "36px" } }).form; //创建窗体
  5709. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5710. break;
  5711. case "my":
  5712. _formdiv = new U.UF.UI.form(
  5713. "我的资料",
  5714. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5715. "id": "my",
  5716. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //创建窗体
  5721. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5722. break;
  5723. case "notice":
  5724. _formdiv = new U.UF.UI.form(
  5725. "通知公告",
  5726. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5727. "id": "notice",
  5728. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5729. "onresize": function () { }
  5730. }, {
  5731. closecallback: function () { }
  5732. }, { "style": { "height": "36px" } }).form; //创建窗体
  5733. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5734. break;
  5735. case "library":
  5736. _formdiv = new U.UF.UI.form(
  5737. "素材库",
  5738. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5739. "id": "library",
  5740. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5741. "onresize": function () { }
  5742. }, {
  5743. closecallback: function () { }
  5744. }, { "style": { "height": "36px" } }).form; //创建窗体
  5745. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5746. break;
  5747. case "whiteboard":
  5748. _formdiv = new U.UF.UI.form(
  5749. "电子白板",
  5750. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5751. "id": "whiteboard",
  5752. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5753. "onresize": function () { }
  5754. }, {
  5755. closecallback: function () { }
  5756. }, { "style": { "height": "36px" } }).form; //创建窗体
  5757. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5758. break;
  5759. case "investigation":
  5760. _formdiv = new U.UF.UI.form(
  5761. "问卷调查",
  5762. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5763. "id": "investigation",
  5764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5765. "onresize": function () { }
  5766. }, {
  5767. closecallback: function () { }
  5768. }, { "style": { "height": "36px" } }).form; //创建窗体
  5769. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5770. break;
  5771. case "note":
  5772. _formdiv = new U.UF.UI.form(
  5773. "便签分类",
  5774. $$("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 }), {
  5775. "id": "note",
  5776. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5777. "onresize": function () { }
  5778. }, {
  5779. closecallback: function () { }
  5780. }, { "style": { "height": "36px" } }).form; //创建窗体
  5781. _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); } }
  5782. break;
  5783. // case "score":
  5784. // _formdiv = new U.UF.UI.form(
  5785. // "量规评分",
  5786. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5787. // "id": "score",
  5788. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5789. // "onresize": function() {}
  5790. // }, {
  5791. // closecallback: function() {}
  5792. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5793. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5794. // break;
  5795. case "mind":
  5796. _formdiv = new U.UF.UI.form(
  5797. "思维导图",
  5798. $$("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"
  5799. "id": "mind",
  5800. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5801. "onresize": function () { }
  5802. }, {
  5803. closecallback: function () { }
  5804. }, { "style": { "height": "36px" } }).form; //创建窗体
  5805. _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); } }
  5806. break;
  5807. case "doc":
  5808. // U.MD.D.I.isRoom();
  5809. _formdiv = new U.UF.UI.form(
  5810. "协同文档",
  5811. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5812. "id": "doc",
  5813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5814. "onresize": function () { }
  5815. }, {
  5816. closecallback: function () { }
  5817. }, { "style": { "height": "36px" } }).form; //创建窗体
  5818. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5819. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5820. })
  5821. _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); } }
  5822. break;
  5823. case "study":
  5824. _formdiv = new U.UF.UI.form(
  5825. "课程中心",
  5826. $$("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
  5827. "id": "study",
  5828. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5829. "onresize": function () { }
  5830. }, {
  5831. closecallback: function () { }
  5832. }, { "style": { "height": "36px" } }).form; //创建窗体
  5833. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5834. break;
  5835. case "mindNetwork": //好友打开
  5836. _formdiv = new U.UF.UI.form(
  5837. "思维网格",
  5838. $$("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 }), {
  5839. "id": "mindNetwork",
  5840. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5841. "onresize": function () { }
  5842. }, {
  5843. closecallback: function () { }
  5844. }, { "style": { "height": "36px" } }).form; //创建窗体
  5845. _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); } }
  5846. break;
  5847. case "train": //好友打开
  5848. _formdiv = new U.UF.UI.form(
  5849. "训练平台",
  5850. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5851. "id": "mindNetwork",
  5852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //创建窗体
  5857. _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); } }
  5858. break;
  5859. case "teacherClassRoom": //好友打开
  5860. _formdiv = new U.UF.UI.form(
  5861. "实时课堂",
  5862. $$("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 }), {
  5863. "id": "teacherClassRoom",
  5864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5865. "onresize": function () { }
  5866. }, {
  5867. closecallback: function () { }
  5868. }, { "style": { "height": "36px" } }).form; //创建窗体
  5869. _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); } }
  5870. setTimeout(() => {
  5871. U.UF.F.windowZooming(_formdiv)
  5872. }, 0);
  5873. break;
  5874. }
  5875. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5876. switch (str) {
  5877. case "project": //好友打开
  5878. _formdiv = new U.UF.UI.form(
  5879. "课程管理",
  5880. $$("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 }), {
  5881. "id": "project",
  5882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5883. "onresize": function () { }
  5884. }, {
  5885. closecallback: function () { }
  5886. }, { "style": { "height": "36px" } }).form; //创建窗体
  5887. _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); } }
  5888. break;
  5889. case "evaluate":
  5890. _formdiv = new U.UF.UI.form(
  5891. "学生评价",
  5892. $$("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 }), {
  5893. "id": "evaluate",
  5894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5895. "onresize": function () { }
  5896. }, {
  5897. closecallback: function () { }
  5898. }, { "style": { "height": "36px" } }).form; //创建窗体
  5899. _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); } }
  5900. break;
  5901. case "notice":
  5902. _formdiv = new U.UF.UI.form(
  5903. "通知公告",
  5904. $$("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 }), {
  5905. "id": "notice",
  5906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5907. "onresize": function () { }
  5908. }, {
  5909. closecallback: function () { }
  5910. }, { "style": { "height": "36px" } }).form; //创建窗体
  5911. _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); } }
  5912. break;
  5913. case "stuLibrary":
  5914. _formdiv = new U.UF.UI.form(
  5915. "学习资料",
  5916. $$("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 }), {
  5917. "id": "stuLibrary",
  5918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5919. "onresize": function () { }
  5920. }, {
  5921. closecallback: function () { }
  5922. }, { "style": { "height": "36px" } }).form; //创建窗体
  5923. _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); } }
  5924. break;
  5925. case "program":
  5926. _formdiv = new U.UF.UI.form(
  5927. "编程平台",
  5928. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5929. "id": "program",
  5930. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5931. "onresize": function () { }
  5932. }, {
  5933. closecallback: function () { }
  5934. }, { "style": { "height": "36px" } }).form; //创建窗体
  5935. _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); } }
  5936. break;
  5937. case "whiteboard":
  5938. _formdiv = new U.UF.UI.form(
  5939. "电子白板",
  5940. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5941. "id": "whiteboard",
  5942. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5943. "onresize": function () { }
  5944. }, {
  5945. closecallback: function () { }
  5946. }, { "style": { "height": "36px" } }).form; //创建窗体
  5947. _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); } }
  5948. break;
  5949. case "investigation":
  5950. _formdiv = new U.UF.UI.form(
  5951. "问卷调查",
  5952. $$("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 }), {
  5953. "id": "investigation",
  5954. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5955. "onresize": function () { }
  5956. }, {
  5957. closecallback: function () { }
  5958. }, { "style": { "height": "36px" } }).form; //创建窗体
  5959. _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); } }
  5960. break;
  5961. case "mind":
  5962. _formdiv = new U.UF.UI.form(
  5963. "思维导图",
  5964. $$("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"
  5965. "id": "mind",
  5966. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5967. "onresize": function () { }
  5968. }, {
  5969. closecallback: function () { }
  5970. }, { "style": { "height": "36px" } }).form; //创建窗体
  5971. _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); } }
  5972. break;
  5973. case "doc":
  5974. // U.MD.D.I.isRoom();
  5975. _formdiv = new U.UF.UI.form(
  5976. "协同文档",
  5977. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5978. "id": "doc",
  5979. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5980. "onresize": function () { }
  5981. }, {
  5982. closecallback: function () { }
  5983. }, { "style": { "height": "36px" } }).form; //创建窗体
  5984. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5985. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5986. })
  5987. _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); } }
  5988. break;
  5989. case "study":
  5990. _formdiv = new U.UF.UI.form(
  5991. "课程中心",
  5992. $$("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
  5993. "id": "study",
  5994. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5995. "onresize": function () { }
  5996. }, {
  5997. closecallback: function () { }
  5998. }, { "style": { "height": "36px" } }).form; //创建窗体
  5999. _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); } }
  6000. break;
  6001. case "mindNetwork": //好友打开
  6002. _formdiv = new U.UF.UI.form(
  6003. "思维网格",
  6004. $$("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 }), {
  6005. "id": "mindNetwork",
  6006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6007. "onresize": function () { }
  6008. }, {
  6009. closecallback: function () { }
  6010. }, { "style": { "height": "36px" } }).form; //创建窗体
  6011. _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); } }
  6012. break;
  6013. case "train": //好友打开
  6014. _formdiv = new U.UF.UI.form(
  6015. "训练平台",
  6016. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6017. "id": "train",
  6018. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6019. "onresize": function () { }
  6020. }, {
  6021. closecallback: function () { }
  6022. }, { "style": { "height": "36px" } }).form; //创建窗体
  6023. _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); } }
  6024. break;
  6025. case "sys":
  6026. _formdiv = new U.UF.UI.form(
  6027. "目标管理",
  6028. $$("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 }), {
  6029. "id": "sys",
  6030. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6031. "onresize": function () { }
  6032. }, {
  6033. closecallback: function () { }
  6034. }, { "style": { "height": "36px" } }).form; //创建窗体
  6035. _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); } }
  6036. break;
  6037. case "courseDesign":
  6038. _formdiv = new U.UF.UI.form(
  6039. "项目设计",
  6040. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6041. "id": "courseDesign",
  6042. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6043. "onresize": function () { }
  6044. }, {
  6045. closecallback: function () { }
  6046. }, { "style": { "height": "36px" } }).form; //创建窗体
  6047. _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); } }
  6048. break;
  6049. }
  6050. } else if (!_type) {
  6051. switch (str) {
  6052. case "my":
  6053. _formdiv = new U.UF.UI.form(
  6054. "我的资料",
  6055. $$("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 }), {
  6056. "id": "my",
  6057. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6058. "onresize": function () { }
  6059. }, {
  6060. closecallback: function () { }
  6061. }, { "style": { "height": "36px" } }).form; //创建窗体
  6062. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6063. break;
  6064. }
  6065. }
  6066. switch (str) {
  6067. // AIprogram2 AI体验 aihub.cocorobo.cn
  6068. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6069. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6070. case "formulaEdi": //公式编辑
  6071. _formdiv = new U.UF.UI.form(
  6072. "公式编辑",
  6073. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6074. "id": "formulaEdi",
  6075. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6076. "onresize": function () { }
  6077. }, {
  6078. closecallback: function () { }
  6079. }, { "style": { "height": "36px" } }).form; //创建窗体
  6080. _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); } }
  6081. break;
  6082. case "molStr": //分子结构
  6083. _formdiv = new U.UF.UI.form(
  6084. "分子结构",
  6085. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6086. "id": "molStr",
  6087. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6088. "onresize": function () { }
  6089. }, {
  6090. closecallback: function () { }
  6091. }, { "style": { "height": "36px" } }).form; //创建窗体
  6092. _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); } }
  6093. break;
  6094. case "timeAxis": //时间轴
  6095. _formdiv = new U.UF.UI.form(
  6096. "时间轴",
  6097. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6098. "id": "timeAxis",
  6099. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6100. "onresize": function () { }
  6101. }, {
  6102. closecallback: function () { }
  6103. }, { "style": { "height": "36px" } }).form; //创建窗体
  6104. _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); } }
  6105. break;
  6106. case "AIprogram2": //AI体验
  6107. _formdiv = new U.UF.UI.form(
  6108. "AI体验",
  6109. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6110. "id": "AIprogram2",
  6111. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6112. "onresize": function () { }
  6113. }, {
  6114. closecallback: function () { }
  6115. }, { "style": { "height": "36px" } }).form; //创建窗体
  6116. _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); } }
  6117. break;
  6118. case "Pythonprogram": //python编程
  6119. _formdiv = new U.UF.UI.form(
  6120. "Python编程",
  6121. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6122. "id": "Pythonprogram",
  6123. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6124. "onresize": function () { }
  6125. }, {
  6126. closecallback: function () { }
  6127. }, { "style": { "height": "36px" } }).form; //创建窗体
  6128. _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); } }
  6129. break;
  6130. case "AIprogram": //ai编程
  6131. _formdiv = new U.UF.UI.form(
  6132. "AI编程平台",
  6133. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6134. "id": "AIprogram",
  6135. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6136. "onresize": function () { }
  6137. }, {
  6138. closecallback: function () { }
  6139. }, { "style": { "height": "36px" } }).form; //创建窗体
  6140. _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); } }
  6141. break;
  6142. case "CocoPi": //CocoPi
  6143. _formdiv = new U.UF.UI.form(
  6144. "CocoPi",
  6145. $$("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" }), {
  6146. "id": "CocoPi",
  6147. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6148. "onresize": function () { }
  6149. }, {
  6150. closecallback: function () { }
  6151. }, { "style": { "height": "36px" } }).form; //创建窗体
  6152. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6153. break;
  6154. case "Wood": //Wood
  6155. _formdiv = new U.UF.UI.form(
  6156. "海龟编程",
  6157. $$("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/" }), {
  6158. "id": "Wood",
  6159. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6160. "onresize": function () { }
  6161. }, {
  6162. closecallback: function () { }
  6163. }, { "style": { "height": "36px" } }).form; //创建窗体
  6164. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6165. break;
  6166. case "car": //模拟驾驶
  6167. _formdiv = new U.UF.UI.form(
  6168. "模拟驾驶",
  6169. $$("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/" }), {
  6170. "id": "car",
  6171. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6172. "onresize": function () { }
  6173. }, {
  6174. closecallback: function () { }
  6175. }, { "style": { "height": "36px" } }).form; //创建窗体
  6176. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6177. break;
  6178. case "lineSearch": //路径搜索
  6179. _formdiv = new U.UF.UI.form(
  6180. "路径搜索",
  6181. $$("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/" }), {
  6182. "id": "lineSearch",
  6183. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6184. "onresize": function () { }
  6185. }, {
  6186. closecallback: function () { }
  6187. }, { "style": { "height": "36px" } }).form; //创建窗体
  6188. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6189. break;
  6190. case "deepLearning": //深度学习
  6191. _formdiv = new U.UF.UI.form(
  6192. "深度学习",
  6193. $$("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/#" }), {
  6194. "id": "deepLearning",
  6195. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6196. "onresize": function () { }
  6197. }, {
  6198. closecallback: function () { }
  6199. }, { "style": { "height": "36px" } }).form; //创建窗体
  6200. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6201. break;
  6202. case "allHistory": //深度学习
  6203. _formdiv = new U.UF.UI.form(
  6204. "全历史",
  6205. $$("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/" }), {
  6206. "id": "allHistory",
  6207. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6208. "onresize": function () { }
  6209. }, {
  6210. closecallback: function () { }
  6211. }, { "style": { "height": "36px" } }).form; //创建窗体
  6212. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6213. break;
  6214. case "chatPDF": //ai编程
  6215. _formdiv = new U.UF.UI.form(
  6216. "chatPDF",
  6217. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6218. "id": "chatPDF",
  6219. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6220. "onresize": function () { }
  6221. }, {
  6222. closecallback: function () { }
  6223. }, { "style": { "height": "36px" } }).form; //创建窗体
  6224. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6225. break;
  6226. case "resources": //国家教育
  6227. _formdiv = new U.UF.UI.form(
  6228. "国家教育",
  6229. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6230. "id": "resources",
  6231. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6232. "onresize": function () { }
  6233. }, {
  6234. closecallback: function () { }
  6235. }, { "style": { "height": "36px" } }).form; //创建窗体
  6236. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6237. break;
  6238. case "codeEdit": //源码编辑
  6239. _formdiv = new U.UF.UI.form(
  6240. "源码编辑",
  6241. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6242. "id": "codeEdit",
  6243. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6244. "onresize": function () { }
  6245. }, {
  6246. closecallback: function () { }
  6247. }, { "style": { "height": "36px" } }).form; //创建窗体
  6248. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6249. break; //
  6250. case "MindMap": //MindMap
  6251. _formdiv = new U.UF.UI.form(
  6252. "MindMap",
  6253. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6254. "id": "MindMap",
  6255. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6256. "onresize": function () { }
  6257. }, {
  6258. closecallback: function () { }
  6259. }, { "style": { "height": "36px" } }).form; //创建窗体
  6260. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6261. break;
  6262. case "netWorkPanel": //netWorkPanel
  6263. _formdiv = new U.UF.UI.form(
  6264. "netWorkPanel",
  6265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6266. "id": "netWorkPanel",
  6267. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6268. "onresize": function () { }
  6269. }, {
  6270. closecallback: function () { }
  6271. }, { "style": { "height": "36px" } }).form; //创建窗体
  6272. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6273. break;
  6274. case "GeoGebra": //GeoGebra
  6275. _formdiv = new U.UF.UI.form(
  6276. "GeoGebra",
  6277. $$("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" }), {
  6278. "id": "GeoGebra",
  6279. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6280. "onresize": function () { }
  6281. }, {
  6282. closecallback: function () { }
  6283. }, { "style": { "height": "36px" } }).form; //创建窗体
  6284. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6285. break;
  6286. case "translation": //翻译
  6287. _formdiv = new U.UF.UI.form(
  6288. "翻译",
  6289. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6290. "id": "translation",
  6291. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //创建窗体
  6296. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6297. break;
  6298. case "mohe": //魔盒
  6299. _formdiv = new U.UF.UI.form(
  6300. "魔盒识字",
  6301. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6302. "id": "mohe",
  6303. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6304. "onresize": function () { }
  6305. }, {
  6306. closecallback: function () { }
  6307. }, { "style": { "height": "36px" } }).form; //创建窗体
  6308. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6309. break;
  6310. case "24game": //24点
  6311. _formdiv = new U.UF.UI.form(
  6312. "24点",
  6313. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6314. "id": "24game",
  6315. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6316. "onresize": function () { }
  6317. }, {
  6318. closecallback: function () { }
  6319. }, { "style": { "height": "36px" } }).form; //创建窗体
  6320. _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); } }
  6321. break;
  6322. case "case":
  6323. _formdiv = new U.UF.UI.form(
  6324. "课程进展",
  6325. $$("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 }), {
  6326. "id": "case",
  6327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6328. "onresize": function () { }
  6329. }, {
  6330. closecallback: function () { }
  6331. }, { "style": { "height": "36px" } }).form; //创建窗体
  6332. _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); } }
  6333. break;
  6334. case "snf":
  6335. _formdiv = new U.UF.UI.form(
  6336. "赛诺梵",
  6337. $$("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" }), {
  6338. "id": "snf",
  6339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6340. "onresize": function () { }
  6341. }, {
  6342. closecallback: function () { }
  6343. }, { "style": { "height": "36px" } }).form; //创建窗体
  6344. _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); } }
  6345. break;
  6346. case "hanFamily":
  6347. _formdiv = new U.UF.UI.form(
  6348. "汉字家族",
  6349. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6350. "id": "hanFamily",
  6351. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6352. "onresize": function () { }
  6353. }, {
  6354. closecallback: function () { }
  6355. }, { "style": { "height": "36px" } }).form; //创建窗体
  6356. _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); } }
  6357. break;
  6358. case "hanClassics":
  6359. _formdiv = new U.UF.UI.form(
  6360. "国学经典",
  6361. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6362. "id": "hanClassics",
  6363. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6364. "onresize": function () { }
  6365. }, {
  6366. closecallback: function () { }
  6367. }, { "style": { "height": "36px" } }).form; //创建窗体
  6368. _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); } }
  6369. break;
  6370. case "hanTraining":
  6371. _formdiv = new U.UF.UI.form(
  6372. "笔画训练",
  6373. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6374. "id": "hanTraining",
  6375. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6376. "onresize": function () { }
  6377. }, {
  6378. closecallback: function () { }
  6379. }, { "style": { "height": "36px" } }).form; //创建窗体
  6380. _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); } }
  6381. break;
  6382. case "hanClass":
  6383. _formdiv = new U.UF.UI.form(
  6384. "书法课堂",
  6385. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6386. "id": "hanClass",
  6387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6388. "onresize": function () { }
  6389. }, {
  6390. closecallback: function () { }
  6391. }, { "style": { "height": "36px" } }).form; //创建窗体
  6392. _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); } }
  6393. break;
  6394. case "han":
  6395. _formdiv = new U.UF.UI.form(
  6396. "汉字宫",
  6397. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6398. "id": "han",
  6399. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6400. "onresize": function () { }
  6401. }, {
  6402. closecallback: function () { }
  6403. }, { "style": { "height": "36px" } }).form; //创建窗体
  6404. _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); } }
  6405. break;
  6406. case "projectGM": //课程管理
  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/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6410. "id": "projectGM",
  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/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6417. break;
  6418. case "studyGM": //课程中心
  6419. _formdiv = new U.UF.UI.form(
  6420. "课程中心",
  6421. $$("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
  6422. "id": "study",
  6423. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6424. "onresize": function () { }
  6425. }, {
  6426. closecallback: function () { }
  6427. }, { "style": { "height": "36px" } }).form; //创建窗体
  6428. _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); } }
  6429. break;
  6430. // studentGM
  6431. case "studentGM": //学生管理
  6432. _formdiv = new U.UF.UI.form(
  6433. "学生管理",
  6434. $$("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 }), {
  6435. "id": "studentGM",
  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/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6442. break;
  6443. case "evaluateGM": //学生评价
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6447. "id": "evaluateGM",
  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/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6454. break;
  6455. // classGM
  6456. case "classGM": //班级管理
  6457. _formdiv = new U.UF.UI.form(
  6458. "班级管理",
  6459. $$("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 }), {
  6460. "id": "classGM",
  6461. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6462. "onresize": function () { }
  6463. }, {
  6464. closecallback: function () { }
  6465. }, { "style": { "height": "36px" } }).form; //创建窗体
  6466. _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); } }
  6467. break;
  6468. // dataGM
  6469. case "dataGM":
  6470. _formdiv = new U.UF.UI.form(
  6471. "我的资料",
  6472. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  6473. "id": "dataGM",
  6474. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6475. "onresize": function () { }
  6476. }, {
  6477. closecallback: function () { }
  6478. }, { "style": { "height": "36px" } }).form; //创建窗体
  6479. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6480. break;
  6481. // caseGM
  6482. case "caseGM": //课程进展
  6483. _formdiv = new U.UF.UI.form(
  6484. "课程进展",
  6485. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6486. "id": "caseGM",
  6487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6488. "onresize": function () { }
  6489. }, {
  6490. closecallback: function () { }
  6491. }, { "style": { "height": "36px" } }).form; //创建窗体
  6492. _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); } }
  6493. break;
  6494. // meterialGM
  6495. case "meterialGM": //素材库
  6496. _formdiv = new U.UF.UI.form(
  6497. "素材库",
  6498. $$("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 }), {
  6499. "id": "meterialGM",
  6500. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6501. "onresize": function () { }
  6502. }, {
  6503. closecallback: function () { }
  6504. }, { "style": { "height": "36px" } }).form; //创建窗体
  6505. _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); } }
  6506. break;
  6507. // evaluateSGM
  6508. case "evaluateSGM": //我的评价
  6509. _formdiv = new U.UF.UI.form(
  6510. "我的评价",
  6511. $$("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 }), {
  6512. "id": "evaluateSGM",
  6513. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6514. "onresize": function () { }
  6515. }, {
  6516. closecallback: function () { }
  6517. }, { "style": { "height": "36px" } }).form; //创建窗体
  6518. _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); } }
  6519. break;
  6520. case "jupyter": //jupyter
  6521. _formdiv = new U.UF.UI.form(
  6522. "jupyter",
  6523. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6524. "id": "jupyter",
  6525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6526. "onresize": function () { }
  6527. }, {
  6528. closecallback: function () { }
  6529. }, { "style": { "height": "36px" } }).form; //创建窗体
  6530. _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); } }
  6531. break;
  6532. case "number": //数字实验室
  6533. _formdiv = new U.UF.UI.form(
  6534. "数字实验室",
  6535. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6536. "id": "number",
  6537. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6538. "onresize": function () { }
  6539. }, {
  6540. closecallback: function () { }
  6541. }, { "style": { "height": "36px" } }).form; //创建窗体
  6542. _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); } }
  6543. break;
  6544. case "studentCourse": //项目管理 学生
  6545. _formdiv = new U.UF.UI.form(
  6546. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6547. $$("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 }), {
  6548. "id": "studentCourse",
  6549. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6550. "onresize": function () { }
  6551. }, {
  6552. closecallback: function () { }
  6553. }, { "style": { "height": "36px" } }).form; //创建窗体
  6554. _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); } }
  6555. break;
  6556. case "studentCourseS": //项目管理 老师
  6557. _formdiv = new U.UF.UI.form(
  6558. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6559. $$("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 }), {
  6560. "id": "studentCourseS",
  6561. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6562. "onresize": function () { }
  6563. }, {
  6564. closecallback: function () { }
  6565. }, { "style": { "height": "36px" } }).form; //创建窗体
  6566. _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); } }
  6567. break;
  6568. case "studentIndex": //项目中心
  6569. _formdiv = new U.UF.UI.form(
  6570. "项目中心",
  6571. $$("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 }), {
  6572. "id": "studentIndex",
  6573. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6574. "onresize": function () { }
  6575. }, {
  6576. closecallback: function () { }
  6577. }, { "style": { "height": "36px" } }).form; //创建窗体
  6578. _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); } }
  6579. break;
  6580. case "CaseDesignS":
  6581. _formdiv = new U.UF.UI.form(
  6582. "项目进展",
  6583. $$("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 }), {
  6584. "id": "case",
  6585. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6586. "onresize": function () { }
  6587. }, {
  6588. closecallback: function () { }
  6589. }, { "style": { "height": "36px" } }).form; //创建窗体
  6590. _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); } }
  6591. break;
  6592. case "tcStudent": //腾讯学生管理
  6593. _formdiv = new U.UF.UI.form(
  6594. "学生管理",
  6595. $$("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 }), {
  6596. "id": "tcStudent",
  6597. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6598. "onresize": function () { }
  6599. }, {
  6600. closecallback: function () { }
  6601. }, { "style": { "height": "36px" } }).form; //创建窗体
  6602. _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); } }
  6603. break;
  6604. case "tcSchool": //腾讯学校管理
  6605. _formdiv = new U.UF.UI.form(
  6606. "学校管理",
  6607. $$("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 }), {
  6608. "id": "tcSchool",
  6609. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6610. "onresize": function () { }
  6611. }, {
  6612. closecallback: function () { }
  6613. }, { "style": { "height": "36px" } }).form; //创建窗体
  6614. _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); } }
  6615. break;
  6616. case "tcTeacher": //腾讯学校管理
  6617. _formdiv = new U.UF.UI.form(
  6618. "教师管理",
  6619. $$("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 }), {
  6620. "id": "tcTeacher",
  6621. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6622. "onresize": function () { }
  6623. }, {
  6624. closecallback: function () { }
  6625. }, { "style": { "height": "36px" } }).form; //创建窗体
  6626. _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); } }
  6627. break;
  6628. case "teacher":
  6629. _formdiv = new U.UF.UI.form(
  6630. "教师管理",
  6631. $$("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 }), {
  6632. "id": "teacher",
  6633. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6634. "onresize": function () { }
  6635. }, {
  6636. closecallback: function () { }
  6637. }, { "style": { "height": "36px" } }).form; //创建窗体
  6638. _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); } }
  6639. break;
  6640. case "tcData": //腾讯我的资料
  6641. _formdiv = new U.UF.UI.form(
  6642. "我的资料",
  6643. $$("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 }), {
  6644. "id": "tcData",
  6645. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6646. "onresize": function () { }
  6647. }, {
  6648. closecallback: function () { }
  6649. }, { "style": { "height": "36px" } }).form; //创建窗体
  6650. _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); } }
  6651. break;
  6652. case "tcNotice": //腾讯消息通知
  6653. _formdiv = new U.UF.UI.form(
  6654. "消息通知",
  6655. $$("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 }), {
  6656. "id": "tcNotice",
  6657. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6658. "onresize": function () { }
  6659. }, {
  6660. closecallback: function () { }
  6661. }, { "style": { "height": "36px" } }).form; //创建窗体
  6662. _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); } }
  6663. break;
  6664. case "myReport": //好友打开
  6665. _formdiv = new U.UF.UI.form(
  6666. "我的评价",
  6667. $$("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 }), {
  6668. "id": "myReport",
  6669. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6670. "onresize": function () { }
  6671. }, {
  6672. closecallback: function () { }
  6673. }, { "style": { "height": "36px" } }).form; //创建窗体
  6674. _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); } }
  6675. break;
  6676. case "learnAna": //好友打开
  6677. _formdiv = new U.UF.UI.form(
  6678. "学习分析",
  6679. $$("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 }), {
  6680. "id": "learnAna",
  6681. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6682. "onresize": function () { }
  6683. }, {
  6684. closecallback: function () { }
  6685. }, { "style": { "height": "36px" } }).form; //创建窗体
  6686. _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); } }
  6687. break;
  6688. case "AIChat": //AI共创
  6689. _formdiv = new U.UF.UI.form(
  6690. "AI共创",
  6691. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6692. "id": "AIChat",
  6693. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6694. "onresize": function () { }
  6695. }, {
  6696. istop: true,
  6697. closecallback: function () { $("#aichat_icon").remove(); },
  6698. narrowcallback: function () {
  6699. if (!$("#aichat_icon")[0]) {
  6700. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6701. }
  6702. },
  6703. }, { "style": { "height": "36px" } }).form; //创建窗体
  6704. _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); } }
  6705. break;
  6706. case "ainew": //AI共创
  6707. _formdiv = new U.UF.UI.form(
  6708. "AI协同",
  6709. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6710. "id": "ainew",
  6711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6712. "onresize": function () { }
  6713. }, {
  6714. closecallback: function () { }
  6715. }, { "style": { "height": "36px" } }).form; //创建窗体
  6716. _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); } }
  6717. break;
  6718. case "gpt4": //gpt4
  6719. _formdiv = new U.UF.UI.form(
  6720. "AI助手",
  6721. $$("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 }), {
  6722. "id": "gpt4",
  6723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6724. "onresize": function () { }
  6725. }, {
  6726. closecallback: function () { }
  6727. }, { "style": { "height": "36px" } }).form; //创建窗体
  6728. _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); } }
  6729. break;
  6730. case "aigpt": //gpt4
  6731. _formdiv = new U.UF.UI.form(
  6732. "AI助手+",
  6733. $$("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 }), {
  6734. "id": "aigpt",
  6735. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6736. "onresize": function () { }
  6737. }, {
  6738. closecallback: function () {
  6739. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6740. }
  6741. }, { "style": { "height": "36px" } }).form; //创建窗体
  6742. _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); } }
  6743. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6744. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6745. })
  6746. break;
  6747. case "aiKnowledge": //aiKnowledge
  6748. _formdiv = new U.UF.UI.form(
  6749. "知识建构",
  6750. $$("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 }), {
  6751. "id": "aiKnowledge",
  6752. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6753. "onresize": function () { }
  6754. }, {
  6755. closecallback: function () { }
  6756. }, { "style": { "height": "36px" } }).form; //创建窗体
  6757. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6758. break;
  6759. case "futureClass": //AI共创
  6760. _formdiv = new U.UF.UI.form(
  6761. "协同建构",
  6762. $$("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
  6763. "id": "synergyCourse",
  6764. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6765. "onresize": function () { }
  6766. }, {
  6767. closecallback: function () {
  6768. $("iframe", _formdiv)[0].contentWindow.loginout();
  6769. }
  6770. }, { "style": { "height": "36px" } }).form; //创建窗体
  6771. _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); } }
  6772. break;
  6773. case "aiagent": //ai agent
  6774. _formdiv = new U.UF.UI.form(
  6775. "AI Agent",
  6776. $$("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" }), {
  6777. "id": "AIAgent",
  6778. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6779. "onresize": function () { }
  6780. }, {
  6781. closecallback: function () { }
  6782. }, { "style": { "height": "36px" } }).form; //创建窗体
  6783. _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); } }
  6784. break;
  6785. case "dataBoard": //数据看板
  6786. _formdiv = new U.UF.UI.form(
  6787. "数据看板",
  6788. $$("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 }), {
  6789. "id": "dataBoard",
  6790. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6791. "onresize": function () { }
  6792. }, {
  6793. closecallback: function () { }
  6794. }, { "style": { "height": "36px" } }).form; //创建窗体
  6795. _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); } }
  6796. break;
  6797. case "dataBoardSies": //数据融合
  6798. _formdiv = new U.UF.UI.form(
  6799. "数据融合",
  6800. $$("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 }), {
  6801. "id": "dataBoardSies",
  6802. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6803. "onresize": function () { }
  6804. }, {
  6805. closecallback: function () { }
  6806. }, { "style": { "height": "36px" } }).form; //创建窗体
  6807. _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); } }
  6808. break;
  6809. case "dataBoardNew": //数据看板
  6810. _formdiv = new U.UF.UI.form(
  6811. "综合看板",
  6812. $$("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 }), {
  6813. "id": "dataBoardNew",
  6814. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () { }
  6818. }, { "style": { "height": "36px" } }).form; //创建窗体
  6819. _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); } }
  6820. break;
  6821. case "dataBoardTest": //数据看板
  6822. _formdiv = new U.UF.UI.form(
  6823. "评测看板",
  6824. $$("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 }), {
  6825. "id": "dataBoardTest",
  6826. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6827. "onresize": function () { }
  6828. }, {
  6829. closecallback: function () { }
  6830. }, { "style": { "height": "36px" } }).form; //创建窗体
  6831. _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); } }
  6832. break;
  6833. case "AIAnalyse": //AI共创
  6834. _formdiv = new U.UF.UI.form(
  6835. "AI分析",
  6836. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6837. "id": "AIAnalyse",
  6838. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6839. "onresize": function () { }
  6840. }, {
  6841. closecallback: function () { }
  6842. }, { "style": { "height": "36px" } }).form; //创建窗体
  6843. _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); } }
  6844. break;
  6845. case "studioCourse": //AI共创
  6846. _formdiv = new U.UF.UI.form(
  6847. "工作管理",
  6848. $$("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 }), {
  6849. "id": "studioCourse",
  6850. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6851. "onresize": function () { }
  6852. }, {
  6853. closecallback: function () { }
  6854. }, { "style": { "height": "36px" } }).form; //创建窗体
  6855. _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); } }
  6856. break;
  6857. case "studioIndex": //AI共创
  6858. _formdiv = new U.UF.UI.form(
  6859. "工作中心",
  6860. $$("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 }), {
  6861. "id": "studioIndex",
  6862. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6863. "onresize": function () { }
  6864. }, {
  6865. closecallback: function () { }
  6866. }, { "style": { "height": "36px" } }).form; //创建窗体
  6867. _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); } }
  6868. break;
  6869. case "source":
  6870. _formdiv = new U.UF.UI.form(
  6871. "教学资源",
  6872. $$("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 }), {
  6873. "id": "source",
  6874. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6875. "onresize": function () { }
  6876. }, {
  6877. closecallback: function () { }
  6878. }, { "style": { "height": "36px" } }).form; //创建窗体
  6879. _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); } }
  6880. break;
  6881. case "testTeacher":
  6882. _formdiv = new U.UF.UI.form(
  6883. "智能表单",
  6884. $$("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 }), {
  6885. "id": "testTeacher",
  6886. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6887. "onresize": function () { }
  6888. }, {
  6889. closecallback: function () { }
  6890. }, { "style": { "height": "36px" } }).form; //创建窗体
  6891. _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); } }
  6892. break;
  6893. case "testStudent":
  6894. _formdiv = new U.UF.UI.form(
  6895. "教师中心",
  6896. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  6897. "id": "testStudent",
  6898. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6899. "onresize": function () { }
  6900. }, {
  6901. closecallback: function () { }
  6902. }, { "style": { "height": "36px" } }).form; //创建窗体
  6903. _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); } }
  6904. break;
  6905. case "testTeacherSies":
  6906. _formdiv = new U.UF.UI.form(
  6907. "教师管理",
  6908. $$("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 }), {
  6909. "id": "testTeacherSies",
  6910. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6911. "onresize": function () { }
  6912. }, {
  6913. closecallback: function () { }
  6914. }, { "style": { "height": "36px" } }).form; //创建窗体
  6915. _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); } }
  6916. break;
  6917. case "testStudentSies":
  6918. _formdiv = new U.UF.UI.form(
  6919. "教师中心",
  6920. $$("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 }), {
  6921. "id": "testStudentSies",
  6922. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6923. "onresize": function () { }
  6924. }, {
  6925. closecallback: function () { }
  6926. }, { "style": { "height": "36px" } }).form; //创建窗体
  6927. _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); } }
  6928. break;
  6929. case "ytpbl": //消息通知
  6930. _formdiv = new U.UF.UI.form(
  6931. "案例征集",
  6932. $$("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 }), {
  6933. "id": "ytpbl",
  6934. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6935. "onresize": function () { }
  6936. }, {
  6937. closecallback: function () { }
  6938. }, { "style": { "height": "36px" } }).form; //创建窗体
  6939. _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); } }
  6940. // 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");
  6941. break;
  6942. case "aiCourseResource": //人工智能窗体
  6943. _formdiv = new U.UF.UI.form(
  6944. false,
  6945. $$("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 }), {
  6946. "id": "aiCourseResource",
  6947. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6948. "onresize": function () { },
  6949. "isdrag": false,
  6950. }, {
  6951. closecallback: function () { }
  6952. }, { "style": { "height": "36px" } }).form; //创建窗体
  6953. _taskbar = ''
  6954. break;
  6955. case "szdjgCocooroboX": //图形化编程
  6956. _formdiv = new U.UF.UI.form(
  6957. "图形化编程",
  6958. $$("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" }), {
  6959. "id": "szdjgCocooroboX",
  6960. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6961. "onresize": function () { }
  6962. }, {
  6963. closecallback: function () { }
  6964. }, { "style": { "height": "36px" } }).form; //创建窗体
  6965. _taskbar = ''
  6966. break;
  6967. case "szdjgPython": //python编程
  6968. _formdiv = new U.UF.UI.form(
  6969. "Python编程",
  6970. $$("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" }), {
  6971. "id": "szdjgPython",
  6972. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6973. "onresize": function () { }
  6974. }, {
  6975. closecallback: function () { }
  6976. }, { "style": { "height": "36px" } }).form; //创建窗体
  6977. _taskbar = ''
  6978. break;
  6979. case "Record":
  6980. _formdiv = new U.UF.UI.form(
  6981. "观察记录",
  6982. $$("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 }), {
  6983. "id": "Record",
  6984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6985. "onresize": function () { }
  6986. }, {
  6987. closecallback: function () { }
  6988. }, { "style": { "height": "36px" } }).form; //创建窗体
  6989. _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); } }
  6990. break;
  6991. case "aigptCourse":
  6992. _formdiv = new U.UF.UI.form(
  6993. "AI智能体",
  6994. $$("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' }), {
  6995. "id": "aigptCourse",
  6996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6997. "onresize": function () { }
  6998. }, {
  6999. closecallback: function () { }
  7000. }, { "style": { "height": "36px" } }).form; //创建窗体
  7001. _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); } }
  7002. break;
  7003. case "classroomObservation":
  7004. _formdiv = new U.UF.UI.form(
  7005. "课堂观察",
  7006. $$("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 }), {
  7007. "id": "classroomObservation",
  7008. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7009. "onresize": function () { }
  7010. }, {
  7011. closecallback: function () { }
  7012. }, { "style": { "height": "36px" } }).form; //创建窗体
  7013. _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); } }
  7014. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7015. break;
  7016. case "pblCourse":
  7017. _formdiv = new U.UF.UI.form(
  7018. "学生PBL",
  7019. $$("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 }), {
  7020. "id": "pblCourse",
  7021. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7022. "onresize": function () { }
  7023. }, {
  7024. closecallback: function () { }
  7025. }, { "style": { "height": "36px" } }).form; //创建窗体
  7026. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7027. break;
  7028. case "appStore":
  7029. _formdiv = new U.UF.UI.form(
  7030. "CocoFlow",
  7031. $$("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 }), {
  7032. "id": "appStore",
  7033. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7034. "onresize": function () { }
  7035. }, {
  7036. closecallback: function () { }
  7037. }, { "style": { "height": "36px" } }).form; //创建窗体
  7038. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7039. break;
  7040. case "EDU":
  7041. _formdiv = new U.UF.UI.form(
  7042. "EDU",
  7043. $$("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" }), {
  7044. "id": "EDU",
  7045. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7046. "onresize": function () { }
  7047. }, {
  7048. closecallback: function () { }
  7049. }, { "style": { "height": "36px" } }).form; //创建窗体
  7050. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7051. break;
  7052. case "knowledge":
  7053. _formdiv = new U.UF.UI.form(
  7054. "知识库",
  7055. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7056. "id": "knowledge",
  7057. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7058. "onresize": function () { }
  7059. }, {
  7060. closecallback: function () { }
  7061. }, { "style": { "height": "36px" } }).form; //创建窗体
  7062. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7063. break;
  7064. case "userExamine":
  7065. _formdiv = new U.UF.UI.form(
  7066. "账号申请",
  7067. $$("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" }), {
  7068. "id": "userExamine",
  7069. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7070. "onresize": function () { }
  7071. }, {
  7072. closecallback: function () { }
  7073. }, { "style": { "height": "36px" } }).form; //创建窗体
  7074. break;
  7075. }
  7076. //U.MD.D.I.openClick(str);
  7077. //如果有任务栏信息
  7078. if (_taskbar) {
  7079. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7080. }
  7081. }
  7082. // U.MD.D.I.openClick = function(str){
  7083. // var click = '';
  7084. // switch(str){
  7085. // case 'friend':
  7086. // click = '我的好友';
  7087. // break;
  7088. // case 'domain':
  7089. // click = '域名管理';
  7090. // break;
  7091. // case 'disk':
  7092. // click = '我的云盘';
  7093. // break;
  7094. // case 'word':
  7095. // click = 'Word';
  7096. // break;
  7097. // case 'excel':
  7098. // click = 'Execl';
  7099. // break;
  7100. // case 'txt':
  7101. // click = '文本文件';
  7102. // break;
  7103. // case 'lookupFriend':
  7104. // click = '查找好友';
  7105. // break;
  7106. // case 'ftp':
  7107. // click = 'FTP';
  7108. // break;
  7109. // case 'group':
  7110. // click = '群组';
  7111. // break;
  7112. // case 'set':
  7113. // click = '我的设置';
  7114. // break;
  7115. // case 'systemSet':
  7116. // click = '系统设置';
  7117. // break;
  7118. // case 'boomYun':
  7119. // click = '互联办公';
  7120. // break;
  7121. // case 'xz':
  7122. // click = '云端下载';
  7123. // break;
  7124. // case 'client':
  7125. // click = '有思浏览器';
  7126. // break;
  7127. // case 'backEndProgramming':
  7128. // click = '在线后台编程';
  7129. // break;
  7130. // case 'frontEndProgramming':
  7131. // click = '在线前端编程';
  7132. // break;
  7133. // default: break;
  7134. // }
  7135. // if(U.MD.D.I.Ip && click){
  7136. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7137. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7138. // })
  7139. // }
  7140. // }
  7141. /**
  7142. *函数作用:ajax简易函数,使用post格式
  7143. *@param url {data} 后台地址
  7144. *@param data {data} 参数json
  7145. *@param fn {data} 回调函数
  7146. *
  7147. */
  7148. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7149. // var xhr = new XMLHttpRequest();
  7150. // xhr.open("GET",url,true);
  7151. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7152. // xhr.onreadystatechange = function(){
  7153. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7154. // fn.call(this,xhr.responseText);
  7155. // }
  7156. // };
  7157. // xhr.send();
  7158. // }
  7159. /*判断是否是内网IP*/
  7160. // U.MD.D.I.isInnerIPFn = function(str){
  7161. // var curPageUrl = str;
  7162. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7163. // curPageUrl =curPageUrl.replace(reg1,'');
  7164. // // console.log('curPageUrl-1 '+curPageUrl);
  7165. // var reg2 = /\:+/g;//替换冒号为一点
  7166. // curPageUrl =curPageUrl.replace(reg2,'.');
  7167. // // console.log('curPageUrl-2 '+curPageUrl);
  7168. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7169. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7170. // if(curPageUrl[2] != '16'){
  7171. // return ipAddress;
  7172. // }else{
  7173. // return false;
  7174. // }
  7175. // }
  7176. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7177. // //compatibility for firefox and chrome
  7178. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7179. // var pc = new myPeerConnection({
  7180. // iceServers: []
  7181. // }),
  7182. // noop = function() {},
  7183. // localIPs = {},
  7184. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7185. // key;
  7186. // function iterateIP(ip) {
  7187. // if (!localIPs[ip]) onNewIP(ip);
  7188. // localIPs[ip] = true;
  7189. // }
  7190. // //create a bogus data channel
  7191. // pc.createDataChannel("");
  7192. // // create offer and set local description
  7193. // pc.createOffer().then(function(sdp) {
  7194. // sdp.sdp.split('\n').forEach(function(line) {
  7195. // if (line.indexOf('candidate') < 0) return;
  7196. // line.match(ipRegex).forEach(iterateIP);
  7197. // });
  7198. // pc.setLocalDescription(sdp, noop, noop);
  7199. // }).catch(function(reason) {
  7200. // // An error occurred, so handle the failure to connect
  7201. // });
  7202. // //sten for candidate events
  7203. // pc.onicecandidate = function(ice) {
  7204. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7205. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7206. // };
  7207. // }
  7208. // U.MD.D.I.getUserIpBool = function(callback){
  7209. // U.MD.D.I.getUserIP(function(ip){
  7210. // alert("Got IP! :" + ip);
  7211. // });
  7212. //}
  7213. //#endregion
  7214. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7215. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7216. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7217. _userinfo = US.userInfo, //登录用户信息
  7218. _userid = US.userInfo.userid //登录用户id
  7219. let _iframe;
  7220. let _cid = cid,
  7221. _stage = stage,
  7222. _task = task,
  7223. _tool = tool;
  7224. var _jie = $$("div", {
  7225. "style": {
  7226. "position": "absolute",
  7227. "bottom": "50px",
  7228. "right": "50px",
  7229. "zIndex": "9999",
  7230. "backgroundColor": "#2268bc",
  7231. "color": "#fff",
  7232. "padding": "12px 20px",
  7233. "cursor": "pointer",
  7234. "borderRadius": "4px",
  7235. },
  7236. "innerHTML": "提交作业"
  7237. })
  7238. let aTool = ''
  7239. let _loading = document.createElement('div')
  7240. _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;"
  7241. // _loading.id = "";
  7242. let _lchild = document.createElement('div')
  7243. let _limg = document.createElement('img')
  7244. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7245. _limg.style = "width: 26px;margin-right: 10px;"
  7246. _lchild.appendChild(_limg)
  7247. let _lspan = document.createElement('span')
  7248. _lspan.innerHTML = "上传中..."
  7249. _lchild.appendChild(_lspan)
  7250. _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%);"
  7251. _loading.appendChild(_lchild)
  7252. var _box = $$('div', {
  7253. "style": {
  7254. "position": "relative",
  7255. "width": "100%",
  7256. "height": "100%",
  7257. },
  7258. })
  7259. _box.appendChild(_loading)
  7260. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7261. switch (str) {
  7262. case "whiteboard":
  7263. aTool = 1;
  7264. _iframe = $$("iframe", {
  7265. "frameborder": "no",
  7266. "border": "0",
  7267. "scrolling ": "no",
  7268. "style": {
  7269. "cssText": "border:0;width:100%;height:100%"
  7270. },
  7271. "src": "https://beta.iwb.cocorobo.cn/"
  7272. })
  7273. _box.appendChild(_iframe);
  7274. _box.appendChild(_jie);
  7275. _formdiv = new U.UF.UI.form(
  7276. "电子白板",
  7277. _box, {
  7278. "id": "whiteboard" + cid + stage + task + tool,
  7279. "style": {
  7280. "width": "90%",
  7281. "height": "90%",
  7282. "overflow": 'hidden'
  7283. },
  7284. "onresize": function () { }
  7285. }, {
  7286. closecallback: function () { }
  7287. }, {
  7288. "style": {
  7289. "height": "36px"
  7290. }
  7291. }).form; //创建窗体
  7292. _taskbar = {
  7293. "id": str + _formdiv.id,
  7294. "style": {
  7295. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7296. },
  7297. "name": "电子白板",
  7298. "forms": _formdiv,
  7299. "click": function () {
  7300. U.MD.D.I.openApplication(str, obj, info);
  7301. }
  7302. }
  7303. break;
  7304. case "mind":
  7305. aTool = 3;
  7306. _iframe = $$("iframe", {
  7307. "frameborder": "no",
  7308. "border": "0",
  7309. "scrolling ": "no",
  7310. "style": {
  7311. "cssText": "border:0;width:100%;height:100%"
  7312. },
  7313. "src": "/kityminder-editor/dist/index.html"
  7314. })
  7315. _box.appendChild(_iframe);
  7316. _box.appendChild(_jie);
  7317. _formdiv = new U.UF.UI.form(
  7318. "思维导图",
  7319. _box, { //"/jsmind/example/demo.html"
  7320. "id": "mind" + cid + stage + task + tool,
  7321. "style": {
  7322. "width": "90%",
  7323. "height": "90%",
  7324. "overflow": 'hidden'
  7325. },
  7326. "onresize": function () { }
  7327. }, {
  7328. closecallback: function () { }
  7329. }, {
  7330. "style": {
  7331. "height": "36px"
  7332. }
  7333. }).form; //创建窗体
  7334. _taskbar = {
  7335. "id": str + _formdiv.id,
  7336. "style": {
  7337. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7338. },
  7339. "name": "思维导图",
  7340. "forms": _formdiv,
  7341. "click": function () {
  7342. U.MD.D.I.openApplication(str, obj, info);
  7343. }
  7344. }
  7345. break;
  7346. case "MindMap":
  7347. aTool = 3;
  7348. _iframe = $$("iframe", {
  7349. "frameborder": "no",
  7350. "border": "0",
  7351. "scrolling ": "no",
  7352. "style": {
  7353. "cssText": "border:0;width:100%;height:100%"
  7354. },
  7355. "src": "//cloud.cocorobo.cn/mind/"
  7356. })
  7357. _box.appendChild(_iframe);
  7358. _box.appendChild(_jie);
  7359. _formdiv = new U.UF.UI.form(
  7360. "思维导图",
  7361. _box, { //"/jsmind/example/demo.html"
  7362. "id": "mind" + cid + stage + task + tool,
  7363. "style": {
  7364. "width": "90%",
  7365. "height": "90%",
  7366. "overflow": 'hidden'
  7367. },
  7368. "onresize": function () { }
  7369. }, {
  7370. closecallback: function () { }
  7371. }, {
  7372. "style": {
  7373. "height": "36px"
  7374. }
  7375. }).form; //创建窗体
  7376. _taskbar = {
  7377. "id": str + _formdiv.id,
  7378. "style": {
  7379. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7380. },
  7381. "name": "思维导图",
  7382. "forms": _formdiv,
  7383. "click": function () {
  7384. U.MD.D.I.openApplication(str, obj, info);
  7385. }
  7386. }
  7387. break;
  7388. case "doc":
  7389. aTool = 6;
  7390. _iframe = $$("iframe", {
  7391. "frameborder": "no",
  7392. "border": "0",
  7393. "scrolling ": "no",
  7394. "style": {
  7395. "cssText": "border:0;width:100%;height:100%"
  7396. },
  7397. "src": "/Office/Word/WordEditArea.htm"
  7398. })
  7399. _box.appendChild(_iframe);
  7400. _box.appendChild(_jie);
  7401. _formdiv = new U.UF.UI.form(
  7402. "协同文档",
  7403. _box, {
  7404. "id": "doc" + cid + stage + task + tool,
  7405. "style": {
  7406. "width": "90%",
  7407. "height": "90%",
  7408. "overflow": 'hidden'
  7409. },
  7410. "onresize": function () { }
  7411. }, {
  7412. closecallback: function () { }
  7413. }, {
  7414. "style": {
  7415. "height": "36px"
  7416. }
  7417. }).form; //创建窗体
  7418. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7419. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7420. })
  7421. _taskbar = {
  7422. "id": str + _formdiv.id,
  7423. "style": {
  7424. "backgroundImage": "url(/img/icon/doc.png)"
  7425. },
  7426. "name": "协同文档",
  7427. "forms": _formdiv,
  7428. "click": function () {
  7429. U.MD.D.I.openApplication(str, obj, info);
  7430. }
  7431. }
  7432. break;
  7433. case "mindNetwork": //好友打开
  7434. aTool = 7;
  7435. _iframe = $$("iframe", {
  7436. "webkitallowfullscreen": "",
  7437. "mozallowfullscreen": "",
  7438. "allowfullscreen": "",
  7439. "frameborder": "no",
  7440. "border": "0",
  7441. "scrolling ": "no",
  7442. "style": {
  7443. "cssText": "border:0; width:100%; height:100%;"
  7444. },
  7445. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7446. })
  7447. _box.appendChild(_iframe);
  7448. _box.appendChild(_jie);
  7449. _formdiv = new U.UF.UI.form(
  7450. "思维网格",
  7451. _box, {
  7452. "id": "mindNetwork" + cid + stage + task + tool,
  7453. "style": {
  7454. "width": "90%",
  7455. "height": "90%",
  7456. "overflow": 'hidden'
  7457. },
  7458. "onresize": function () { }
  7459. }, {
  7460. closecallback: function () { }
  7461. }, {
  7462. "style": {
  7463. "height": "36px"
  7464. }
  7465. }).form; //创建窗体
  7466. _taskbar = {
  7467. "id": str + _formdiv.id,
  7468. "style": {
  7469. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7470. },
  7471. "name": "思维网格",
  7472. "forms": _formdiv,
  7473. "click": function () {
  7474. U.MD.D.I.openApplication(str, obj, info);
  7475. }
  7476. }
  7477. break;
  7478. case "courseDesign":
  7479. _iframe = $$("iframe", {
  7480. "webkitallowfullscreen": "",
  7481. "mozallowfullscreen": "",
  7482. "allowfullscreen": "",
  7483. "frameborder": "no",
  7484. "border": "0",
  7485. "scrolling ": "no",
  7486. "style": {
  7487. "cssText": "border:0; width:100%; height:100%;"
  7488. },
  7489. "src": "/course-design-vue"
  7490. })
  7491. _box.appendChild(_iframe);
  7492. _box.appendChild(_jie);
  7493. _formdiv = new U.UF.UI.form(
  7494. "项目设计",
  7495. _box, {
  7496. "id": "courseDesign" + cid + stage + task + tool,
  7497. "style": {
  7498. "width": "90%",
  7499. "height": "90%",
  7500. "overflow": 'hidden'
  7501. },
  7502. "onresize": function () { }
  7503. }, {
  7504. closecallback: function () { }
  7505. }, {
  7506. "style": {
  7507. "height": "36px"
  7508. }
  7509. }).form; //创建窗体
  7510. _taskbar = {
  7511. "id": str + _formdiv.id,
  7512. "style": {
  7513. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7514. },
  7515. "name": "项目设计",
  7516. "forms": _formdiv,
  7517. "click": function () {
  7518. U.MD.D.I.openApplication(str, obj, info);
  7519. }
  7520. }
  7521. break;
  7522. }
  7523. const script1 = document.createElement("script");
  7524. script1.type = "text/javascript";
  7525. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7526. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7527. const script2 = document.createElement("script");
  7528. script2.type = "text/javascript";
  7529. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7530. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7531. const script3 = document.createElement("script");
  7532. script3.type = "text/javascript";
  7533. script3.charset = "UTF-8";
  7534. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7535. const script4 = document.createElement("script");
  7536. script4.type = "text/javascript";
  7537. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7538. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7539. if (_iframe) {
  7540. if (str == 'doc') {
  7541. _iframe = _formdiv.querySelector('iframe')
  7542. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7543. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7544. _iframe.contentWindow.document.body.appendChild(script1);
  7545. _iframe.contentWindow.document.body.appendChild(script2);
  7546. // _iframe.contentWindow.document.body.appendChild(script3);
  7547. _iframe.contentWindow.document.body.appendChild(script4);
  7548. })
  7549. if (onloadListener) {
  7550. _iframe.contentDocument.location.reload()
  7551. } else {
  7552. _iframe.contentDocument.location.reload()
  7553. }
  7554. } else if (str == 'courseDesign') {
  7555. U.UF.DL.iframeLoad(_iframe, function () {
  7556. // _iframe.contentWindow.U.MD.O.W.load();
  7557. // _iframe.contentWindow.document.body.appendChild(script1);
  7558. _iframe.contentWindow.document.body.appendChild(script2);
  7559. _iframe.contentWindow.document.body.appendChild(script4);
  7560. })
  7561. } else if (str == 'mind') {
  7562. _iframe = _formdiv.querySelector('iframe')
  7563. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7564. //
  7565. _iframe.contentWindow.document.body.appendChild(script1);
  7566. _iframe.contentWindow.document.body.appendChild(script2);
  7567. _iframe.contentWindow.document.body.appendChild(script4);
  7568. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7569. })
  7570. if (onloadListener) {
  7571. _iframe.contentDocument.location.reload()
  7572. } else {
  7573. _iframe.contentDocument.location.reload()
  7574. }
  7575. } else if (str == 'whiteboard') {
  7576. _iframe = _formdiv.querySelector('iframe')
  7577. let onloadListener = _iframe.onload = () => {
  7578. _iframe.contentWindow.document.body.appendChild(script1);
  7579. _iframe.contentWindow.document.body.appendChild(script2);
  7580. _iframe.contentWindow.document.body.appendChild(script4);
  7581. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7582. };
  7583. // if (onloadListener) {
  7584. // try {
  7585. // _iframe.src += "?cocorobo="+new Date().getTime()
  7586. // _iframe.contentWindow.document.location.reload()
  7587. // } catch (error) {
  7588. // }
  7589. // } else {
  7590. // _iframe.contentDocument.location.reload()
  7591. // }
  7592. } else {
  7593. _iframe.onload = () => {
  7594. _iframe.contentWindow.document.body.appendChild(script1);
  7595. _iframe.contentWindow.document.body.appendChild(script2);
  7596. // _iframe.contentWindow.document.body.appendChild(script3);
  7597. _iframe.contentWindow.document.body.appendChild(script4);
  7598. };
  7599. }
  7600. _jie.onclick = async () => {
  7601. let text = ''
  7602. if (aTool == 1) {
  7603. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7604. } else if (aTool == 6) {
  7605. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7606. } else if (aTool == 3) {
  7607. text = await U.MD.D.I.getEditorContent(_iframe);
  7608. }
  7609. _loading.style.display = 'flex'
  7610. console.log(_loading);
  7611. var _ajs = _iframe.contentWindow.document.createElement("script");
  7612. _ajs.type = "text/javascript";
  7613. _ajs.innerHTML =
  7614. // 'console.log(' + _loading + ');\n' +
  7615. 'var _js = document.createElement("script");\n' +
  7616. '_js.type="text/javascript";\n' +
  7617. '_js.charset="UTF-8";\n' +
  7618. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7619. "_js.onload = function(){\n" +
  7620. ' var a = document.getElementsByTagName("img")\n' +
  7621. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7622. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7623. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7624. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7625. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7626. "beforeUpload_shishi(file," +
  7627. "'" +
  7628. _userid +
  7629. "'" +
  7630. ", " +
  7631. "'" +
  7632. _cid +
  7633. "'" +
  7634. ", " +
  7635. "'" +
  7636. _stage +
  7637. "'" +
  7638. ", " +
  7639. "'" +
  7640. _task +
  7641. "'" +
  7642. ", " +
  7643. "'" +
  7644. _tool +
  7645. "'" +
  7646. ", " +
  7647. "'" +
  7648. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7649. "'" +
  7650. ", " +
  7651. "'" +
  7652. aTool +
  7653. "'" +
  7654. ", " +
  7655. "`" +
  7656. text +
  7657. "`" +
  7658. ")\n" +
  7659. " });\n" +
  7660. "}\n" +
  7661. "document.head.appendChild(_js);\n";
  7662. _iframe.contentWindow.document.head.appendChild(_ajs);
  7663. }
  7664. }
  7665. //U.MD.D.I.openClick(str);
  7666. //如果有任务栏信息
  7667. // if (_taskbar) {
  7668. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7669. // }
  7670. }
  7671. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7672. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7673. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7674. _userinfo = US.userInfo, //登录用户信息
  7675. _userid = US.userInfo.userid //登录用户id
  7676. let _iframe;
  7677. let _cid = cid,
  7678. _stage = stage,
  7679. _task = task,
  7680. _tool = tool;
  7681. var _jie = $$("div", {
  7682. "style": {
  7683. "position": "absolute",
  7684. "bottom": "50px",
  7685. "right": "50px",
  7686. "zIndex": "9999",
  7687. "backgroundColor": "#2268bc",
  7688. "color": "#fff",
  7689. "padding": "12px 20px",
  7690. "cursor": "pointer",
  7691. "borderRadius": "4px",
  7692. },
  7693. "innerHTML": "提交作业"
  7694. })
  7695. let aTool = ''
  7696. let _loading = document.createElement('div')
  7697. _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;"
  7698. // _loading.id = "";
  7699. let _lchild = document.createElement('div')
  7700. let _limg = document.createElement('img')
  7701. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7702. _limg.style = "width: 26px;margin-right: 10px;"
  7703. _lchild.appendChild(_limg)
  7704. let _lspan = document.createElement('span')
  7705. _lspan.innerHTML = "上传中..."
  7706. _lchild.appendChild(_lspan)
  7707. _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%);"
  7708. _loading.appendChild(_lchild)
  7709. let _box = $$('div', {
  7710. "style": {
  7711. "position": "relative",
  7712. "width": "100%",
  7713. "height": "100%",
  7714. },
  7715. })
  7716. _box.appendChild(_loading)
  7717. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7718. switch (str) {
  7719. case "whiteboard":
  7720. aTool = 1;
  7721. _iframe = $$("iframe", {
  7722. "frameborder": "no",
  7723. "border": "0",
  7724. "scrolling ": "no",
  7725. "style": {
  7726. "cssText": "border:0;width:100%;height:100%"
  7727. },
  7728. "src": "https://beta.iwb.cocorobo.cn/"
  7729. })
  7730. _box.appendChild(_iframe);
  7731. _box.appendChild(_jie);
  7732. _formdiv = new U.UF.UI.form(
  7733. "电子白板",
  7734. _box, {
  7735. "id": "whiteboard" + cid + stage + task + tool,
  7736. "style": {
  7737. "width": "90%",
  7738. "height": "90%",
  7739. "overflow": 'hidden'
  7740. },
  7741. "onresize": function () { }
  7742. }, {
  7743. closecallback: function () { }
  7744. }, {
  7745. "style": {
  7746. "height": "36px"
  7747. }
  7748. }).form; //创建窗体
  7749. _taskbar = {
  7750. "id": str + _formdiv.id,
  7751. "style": {
  7752. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7753. },
  7754. "name": "电子白板",
  7755. "forms": _formdiv,
  7756. "click": function () {
  7757. U.MD.D.I.openApplication(str, obj, info);
  7758. }
  7759. }
  7760. break;
  7761. case "mind":
  7762. aTool = 3;
  7763. _iframe = $$("iframe", {
  7764. "frameborder": "no",
  7765. "border": "0",
  7766. "scrolling ": "no",
  7767. "style": {
  7768. "cssText": "border:0;width:100%;height:100%"
  7769. },
  7770. "src": "/kityminder-editor/dist/index.html"
  7771. })
  7772. _box.appendChild(_iframe);
  7773. _box.appendChild(_jie);
  7774. _formdiv = new U.UF.UI.form(
  7775. "思维导图",
  7776. _box, { //"/jsmind/example/demo.html"
  7777. "id": "mind" + cid + stage + task + tool,
  7778. "style": {
  7779. "width": "90%",
  7780. "height": "90%",
  7781. "overflow": 'hidden'
  7782. },
  7783. "onresize": function () { }
  7784. }, {
  7785. closecallback: function () { }
  7786. }, {
  7787. "style": {
  7788. "height": "36px"
  7789. }
  7790. }).form; //创建窗体
  7791. _taskbar = {
  7792. "id": str + _formdiv.id,
  7793. "style": {
  7794. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7795. },
  7796. "name": "思维导图",
  7797. "forms": _formdiv,
  7798. "click": function () {
  7799. U.MD.D.I.openApplication(str, obj, info);
  7800. }
  7801. }
  7802. break;
  7803. case "MindMap":
  7804. aTool = 3;
  7805. _iframe = $$("iframe", {
  7806. "frameborder": "no",
  7807. "border": "0",
  7808. "scrolling ": "no",
  7809. "style": {
  7810. "cssText": "border:0;width:100%;height:100%"
  7811. },
  7812. "src": "//cloud.cocorobo.cn/mind/"
  7813. })
  7814. _box.appendChild(_iframe);
  7815. _box.appendChild(_jie);
  7816. _formdiv = new U.UF.UI.form(
  7817. "思维导图",
  7818. _box, { //"/jsmind/example/demo.html"
  7819. "id": "mind" + cid + stage + task + tool,
  7820. "style": {
  7821. "width": "90%",
  7822. "height": "90%",
  7823. "overflow": 'hidden'
  7824. },
  7825. "onresize": function () { }
  7826. }, {
  7827. closecallback: function () { }
  7828. }, {
  7829. "style": {
  7830. "height": "36px"
  7831. }
  7832. }).form; //创建窗体
  7833. _taskbar = {
  7834. "id": str + _formdiv.id,
  7835. "style": {
  7836. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7837. },
  7838. "name": "思维导图",
  7839. "forms": _formdiv,
  7840. "click": function () {
  7841. U.MD.D.I.openApplication(str, obj, info);
  7842. }
  7843. }
  7844. break;
  7845. case "doc":
  7846. aTool = 6;
  7847. _iframe = $$("iframe", {
  7848. "frameborder": "no",
  7849. "border": "0",
  7850. "scrolling ": "no",
  7851. "style": {
  7852. "cssText": "border:0;width:100%;height:100%"
  7853. },
  7854. "src": "/Office/Word/WordEditArea.htm"
  7855. })
  7856. _box.appendChild(_iframe);
  7857. _box.appendChild(_jie);
  7858. _formdiv = new U.UF.UI.form(
  7859. "协同文档",
  7860. _box, {
  7861. "id": "doc" + cid + stage + task + tool,
  7862. "style": {
  7863. "width": "90%",
  7864. "height": "90%",
  7865. "overflow": 'hidden'
  7866. },
  7867. "onresize": function () { }
  7868. }, {
  7869. closecallback: function () { }
  7870. }, {
  7871. "style": {
  7872. "height": "36px"
  7873. }
  7874. }).form; //创建窗体
  7875. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7876. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7877. })
  7878. _taskbar = {
  7879. "id": str + _formdiv.id,
  7880. "style": {
  7881. "backgroundImage": "url(/img/icon/doc.png)"
  7882. },
  7883. "name": "协同文档",
  7884. "forms": _formdiv,
  7885. "click": function () {
  7886. U.MD.D.I.openApplication(str, obj, info);
  7887. }
  7888. }
  7889. break;
  7890. case "mindNetwork": //好友打开
  7891. aTool = 7;
  7892. _iframe = $$("iframe", {
  7893. "webkitallowfullscreen": "",
  7894. "mozallowfullscreen": "",
  7895. "allowfullscreen": "",
  7896. "frameborder": "no",
  7897. "border": "0",
  7898. "scrolling ": "no",
  7899. "style": {
  7900. "cssText": "border:0; width:100%; height:100%;"
  7901. },
  7902. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7903. })
  7904. _box.appendChild(_iframe);
  7905. _box.appendChild(_jie);
  7906. _formdiv = new U.UF.UI.form(
  7907. "思维网格",
  7908. _box, {
  7909. "id": "mindNetwork" + cid + stage + task + tool,
  7910. "style": {
  7911. "width": "90%",
  7912. "height": "90%",
  7913. "overflow": 'hidden'
  7914. },
  7915. "onresize": function () { }
  7916. }, {
  7917. closecallback: function () { }
  7918. }, {
  7919. "style": {
  7920. "height": "36px"
  7921. }
  7922. }).form; //创建窗体
  7923. _taskbar = {
  7924. "id": str + _formdiv.id,
  7925. "style": {
  7926. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7927. },
  7928. "name": "思维网格",
  7929. "forms": _formdiv,
  7930. "click": function () {
  7931. U.MD.D.I.openApplication(str, obj, info);
  7932. }
  7933. }
  7934. break;
  7935. case "courseDesign":
  7936. _iframe = $$("iframe", {
  7937. "webkitallowfullscreen": "",
  7938. "mozallowfullscreen": "",
  7939. "allowfullscreen": "",
  7940. "frameborder": "no",
  7941. "border": "0",
  7942. "scrolling ": "no",
  7943. "style": {
  7944. "cssText": "border:0; width:100%; height:100%;"
  7945. },
  7946. "src": "/course-design-vue"
  7947. })
  7948. _box.appendChild(_iframe);
  7949. _box.appendChild(_jie);
  7950. _formdiv = new U.UF.UI.form(
  7951. "项目设计",
  7952. _box, {
  7953. "id": "courseDesign" + cid + stage + task + tool,
  7954. "style": {
  7955. "width": "90%",
  7956. "height": "90%",
  7957. "overflow": 'hidden'
  7958. },
  7959. "onresize": function () { }
  7960. }, {
  7961. closecallback: function () { }
  7962. }, {
  7963. "style": {
  7964. "height": "36px"
  7965. }
  7966. }).form; //创建窗体
  7967. _taskbar = {
  7968. "id": str + _formdiv.id,
  7969. "style": {
  7970. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7971. },
  7972. "name": "项目设计",
  7973. "forms": _formdiv,
  7974. "click": function () {
  7975. U.MD.D.I.openApplication(str, obj, info);
  7976. }
  7977. }
  7978. break;
  7979. }
  7980. const script1 = document.createElement("script");
  7981. script1.type = "text/javascript";
  7982. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7983. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7984. const script2 = document.createElement("script");
  7985. script2.type = "text/javascript";
  7986. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7987. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7988. const script3 = document.createElement("script");
  7989. script3.type = "text/javascript";
  7990. script3.charset = "UTF-8";
  7991. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7992. const script4 = document.createElement("script");
  7993. script4.type = "text/javascript";
  7994. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7995. script4.src = window.origin + "/js/Common/jietu2E.js";
  7996. if (_iframe) {
  7997. if (str == 'doc') {
  7998. _iframe = _formdiv.querySelector('iframe')
  7999. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8000. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8001. _iframe.contentWindow.document.body.appendChild(script1);
  8002. _iframe.contentWindow.document.body.appendChild(script2);
  8003. // _iframe.contentWindow.document.body.appendChild(script3);
  8004. _iframe.contentWindow.document.body.appendChild(script4);
  8005. })
  8006. if (onloadListener) {
  8007. _iframe.contentDocument.location.reload()
  8008. } else {
  8009. _iframe.contentDocument.location.reload()
  8010. }
  8011. } else if (str == 'courseDesign') {
  8012. U.UF.DL.iframeLoad(_iframe, function () {
  8013. // _iframe.contentWindow.U.MD.O.W.load();
  8014. // _iframe.contentWindow.document.body.appendChild(script1);
  8015. _iframe.contentWindow.document.body.appendChild(script2);
  8016. _iframe.contentWindow.document.body.appendChild(script4);
  8017. })
  8018. } else if (str == 'mind') {
  8019. _iframe = _formdiv.querySelector('iframe')
  8020. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8021. //
  8022. _iframe.contentWindow.document.body.appendChild(script1);
  8023. _iframe.contentWindow.document.body.appendChild(script2);
  8024. _iframe.contentWindow.document.body.appendChild(script4);
  8025. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8026. })
  8027. if (onloadListener) {
  8028. _iframe.contentDocument.location.reload()
  8029. } else {
  8030. _iframe.contentDocument.location.reload()
  8031. }
  8032. } else if (str == 'whiteboard') {
  8033. _iframe = _formdiv.querySelector('iframe')
  8034. let onloadListener = _iframe.onload = () => {
  8035. _iframe.contentWindow.document.body.appendChild(script1);
  8036. _iframe.contentWindow.document.body.appendChild(script2);
  8037. _iframe.contentWindow.document.body.appendChild(script4);
  8038. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8039. };
  8040. // if (onloadListener) {
  8041. // try {
  8042. // _iframe.src += "?cocorobo="+new Date().getTime()
  8043. // _iframe.contentWindow.document.location.reload()
  8044. // } catch (error) {
  8045. // }
  8046. // } else {
  8047. // _iframe.contentDocument.location.reload()
  8048. // }
  8049. } else {
  8050. _iframe.onload = () => {
  8051. _iframe.contentWindow.document.body.appendChild(script1);
  8052. _iframe.contentWindow.document.body.appendChild(script2);
  8053. // _iframe.contentWindow.document.body.appendChild(script3);
  8054. _iframe.contentWindow.document.body.appendChild(script4);
  8055. };
  8056. }
  8057. _jie.onclick = async () => {
  8058. let text = ''
  8059. if (aTool == 1) {
  8060. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8061. } else if (aTool == 6) {
  8062. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8063. } else if (aTool == 3) {
  8064. text = await U.MD.D.I.getEditorContent(_iframe);
  8065. }
  8066. _loading.style.display = 'flex'
  8067. console.log(_loading);
  8068. var _ajs = _iframe.contentWindow.document.createElement("script");
  8069. _ajs.type = "text/javascript";
  8070. _ajs.innerHTML =
  8071. // 'console.log(' + _loading + ');\n' +
  8072. 'var _js = document.createElement("script");\n' +
  8073. '_js.type="text/javascript";\n' +
  8074. '_js.charset="UTF-8";\n' +
  8075. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8076. "_js.onload = function(){\n" +
  8077. ' var a = document.getElementsByTagName("img")\n' +
  8078. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8079. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8080. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8081. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8082. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8083. "beforeUpload_shishi(file," +
  8084. "'" +
  8085. _userid +
  8086. "'" +
  8087. ", " +
  8088. "'" +
  8089. _cid +
  8090. "'" +
  8091. ", " +
  8092. "'" +
  8093. _stage +
  8094. "'" +
  8095. ", " +
  8096. "'" +
  8097. _task +
  8098. "'" +
  8099. ", " +
  8100. "'" +
  8101. _tool +
  8102. "'" +
  8103. ", " +
  8104. "'" +
  8105. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8106. "'" +
  8107. ", " +
  8108. "'" +
  8109. aTool +
  8110. "'" +
  8111. ", " +
  8112. "`" +
  8113. text +
  8114. "`" +
  8115. ")\n" +
  8116. " });\n" +
  8117. "}\n" +
  8118. "document.head.appendChild(_js);\n";
  8119. _iframe.contentWindow.document.head.appendChild(_ajs);
  8120. }
  8121. }
  8122. //U.MD.D.I.openClick(str);
  8123. //如果有任务栏信息
  8124. // if (_taskbar) {
  8125. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8126. // }
  8127. }
  8128. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8129. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8130. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8131. _userid = student.userid, //登录用户id
  8132. _username = student.student //用户名字
  8133. let _iframe;
  8134. let _cid = cid,
  8135. _stage = stage,
  8136. _task = task,
  8137. _tool = tool;
  8138. var _jie = $$("div", {
  8139. "style": {
  8140. "position": "absolute",
  8141. "bottom": "50px",
  8142. "right": "50px",
  8143. "zIndex": "9999",
  8144. "backgroundColor": "#2268bc",
  8145. "color": "#fff",
  8146. "padding": "12px 20px",
  8147. "cursor": "pointer",
  8148. "borderRadius": "4px",
  8149. },
  8150. "innerHTML": "提交作业"
  8151. })
  8152. let aTool = ''
  8153. let _loading = document.createElement('div')
  8154. _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;"
  8155. // _loading.id = "";
  8156. let _lchild = document.createElement('div')
  8157. let _limg = document.createElement('img')
  8158. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8159. _limg.style = "width: 26px;margin-right: 10px;"
  8160. _lchild.appendChild(_limg)
  8161. let _lspan = document.createElement('span')
  8162. _lspan.innerHTML = "上传中..."
  8163. _lchild.appendChild(_lspan)
  8164. _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%);"
  8165. _loading.appendChild(_lchild)
  8166. var _box = $$('div', {
  8167. "style": {
  8168. "position": "relative",
  8169. "width": "100%",
  8170. "height": "100%",
  8171. },
  8172. })
  8173. _box.appendChild(_loading)
  8174. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8175. switch (str) {
  8176. case "whiteboard":
  8177. aTool = 1;
  8178. _iframe = $$("iframe", {
  8179. "frameborder": "no",
  8180. "border": "0",
  8181. "scrolling ": "no",
  8182. "style": {
  8183. "cssText": "border:0;width:100%;height:100%"
  8184. },
  8185. "src": "https://beta.iwb.cocorobo.cn/"
  8186. })
  8187. _box.appendChild(_iframe);
  8188. _box.appendChild(_jie);
  8189. _formdiv = new U.UF.UI.form(
  8190. "电子白板-" + _username,
  8191. _box, {
  8192. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8193. "style": {
  8194. "width": "90%",
  8195. "height": "90%",
  8196. "overflow": 'hidden'
  8197. },
  8198. "onresize": function () { }
  8199. }, {
  8200. closecallback: function () { }
  8201. }, {
  8202. "style": {
  8203. "height": "36px"
  8204. }
  8205. }).form; //创建窗体
  8206. _taskbar = {
  8207. "id": str + _formdiv.id,
  8208. "style": {
  8209. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8210. },
  8211. "name": "电子白板",
  8212. "forms": _formdiv,
  8213. "click": function () {
  8214. U.MD.D.I.openApplication(str, obj, info);
  8215. }
  8216. }
  8217. break;
  8218. case "mind":
  8219. aTool = 3;
  8220. _iframe = $$("iframe", {
  8221. "frameborder": "no",
  8222. "border": "0",
  8223. "scrolling ": "no",
  8224. "style": {
  8225. "cssText": "border:0;width:100%;height:100%"
  8226. },
  8227. "src": "/kityminder-editor/dist/index.html"
  8228. })
  8229. _box.appendChild(_iframe);
  8230. _box.appendChild(_jie);
  8231. _formdiv = new U.UF.UI.form(
  8232. "思维导图-" + _username,
  8233. _box, { //"/jsmind/example/demo.html"
  8234. "id": "mind" + cid + stage + task + tool + _userid,
  8235. "style": {
  8236. "width": "90%",
  8237. "height": "90%",
  8238. "overflow": 'hidden'
  8239. },
  8240. "onresize": function () { }
  8241. }, {
  8242. closecallback: function () { }
  8243. }, {
  8244. "style": {
  8245. "height": "36px"
  8246. }
  8247. }).form; //创建窗体
  8248. _taskbar = {
  8249. "id": str + _formdiv.id,
  8250. "style": {
  8251. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8252. },
  8253. "name": "思维导图",
  8254. "forms": _formdiv,
  8255. "click": function () {
  8256. U.MD.D.I.openApplication(str, obj, info);
  8257. }
  8258. }
  8259. break;
  8260. case "MindMap":
  8261. aTool = 3;
  8262. _iframe = $$("iframe", {
  8263. "frameborder": "no",
  8264. "border": "0",
  8265. "scrolling ": "no",
  8266. "style": {
  8267. "cssText": "border:0;width:100%;height:100%"
  8268. },
  8269. "src": "//cloud.cocorobo.cn/mind/"
  8270. })
  8271. _box.appendChild(_iframe);
  8272. _box.appendChild(_jie);
  8273. _formdiv = new U.UF.UI.form(
  8274. "思维导图-" + _username,
  8275. _box, { //"/jsmind/example/demo.html"
  8276. "id": "mind" + cid + stage + task + tool + _userid,
  8277. "style": {
  8278. "width": "90%",
  8279. "height": "90%",
  8280. "overflow": 'hidden'
  8281. },
  8282. "onresize": function () { }
  8283. }, {
  8284. closecallback: function () { }
  8285. }, {
  8286. "style": {
  8287. "height": "36px"
  8288. }
  8289. }).form; //创建窗体
  8290. _taskbar = {
  8291. "id": str + _formdiv.id,
  8292. "style": {
  8293. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8294. },
  8295. "name": "思维导图",
  8296. "forms": _formdiv,
  8297. "click": function () {
  8298. U.MD.D.I.openApplication(str, obj, info);
  8299. }
  8300. }
  8301. break;
  8302. case "doc":
  8303. aTool = 6;
  8304. _iframe = $$("iframe", {
  8305. "frameborder": "no",
  8306. "border": "0",
  8307. "scrolling ": "no",
  8308. "style": {
  8309. "cssText": "border:0;width:100%;height:100%"
  8310. },
  8311. "src": "/Office/Word/WordEditArea.htm"
  8312. })
  8313. _box.appendChild(_iframe);
  8314. _box.appendChild(_jie);
  8315. _formdiv = new U.UF.UI.form(
  8316. "协同文档-" + _username,
  8317. _box, {
  8318. "id": "doc" + cid + stage + task + tool + _userid,
  8319. "style": {
  8320. "width": "90%",
  8321. "height": "90%",
  8322. "overflow": 'hidden'
  8323. },
  8324. "onresize": function () { }
  8325. }, {
  8326. closecallback: function () { }
  8327. }, {
  8328. "style": {
  8329. "height": "36px"
  8330. }
  8331. }).form; //创建窗体
  8332. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8333. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8334. })
  8335. _taskbar = {
  8336. "id": str + _formdiv.id,
  8337. "style": {
  8338. "backgroundImage": "url(/img/icon/doc.png)"
  8339. },
  8340. "name": "协同文档",
  8341. "forms": _formdiv,
  8342. "click": function () {
  8343. U.MD.D.I.openApplication(str, obj, info);
  8344. }
  8345. }
  8346. break;
  8347. case "mindNetwork": //好友打开
  8348. aTool = 7;
  8349. _iframe = $$("iframe", {
  8350. "webkitallowfullscreen": "",
  8351. "mozallowfullscreen": "",
  8352. "allowfullscreen": "",
  8353. "frameborder": "no",
  8354. "border": "0",
  8355. "scrolling ": "no",
  8356. "style": {
  8357. "cssText": "border:0; width:100%; height:100%;"
  8358. },
  8359. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8360. })
  8361. _box.appendChild(_iframe);
  8362. _box.appendChild(_jie);
  8363. _formdiv = new U.UF.UI.form(
  8364. "思维网格-" + _username,
  8365. _box, {
  8366. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8367. "style": {
  8368. "width": "90%",
  8369. "height": "90%",
  8370. "overflow": 'hidden'
  8371. },
  8372. "onresize": function () { }
  8373. }, {
  8374. closecallback: function () { }
  8375. }, {
  8376. "style": {
  8377. "height": "36px"
  8378. }
  8379. }).form; //创建窗体
  8380. _taskbar = {
  8381. "id": str + _formdiv.id,
  8382. "style": {
  8383. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8384. },
  8385. "name": "思维网格",
  8386. "forms": _formdiv,
  8387. "click": function () {
  8388. U.MD.D.I.openApplication(str, obj, info);
  8389. }
  8390. }
  8391. break;
  8392. case "courseDesign":
  8393. _iframe = $$("iframe", {
  8394. "webkitallowfullscreen": "",
  8395. "mozallowfullscreen": "",
  8396. "allowfullscreen": "",
  8397. "frameborder": "no",
  8398. "border": "0",
  8399. "scrolling ": "no",
  8400. "style": {
  8401. "cssText": "border:0; width:100%; height:100%;"
  8402. },
  8403. "src": "/course-design-vue"
  8404. })
  8405. _box.appendChild(_iframe);
  8406. _box.appendChild(_jie);
  8407. _formdiv = new U.UF.UI.form(
  8408. "项目设计-" + _username,
  8409. _box, {
  8410. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8411. "style": {
  8412. "width": "90%",
  8413. "height": "90%",
  8414. "overflow": 'hidden'
  8415. },
  8416. "onresize": function () { }
  8417. }, {
  8418. closecallback: function () { }
  8419. }, {
  8420. "style": {
  8421. "height": "36px"
  8422. }
  8423. }).form; //创建窗体
  8424. _taskbar = {
  8425. "id": str + _formdiv.id,
  8426. "style": {
  8427. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8428. },
  8429. "name": "项目设计",
  8430. "forms": _formdiv,
  8431. "click": function () {
  8432. U.MD.D.I.openApplication(str, obj, info);
  8433. }
  8434. }
  8435. break;
  8436. }
  8437. const script1 = document.createElement("script");
  8438. script1.type = "text/javascript";
  8439. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8440. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8441. const script2 = document.createElement("script");
  8442. script2.type = "text/javascript";
  8443. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8444. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8445. const script3 = document.createElement("script");
  8446. script3.type = "text/javascript";
  8447. script3.charset = "UTF-8";
  8448. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8449. const script4 = document.createElement("script");
  8450. script4.type = "text/javascript";
  8451. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8452. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8453. if (_iframe) {
  8454. if (str == 'doc') {
  8455. _iframe = _formdiv.querySelector('iframe')
  8456. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8457. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8458. _iframe.contentWindow.document.body.appendChild(script1);
  8459. _iframe.contentWindow.document.body.appendChild(script2);
  8460. // _iframe.contentWindow.document.body.appendChild(script3);
  8461. _iframe.contentWindow.document.body.appendChild(script4);
  8462. })
  8463. if (onloadListener) {
  8464. _iframe.contentDocument.location.reload()
  8465. } else {
  8466. _iframe.contentDocument.location.reload()
  8467. }
  8468. } else if (str == 'courseDesign') {
  8469. U.UF.DL.iframeLoad(_iframe, function () {
  8470. // _iframe.contentWindow.U.MD.O.W.load();
  8471. // _iframe.contentWindow.document.body.appendChild(script1);
  8472. _iframe.contentWindow.document.body.appendChild(script2);
  8473. _iframe.contentWindow.document.body.appendChild(script4);
  8474. })
  8475. } else if (str == 'mind') {
  8476. _iframe = _formdiv.querySelector('iframe')
  8477. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8478. //
  8479. _iframe.contentWindow.document.body.appendChild(script1);
  8480. _iframe.contentWindow.document.body.appendChild(script2);
  8481. _iframe.contentWindow.document.body.appendChild(script4);
  8482. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8483. })
  8484. if (onloadListener) {
  8485. _iframe.contentDocument.location.reload()
  8486. } else {
  8487. _iframe.contentDocument.location.reload()
  8488. }
  8489. } else if (str == 'whiteboard') {
  8490. _iframe = _formdiv.querySelector('iframe')
  8491. let onloadListener = _iframe.onload = () => {
  8492. _iframe.contentWindow.document.body.appendChild(script1);
  8493. _iframe.contentWindow.document.body.appendChild(script2);
  8494. _iframe.contentWindow.document.body.appendChild(script4);
  8495. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8496. };
  8497. // if (onloadListener) {
  8498. // try {
  8499. // _iframe.src += "?cocorobo="+new Date().getTime()
  8500. // _iframe.contentWindow.document.location.reload()
  8501. // } catch (error) {
  8502. // }
  8503. // } else {
  8504. // _iframe.contentDocument.location.reload()
  8505. // }
  8506. } else {
  8507. _iframe.onload = () => {
  8508. _iframe.contentWindow.document.body.appendChild(script1);
  8509. _iframe.contentWindow.document.body.appendChild(script2);
  8510. // _iframe.contentWindow.document.body.appendChild(script3);
  8511. _iframe.contentWindow.document.body.appendChild(script4);
  8512. };
  8513. }
  8514. _jie.onclick = async () => {
  8515. let text = ''
  8516. if (aTool == 1) {
  8517. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8518. } else if (aTool == 6) {
  8519. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8520. } else if (aTool == 3) {
  8521. text = await U.MD.D.I.getEditorContent(_iframe);
  8522. }
  8523. _loading.style.display = 'flex'
  8524. console.log(_loading);
  8525. var _ajs = _iframe.contentWindow.document.createElement("script");
  8526. _ajs.type = "text/javascript";
  8527. _ajs.innerHTML =
  8528. // 'console.log(' + _loading + ');\n' +
  8529. 'var _js = document.createElement("script");\n' +
  8530. '_js.type="text/javascript";\n' +
  8531. '_js.charset="UTF-8";\n' +
  8532. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8533. "_js.onload = function(){\n" +
  8534. ' var a = document.getElementsByTagName("img")\n' +
  8535. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8536. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8537. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8538. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8539. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8540. "beforeUpload_shishi(file," +
  8541. "'" +
  8542. _userid +
  8543. "'" +
  8544. ", " +
  8545. "'" +
  8546. _cid +
  8547. "'" +
  8548. ", " +
  8549. "'" +
  8550. _stage +
  8551. "'" +
  8552. ", " +
  8553. "'" +
  8554. _task +
  8555. "'" +
  8556. ", " +
  8557. "'" +
  8558. _tool +
  8559. "'" +
  8560. ", " +
  8561. "'" +
  8562. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8563. "'" +
  8564. ", " +
  8565. "'" +
  8566. aTool +
  8567. "'" +
  8568. ", " +
  8569. "`" +
  8570. text +
  8571. "`" +
  8572. ")\n" +
  8573. " });\n" +
  8574. "}\n" +
  8575. "document.head.appendChild(_js);\n";
  8576. _iframe.contentWindow.document.head.appendChild(_ajs);
  8577. }
  8578. }
  8579. }
  8580. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8581. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8582. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8583. _userid = student.userid, //登录用户id
  8584. _username = student.student //用户名字
  8585. let _iframe;
  8586. let _cid = cid,
  8587. _stage = stage,
  8588. _task = task,
  8589. _tool = tool;
  8590. var _jie = $$("div", {
  8591. "style": {
  8592. "position": "absolute",
  8593. "bottom": "50px",
  8594. "right": "50px",
  8595. "zIndex": "9999",
  8596. "backgroundColor": "#2268bc",
  8597. "color": "#fff",
  8598. "padding": "12px 20px",
  8599. "cursor": "pointer",
  8600. "borderRadius": "4px",
  8601. },
  8602. "innerHTML": "提交作业"
  8603. })
  8604. let aTool = ''
  8605. let _loading = document.createElement('div')
  8606. _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;"
  8607. // _loading.id = "";
  8608. let _lchild = document.createElement('div')
  8609. let _limg = document.createElement('img')
  8610. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8611. _limg.style = "width: 26px;margin-right: 10px;"
  8612. _lchild.appendChild(_limg)
  8613. let _lspan = document.createElement('span')
  8614. _lspan.innerHTML = "上传中..."
  8615. _lchild.appendChild(_lspan)
  8616. _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%);"
  8617. _loading.appendChild(_lchild)
  8618. var _box = $$('div', {
  8619. "style": {
  8620. "position": "relative",
  8621. "width": "100%",
  8622. "height": "100%",
  8623. },
  8624. })
  8625. _box.appendChild(_loading)
  8626. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8627. switch (str) {
  8628. case "whiteboard":
  8629. aTool = 1;
  8630. _iframe = $$("iframe", {
  8631. "frameborder": "no",
  8632. "border": "0",
  8633. "scrolling ": "no",
  8634. "style": {
  8635. "cssText": "border:0;width:100%;height:100%"
  8636. },
  8637. "src": "https://beta.iwb.cocorobo.cn/"
  8638. })
  8639. _box.appendChild(_iframe);
  8640. _box.appendChild(_jie);
  8641. _formdiv = new U.UF.UI.form(
  8642. "电子白板-" + _username,
  8643. _box, {
  8644. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8645. "style": {
  8646. "width": "90%",
  8647. "height": "90%",
  8648. "overflow": 'hidden'
  8649. },
  8650. "onresize": function () { }
  8651. }, {
  8652. closecallback: function () { }
  8653. }, {
  8654. "style": {
  8655. "height": "36px"
  8656. }
  8657. }).form; //创建窗体
  8658. _taskbar = {
  8659. "id": str + _formdiv.id,
  8660. "style": {
  8661. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8662. },
  8663. "name": "电子白板",
  8664. "forms": _formdiv,
  8665. "click": function () {
  8666. U.MD.D.I.openApplication(str, obj, info);
  8667. }
  8668. }
  8669. break;
  8670. case "mind":
  8671. aTool = 3;
  8672. _iframe = $$("iframe", {
  8673. "frameborder": "no",
  8674. "border": "0",
  8675. "scrolling ": "no",
  8676. "style": {
  8677. "cssText": "border:0;width:100%;height:100%"
  8678. },
  8679. "src": "/kityminder-editor/dist/index.html"
  8680. })
  8681. _box.appendChild(_iframe);
  8682. _box.appendChild(_jie);
  8683. _formdiv = new U.UF.UI.form(
  8684. "思维导图-" + _username,
  8685. _box, { //"/jsmind/example/demo.html"
  8686. "id": "mind" + cid + stage + task + tool + _userid,
  8687. "style": {
  8688. "width": "90%",
  8689. "height": "90%",
  8690. "overflow": 'hidden'
  8691. },
  8692. "onresize": function () { }
  8693. }, {
  8694. closecallback: function () { }
  8695. }, {
  8696. "style": {
  8697. "height": "36px"
  8698. }
  8699. }).form; //创建窗体
  8700. _taskbar = {
  8701. "id": str + _formdiv.id,
  8702. "style": {
  8703. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8704. },
  8705. "name": "思维导图",
  8706. "forms": _formdiv,
  8707. "click": function () {
  8708. U.MD.D.I.openApplication(str, obj, info);
  8709. }
  8710. }
  8711. break;
  8712. case "MindMap":
  8713. aTool = 3;
  8714. _iframe = $$("iframe", {
  8715. "frameborder": "no",
  8716. "border": "0",
  8717. "scrolling ": "no",
  8718. "style": {
  8719. "cssText": "border:0;width:100%;height:100%"
  8720. },
  8721. "src": "//cloud.cocorobo.cn/mind/"
  8722. })
  8723. _box.appendChild(_iframe);
  8724. _box.appendChild(_jie);
  8725. _formdiv = new U.UF.UI.form(
  8726. "思维导图-" + _username,
  8727. _box, { //"/jsmind/example/demo.html"
  8728. "id": "mind" + cid + stage + task + tool + _userid,
  8729. "style": {
  8730. "width": "90%",
  8731. "height": "90%",
  8732. "overflow": 'hidden'
  8733. },
  8734. "onresize": function () { }
  8735. }, {
  8736. closecallback: function () { }
  8737. }, {
  8738. "style": {
  8739. "height": "36px"
  8740. }
  8741. }).form; //创建窗体
  8742. _taskbar = {
  8743. "id": str + _formdiv.id,
  8744. "style": {
  8745. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8746. },
  8747. "name": "思维导图",
  8748. "forms": _formdiv,
  8749. "click": function () {
  8750. U.MD.D.I.openApplication(str, obj, info);
  8751. }
  8752. }
  8753. break;
  8754. case "doc":
  8755. aTool = 6;
  8756. _iframe = $$("iframe", {
  8757. "frameborder": "no",
  8758. "border": "0",
  8759. "scrolling ": "no",
  8760. "style": {
  8761. "cssText": "border:0;width:100%;height:100%"
  8762. },
  8763. "src": "/Office/Word/WordEditArea.htm"
  8764. })
  8765. _box.appendChild(_iframe);
  8766. _box.appendChild(_jie);
  8767. _formdiv = new U.UF.UI.form(
  8768. "协同文档-" + _username,
  8769. _box, {
  8770. "id": "doc" + cid + stage + task + tool + _userid,
  8771. "style": {
  8772. "width": "90%",
  8773. "height": "90%",
  8774. "overflow": 'hidden'
  8775. },
  8776. "onresize": function () { }
  8777. }, {
  8778. closecallback: function () { }
  8779. }, {
  8780. "style": {
  8781. "height": "36px"
  8782. }
  8783. }).form; //创建窗体
  8784. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8785. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8786. })
  8787. _taskbar = {
  8788. "id": str + _formdiv.id,
  8789. "style": {
  8790. "backgroundImage": "url(/img/icon/doc.png)"
  8791. },
  8792. "name": "协同文档",
  8793. "forms": _formdiv,
  8794. "click": function () {
  8795. U.MD.D.I.openApplication(str, obj, info);
  8796. }
  8797. }
  8798. break;
  8799. case "mindNetwork": //好友打开
  8800. aTool = 7;
  8801. _iframe = $$("iframe", {
  8802. "webkitallowfullscreen": "",
  8803. "mozallowfullscreen": "",
  8804. "allowfullscreen": "",
  8805. "frameborder": "no",
  8806. "border": "0",
  8807. "scrolling ": "no",
  8808. "style": {
  8809. "cssText": "border:0; width:100%; height:100%;"
  8810. },
  8811. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8812. })
  8813. _box.appendChild(_iframe);
  8814. _box.appendChild(_jie);
  8815. _formdiv = new U.UF.UI.form(
  8816. "思维网格-" + _username,
  8817. _box, {
  8818. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8819. "style": {
  8820. "width": "90%",
  8821. "height": "90%",
  8822. "overflow": 'hidden'
  8823. },
  8824. "onresize": function () { }
  8825. }, {
  8826. closecallback: function () { }
  8827. }, {
  8828. "style": {
  8829. "height": "36px"
  8830. }
  8831. }).form; //创建窗体
  8832. _taskbar = {
  8833. "id": str + _formdiv.id,
  8834. "style": {
  8835. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8836. },
  8837. "name": "思维网格",
  8838. "forms": _formdiv,
  8839. "click": function () {
  8840. U.MD.D.I.openApplication(str, obj, info);
  8841. }
  8842. }
  8843. break;
  8844. case "courseDesign":
  8845. _iframe = $$("iframe", {
  8846. "webkitallowfullscreen": "",
  8847. "mozallowfullscreen": "",
  8848. "allowfullscreen": "",
  8849. "frameborder": "no",
  8850. "border": "0",
  8851. "scrolling ": "no",
  8852. "style": {
  8853. "cssText": "border:0; width:100%; height:100%;"
  8854. },
  8855. "src": "/course-design-vue"
  8856. })
  8857. _box.appendChild(_iframe);
  8858. _box.appendChild(_jie);
  8859. _formdiv = new U.UF.UI.form(
  8860. "项目设计-" + _username,
  8861. _box, {
  8862. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8863. "style": {
  8864. "width": "90%",
  8865. "height": "90%",
  8866. "overflow": 'hidden'
  8867. },
  8868. "onresize": function () { }
  8869. }, {
  8870. closecallback: function () { }
  8871. }, {
  8872. "style": {
  8873. "height": "36px"
  8874. }
  8875. }).form; //创建窗体
  8876. _taskbar = {
  8877. "id": str + _formdiv.id,
  8878. "style": {
  8879. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8880. },
  8881. "name": "项目设计",
  8882. "forms": _formdiv,
  8883. "click": function () {
  8884. U.MD.D.I.openApplication(str, obj, info);
  8885. }
  8886. }
  8887. break;
  8888. }
  8889. const script1 = document.createElement("script");
  8890. script1.type = "text/javascript";
  8891. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8892. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8893. const script2 = document.createElement("script");
  8894. script2.type = "text/javascript";
  8895. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8896. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8897. const script3 = document.createElement("script");
  8898. script3.type = "text/javascript";
  8899. script3.charset = "UTF-8";
  8900. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8901. const script4 = document.createElement("script");
  8902. script4.type = "text/javascript";
  8903. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8904. script4.src = window.origin + "/js/Common/jietu2E.js";
  8905. if (_iframe) {
  8906. if (str == 'doc') {
  8907. _iframe = _formdiv.querySelector('iframe')
  8908. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8909. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8910. _iframe.contentWindow.document.body.appendChild(script1);
  8911. _iframe.contentWindow.document.body.appendChild(script2);
  8912. // _iframe.contentWindow.document.body.appendChild(script3);
  8913. _iframe.contentWindow.document.body.appendChild(script4);
  8914. })
  8915. if (onloadListener) {
  8916. _iframe.contentDocument.location.reload()
  8917. } else {
  8918. _iframe.contentDocument.location.reload()
  8919. }
  8920. } else if (str == 'courseDesign') {
  8921. U.UF.DL.iframeLoad(_iframe, function () {
  8922. // _iframe.contentWindow.U.MD.O.W.load();
  8923. // _iframe.contentWindow.document.body.appendChild(script1);
  8924. _iframe.contentWindow.document.body.appendChild(script2);
  8925. _iframe.contentWindow.document.body.appendChild(script4);
  8926. })
  8927. } else if (str == 'mind') {
  8928. _iframe = _formdiv.querySelector('iframe')
  8929. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8930. //
  8931. _iframe.contentWindow.document.body.appendChild(script1);
  8932. _iframe.contentWindow.document.body.appendChild(script2);
  8933. _iframe.contentWindow.document.body.appendChild(script4);
  8934. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8935. })
  8936. if (onloadListener) {
  8937. _iframe.contentDocument.location.reload()
  8938. } else {
  8939. _iframe.contentDocument.location.reload()
  8940. }
  8941. } else if (str == 'whiteboard') {
  8942. _iframe = _formdiv.querySelector('iframe')
  8943. let onloadListener = _iframe.onload = () => {
  8944. _iframe.contentWindow.document.body.appendChild(script1);
  8945. _iframe.contentWindow.document.body.appendChild(script2);
  8946. _iframe.contentWindow.document.body.appendChild(script4);
  8947. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8948. };
  8949. // if (onloadListener) {
  8950. // try {
  8951. // _iframe.src += "?cocorobo="+new Date().getTime()
  8952. // _iframe.contentWindow.document.location.reload()
  8953. // } catch (error) {
  8954. // }
  8955. // } else {
  8956. // _iframe.contentDocument.location.reload()
  8957. // }
  8958. } else {
  8959. _iframe.onload = () => {
  8960. _iframe.contentWindow.document.body.appendChild(script1);
  8961. _iframe.contentWindow.document.body.appendChild(script2);
  8962. // _iframe.contentWindow.document.body.appendChild(script3);
  8963. _iframe.contentWindow.document.body.appendChild(script4);
  8964. };
  8965. }
  8966. _jie.onclick = async () => {
  8967. let text = ''
  8968. if (aTool == 1) {
  8969. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8970. } else if (aTool == 6) {
  8971. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8972. } else if (aTool == 3) {
  8973. text = await U.MD.D.I.getEditorContent(_iframe);
  8974. }
  8975. _loading.style.display = 'flex'
  8976. console.log(_loading);
  8977. var _ajs = _iframe.contentWindow.document.createElement("script");
  8978. _ajs.type = "text/javascript";
  8979. _ajs.innerHTML =
  8980. // 'console.log(' + _loading + ');\n' +
  8981. 'var _js = document.createElement("script");\n' +
  8982. '_js.type="text/javascript";\n' +
  8983. '_js.charset="UTF-8";\n' +
  8984. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8985. "_js.onload = function(){\n" +
  8986. ' var a = document.getElementsByTagName("img")\n' +
  8987. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8988. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8989. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8990. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8991. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8992. "beforeUpload_shishi(file," +
  8993. "'" +
  8994. _userid +
  8995. "'" +
  8996. ", " +
  8997. "'" +
  8998. _cid +
  8999. "'" +
  9000. ", " +
  9001. "'" +
  9002. _stage +
  9003. "'" +
  9004. ", " +
  9005. "'" +
  9006. _task +
  9007. "'" +
  9008. ", " +
  9009. "'" +
  9010. _tool +
  9011. "'" +
  9012. ", " +
  9013. "'" +
  9014. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9015. "'" +
  9016. ", " +
  9017. "'" +
  9018. aTool +
  9019. "'" +
  9020. ", " +
  9021. "`" +
  9022. text +
  9023. "`" +
  9024. ")\n" +
  9025. " });\n" +
  9026. "}\n" +
  9027. "document.head.appendChild(_js);\n";
  9028. _iframe.contentWindow.document.head.appendChild(_ajs);
  9029. }
  9030. }
  9031. }
  9032. U.MD.D.I.getEditorContent = function (iframe) {
  9033. return new Promise((resolve, reject) => {
  9034. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9035. console.log(content);
  9036. resolve(content)
  9037. });
  9038. });
  9039. }
  9040. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9041. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9042. // if (res.value[0].length > 0) {
  9043. // // resolve(res.value[0][0].text);
  9044. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9045. // $(fileInput).val('');
  9046. // });
  9047. // }
  9048. // }, [], { "type": "GET", "withCredentials": true });
  9049. var xmlhttp;
  9050. var Mac, Sn, DeviceId
  9051. if (window.XMLHttpRequest) {
  9052. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9053. xmlhttp = new XMLHttpRequest();
  9054. } else {
  9055. // IE6, IE5 浏览器执行代码
  9056. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9057. }
  9058. xmlhttp.onreadystatechange = function () {
  9059. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9060. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9061. // resolve(res.value[0][0].text);
  9062. if (type == '2') {
  9063. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9064. } else if (type == '3') {
  9065. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9066. }
  9067. } else {
  9068. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9069. }
  9070. }
  9071. }
  9072. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9073. xmlhttp.send();
  9074. }
  9075. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9076. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9077. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9078. _userinfo = US.userInfo, //登录用户信息
  9079. _userid = US.userInfo.userid //登录用户id
  9080. let _iframe;
  9081. let _cid = cid,
  9082. _stage = stage,
  9083. _task = task,
  9084. _tool = tool;
  9085. var _jie = $$("div", {
  9086. "style": {
  9087. "position": "absolute",
  9088. "bottom": "50px",
  9089. "right": "50px",
  9090. "zIndex": "9999",
  9091. "backgroundColor": "#2268bc",
  9092. "color": "#fff",
  9093. "padding": "12px 20px",
  9094. "cursor": "pointer",
  9095. "borderRadius": "4px",
  9096. },
  9097. "innerHTML": "确认并提交"
  9098. })
  9099. let aTool = ''
  9100. let _loading = document.createElement('div')
  9101. _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;"
  9102. // _loading.id = "";
  9103. let _lchild = document.createElement('div')
  9104. let _limg = document.createElement('img')
  9105. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9106. _limg.style = "width: 26px;margin-right: 10px;"
  9107. _lchild.appendChild(_limg)
  9108. let _lspan = document.createElement('span')
  9109. _lspan.innerHTML = "上传中..."
  9110. _lchild.appendChild(_lspan)
  9111. _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%);"
  9112. _loading.appendChild(_lchild)
  9113. var _box = $$('div', {
  9114. "style": {
  9115. "position": "relative",
  9116. "width": "100%",
  9117. "height": "100%",
  9118. },
  9119. })
  9120. _box.appendChild(_loading)
  9121. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9122. switch (str) {
  9123. case "whiteboard":
  9124. aTool = 1;
  9125. _iframe = $$("iframe", {
  9126. "frameborder": "no",
  9127. "border": "0",
  9128. "scrolling ": "no",
  9129. "style": {
  9130. "cssText": "border:0;width:100%;height:100%"
  9131. },
  9132. "src": "https://beta.iwb.cocorobo.cn/"
  9133. })
  9134. _box.appendChild(_iframe);
  9135. _box.appendChild(_jie);
  9136. _formdiv = new U.UF.UI.form(
  9137. "电子白板",
  9138. _box, {
  9139. "id": "whiteboards" + cid + stage + task + tool,
  9140. "style": {
  9141. "width": "90%",
  9142. "height": "90%",
  9143. "overflow": 'hidden'
  9144. },
  9145. "onresize": function () { }
  9146. }, {
  9147. closecallback: function () { }
  9148. }, {
  9149. "style": {
  9150. "height": "36px"
  9151. }
  9152. }).form; //创建窗体
  9153. _taskbar = {
  9154. "id": str + _formdiv.id,
  9155. "style": {
  9156. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9157. },
  9158. "name": "电子白板",
  9159. "forms": _formdiv,
  9160. "click": function () {
  9161. U.MD.D.I.openApplication(str, obj, info);
  9162. }
  9163. }
  9164. break;
  9165. case "mind":
  9166. aTool = 3;
  9167. _iframe = $$("iframe", {
  9168. "frameborder": "no",
  9169. "border": "0",
  9170. "scrolling ": "no",
  9171. "style": {
  9172. "cssText": "border:0;width:100%;height:100%"
  9173. },
  9174. "src": "/kityminder-editor/dist/index.html"
  9175. });
  9176. _box.appendChild(_iframe);
  9177. _box.appendChild(_jie);
  9178. _formdiv = new U.UF.UI.form(
  9179. "思维导图",
  9180. _box, { //"/jsmind/example/demo.html"
  9181. "id": "minds" + cid + stage + task + tool,
  9182. "style": {
  9183. "width": "90%",
  9184. "height": "90%",
  9185. "overflow": 'hidden'
  9186. },
  9187. "onresize": function () { }
  9188. }, {
  9189. closecallback: function () { }
  9190. }, {
  9191. "style": {
  9192. "height": "36px"
  9193. }
  9194. }).form; //创建窗体
  9195. _taskbar = {
  9196. "id": str + _formdiv.id,
  9197. "style": {
  9198. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9199. },
  9200. "name": "思维导图",
  9201. "forms": _formdiv,
  9202. "click": function () {
  9203. U.MD.D.I.openApplication(str, obj, info);
  9204. }
  9205. }
  9206. break;
  9207. case "doc":
  9208. aTool = 6;
  9209. _iframe = $$("iframe", {
  9210. "frameborder": "no",
  9211. "border": "0",
  9212. "scrolling ": "no",
  9213. "style": {
  9214. "cssText": "border:0;width:100%;height:100%"
  9215. },
  9216. "src": "/Office/Word/WordEditArea.htm"
  9217. })
  9218. _box.appendChild(_iframe);
  9219. _box.appendChild(_jie);
  9220. _formdiv = new U.UF.UI.form(
  9221. "协同文档",
  9222. _box, {
  9223. "id": "docs" + cid + stage + task + tool,
  9224. "style": {
  9225. "width": "90%",
  9226. "height": "90%",
  9227. "overflow": 'hidden'
  9228. },
  9229. "onresize": function () { }
  9230. }, {
  9231. closecallback: function () { }
  9232. }, {
  9233. "style": {
  9234. "height": "36px"
  9235. }
  9236. }).form; //创建窗体
  9237. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9238. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9239. })
  9240. _taskbar = {
  9241. "id": str + _formdiv.id,
  9242. "style": {
  9243. "backgroundImage": "url(/img/icon/doc.png)"
  9244. },
  9245. "name": "协同文档",
  9246. "forms": _formdiv,
  9247. "click": function () {
  9248. U.MD.D.I.openApplication(str, obj, info);
  9249. }
  9250. }
  9251. break;
  9252. }
  9253. const script1 = document.createElement("script");
  9254. script1.type = "text/javascript";
  9255. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9256. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9257. const script2 = document.createElement("script");
  9258. script2.type = "text/javascript";
  9259. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9260. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9261. const script3 = document.createElement("script");
  9262. script3.type = "text/javascript";
  9263. script3.charset = "UTF-8";
  9264. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9265. const script4 = document.createElement("script");
  9266. script4.type = "text/javascript";
  9267. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9268. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9269. if (_iframe) {
  9270. if (str == 'doc') {
  9271. _iframe = _formdiv.querySelector('iframe')
  9272. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9273. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9274. _iframe.contentWindow.document.body.appendChild(script1);
  9275. _iframe.contentWindow.document.body.appendChild(script2);
  9276. // _iframe.contentWindow.document.body.appendChild(script3);
  9277. _iframe.contentWindow.document.body.appendChild(script4);
  9278. })
  9279. if (onloadListener) {
  9280. _iframe.contentDocument.location.reload()
  9281. } else {
  9282. _iframe.contentDocument.location.reload()
  9283. }
  9284. } else if (str == 'mind') {
  9285. _iframe = _formdiv.querySelector('iframe')
  9286. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9287. _iframe.contentWindow.document.body.appendChild(script1);
  9288. _iframe.contentWindow.document.body.appendChild(script2);
  9289. _iframe.contentWindow.document.body.appendChild(script4);
  9290. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9291. })
  9292. if (onloadListener) {
  9293. _iframe.contentDocument.location.reload()
  9294. } else {
  9295. _iframe.contentDocument.location.reload()
  9296. }
  9297. } else {
  9298. _iframe.onload = () => {
  9299. _iframe.contentWindow.document.body.appendChild(script1);
  9300. _iframe.contentWindow.document.body.appendChild(script2);
  9301. // _iframe.contentWindow.document.body.appendChild(script3);
  9302. _iframe.contentWindow.document.body.appendChild(script4);
  9303. };
  9304. }
  9305. _jie.onclick = async () => {
  9306. let text = ''
  9307. if (aTool == 6) {
  9308. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9309. } else if (aTool == 3) {
  9310. text = await U.MD.D.I.getEditorContent(_iframe);
  9311. }
  9312. _loading.style.display = 'flex'
  9313. console.log(_loading);
  9314. var _ajs = _iframe.contentWindow.document.createElement("script");
  9315. _ajs.type = "text/javascript";
  9316. _ajs.innerHTML =
  9317. // 'console.log(' + _loading + ');\n' +
  9318. 'var _js = document.createElement("script");\n' +
  9319. '_js.type="text/javascript";\n' +
  9320. '_js.charset="UTF-8";\n' +
  9321. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9322. "_js.onload = function(){\n" +
  9323. ' var a = document.getElementsByTagName("img")\n' +
  9324. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9325. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9326. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9327. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9328. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9329. "beforeUpload_shishi(file," +
  9330. "'" +
  9331. _userid +
  9332. "'" +
  9333. ", " +
  9334. "'" +
  9335. _cid +
  9336. "'" +
  9337. ", " +
  9338. "'" +
  9339. _stage +
  9340. "'" +
  9341. ", " +
  9342. "'" +
  9343. _task +
  9344. "'" +
  9345. ", " +
  9346. "'" +
  9347. _tool +
  9348. "'" +
  9349. ", " +
  9350. "'" +
  9351. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9352. "'" +
  9353. ", " +
  9354. "'" +
  9355. aTool +
  9356. "'" +
  9357. ", " +
  9358. "`" +
  9359. text +
  9360. "`" +
  9361. ")\n" +
  9362. " });\n" +
  9363. "}\n" +
  9364. "document.head.appendChild(_js);\n";
  9365. _iframe.contentWindow.document.head.appendChild(_ajs);
  9366. }
  9367. }
  9368. //U.MD.D.I.openClick(str);
  9369. //如果有任务栏信息
  9370. // if (_taskbar) {
  9371. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9372. // }
  9373. }
  9374. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9375. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9376. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9377. _userinfo = US.userInfo, //登录用户信息
  9378. _userid = US.userInfo.userid //登录用户id
  9379. let _iframe;
  9380. let _cid = cid,
  9381. _stage = stage,
  9382. _task = task,
  9383. _tool = tool;
  9384. var _jie = $$("div", {
  9385. "style": {
  9386. "position": "absolute",
  9387. "bottom": "50px",
  9388. "right": "50px",
  9389. "zIndex": "9999",
  9390. "backgroundColor": "#2268bc",
  9391. "color": "#fff",
  9392. "padding": "12px 20px",
  9393. "cursor": "pointer",
  9394. "borderRadius": "4px",
  9395. },
  9396. "innerHTML": "确认并提交"
  9397. })
  9398. let aTool = ''
  9399. let _loading = document.createElement('div')
  9400. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  9401. // _loading.id = "";
  9402. let _lchild = document.createElement('div')
  9403. let _limg = document.createElement('img')
  9404. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9405. _limg.style = "width: 26px;margin-right: 10px;"
  9406. _lchild.appendChild(_limg)
  9407. let _lspan = document.createElement('span')
  9408. _lspan.innerHTML = "上传中..."
  9409. _lchild.appendChild(_lspan)
  9410. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  9411. _loading.appendChild(_lchild)
  9412. var _box = $$('div', {
  9413. "style": {
  9414. "position": "relative",
  9415. "width": "100%",
  9416. "height": "100%",
  9417. },
  9418. })
  9419. _box.appendChild(_loading)
  9420. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9421. switch (str) {
  9422. case "whiteboard":
  9423. aTool = 1;
  9424. _iframe = $$("iframe", {
  9425. "frameborder": "no",
  9426. "border": "0",
  9427. "scrolling ": "no",
  9428. "style": {
  9429. "cssText": "border:0;width:100%;height:100%"
  9430. },
  9431. "src": "https://beta.iwb.cocorobo.cn/"
  9432. })
  9433. _box.appendChild(_iframe);
  9434. _box.appendChild(_jie);
  9435. _formdiv = new U.UF.UI.form(
  9436. "电子白板",
  9437. _box, {
  9438. "id": "whiteboards" + cid + stage + task + tool,
  9439. "style": {
  9440. "width": "90%",
  9441. "height": "90%",
  9442. "overflow": 'hidden'
  9443. },
  9444. "onresize": function () { }
  9445. }, {
  9446. closecallback: function () { }
  9447. }, {
  9448. "style": {
  9449. "height": "36px"
  9450. }
  9451. }).form; //创建窗体
  9452. _taskbar = {
  9453. "id": str + _formdiv.id,
  9454. "style": {
  9455. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9456. },
  9457. "name": "电子白板",
  9458. "forms": _formdiv,
  9459. "click": function () {
  9460. U.MD.D.I.openApplication(str, obj, info);
  9461. }
  9462. }
  9463. break;
  9464. case "mind":
  9465. aTool = 3;
  9466. _iframe = $$("iframe", {
  9467. "frameborder": "no",
  9468. "border": "0",
  9469. "scrolling ": "no",
  9470. "style": {
  9471. "cssText": "border:0;width:100%;height:100%"
  9472. },
  9473. "src": "/kityminder-editor/dist/index.html"
  9474. });
  9475. _box.appendChild(_iframe);
  9476. _box.appendChild(_jie);
  9477. _formdiv = new U.UF.UI.form(
  9478. "思维导图",
  9479. _box, { //"/jsmind/example/demo.html"
  9480. "id": "minds" + cid + stage + task + tool,
  9481. "style": {
  9482. "width": "90%",
  9483. "height": "90%",
  9484. "overflow": 'hidden'
  9485. },
  9486. "onresize": function () { }
  9487. }, {
  9488. closecallback: function () { }
  9489. }, {
  9490. "style": {
  9491. "height": "36px"
  9492. }
  9493. }).form; //创建窗体
  9494. _taskbar = {
  9495. "id": str + _formdiv.id,
  9496. "style": {
  9497. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9498. },
  9499. "name": "思维导图",
  9500. "forms": _formdiv,
  9501. "click": function () {
  9502. U.MD.D.I.openApplication(str, obj, info);
  9503. }
  9504. }
  9505. break;
  9506. case "doc":
  9507. aTool = 6;
  9508. _iframe = $$("iframe", {
  9509. "frameborder": "no",
  9510. "border": "0",
  9511. "scrolling ": "no",
  9512. "style": {
  9513. "cssText": "border:0;width:100%;height:100%"
  9514. },
  9515. "src": "/Office/Word/WordEditArea.htm"
  9516. })
  9517. _box.appendChild(_iframe);
  9518. _box.appendChild(_jie);
  9519. _formdiv = new U.UF.UI.form(
  9520. "协同文档",
  9521. _box, {
  9522. "id": "docs" + cid + stage + task + tool,
  9523. "style": {
  9524. "width": "90%",
  9525. "height": "90%",
  9526. "overflow": 'hidden'
  9527. },
  9528. "onresize": function () { }
  9529. }, {
  9530. closecallback: function () { }
  9531. }, {
  9532. "style": {
  9533. "height": "36px"
  9534. }
  9535. }).form; //创建窗体
  9536. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9537. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9538. })
  9539. _taskbar = {
  9540. "id": str + _formdiv.id,
  9541. "style": {
  9542. "backgroundImage": "url(/img/icon/doc.png)"
  9543. },
  9544. "name": "协同文档",
  9545. "forms": _formdiv,
  9546. "click": function () {
  9547. U.MD.D.I.openApplication(str, obj, info);
  9548. }
  9549. }
  9550. break;
  9551. }
  9552. const script1 = document.createElement("script");
  9553. script1.type = "text/javascript";
  9554. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9555. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9556. const script2 = document.createElement("script");
  9557. script2.type = "text/javascript";
  9558. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9559. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9560. const script3 = document.createElement("script");
  9561. script3.type = "text/javascript";
  9562. script3.charset = "UTF-8";
  9563. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9564. const script4 = document.createElement("script");
  9565. script4.type = "text/javascript";
  9566. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9567. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9568. if (_iframe) {
  9569. if (str == 'doc') {
  9570. _iframe = _formdiv.querySelector('iframe')
  9571. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9572. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9573. _iframe.contentWindow.document.body.appendChild(script1);
  9574. _iframe.contentWindow.document.body.appendChild(script2);
  9575. // _iframe.contentWindow.document.body.appendChild(script3);
  9576. _iframe.contentWindow.document.body.appendChild(script4);
  9577. })
  9578. if (onloadListener) {
  9579. _iframe.contentDocument.location.reload()
  9580. } else {
  9581. _iframe.contentDocument.location.reload()
  9582. }
  9583. } else if (str == 'mind') {
  9584. _iframe = _formdiv.querySelector('iframe')
  9585. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9586. _iframe.contentWindow.document.body.appendChild(script1);
  9587. _iframe.contentWindow.document.body.appendChild(script2);
  9588. _iframe.contentWindow.document.body.appendChild(script4);
  9589. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9590. })
  9591. if (onloadListener) {
  9592. _iframe.contentDocument.location.reload()
  9593. } else {
  9594. _iframe.contentDocument.location.reload()
  9595. }
  9596. } else {
  9597. _iframe.onload = () => {
  9598. _iframe.contentWindow.document.body.appendChild(script1);
  9599. _iframe.contentWindow.document.body.appendChild(script2);
  9600. // _iframe.contentWindow.document.body.appendChild(script3);
  9601. _iframe.contentWindow.document.body.appendChild(script4);
  9602. };
  9603. }
  9604. _jie.onclick = async () => {
  9605. let text = ''
  9606. if (aTool == 6) {
  9607. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9608. } else if (aTool == 3) {
  9609. text = await U.MD.D.I.getEditorContent(_iframe);
  9610. }
  9611. _loading.style.display = 'flex'
  9612. console.log(_loading);
  9613. var _ajs = _iframe.contentWindow.document.createElement("script");
  9614. _ajs.type = "text/javascript";
  9615. _ajs.innerHTML =
  9616. // 'console.log(' + _loading + ');\n' +
  9617. 'var _js = document.createElement("script");\n' +
  9618. '_js.type="text/javascript";\n' +
  9619. '_js.charset="UTF-8";\n' +
  9620. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9621. "_js.onload = function(){\n" +
  9622. ' var a = document.getElementsByTagName("img")\n' +
  9623. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9624. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9625. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9626. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9627. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9628. "beforeUpload_shishi(file," +
  9629. "'" +
  9630. _userid +
  9631. "'" +
  9632. ", " +
  9633. "'" +
  9634. _cid +
  9635. "'" +
  9636. ", " +
  9637. "'" +
  9638. _stage +
  9639. "'" +
  9640. ", " +
  9641. "'" +
  9642. _task +
  9643. "'" +
  9644. ", " +
  9645. "'" +
  9646. _tool +
  9647. "'" +
  9648. ", " +
  9649. "'" +
  9650. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9651. "'" +
  9652. ", " +
  9653. "'" +
  9654. aTool +
  9655. "'" +
  9656. ", " +
  9657. "`" +
  9658. text +
  9659. "`" +
  9660. ")\n" +
  9661. " });\n" +
  9662. "}\n" +
  9663. "document.head.appendChild(_js);\n";
  9664. _iframe.contentWindow.document.head.appendChild(_ajs);
  9665. }
  9666. }
  9667. //U.MD.D.I.openClick(str);
  9668. //如果有任务栏信息
  9669. // if (_taskbar) {
  9670. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9671. // }
  9672. }
  9673. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9674. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9675. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9676. _userinfo = US.userInfo, //登录用户信息
  9677. _userid = US.userInfo.userid //登录用户id
  9678. let _iframe;
  9679. let _cid = cid,
  9680. _stage = stage,
  9681. _task = task,
  9682. _tool = tool;
  9683. var _jie = $$("div", {
  9684. "style": {
  9685. "position": "absolute",
  9686. "bottom": "50px",
  9687. "right": "50px",
  9688. "zIndex": "9999",
  9689. "backgroundColor": "#2268bc",
  9690. "color": "#fff",
  9691. "padding": "12px 20px",
  9692. "cursor": "pointer",
  9693. "borderRadius": "4px",
  9694. },
  9695. "innerHTML": "上传模板"
  9696. })
  9697. let aTool = ''
  9698. let _loading = document.createElement('div')
  9699. _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;"
  9700. // _loading.id = "";
  9701. let _lchild = document.createElement('div')
  9702. let _limg = document.createElement('img')
  9703. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9704. _limg.style = "width: 26px;margin-right: 10px;"
  9705. _lchild.appendChild(_limg)
  9706. let _lspan = document.createElement('span')
  9707. _lspan.innerHTML = "上传中..."
  9708. _lchild.appendChild(_lspan)
  9709. _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%);"
  9710. _loading.appendChild(_lchild)
  9711. var _box = $$('div', {
  9712. "style": {
  9713. "position": "relative",
  9714. "width": "100%",
  9715. "height": "100%",
  9716. },
  9717. })
  9718. _box.appendChild(_loading)
  9719. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9720. switch (str) {
  9721. case "whiteboard":
  9722. aTool = 1;
  9723. _iframe = $$("iframe", {
  9724. "frameborder": "no",
  9725. "border": "0",
  9726. "scrolling ": "no",
  9727. "style": {
  9728. "cssText": "border:0;width:100%;height:100%"
  9729. },
  9730. "src": "https://beta.iwb.cocorobo.cn/"
  9731. })
  9732. _box.appendChild(_iframe);
  9733. _box.appendChild(_jie);
  9734. _formdiv = new U.UF.UI.form(
  9735. "电子白板",
  9736. _box, {
  9737. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9738. "style": {
  9739. "width": "90%",
  9740. "height": "90%",
  9741. "overflow": 'hidden'
  9742. },
  9743. "onresize": function () { }
  9744. }, {
  9745. closecallback: function () { }
  9746. }, {
  9747. "style": {
  9748. "height": "36px"
  9749. }
  9750. }).form; //创建窗体
  9751. _taskbar = {
  9752. "id": str + _formdiv.id,
  9753. "style": {
  9754. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9755. },
  9756. "name": "电子白板",
  9757. "forms": _formdiv,
  9758. "click": function () {
  9759. U.MD.D.I.openApplication(str, obj, info);
  9760. }
  9761. }
  9762. break;
  9763. case "mind":
  9764. aTool = 3;
  9765. _iframe = $$("iframe", {
  9766. "frameborder": "no",
  9767. "border": "0",
  9768. "scrolling ": "no",
  9769. "style": {
  9770. "cssText": "border:0;width:100%;height:100%"
  9771. },
  9772. "src": "/kityminder-editor/dist/index.html"
  9773. });
  9774. _box.appendChild(_iframe);
  9775. _box.appendChild(_jie);
  9776. _formdiv = new U.UF.UI.form(
  9777. "思维导图",
  9778. _box, { //"/jsmind/example/demo.html"
  9779. "id": "minds_Yu" + cid + stage + task + tool,
  9780. "style": {
  9781. "width": "90%",
  9782. "height": "90%",
  9783. "overflow": 'hidden'
  9784. },
  9785. "onresize": function () { }
  9786. }, {
  9787. closecallback: function () { }
  9788. }, {
  9789. "style": {
  9790. "height": "36px"
  9791. }
  9792. }).form; //创建窗体
  9793. _taskbar = {
  9794. "id": str + _formdiv.id,
  9795. "style": {
  9796. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9797. },
  9798. "name": "思维导图",
  9799. "forms": _formdiv,
  9800. "click": function () {
  9801. U.MD.D.I.openApplication(str, obj, info);
  9802. }
  9803. }
  9804. break;
  9805. case "doc":
  9806. aTool = 6;
  9807. _iframe = $$("iframe", {
  9808. "frameborder": "no",
  9809. "border": "0",
  9810. "scrolling ": "no",
  9811. "style": {
  9812. "cssText": "border:0;width:100%;height:100%"
  9813. },
  9814. "src": "/Office/Word/WordEditArea.htm"
  9815. })
  9816. _box.appendChild(_iframe);
  9817. _box.appendChild(_jie);
  9818. _formdiv = new U.UF.UI.form(
  9819. "协同文档",
  9820. _box, {
  9821. "id": "docs_Yu" + cid + stage + task + tool,
  9822. "style": {
  9823. "width": "90%",
  9824. "height": "90%",
  9825. "overflow": 'hidden'
  9826. },
  9827. "onresize": function () { }
  9828. }, {
  9829. closecallback: function () { }
  9830. }, {
  9831. "style": {
  9832. "height": "36px"
  9833. }
  9834. }).form; //创建窗体
  9835. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9836. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9837. })
  9838. _taskbar = {
  9839. "id": str + _formdiv.id,
  9840. "style": {
  9841. "backgroundImage": "url(/img/icon/doc.png)"
  9842. },
  9843. "name": "协同文档",
  9844. "forms": _formdiv,
  9845. "click": function () {
  9846. U.MD.D.I.openApplication(str, obj, info);
  9847. }
  9848. }
  9849. break;
  9850. case "CocoPi":
  9851. aTool = 57;
  9852. _iframe = $$("iframe", {
  9853. "allowpaymentrequest": "allowpaymentrequest",
  9854. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9855. "webkitallowfullscreen": "",
  9856. "mozallowfullscreen": "",
  9857. "frameborder": "no",
  9858. "border": "0",
  9859. "scrolling ": "no",
  9860. "style": {
  9861. "cssText": "border:0;width:100%;height:100%"
  9862. },
  9863. "src": "https://pi.cocorobo.cn/"
  9864. })
  9865. _box.appendChild(_iframe);
  9866. _box.appendChild(_jie);
  9867. _formdiv = new U.UF.UI.form(
  9868. "CocoPi",
  9869. _box, {
  9870. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9871. "style": {
  9872. "width": "90%",
  9873. "height": "90%",
  9874. "overflow": 'hidden'
  9875. },
  9876. "onresize": function () { }
  9877. }, {
  9878. closecallback: function () { }
  9879. }, {
  9880. "style": {
  9881. "height": "36px"
  9882. }
  9883. }).form; //创建窗体
  9884. _taskbar = {
  9885. "id": str + _formdiv.id,
  9886. "style": {
  9887. "backgroundImage": "url(/img/icon/cocopi.png)"
  9888. },
  9889. "name": "CocoPi",
  9890. "forms": _formdiv,
  9891. "click": function () {
  9892. U.MD.D.I.openApplication(str, obj, info);
  9893. }
  9894. }
  9895. break;
  9896. }
  9897. if (_iframe) {
  9898. if (str == 'doc') {
  9899. _iframe = _formdiv.querySelector('iframe')
  9900. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9901. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9902. })
  9903. if (onloadListener) {
  9904. _iframe.contentDocument.location.reload()
  9905. } else {
  9906. _iframe.contentDocument.location.reload()
  9907. }
  9908. } else if (str == 'mind') {
  9909. _iframe = _formdiv.querySelector('iframe')
  9910. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9911. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9912. })
  9913. if (onloadListener) {
  9914. _iframe.contentDocument.location.reload()
  9915. } else {
  9916. _iframe.contentDocument.location.reload()
  9917. }
  9918. } else if (str == 'whiteboard') {
  9919. _iframe = _formdiv.querySelector('iframe')
  9920. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9921. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9922. })
  9923. // if (onloadListener) {
  9924. // try {
  9925. // _iframe.src += "?cocorobo="+new Date().getTime()
  9926. // _iframe.contentWindow.document.location.reload()
  9927. // } catch (error) {
  9928. // }
  9929. // } else {
  9930. // _iframe.contentDocument.location.reload()
  9931. // }
  9932. } else if (str == 'CocoPi') {
  9933. _iframe = _formdiv.querySelector('iframe')
  9934. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9935. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9936. })
  9937. if (onloadListener) {
  9938. _iframe.contentDocument.location.reload()
  9939. } else {
  9940. _iframe.contentDocument.location.reload()
  9941. }
  9942. } else {
  9943. _iframe.onload = () => { };
  9944. }
  9945. _jie.onclick = async () => {
  9946. let text = ''
  9947. let type = '2'
  9948. if (aTool == 1) {
  9949. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9950. type = '3'
  9951. } else if (aTool == 6) {
  9952. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9953. type = '1'
  9954. } else if (aTool == 3) {
  9955. text = await U.MD.D.I.getEditorContent(_iframe);
  9956. type = '2'
  9957. } else if (aTool == 57) {
  9958. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9959. type = '4'
  9960. }
  9961. _loading.style.display = 'flex'
  9962. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9963. }
  9964. }
  9965. //U.MD.D.I.openClick(str);
  9966. //如果有任务栏信息
  9967. // if (_taskbar) {
  9968. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9969. // }
  9970. }
  9971. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9972. var xmlhttp;
  9973. var Mac, Sn, DeviceId
  9974. if (window.XMLHttpRequest) {
  9975. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9976. xmlhttp = new XMLHttpRequest();
  9977. } else {
  9978. // IE6, IE5 浏览器执行代码
  9979. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9980. }
  9981. xmlhttp.onreadystatechange = function () {
  9982. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9983. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9984. // resolve(res.value[0][0].text);
  9985. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9986. }
  9987. }
  9988. }
  9989. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9990. xmlhttp.send();
  9991. }
  9992. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9993. var xmlhttp;
  9994. var Mac, Sn, DeviceId
  9995. if (window.XMLHttpRequest) {
  9996. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9997. xmlhttp = new XMLHttpRequest();
  9998. } else {
  9999. // IE6, IE5 浏览器执行代码
  10000. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10001. }
  10002. xmlhttp.onreadystatechange = function () {
  10003. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10004. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10005. // resolve(res.value[0][0].text);
  10006. if (type == '2') {
  10007. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10008. } else if (type == '3') {
  10009. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10010. } else if (type == '4') {
  10011. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10012. }
  10013. } else {
  10014. if (type == '2') {
  10015. iframe.contentWindow.editor.minder.importData('json', '')
  10016. } else if (type == '3') {
  10017. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10018. } else if (type == '4') {
  10019. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10020. }
  10021. }
  10022. }
  10023. }
  10024. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10025. xmlhttp.send();
  10026. }
  10027. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10028. var xmlhttp;
  10029. var Mac, Sn, DeviceId
  10030. if (window.XMLHttpRequest) {
  10031. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10032. xmlhttp = new XMLHttpRequest();
  10033. } else {
  10034. // IE6, IE5 浏览器执行代码
  10035. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10036. }
  10037. xmlhttp.onreadystatechange = function () {
  10038. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10039. if (xmlhttp.response) {
  10040. // resolve(res.value[0][0].text);
  10041. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10042. // $(fileInput).val('');
  10043. // });
  10044. span.innerHTML = '上传成功'
  10045. setTimeout(() => {
  10046. loading.style.display = 'none'
  10047. }, 1000);
  10048. }
  10049. }
  10050. }
  10051. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10052. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10053. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10054. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10055. // 设置请求头,表示请求体的编码格式
  10056. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10057. // 设置请求体,使用url-encoded格式的数据
  10058. }
  10059. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10060. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10061. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10062. _userinfo = US.userInfo, //登录用户信息
  10063. _userid = US.userInfo.userid //登录用户id
  10064. let _iframe;
  10065. let _cid = cid,
  10066. _stage = stage,
  10067. _task = task,
  10068. _tool = tool;
  10069. var _jie = $$("div", {
  10070. "style": {
  10071. "position": "absolute",
  10072. "bottom": "50px",
  10073. "right": "50px",
  10074. "zIndex": "9999",
  10075. "backgroundColor": "#2268bc",
  10076. "color": "#fff",
  10077. "padding": "12px 20px",
  10078. "cursor": "pointer",
  10079. "borderRadius": "4px",
  10080. },
  10081. "innerHTML": "提交作业"
  10082. })
  10083. let aTool = ''
  10084. let _loading = document.createElement('div')
  10085. _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;"
  10086. // _loading.id = "";
  10087. let _lchild = document.createElement('div')
  10088. let _limg = document.createElement('img')
  10089. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10090. _limg.style = "width: 26px;margin-right: 10px;"
  10091. _lchild.appendChild(_limg)
  10092. let _lspan = document.createElement('span')
  10093. _lspan.innerHTML = "上传中..."
  10094. _lchild.appendChild(_lspan)
  10095. _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%);"
  10096. _loading.appendChild(_lchild)
  10097. var _box = $$('div', {
  10098. "style": {
  10099. "position": "relative",
  10100. "width": "100%",
  10101. "height": "100%",
  10102. },
  10103. })
  10104. _box.appendChild(_loading)
  10105. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10106. switch (str) {
  10107. case "CocoPi":
  10108. aTool = 57;
  10109. _iframe = $$("iframe", {
  10110. "allowpaymentrequest": "allowpaymentrequest",
  10111. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10112. "webkitallowfullscreen": "",
  10113. "mozallowfullscreen": "",
  10114. "frameborder": "no",
  10115. "border": "0",
  10116. "scrolling ": "no",
  10117. "style": {
  10118. "cssText": "border:0;width:100%;height:100%"
  10119. },
  10120. "src": "https://pi.cocorobo.cn/"
  10121. })
  10122. _box.appendChild(_iframe);
  10123. _box.appendChild(_jie);
  10124. _formdiv = new U.UF.UI.form(
  10125. "CocoPi",
  10126. _box, {
  10127. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10128. "style": {
  10129. "width": "90%",
  10130. "height": "90%",
  10131. "overflow": 'hidden'
  10132. },
  10133. "onresize": function () { }
  10134. }, {
  10135. closecallback: function () { }
  10136. }, {
  10137. "style": {
  10138. "height": "36px"
  10139. }
  10140. }).form; //创建窗体
  10141. _taskbar = {
  10142. "id": str + _formdiv.id,
  10143. "style": {
  10144. "backgroundImage": "url(/img/icon/cocopi.png)"
  10145. },
  10146. "name": "CocoPi",
  10147. "forms": _formdiv,
  10148. "click": function () {
  10149. U.MD.D.I.openApplication(str, obj, info);
  10150. }
  10151. }
  10152. break;
  10153. }
  10154. if (_iframe) {
  10155. if (str == 'CocoPi') {
  10156. _iframe = _formdiv.querySelector('iframe')
  10157. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10158. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10159. })
  10160. if (onloadListener) {
  10161. _iframe.contentDocument.location.reload()
  10162. } else {
  10163. _iframe.contentDocument.location.reload()
  10164. }
  10165. }
  10166. _jie.onclick = async () => {
  10167. let text = ''
  10168. if (aTool == 57) {
  10169. text = _iframe.contentWindow.getLoadXmlStr()
  10170. }
  10171. _loading.style.display = 'flex'
  10172. console.log(_loading);
  10173. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10174. _loading.style.display = 'none'
  10175. let _div = document.createElement('div')
  10176. _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;"
  10177. let _inner = document.createElement('div')
  10178. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10179. _inner.innerHTML = "上传成功"
  10180. _div.appendChild(_inner)
  10181. _iframe.contentWindow.window.document.body.appendChild(_div)
  10182. _div.onclick = () => {
  10183. _iframe.contentWindow.window.document.body.removeChild(_div)
  10184. }
  10185. setTimeout(() => {
  10186. _iframe.contentWindow.window.document.body.removeChild(_div)
  10187. }, 1000);
  10188. }, [], { "type": "POST", "withCredentials": true });
  10189. }
  10190. }
  10191. }
  10192. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10193. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10194. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10195. _userid = student.userid, //登录用户id
  10196. _username = student.student //用户名字
  10197. let _iframe;
  10198. let _cid = cid,
  10199. _stage = stage,
  10200. _task = task,
  10201. _tool = tool;
  10202. var _jie = $$("div", {
  10203. "style": {
  10204. "position": "absolute",
  10205. "bottom": "50px",
  10206. "right": "50px",
  10207. "zIndex": "9999",
  10208. "backgroundColor": "#2268bc",
  10209. "color": "#fff",
  10210. "padding": "12px 20px",
  10211. "cursor": "pointer",
  10212. "borderRadius": "4px",
  10213. },
  10214. "innerHTML": "提交作业"
  10215. })
  10216. let aTool = ''
  10217. let _loading = document.createElement('div')
  10218. _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;"
  10219. // _loading.id = "";
  10220. let _lchild = document.createElement('div')
  10221. let _limg = document.createElement('img')
  10222. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10223. _limg.style = "width: 26px;margin-right: 10px;"
  10224. _lchild.appendChild(_limg)
  10225. let _lspan = document.createElement('span')
  10226. _lspan.innerHTML = "上传中..."
  10227. _lchild.appendChild(_lspan)
  10228. _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%);"
  10229. _loading.appendChild(_lchild)
  10230. var _box = $$('div', {
  10231. "style": {
  10232. "position": "relative",
  10233. "width": "100%",
  10234. "height": "100%",
  10235. },
  10236. })
  10237. _box.appendChild(_loading)
  10238. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10239. switch (str) {
  10240. case "CocoPi":
  10241. aTool = 57;
  10242. _iframe = $$("iframe", {
  10243. "allowpaymentrequest": "allowpaymentrequest",
  10244. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10245. "webkitallowfullscreen": "",
  10246. "mozallowfullscreen": "",
  10247. "frameborder": "no",
  10248. "border": "0",
  10249. "scrolling ": "no",
  10250. "style": {
  10251. "cssText": "border:0;width:100%;height:100%"
  10252. },
  10253. "src": "https://pi.cocorobo.cn/"
  10254. })
  10255. _box.appendChild(_iframe);
  10256. _box.appendChild(_jie);
  10257. _formdiv = new U.UF.UI.form(
  10258. "CocoPi-" + _username,
  10259. _box, {
  10260. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10261. "style": {
  10262. "width": "90%",
  10263. "height": "90%",
  10264. "overflow": 'hidden'
  10265. },
  10266. "onresize": function () { }
  10267. }, {
  10268. closecallback: function () { }
  10269. }, {
  10270. "style": {
  10271. "height": "36px"
  10272. }
  10273. }).form; //创建窗体
  10274. _taskbar = {
  10275. "id": str + _formdiv.id,
  10276. "style": {
  10277. "backgroundImage": "url(/img/icon/cocopi.png)"
  10278. },
  10279. "name": "CocoPi",
  10280. "forms": _formdiv,
  10281. "click": function () {
  10282. U.MD.D.I.openApplication(str, obj, info);
  10283. }
  10284. }
  10285. break;
  10286. }
  10287. if (_iframe) {
  10288. if (str == 'CocoPi') {
  10289. _iframe = _formdiv.querySelector('iframe')
  10290. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10291. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10292. })
  10293. if (onloadListener) {
  10294. _iframe.contentDocument.location.reload()
  10295. } else {
  10296. _iframe.contentDocument.location.reload()
  10297. }
  10298. }
  10299. _jie.onclick = async () => {
  10300. let text = ''
  10301. if (aTool == 57) {
  10302. text = _iframe.contentWindow.getLoadXmlStr()
  10303. }
  10304. _loading.style.display = 'flex'
  10305. console.log(_loading);
  10306. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10307. _loading.style.display = 'none'
  10308. let _div = document.createElement('div')
  10309. _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;"
  10310. let _inner = document.createElement('div')
  10311. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10312. _inner.innerHTML = "上传成功"
  10313. _div.appendChild(_inner)
  10314. _iframe.contentWindow.window.document.body.appendChild(_div)
  10315. _div.onclick = () => {
  10316. _iframe.contentWindow.window.document.body.removeChild(_div)
  10317. }
  10318. setTimeout(() => {
  10319. _iframe.contentWindow.window.document.body.removeChild(_div)
  10320. }, 1000);
  10321. }, [], { "type": "POST", "withCredentials": true });
  10322. }
  10323. }
  10324. }
  10325. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10326. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10327. if (res.value[0].length > 0) {
  10328. if (atool == 57) {
  10329. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10330. }
  10331. } else {
  10332. if (atool == 57) {
  10333. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10334. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10335. }
  10336. }
  10337. }, [], { "type": "POST", "withCredentials": true });
  10338. }