DeskTop.js 661 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成华教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成华教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成华教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //盐田区幼儿园
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyStudentDeskIcon = [
  1230. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. ];
  1234. //scnuai
  1235. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1239. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1240. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1241. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1242. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1245. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1246. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1247. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1248. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1251. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1252. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1253. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1254. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1255. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1257. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1258. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1259. ];
  1260. //scnuai
  1261. U.MD.D.I.scnuaiAdminDeskIcon = [
  1262. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1263. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1264. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1265. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1266. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1267. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1268. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1269. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1271. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1272. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1273. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1274. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1277. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1278. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1279. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1280. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1281. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1283. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1284. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1285. ];
  1286. //scnuai
  1287. U.MD.D.I.scnuaiStudentDeskIcon = [
  1288. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1290. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. ];
  1293. //cocobiz
  1294. U.MD.D.I.cocobizteacherDeskIcon = [
  1295. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1296. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1297. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1298. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1302. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1303. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1304. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1305. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1306. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1307. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1308. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1312. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1325. ];
  1326. //xxzjky
  1327. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1328. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1330. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1331. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1337. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1338. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1339. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1340. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1341. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1345. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1347. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1348. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1352. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1353. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1354. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1355. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1358. ];
  1359. //nsfx
  1360. U.MD.D.I.nsfxTeacherDeskIcon = [
  1361. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1362. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1364. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1369. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1370. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1374. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1375. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1376. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1377. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1378. ];
  1379. //nsfx
  1380. U.MD.D.I.nsfxStudentDeskIcon = [
  1381. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. ];
  1386. //stia
  1387. U.MD.D.I.stiaTeacherDeskIcon = [
  1388. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1389. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1390. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1391. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1392. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1395. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1396. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1397. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1398. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1399. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1400. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1401. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1402. ];
  1403. //stia
  1404. U.MD.D.I.stiaStudentDeskIcon = [
  1405. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1406. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1407. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1409. ];
  1410. //szdjg
  1411. U.MD.D.I.szdjgTeacherDeskIcon = [
  1412. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1413. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgStudentDeskIcon = [
  1417. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1418. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1419. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1420. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1421. ];
  1422. //010607
  1423. U.MD.D.I.x010607TeacherDeskIcon = [
  1424. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1425. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1426. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1427. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1428. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1429. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1430. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1431. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1432. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1435. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1436. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1437. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1438. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1439. ];
  1440. //010607
  1441. U.MD.D.I.x010607StudentDeskIcon = [
  1442. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1444. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. ];
  1447. //010608
  1448. U.MD.D.I.x010608TeacherDeskIcon = [
  1449. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1450. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1451. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1452. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1453. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1454. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1455. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1456. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1457. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1459. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1460. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1461. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1462. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1463. ];
  1464. //010608
  1465. U.MD.D.I.x010608StudentDeskIcon = [
  1466. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1467. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1470. ];
  1471. //xhly
  1472. U.MD.D.I.xhlyTeacherDeskIcon = [
  1473. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1474. ];
  1475. //010608
  1476. U.MD.D.I.xhlyStudentDeskIcon = [
  1477. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1478. ];
  1479. //北师大
  1480. U.MD.D.I.BSDNSteacherDeskIcon = [
  1481. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1482. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1484. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1485. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1488. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1491. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1492. ];
  1493. //北师大
  1494. U.MD.D.I.BSDNSstudentDeskIcon = [
  1495. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1496. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1497. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. ];
  1500. //CUHK_EDU
  1501. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1504. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1505. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1508. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1512. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1513. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1514. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1515. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1516. ];
  1517. //CUHK_EDU
  1518. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1519. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1521. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1523. ];
  1524. //010503
  1525. U.MD.D.I.x010503TeacherDeskIcon = [
  1526. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1527. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1529. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1530. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1531. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1532. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1533. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1534. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1535. ];
  1536. //010503
  1537. U.MD.D.I.x010503StudentDeskIcon = [
  1538. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //SPROUT Lab
  1544. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1545. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1548. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1549. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1552. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1553. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1554. ];
  1555. //SPROUT Lab
  1556. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1557. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1558. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1559. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1560. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1561. ];
  1562. //010204
  1563. U.MD.D.I.x010204TeacherDeskIcon = [
  1564. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1565. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1566. ];
  1567. //010204
  1568. U.MD.D.I.x010204StudentDeskIcon = [
  1569. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1570. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1571. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1572. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1573. ];
  1574. //trail
  1575. U.MD.D.I.trailTeacherDeskIcon = [
  1576. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1577. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. ];
  1579. //trail
  1580. U.MD.D.I.trailStudentDeskIcon = [
  1581. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1582. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1583. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1584. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. ];
  1586. //010504
  1587. U.MD.D.I.x010504TeacherDeskIcon = [
  1588. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1589. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1590. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1591. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1592. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1593. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1594. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1595. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1596. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1597. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1598. ];
  1599. //010504
  1600. U.MD.D.I.x010504StudentDeskIcon = [
  1601. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1602. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1603. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1604. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1605. ];
  1606. //SCNUET
  1607. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1608. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1609. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1610. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1612. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1613. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1614. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1616. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1618. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1620. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1621. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1622. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1623. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1624. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1625. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1626. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1627. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1628. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1629. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1630. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1631. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1632. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1633. ];
  1634. //SCNUET
  1635. U.MD.D.I.SCNUETAdminDeskIcon = [
  1636. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1637. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1638. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1639. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1640. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1641. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1642. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1643. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1644. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1645. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1646. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1647. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1648. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1649. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1650. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1652. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1653. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1654. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1655. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1656. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1657. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1658. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1659. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1660. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1661. ];
  1662. //SCNUET
  1663. U.MD.D.I.SCNUETStudentDeskIcon = [
  1664. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1665. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1666. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1668. ];
  1669. //x020201
  1670. U.MD.D.I.x020201TeacherDeskIcon = [
  1671. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1672. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1673. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1674. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1675. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1676. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1677. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1678. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1679. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1680. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1681. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1682. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1683. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1684. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1685. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1686. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1687. ];
  1688. //x020201
  1689. U.MD.D.I.x020201AdminDeskIcon = [
  1690. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1691. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1692. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1693. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1694. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1695. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1696. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1697. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1698. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1699. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1700. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1701. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1702. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1703. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1704. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1705. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1707. ];
  1708. //020201
  1709. U.MD.D.I.x020201StudentDeskIcon = [
  1710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1714. ];
  1715. //010611
  1716. U.MD.D.I.x010611TeacherDeskIcon = [
  1717. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1718. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1719. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1720. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1721. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1722. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1723. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1724. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1725. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1726. ];
  1727. //010611
  1728. U.MD.D.I.x010611StudentDeskIcon = [
  1729. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1731. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1732. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1733. ];
  1734. //tianyuan
  1735. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1736. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1737. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1738. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1739. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1740. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1741. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1742. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1743. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1744. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1745. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1746. ];
  1747. //010611
  1748. U.MD.D.I.tianyuanStudentDeskIcon = [
  1749. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1750. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1751. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1752. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1753. ];
  1754. //#region 桌面初始化a
  1755. /**
  1756. * 初始化桌面的起始函数
  1757. *
  1758. */
  1759. U.MD.D.I.init = function () {
  1760. if ($("#U_MD_D_K")[0]) {
  1761. //初始化桌面图标
  1762. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1763. // var clickUrl = ':12588/requestIp.php';
  1764. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1765. // U.MD.D.I.Ip = data;
  1766. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1767. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1768. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1769. // })
  1770. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1771. // })
  1772. }
  1773. }
  1774. /**
  1775. * 模式切换
  1776. *
  1777. */
  1778. U.MD.D.I.ModeCheck = function (type) {
  1779. if (US.Config.type == type) {
  1780. return
  1781. }
  1782. US.Config.type = type
  1783. $('.U_PBL_Check .active')[0].className = ''
  1784. if (type == 1) {
  1785. $('.U_PBL_Check div')[0].className = 'active'
  1786. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1787. } else {
  1788. $('.U_PBL_Check div')[1].className = 'active'
  1789. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1790. }
  1791. //初始化桌面图标
  1792. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1793. if (type == 2) {
  1794. U.MD.D.I.openApplication("project")
  1795. }
  1796. }
  1797. /**
  1798. * 隐藏任务栏
  1799. *
  1800. * @param {element} 桌面元素
  1801. */
  1802. U.MD.D.I.hiddenTaskbar = function (el) {
  1803. //任务栏位置变小
  1804. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1805. //桌面的位置变大
  1806. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1807. }
  1808. /**
  1809. * 隐藏任务栏
  1810. *
  1811. * @param {element} 桌面元素
  1812. */
  1813. U.MD.D.I.hiddenTaskbarout = function (el) {
  1814. //任务栏位置变小
  1815. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1816. //任务栏位置变化
  1817. U.selectEl(el).css({ "bottom": "-60px" });
  1818. //桌面的位置变大
  1819. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1820. }
  1821. }
  1822. /**
  1823. * 初始化打印桌面图标
  1824. *
  1825. * @param {element} 桌面元素
  1826. */
  1827. U.MD.D.I.initDesktopIcons = function (el, type) {
  1828. var i, //用于循环
  1829. _content, //桌面图标元素
  1830. _iconcontent, //桌面图标元素
  1831. _frag = $$("frag"), //定义一个碎片元素
  1832. _type = US.userInfo.type,
  1833. _org = US.userInfo.org,
  1834. _oid = US.userInfo.organizeid,
  1835. _role = US.userInfo.role,
  1836. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1837. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1838. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1839. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1840. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1841. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1842. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1843. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1844. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1845. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1846. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1847. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1848. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1849. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1850. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1851. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1852. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1853. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1854. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1855. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1856. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1857. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1858. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1859. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1860. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1861. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1862. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1863. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1864. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1865. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1866. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1867. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1868. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1869. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1870. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1871. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1872. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1873. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1874. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1875. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1876. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1877. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1878. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1879. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1880. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1881. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1882. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1883. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1884. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1885. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1886. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1887. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1888. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1889. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1890. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1891. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1892. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1893. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1894. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1895. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1896. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1897. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1898. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1899. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1900. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1901. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1902. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1903. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1904. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1905. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1906. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1907. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1908. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1909. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1910. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1911. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1912. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1913. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1914. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1915. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1916. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1917. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1918. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1919. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1920. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1921. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1922. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1923. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1924. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1925. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1926. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1927. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1928. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1929. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1930. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1931. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1932. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1933. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1934. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1935. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1936. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1937. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1938. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1939. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1940. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1941. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1942. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1943. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1944. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1945. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1946. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1947. 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'];
  1948. 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'];
  1949. //清楚桌面图标
  1950. el.innerHTML = "";
  1951. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1952. _teacherDesktopIconInfo.push(
  1953. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1954. { "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)" } },
  1955. )
  1956. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1957. }
  1958. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1959. _teacherDesktopIconInfo.push(
  1960. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1961. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1962. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1963. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1964. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1965. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1966. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1967. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1968. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1969. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1970. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1971. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1972. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1973. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1974. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1975. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1976. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1977. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1978. )
  1979. }
  1980. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1981. _teacherDesktopIconInfo.push(
  1982. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1983. )
  1984. }
  1985. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1986. // _teacherDesktopIconInfo.push(
  1987. // )
  1988. // }
  1989. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1990. _teacherDesktopIconInfo.push(
  1991. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1992. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1993. )
  1994. }
  1995. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1996. _teacherDesktopIconInfo.push(
  1997. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1998. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1999. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2000. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2001. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2002. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2003. )
  2004. _studentDesktopIconInfo.push(
  2005. )
  2006. }
  2007. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2008. _teacherDesktopIconInfo.push(
  2009. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2010. )
  2011. _studentDesktopIconInfo.push(
  2012. )
  2013. }
  2014. //010606 组织
  2015. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2016. _teacherDesktopIconInfo.push(
  2017. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2018. )
  2019. _studentDesktopIconInfo.push(
  2020. )
  2021. }
  2022. //麒麟二中 和 民新小学
  2023. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2024. _teacherDesktopIconInfo.push(
  2025. )
  2026. }
  2027. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2028. _teacherDesktopIconInfo.push(
  2029. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2030. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2031. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2032. )
  2033. }
  2034. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2035. _hkTeacherDeskIconInfo.push(
  2036. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2037. )
  2038. }
  2039. //北师大附中(010601)
  2040. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2041. // _teacherDesktopIconInfo.push(
  2042. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2043. // )
  2044. // _studentDesktopIconInfo.push(
  2045. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2046. // )
  2047. // }
  2048. //樂善堂余近卿中學
  2049. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2050. _teacherDesktopIconInfo.push(
  2051. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2052. )
  2053. }
  2054. // Education Artificial Intelligence
  2055. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2056. _teacherDesktopIconInfo.push(
  2057. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2058. )
  2059. }
  2060. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2061. _teacherDesktopIconInfo.push(
  2062. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2063. )
  2064. }
  2065. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2066. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2067. _teacherDesktopIconInfo.push(
  2068. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2069. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2070. )
  2071. }
  2072. //麒麟二中
  2073. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2074. _studentDesktopIconInfo.push(
  2075. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2076. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2077. )
  2078. }
  2079. //万科双语
  2080. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2081. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2082. if (el.Name == '项目管理') {
  2083. el.Name = 'PBL项目'
  2084. }
  2085. return el
  2086. })
  2087. _studentDesktopIconInfo3.push(
  2088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2089. )
  2090. }
  2091. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2092. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2093. return el.Name != '魔盒识字' && el.Name != '24点'
  2094. })
  2095. }
  2096. 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) {
  2097. _studentDesktopIconInfo.push(
  2098. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2099. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2100. )
  2101. }
  2102. //循环创建桌面图标
  2103. if (type == 1) {
  2104. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2105. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2106. _content = $$("div", {
  2107. className: "U_MD_D_KO",
  2108. "onmousedown": U.UF.C.closure(function (obj) {
  2109. //防止拖动图标即打开了桌面应用
  2110. U.MD.D.click(this, obj);
  2111. }, [_studentDesktopIconInfo[i]]),
  2112. "onclick": U.UF.C.closure(function (obj) {
  2113. //防止拖动图标即打开了桌面应用
  2114. U.MD.D.click(this, obj);
  2115. }, [_studentDesktopIconInfo[i]])
  2116. }, _frag); //
  2117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2120. }
  2121. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2122. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2123. _content = $$("div", {
  2124. className: "U_MD_D_KO",
  2125. "onmousedown": U.UF.C.closure(function (obj) {
  2126. //防止拖动图标即打开了桌面应用
  2127. U.MD.D.click(this, obj);
  2128. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2129. "onclick": U.UF.C.closure(function (obj) {
  2130. //防止拖动图标即打开了桌面应用
  2131. U.MD.D.click(this, obj);
  2132. }, [_hkZJLSStudentDeskIconInfo[i]])
  2133. }, _frag); //
  2134. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2135. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2136. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2137. } //
  2138. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2139. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2140. _content = $$("div", {
  2141. className: "U_MD_D_KO",
  2142. "onmousedown": U.UF.C.closure(function (obj) {
  2143. //防止拖动图标即打开了桌面应用
  2144. U.MD.D.click(this, obj);
  2145. }, [_ytyStudentDeskIconInfo[i]]),
  2146. "onclick": U.UF.C.closure(function (obj) {
  2147. //防止拖动图标即打开了桌面应用
  2148. U.MD.D.click(this, obj);
  2149. }, [_ytyStudentDeskIconInfo[i]])
  2150. }, _frag); //
  2151. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2152. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2153. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2154. } //
  2155. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2156. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2157. _content = $$("div", {
  2158. className: "U_MD_D_KO",
  2159. "onmousedown": U.UF.C.closure(function (obj) {
  2160. //防止拖动图标即打开了桌面应用
  2161. U.MD.D.click(this, obj);
  2162. }, [_jccssylStudentDeskIconInfo[i]]),
  2163. "onclick": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_jccssylStudentDeskIconInfo[i]])
  2167. }, _frag); //
  2168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2171. }
  2172. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2173. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2174. _content = $$("div", {
  2175. className: "U_MD_D_KO",
  2176. "onmousedown": U.UF.C.closure(function (obj) {
  2177. //防止拖动图标即打开了桌面应用
  2178. U.MD.D.click(this, obj);
  2179. }, [_scnuaiStudentDeskIconInfo[i]]),
  2180. "onclick": U.UF.C.closure(function (obj) {
  2181. //防止拖动图标即打开了桌面应用
  2182. U.MD.D.click(this, obj);
  2183. }, [_scnuaiStudentDeskIconInfo[i]])
  2184. }, _frag); //
  2185. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2186. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2187. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2188. }
  2189. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2190. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2191. _content = $$("div", {
  2192. className: "U_MD_D_KO",
  2193. "onmousedown": U.UF.C.closure(function (obj) {
  2194. //防止拖动图标即打开了桌面应用
  2195. U.MD.D.click(this, obj);
  2196. }, [_caleStudentDeskIconInfo[i]]),
  2197. "onclick": U.UF.C.closure(function (obj) {
  2198. //防止拖动图标即打开了桌面应用
  2199. U.MD.D.click(this, obj);
  2200. }, [_caleStudentDeskIconInfo[i]])
  2201. }, _frag); //
  2202. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2203. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2204. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2205. }
  2206. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2207. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2208. _content = $$("div", {
  2209. className: "U_MD_D_KO",
  2210. "onmousedown": U.UF.C.closure(function (obj) {
  2211. //防止拖动图标即打开了桌面应用
  2212. U.MD.D.click(this, obj);
  2213. }, [_thuioeStudentDeskIconInfo[i]]),
  2214. "onclick": U.UF.C.closure(function (obj) {
  2215. //防止拖动图标即打开了桌面应用
  2216. U.MD.D.click(this, obj);
  2217. }, [_thuioeStudentDeskIconInfo[i]])
  2218. }, _frag); //
  2219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2222. }
  2223. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2224. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2225. _content = $$("div", {
  2226. className: "U_MD_D_KO",
  2227. "onmousedown": U.UF.C.closure(function (obj) {
  2228. //防止拖动图标即打开了桌面应用
  2229. U.MD.D.click(this, obj);
  2230. }, [_tpcStudentDeskIconInfo[i]]),
  2231. "onclick": U.UF.C.closure(function (obj) {
  2232. //防止拖动图标即打开了桌面应用
  2233. U.MD.D.click(this, obj);
  2234. }, [_tpcStudentDeskIconInfo[i]])
  2235. }, _frag); //
  2236. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2237. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2238. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2239. } //
  2240. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2241. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2242. _content = $$("div", {
  2243. className: "U_MD_D_KO",
  2244. "onmousedown": U.UF.C.closure(function (obj) {
  2245. //防止拖动图标即打开了桌面应用
  2246. U.MD.D.click(this, obj);
  2247. }, [_chjyjStudentDeskIconInfo[i]]),
  2248. "onclick": U.UF.C.closure(function (obj) {
  2249. //防止拖动图标即打开了桌面应用
  2250. U.MD.D.click(this, obj);
  2251. }, [_chjyjStudentDeskIconInfo[i]])
  2252. }, _frag); //
  2253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2256. }
  2257. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2258. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2259. _content = $$("div", {
  2260. className: "U_MD_D_KO",
  2261. "onmousedown": U.UF.C.closure(function (obj) {
  2262. //防止拖动图标即打开了桌面应用
  2263. U.MD.D.click(this, obj);
  2264. }, [_szjkyStudentDeskIconInfo[i]]),
  2265. "onclick": U.UF.C.closure(function (obj) {
  2266. //防止拖动图标即打开了桌面应用
  2267. U.MD.D.click(this, obj);
  2268. }, [_szjkyStudentDeskIconInfo[i]])
  2269. }, _frag); //
  2270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2273. }
  2274. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2275. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2276. _content = $$("div", {
  2277. className: "U_MD_D_KO",
  2278. "onmousedown": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_x020201StudentDeskIconInfo[i]]),
  2282. "onclick": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_x020201StudentDeskIconInfo[i]])
  2286. }, _frag); //
  2287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2290. }
  2291. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2292. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2293. _content = $$("div", {
  2294. className: "U_MD_D_KO",
  2295. "onmousedown": U.UF.C.closure(function (obj) {
  2296. //防止拖动图标即打开了桌面应用
  2297. U.MD.D.click(this, obj);
  2298. }, [_SCNUETStudentDeskIconInfo[i]]),
  2299. "onclick": U.UF.C.closure(function (obj) {
  2300. //防止拖动图标即打开了桌面应用
  2301. U.MD.D.click(this, obj);
  2302. }, [_SCNUETStudentDeskIconInfo[i]])
  2303. }, _frag); //
  2304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2307. }
  2308. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2309. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2310. _content = $$("div", {
  2311. className: "U_MD_D_KO",
  2312. "onmousedown": U.UF.C.closure(function (obj) {
  2313. //防止拖动图标即打开了桌面应用
  2314. U.MD.D.click(this, obj);
  2315. }, [_dseiStudentDeskIconInfo[i]]),
  2316. "onclick": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_dseiStudentDeskIconInfo[i]])
  2320. }, _frag); //
  2321. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2322. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2323. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2324. }
  2325. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2326. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2327. _content = $$("div", {
  2328. className: "U_MD_D_KO",
  2329. "onmousedown": U.UF.C.closure(function (obj) {
  2330. //防止拖动图标即打开了桌面应用
  2331. U.MD.D.click(this, obj);
  2332. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2333. "onclick": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2337. }, _frag); //
  2338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2341. }
  2342. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2343. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2344. _content = $$("div", {
  2345. className: "U_MD_D_KO",
  2346. "onmousedown": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_nsfxStudentDeskIconInfo[i]]),
  2350. "onclick": U.UF.C.closure(function (obj) {
  2351. //防止拖动图标即打开了桌面应用
  2352. U.MD.D.click(this, obj);
  2353. }, [_nsfxStudentDeskIconInfo[i]])
  2354. }, _frag); //
  2355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2358. }
  2359. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2360. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2361. _content = $$("div", {
  2362. className: "U_MD_D_KO",
  2363. "onmousedown": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_stiaStudentDeskIconInfo[i]]),
  2367. "onclick": U.UF.C.closure(function (obj) {
  2368. //防止拖动图标即打开了桌面应用
  2369. U.MD.D.click(this, obj);
  2370. }, [_stiaStudentDeskIconInfo[i]])
  2371. }, _frag); //
  2372. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2373. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2374. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2375. }
  2376. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2377. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2378. _content = $$("div", {
  2379. className: "U_MD_D_KO",
  2380. "onmousedown": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_szdjgStudentDeskIconInfo[i]]),
  2384. "onclick": U.UF.C.closure(function (obj) {
  2385. //防止拖动图标即打开了桌面应用
  2386. U.MD.D.click(this, obj);
  2387. }, [_szdjgStudentDeskIconInfo[i]])
  2388. }, _frag); //
  2389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2392. }
  2393. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2394. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2395. _content = $$("div", {
  2396. className: "U_MD_D_KO",
  2397. "onmousedown": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_x010607StudentDeskIconInfo[i]]),
  2401. "onclick": U.UF.C.closure(function (obj) {
  2402. //防止拖动图标即打开了桌面应用
  2403. U.MD.D.click(this, obj);
  2404. }, [_x010607StudentDeskIconInfo[i]])
  2405. }, _frag); //
  2406. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2407. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2408. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2409. }
  2410. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2411. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2412. _content = $$("div", {
  2413. className: "U_MD_D_KO",
  2414. "onmousedown": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_xhlyStudentDeskIconInfo[i]]),
  2418. "onclick": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_xhlyStudentDeskIconInfo[i]])
  2422. }, _frag); //
  2423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2426. }
  2427. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2428. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2429. _content = $$("div", {
  2430. className: "U_MD_D_KO",
  2431. "onmousedown": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2435. "onclick": U.UF.C.closure(function (obj) {
  2436. //防止拖动图标即打开了桌面应用
  2437. U.MD.D.click(this, obj);
  2438. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2439. }, _frag); //
  2440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2443. }
  2444. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2445. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2446. _content = $$("div", {
  2447. className: "U_MD_D_KO",
  2448. "onmousedown": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_x010503StudentDeskIconInfo[i]]),
  2452. "onclick": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_x010503StudentDeskIconInfo[i]])
  2456. }, _frag); //
  2457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2460. }
  2461. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2462. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2463. _content = $$("div", {
  2464. className: "U_MD_D_KO",
  2465. "onmousedown": U.UF.C.closure(function (obj) {
  2466. //防止拖动图标即打开了桌面应用
  2467. U.MD.D.click(this, obj);
  2468. }, [_x010504StudentDeskIconInfo[i]]),
  2469. "onclick": U.UF.C.closure(function (obj) {
  2470. //防止拖动图标即打开了桌面应用
  2471. U.MD.D.click(this, obj);
  2472. }, [_x010504StudentDeskIconInfo[i]])
  2473. }, _frag); //
  2474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2477. }
  2478. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2479. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2480. _content = $$("div", {
  2481. className: "U_MD_D_KO",
  2482. "onmousedown": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_x010204StudentDeskIconInfo[i]]),
  2486. "onclick": U.UF.C.closure(function (obj) {
  2487. //防止拖动图标即打开了桌面应用
  2488. U.MD.D.click(this, obj);
  2489. }, [_x010204StudentDeskIconInfo[i]])
  2490. }, _frag); //
  2491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2494. }
  2495. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2496. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2497. _content = $$("div", {
  2498. className: "U_MD_D_KO",
  2499. "onmousedown": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_trailStudentDeskIconInfo[i]]),
  2503. "onclick": U.UF.C.closure(function (obj) {
  2504. //防止拖动图标即打开了桌面应用
  2505. U.MD.D.click(this, obj);
  2506. }, [_trailStudentDeskIconInfo[i]])
  2507. }, _frag); //
  2508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2511. }
  2512. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2513. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2514. _content = $$("div", {
  2515. className: "U_MD_D_KO",
  2516. "onmousedown": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2520. "onclick": U.UF.C.closure(function (obj) {
  2521. //防止拖动图标即打开了桌面应用
  2522. U.MD.D.click(this, obj);
  2523. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2524. }, _frag); //
  2525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2528. }
  2529. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2530. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2531. _content = $$("div", {
  2532. className: "U_MD_D_KO",
  2533. "onmousedown": U.UF.C.closure(function (obj) {
  2534. //防止拖动图标即打开了桌面应用
  2535. U.MD.D.click(this, obj);
  2536. }, [_x010608StudentDeskIconInfo[i]]),
  2537. "onclick": U.UF.C.closure(function (obj) {
  2538. //防止拖动图标即打开了桌面应用
  2539. U.MD.D.click(this, obj);
  2540. }, [_x010608StudentDeskIconInfo[i]])
  2541. }, _frag); //
  2542. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2543. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2544. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2545. }
  2546. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2547. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2548. _content = $$("div", {
  2549. className: "U_MD_D_KO",
  2550. "onmousedown": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_x010611StudentDeskIconInfo[i]]),
  2554. "onclick": U.UF.C.closure(function (obj) {
  2555. //防止拖动图标即打开了桌面应用
  2556. U.MD.D.click(this, obj);
  2557. }, [_x010611StudentDeskIconInfo[i]])
  2558. }, _frag); //
  2559. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2560. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2561. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2562. }
  2563. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2564. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2565. _content = $$("div", {
  2566. className: "U_MD_D_KO",
  2567. "onmousedown": U.UF.C.closure(function (obj) {
  2568. //防止拖动图标即打开了桌面应用
  2569. U.MD.D.click(this, obj);
  2570. }, [_tianyuantudentDeskIconInfo[i]]),
  2571. "onclick": U.UF.C.closure(function (obj) {
  2572. //防止拖动图标即打开了桌面应用
  2573. U.MD.D.click(this, obj);
  2574. }, [_tianyuantudentDeskIconInfo[i]])
  2575. }, _frag); //
  2576. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2577. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2578. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2579. }
  2580. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2581. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2582. _content = $$("div", {
  2583. className: "U_MD_D_KO",
  2584. "onmousedown": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_siesStudentDeskIconInfo[i]]),
  2588. "onclick": U.UF.C.closure(function (obj) {
  2589. //防止拖动图标即打开了桌面应用
  2590. U.MD.D.click(this, obj);
  2591. }, [_siesStudentDeskIconInfo[i]])
  2592. }, _frag); //
  2593. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2594. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2595. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2596. }
  2597. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2598. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2599. _content = $$("div", {
  2600. className: "U_MD_D_KO",
  2601. "onmousedown": U.UF.C.closure(function (obj) {
  2602. //防止拖动图标即打开了桌面应用
  2603. U.MD.D.click(this, obj);
  2604. }, [_guzmsStudentDeskIconInfo[i]]),
  2605. "onclick": U.UF.C.closure(function (obj) {
  2606. //防止拖动图标即打开了桌面应用
  2607. U.MD.D.click(this, obj);
  2608. }, [_guzmsStudentDeskIconInfo[i]])
  2609. }, _frag); //
  2610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2613. }
  2614. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2615. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2616. _content = $$("div", {
  2617. className: "U_MD_D_KO",
  2618. "onmousedown": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_hkStudentDeskIconInfo[i]]),
  2622. "onclick": U.UF.C.closure(function (obj) {
  2623. //防止拖动图标即打开了桌面应用
  2624. U.MD.D.click(this, obj);
  2625. }, [_hkStudentDeskIconInfo[i]])
  2626. }, _frag); //
  2627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2630. }
  2631. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2632. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2633. _content = $$("div", {
  2634. className: "U_MD_D_KO",
  2635. "onmousedown": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_hkaceStudentDeskIconInfo[i]]),
  2639. "onclick": U.UF.C.closure(function (obj) {
  2640. //防止拖动图标即打开了桌面应用
  2641. U.MD.D.click(this, obj);
  2642. }, [_hkaceStudentDeskIconInfo[i]])
  2643. }, _frag); //
  2644. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2645. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2646. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2647. }
  2648. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2649. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2650. _content = $$("div", {
  2651. className: "U_MD_D_KO",
  2652. "onmousedown": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2656. "onclick": U.UF.C.closure(function (obj) {
  2657. //防止拖动图标即打开了桌面应用
  2658. U.MD.D.click(this, obj);
  2659. }, [_BSDNSstudentDesktopIconInfo[i]])
  2660. }, _frag); //
  2661. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2662. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2663. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2664. }
  2665. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2666. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2667. _content = $$("div", {
  2668. className: "U_MD_D_KO",
  2669. "onmousedown": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_cocobizStudentDeskIconInfo[i]]),
  2673. "onclick": U.UF.C.closure(function (obj) {
  2674. //防止拖动图标即打开了桌面应用
  2675. U.MD.D.click(this, obj);
  2676. }, [_cocobizStudentDeskIconInfo[i]])
  2677. }, _frag); //
  2678. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2679. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2680. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2681. }
  2682. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2683. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2684. _content = $$("div", {
  2685. className: "U_MD_D_KO",
  2686. "onmousedown": U.UF.C.closure(function (obj) {
  2687. //防止拖动图标即打开了桌面应用
  2688. U.MD.D.click(this, obj);
  2689. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2690. "onclick": U.UF.C.closure(function (obj) {
  2691. //防止拖动图标即打开了桌面应用
  2692. U.MD.D.click(this, obj);
  2693. }, [_xxzjkyStudentDeskIconInfo[i]])
  2694. }, _frag); //
  2695. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2696. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2697. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2698. }
  2699. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2700. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2701. _content = $$("div", {
  2702. className: "U_MD_D_KO",
  2703. "onmousedown": U.UF.C.closure(function (obj) {
  2704. //防止拖动图标即打开了桌面应用
  2705. U.MD.D.click(this, obj);
  2706. }, [_studentDesktopIconInfo[i]]),
  2707. "onclick": U.UF.C.closure(function (obj) {
  2708. //防止拖动图标即打开了桌面应用
  2709. U.MD.D.click(this, obj);
  2710. }, [_studentDesktopIconInfo[i]])
  2711. }, _frag); //
  2712. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2713. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2714. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2715. }
  2716. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2717. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2718. _content = $$("div", {
  2719. className: "U_MD_D_KO",
  2720. "onmousedown": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_tcStudentDeskIconInfo[i]]),
  2724. "onclick": U.UF.C.closure(function (obj) {
  2725. //防止拖动图标即打开了桌面应用
  2726. U.MD.D.click(this, obj);
  2727. }, [_tcStudentDeskIconInfo[i]])
  2728. }, _frag); //
  2729. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2730. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2731. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2732. }
  2733. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2734. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2735. _content = $$("div", {
  2736. className: "U_MD_D_KO",
  2737. "onmousedown": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_szscStudentDeskIconInfo[i]]),
  2741. "onclick": U.UF.C.closure(function (obj) {
  2742. //防止拖动图标即打开了桌面应用
  2743. U.MD.D.click(this, obj);
  2744. }, [_szscStudentDeskIconInfo[i]])
  2745. }, _frag); //
  2746. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2747. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2748. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2749. }
  2750. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2751. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2752. _content = $$("div", {
  2753. className: "U_MD_D_KO",
  2754. "onmousedown": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_studentDesktopIconInfo3[i]]),
  2758. "onclick": U.UF.C.closure(function (obj) {
  2759. //防止拖动图标即打开了桌面应用
  2760. U.MD.D.click(this, obj);
  2761. }, [_studentDesktopIconInfo3[i]])
  2762. }, _frag); //
  2763. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2764. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2765. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2766. }
  2767. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2768. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2769. _content = $$("div", {
  2770. className: "U_MD_D_KO",
  2771. "onmousedown": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_studentDesktopIconInfo2[i]]),
  2775. "onclick": U.UF.C.closure(function (obj) {
  2776. //防止拖动图标即打开了桌面应用
  2777. U.MD.D.click(this, obj);
  2778. }, [_studentDesktopIconInfo2[i]])
  2779. }, _frag); //
  2780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2783. }
  2784. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2785. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2786. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2787. continue
  2788. }
  2789. _content = $$("div", {
  2790. className: "U_MD_D_KO",
  2791. "onmousedown": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_wanketeacherDesktopIconInfo[i]]),
  2795. "onclick": U.UF.C.closure(function (obj) {
  2796. //防止拖动图标即打开了桌面应用
  2797. U.MD.D.click(this, obj);
  2798. }, [_wanketeacherDesktopIconInfo[i]])
  2799. }, _frag); //
  2800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2803. }
  2804. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2805. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2806. _content = $$("div", {
  2807. className: "U_MD_D_KO",
  2808. "onmousedown": U.UF.C.closure(function (obj) {
  2809. //防止拖动图标即打开了桌面应用
  2810. U.MD.D.click(this, obj);
  2811. }, [_wankeAdminDesktopIconInfo[i]]),
  2812. "onclick": U.UF.C.closure(function (obj) {
  2813. //防止拖动图标即打开了桌面应用
  2814. U.MD.D.click(this, obj);
  2815. }, [_wankeAdminDesktopIconInfo[i]])
  2816. }, _frag); //
  2817. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2820. }
  2821. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2822. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2823. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2824. continue
  2825. }
  2826. _content = $$("div", {
  2827. className: "U_MD_D_KO",
  2828. "onmousedown": U.UF.C.closure(function (obj) {
  2829. //防止拖动图标即打开了桌面应用
  2830. U.MD.D.click(this, obj);
  2831. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2832. "onclick": U.UF.C.closure(function (obj) {
  2833. //防止拖动图标即打开了桌面应用
  2834. U.MD.D.click(this, obj);
  2835. }, [_scnuaiTeacherDeskIconInfo[i]])
  2836. }, _frag); //
  2837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2840. }
  2841. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2842. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2843. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2844. continue
  2845. }
  2846. _content = $$("div", {
  2847. className: "U_MD_D_KO",
  2848. "onmousedown": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2852. "onclick": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_BSDNSteacherDesktopIconInfo[i]])
  2856. }, _frag); //
  2857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2860. }
  2861. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2862. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2863. _content = $$("div", {
  2864. className: "U_MD_D_KO",
  2865. "onmousedown": U.UF.C.closure(function (obj) {
  2866. //防止拖动图标即打开了桌面应用
  2867. U.MD.D.click(this, obj);
  2868. }, [_scnuaiAdminDeskIconInfo[i]]),
  2869. "onclick": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_scnuaiAdminDeskIconInfo[i]])
  2873. }, _frag); //
  2874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2877. }
  2878. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2879. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2880. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2881. continue
  2882. }
  2883. _content = $$("div", {
  2884. className: "U_MD_D_KO",
  2885. "onmousedown": U.UF.C.closure(function (obj) {
  2886. //防止拖动图标即打开了桌面应用
  2887. U.MD.D.click(this, obj);
  2888. }, [_jccssylTeacherDeskIconInfo[i]]),
  2889. "onclick": U.UF.C.closure(function (obj) {
  2890. //防止拖动图标即打开了桌面应用
  2891. U.MD.D.click(this, obj);
  2892. }, [_jccssylTeacherDeskIconInfo[i]])
  2893. }, _frag); //
  2894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2897. }
  2898. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2899. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2900. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2901. continue
  2902. }
  2903. _content = $$("div", {
  2904. className: "U_MD_D_KO",
  2905. "onmousedown": U.UF.C.closure(function (obj) {
  2906. //防止拖动图标即打开了桌面应用
  2907. U.MD.D.click(this, obj);
  2908. }, [_caleTeacherDeskIconInfo[i]]),
  2909. "onclick": U.UF.C.closure(function (obj) {
  2910. //防止拖动图标即打开了桌面应用
  2911. U.MD.D.click(this, obj);
  2912. }, [_caleTeacherDeskIconInfo[i]])
  2913. }, _frag); //
  2914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2917. }
  2918. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2919. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2920. _content = $$("div", {
  2921. className: "U_MD_D_KO",
  2922. "onmousedown": U.UF.C.closure(function (obj) {
  2923. //防止拖动图标即打开了桌面应用
  2924. U.MD.D.click(this, obj);
  2925. }, [_tpcOrganizerDeskIconInfo[i]]),
  2926. "onclick": U.UF.C.closure(function (obj) {
  2927. //防止拖动图标即打开了桌面应用
  2928. U.MD.D.click(this, obj);
  2929. }, [_tpcOrganizerDeskIconInfo[i]])
  2930. }, _frag); //
  2931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2934. }
  2935. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2936. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2937. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2938. continue
  2939. }
  2940. _content = $$("div", {
  2941. className: "U_MD_D_KO",
  2942. "onmousedown": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_tpcTeacherDeskIconInfo[i]]),
  2946. "onclick": U.UF.C.closure(function (obj) {
  2947. //防止拖动图标即打开了桌面应用
  2948. U.MD.D.click(this, obj);
  2949. }, [_tpcTeacherDeskIconInfo[i]])
  2950. }, _frag); //
  2951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2954. }
  2955. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2956. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2957. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2958. continue
  2959. }
  2960. _content = $$("div", {
  2961. className: "U_MD_D_KO",
  2962. "onmousedown": U.UF.C.closure(function (obj) {
  2963. //防止拖动图标即打开了桌面应用
  2964. U.MD.D.click(this, obj);
  2965. }, [_teacherDesktopIconInfo2[i]]),
  2966. "onclick": U.UF.C.closure(function (obj) {
  2967. //防止拖动图标即打开了桌面应用
  2968. U.MD.D.click(this, obj);
  2969. }, [_teacherDesktopIconInfo2[i]])
  2970. }, _frag); //
  2971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2974. }
  2975. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2976. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2977. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2978. continue
  2979. }
  2980. _content = $$("div", {
  2981. className: "U_MD_D_KO",
  2982. "onmousedown": U.UF.C.closure(function (obj) {
  2983. //防止拖动图标即打开了桌面应用
  2984. U.MD.D.click(this, obj);
  2985. }, [_thuioeTeacherDeskIconInfo[i]]),
  2986. "onclick": U.UF.C.closure(function (obj) {
  2987. //防止拖动图标即打开了桌面应用
  2988. U.MD.D.click(this, obj);
  2989. }, [_thuioeTeacherDeskIconInfo[i]])
  2990. }, _frag); //
  2991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2994. }
  2995. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2996. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2997. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2998. continue
  2999. }
  3000. _content = $$("div", {
  3001. className: "U_MD_D_KO",
  3002. "onmousedown": U.UF.C.closure(function (obj) {
  3003. //防止拖动图标即打开了桌面应用
  3004. U.MD.D.click(this, obj);
  3005. }, [_lotechTeacherDeskIconInfo[i]]),
  3006. "onclick": U.UF.C.closure(function (obj) {
  3007. //防止拖动图标即打开了桌面应用
  3008. U.MD.D.click(this, obj);
  3009. }, [_lotechTeacherDeskIconInfo[i]])
  3010. }, _frag); //
  3011. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3012. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3013. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3014. }//
  3015. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3016. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3017. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3018. continue
  3019. }
  3020. _content = $$("div", {
  3021. className: "U_MD_D_KO",
  3022. "onmousedown": U.UF.C.closure(function (obj) {
  3023. //防止拖动图标即打开了桌面应用
  3024. U.MD.D.click(this, obj);
  3025. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3026. "onclick": U.UF.C.closure(function (obj) {
  3027. //防止拖动图标即打开了桌面应用
  3028. U.MD.D.click(this, obj);
  3029. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3030. }, _frag); //
  3031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3034. }
  3035. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3036. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3037. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3038. continue
  3039. }
  3040. _content = $$("div", {
  3041. className: "U_MD_D_KO",
  3042. "onmousedown": U.UF.C.closure(function (obj) {
  3043. //防止拖动图标即打开了桌面应用
  3044. U.MD.D.click(this, obj);
  3045. }, [_siesTeacherDeskIconInfo[i]]),
  3046. "onclick": U.UF.C.closure(function (obj) {
  3047. //防止拖动图标即打开了桌面应用
  3048. U.MD.D.click(this, obj);
  3049. }, [_siesTeacherDeskIconInfo[i]])
  3050. }, _frag); //
  3051. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3052. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3053. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3054. }
  3055. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3056. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3057. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3058. continue
  3059. }
  3060. _content = $$("div", {
  3061. className: "U_MD_D_KO",
  3062. "onmousedown": U.UF.C.closure(function (obj) {
  3063. //防止拖动图标即打开了桌面应用
  3064. U.MD.D.click(this, obj);
  3065. }, [_guzmsTeacherDeskIconInfo[i]]),
  3066. "onclick": U.UF.C.closure(function (obj) {
  3067. //防止拖动图标即打开了桌面应用
  3068. U.MD.D.click(this, obj);
  3069. }, [_guzmsTeacherDeskIconInfo[i]])
  3070. }, _frag); //
  3071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3074. }
  3075. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3076. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3077. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3078. continue
  3079. }
  3080. _content = $$("div", {
  3081. className: "U_MD_D_KO",
  3082. "onmousedown": U.UF.C.closure(function (obj) {
  3083. //防止拖动图标即打开了桌面应用
  3084. U.MD.D.click(this, obj);
  3085. }, [_longhuaTeacherDeskIconInfo[i]]),
  3086. "onclick": U.UF.C.closure(function (obj) {
  3087. //防止拖动图标即打开了桌面应用
  3088. U.MD.D.click(this, obj);
  3089. }, [_longhuaTeacherDeskIconInfo[i]])
  3090. }, _frag); //
  3091. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3092. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3093. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3094. }
  3095. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3096. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3097. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3098. continue
  3099. }
  3100. _content = $$("div", {
  3101. className: "U_MD_D_KO",
  3102. "onmousedown": U.UF.C.closure(function (obj) {
  3103. //防止拖动图标即打开了桌面应用
  3104. U.MD.D.click(this, obj);
  3105. }, [_ytyTeacherDeskIconInfo[i]]),
  3106. "onclick": U.UF.C.closure(function (obj) {
  3107. //防止拖动图标即打开了桌面应用
  3108. U.MD.D.click(this, obj);
  3109. }, [_ytyTeacherDeskIconInfo[i]])
  3110. }, _frag); //
  3111. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3112. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3113. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3114. }
  3115. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3116. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3117. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3118. continue
  3119. }
  3120. _content = $$("div", {
  3121. className: "U_MD_D_KO",
  3122. "onmousedown": U.UF.C.closure(function (obj) {
  3123. //防止拖动图标即打开了桌面应用
  3124. U.MD.D.click(this, obj);
  3125. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3126. "onclick": U.UF.C.closure(function (obj) {
  3127. //防止拖动图标即打开了桌面应用
  3128. U.MD.D.click(this, obj);
  3129. }, [_yunhaiTeacherDeskIconInfo[i]])
  3130. }, _frag); //
  3131. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3132. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3133. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3134. } //_hkStudentDeskIconInfo
  3135. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3136. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3137. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3138. continue
  3139. }
  3140. _content = $$("div", {
  3141. className: "U_MD_D_KO",
  3142. "onmousedown": U.UF.C.closure(function (obj) {
  3143. //防止拖动图标即打开了桌面应用
  3144. U.MD.D.click(this, obj);
  3145. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3146. "onclick": U.UF.C.closure(function (obj) {
  3147. //防止拖动图标即打开了桌面应用
  3148. U.MD.D.click(this, obj);
  3149. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3150. }, _frag); //
  3151. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3152. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3153. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3154. }
  3155. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3156. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3157. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3158. continue
  3159. }
  3160. _content = $$("div", {
  3161. className: "U_MD_D_KO",
  3162. "onmousedown": U.UF.C.closure(function (obj) {
  3163. //防止拖动图标即打开了桌面应用
  3164. U.MD.D.click(this, obj);
  3165. }, [_hkTeacherDeskIconInfo[i]]),
  3166. "onclick": U.UF.C.closure(function (obj) {
  3167. //防止拖动图标即打开了桌面应用
  3168. U.MD.D.click(this, obj);
  3169. }, [_hkTeacherDeskIconInfo[i]])
  3170. }, _frag); //
  3171. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3174. }
  3175. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3176. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3177. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3178. continue
  3179. }
  3180. _content = $$("div", {
  3181. className: "U_MD_D_KO",
  3182. "onmousedown": U.UF.C.closure(function (obj) {
  3183. //防止拖动图标即打开了桌面应用
  3184. U.MD.D.click(this, obj);
  3185. }, [_hkaceTeacherDeskIconInfo[i]]),
  3186. "onclick": U.UF.C.closure(function (obj) {
  3187. //防止拖动图标即打开了桌面应用
  3188. U.MD.D.click(this, obj);
  3189. }, [_hkaceTeacherDeskIconInfo[i]])
  3190. }, _frag); //
  3191. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3192. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3193. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3194. }
  3195. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3196. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3197. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3198. continue
  3199. }
  3200. _content = $$("div", {
  3201. className: "U_MD_D_KO",
  3202. "onmousedown": U.UF.C.closure(function (obj) {
  3203. //防止拖动图标即打开了桌面应用
  3204. U.MD.D.click(this, obj);
  3205. }, [_cocobizTeacherDeskIconInfo[i]]),
  3206. "onclick": U.UF.C.closure(function (obj) {
  3207. //防止拖动图标即打开了桌面应用
  3208. U.MD.D.click(this, obj);
  3209. }, [_cocobizTeacherDeskIconInfo[i]])
  3210. }, _frag); //
  3211. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3212. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3213. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3214. }
  3215. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3216. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3217. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3218. continue
  3219. }
  3220. _content = $$("div", {
  3221. className: "U_MD_D_KO",
  3222. "onmousedown": U.UF.C.closure(function (obj) {
  3223. //防止拖动图标即打开了桌面应用
  3224. U.MD.D.click(this, obj);
  3225. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3226. "onclick": U.UF.C.closure(function (obj) {
  3227. //防止拖动图标即打开了桌面应用
  3228. U.MD.D.click(this, obj);
  3229. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3230. }, _frag); //
  3231. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3232. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3233. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3234. }
  3235. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3236. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3237. _content = $$("div", {
  3238. className: "U_MD_D_KO",
  3239. "onmousedown": U.UF.C.closure(function (obj) {
  3240. //防止拖动图标即打开了桌面应用
  3241. U.MD.D.click(this, obj);
  3242. }, [_gdjgAdminDeskIconInfo[i]]),
  3243. "onclick": U.UF.C.closure(function (obj) {
  3244. //防止拖动图标即打开了桌面应用
  3245. U.MD.D.click(this, obj);
  3246. }, [_gdjgAdminDeskIconInfo[i]])
  3247. }, _frag); //
  3248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3251. }
  3252. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3253. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3254. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3255. continue
  3256. }
  3257. _content = $$("div", {
  3258. className: "U_MD_D_KO",
  3259. "onmousedown": U.UF.C.closure(function (obj) {
  3260. //防止拖动图标即打开了桌面应用
  3261. U.MD.D.click(this, obj);
  3262. }, [_gdjgTeacherDeskIconInfo[i]]),
  3263. "onclick": U.UF.C.closure(function (obj) {
  3264. //防止拖动图标即打开了桌面应用
  3265. U.MD.D.click(this, obj);
  3266. }, [_gdjgTeacherDeskIconInfo[i]])
  3267. }, _frag); //
  3268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3271. }
  3272. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3273. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3274. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3275. continue
  3276. }
  3277. _content = $$("div", {
  3278. className: "U_MD_D_KO",
  3279. "onmousedown": U.UF.C.closure(function (obj) {
  3280. //防止拖动图标即打开了桌面应用
  3281. U.MD.D.click(this, obj);
  3282. }, [_szherTeacherDeskIconInfo[i]]),
  3283. "onclick": U.UF.C.closure(function (obj) {
  3284. //防止拖动图标即打开了桌面应用
  3285. U.MD.D.click(this, obj);
  3286. }, [_szherTeacherDeskIconInfo[i]])
  3287. }, _frag); //
  3288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3291. }
  3292. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3293. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3294. _content = $$("div", {
  3295. className: "U_MD_D_KO",
  3296. "onmousedown": U.UF.C.closure(function (obj) {
  3297. //防止拖动图标即打开了桌面应用
  3298. U.MD.D.click(this, obj);
  3299. }, [_heyuannAdminDeskIconInfo[i]]),
  3300. "onclick": U.UF.C.closure(function (obj) {
  3301. //防止拖动图标即打开了桌面应用
  3302. U.MD.D.click(this, obj);
  3303. }, [_heyuannAdminDeskIconInfo[i]])
  3304. }, _frag); //
  3305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3308. }
  3309. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3310. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3311. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3312. continue
  3313. }
  3314. _content = $$("div", {
  3315. className: "U_MD_D_KO",
  3316. "onmousedown": U.UF.C.closure(function (obj) {
  3317. //防止拖动图标即打开了桌面应用
  3318. U.MD.D.click(this, obj);
  3319. }, [_heyuanTeacherDeskIconInfo[i]]),
  3320. "onclick": U.UF.C.closure(function (obj) {
  3321. //防止拖动图标即打开了桌面应用
  3322. U.MD.D.click(this, obj);
  3323. }, [_heyuanTeacherDeskIconInfo[i]])
  3324. }, _frag); //
  3325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3328. } //
  3329. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3330. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3331. _content = $$("div", {
  3332. className: "U_MD_D_KO",
  3333. "onmousedown": U.UF.C.closure(function (obj) {
  3334. //防止拖动图标即打开了桌面应用
  3335. U.MD.D.click(this, obj);
  3336. }, [_dseiAdminDeskIconInfo[i]]),
  3337. "onclick": U.UF.C.closure(function (obj) {
  3338. //防止拖动图标即打开了桌面应用
  3339. U.MD.D.click(this, obj);
  3340. }, [_dseiAdminDeskIconInfo[i]])
  3341. }, _frag); //
  3342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3345. }
  3346. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3347. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3348. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3349. continue
  3350. }
  3351. _content = $$("div", {
  3352. className: "U_MD_D_KO",
  3353. "onmousedown": U.UF.C.closure(function (obj) {
  3354. //防止拖动图标即打开了桌面应用
  3355. U.MD.D.click(this, obj);
  3356. }, [_dseiTeacherDeskIconInfo[i]]),
  3357. "onclick": U.UF.C.closure(function (obj) {
  3358. //防止拖动图标即打开了桌面应用
  3359. U.MD.D.click(this, obj);
  3360. }, [_dseiTeacherDeskIconInfo[i]])
  3361. }, _frag); //
  3362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3365. } //
  3366. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3367. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3368. _content = $$("div", {
  3369. className: "U_MD_D_KO",
  3370. "onmousedown": U.UF.C.closure(function (obj) {
  3371. //防止拖动图标即打开了桌面应用
  3372. U.MD.D.click(this, obj);
  3373. }, [_chjyjAdminDeskIconInfo[i]]),
  3374. "onclick": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_chjyjAdminDeskIconInfo[i]])
  3378. }, _frag); //
  3379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3382. }//
  3383. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3384. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3385. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3386. continue
  3387. }
  3388. _content = $$("div", {
  3389. className: "U_MD_D_KO",
  3390. "onmousedown": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_chjyjTeacherDeskIconInfo[i]]),
  3394. "onclick": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_chjyjTeacherDeskIconInfo[i]])
  3398. }, _frag); //
  3399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3402. }
  3403. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3404. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3405. _content = $$("div", {
  3406. className: "U_MD_D_KO",
  3407. "onmousedown": U.UF.C.closure(function (obj) {
  3408. //防止拖动图标即打开了桌面应用
  3409. U.MD.D.click(this, obj);
  3410. }, [_szjkyAdminDeskIconInfo[i]]),
  3411. "onclick": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_szjkyAdminDeskIconInfo[i]])
  3415. }, _frag); //
  3416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3419. }//
  3420. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3421. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3422. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3423. continue
  3424. }
  3425. _content = $$("div", {
  3426. className: "U_MD_D_KO",
  3427. "onmousedown": U.UF.C.closure(function (obj) {
  3428. //防止拖动图标即打开了桌面应用
  3429. U.MD.D.click(this, obj);
  3430. }, [_szjkyTeacherDeskIconInfo[i]]),
  3431. "onclick": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_szjkyTeacherDeskIconInfo[i]])
  3435. }, _frag); //
  3436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3439. }
  3440. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3441. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3442. _content = $$("div", {
  3443. className: "U_MD_D_KO",
  3444. "onmousedown": U.UF.C.closure(function (obj) {
  3445. //防止拖动图标即打开了桌面应用
  3446. U.MD.D.click(this, obj);
  3447. }, [_x020201AdminDeskIconInfo[i]]),
  3448. "onclick": U.UF.C.closure(function (obj) {
  3449. //防止拖动图标即打开了桌面应用
  3450. U.MD.D.click(this, obj);
  3451. }, [_x020201AdminDeskIconInfo[i]])
  3452. }, _frag); //
  3453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3456. }//
  3457. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3458. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3459. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3460. continue
  3461. }
  3462. _content = $$("div", {
  3463. className: "U_MD_D_KO",
  3464. "onmousedown": U.UF.C.closure(function (obj) {
  3465. //防止拖动图标即打开了桌面应用
  3466. U.MD.D.click(this, obj);
  3467. }, [_x020201TeacherDeskIconInfo[i]]),
  3468. "onclick": U.UF.C.closure(function (obj) {
  3469. //防止拖动图标即打开了桌面应用
  3470. U.MD.D.click(this, obj);
  3471. }, [_x020201TeacherDeskIconInfo[i]])
  3472. }, _frag); //
  3473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3476. }
  3477. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3478. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3479. _content = $$("div", {
  3480. className: "U_MD_D_KO",
  3481. "onmousedown": U.UF.C.closure(function (obj) {
  3482. //防止拖动图标即打开了桌面应用
  3483. U.MD.D.click(this, obj);
  3484. }, [_SCNUETAdminDeskIconInfo[i]]),
  3485. "onclick": U.UF.C.closure(function (obj) {
  3486. //防止拖动图标即打开了桌面应用
  3487. U.MD.D.click(this, obj);
  3488. }, [_SCNUETAdminDeskIconInfo[i]])
  3489. }, _frag); //
  3490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3493. }//
  3494. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3495. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3496. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3497. continue
  3498. }
  3499. _content = $$("div", {
  3500. className: "U_MD_D_KO",
  3501. "onmousedown": U.UF.C.closure(function (obj) {
  3502. //防止拖动图标即打开了桌面应用
  3503. U.MD.D.click(this, obj);
  3504. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3505. "onclick": U.UF.C.closure(function (obj) {
  3506. //防止拖动图标即打开了桌面应用
  3507. U.MD.D.click(this, obj);
  3508. }, [_SCNUETTeacherDeskIconInfo[i]])
  3509. }, _frag); //
  3510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3513. }
  3514. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3515. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3516. _content = $$("div", {
  3517. className: "U_MD_D_KO",
  3518. "onmousedown": U.UF.C.closure(function (obj) {
  3519. //防止拖动图标即打开了桌面应用
  3520. U.MD.D.click(this, obj);
  3521. }, [_futianAdminDeskIconInfo[i]]),
  3522. "onclick": U.UF.C.closure(function (obj) {
  3523. //防止拖动图标即打开了桌面应用
  3524. U.MD.D.click(this, obj);
  3525. }, [_futianAdminDeskIconInfo[i]])
  3526. }, _frag); //
  3527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3530. }
  3531. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3532. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3533. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3534. continue
  3535. }
  3536. _content = $$("div", {
  3537. className: "U_MD_D_KO",
  3538. "onmousedown": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_futianTeacherDeskIconInfo[i]]),
  3542. "onclick": U.UF.C.closure(function (obj) {
  3543. //防止拖动图标即打开了桌面应用
  3544. U.MD.D.click(this, obj);
  3545. }, [_futianTeacherDeskIconInfo[i]])
  3546. }, _frag); //
  3547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3550. }
  3551. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3552. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3553. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3554. continue
  3555. }
  3556. _content = $$("div", {
  3557. className: "U_MD_D_KO",
  3558. "onmousedown": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_MingdeTeacherDeskIcon[i]]),
  3562. "onclick": U.UF.C.closure(function (obj) {
  3563. //防止拖动图标即打开了桌面应用
  3564. U.MD.D.click(this, obj);
  3565. }, [_MingdeTeacherDeskIcon[i]])
  3566. }, _frag); //
  3567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3570. }
  3571. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3572. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3573. _content = $$("div", {
  3574. className: "U_MD_D_KO",
  3575. "onmousedown": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_lhsAdminDesktopIconInfo[i]]),
  3579. "onclick": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_lhsAdminDesktopIconInfo[i]])
  3583. }, _frag); //
  3584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3587. }
  3588. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3589. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3590. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3591. continue
  3592. }
  3593. _content = $$("div", {
  3594. className: "U_MD_D_KO",
  3595. "onmousedown": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_lhsteacherDesktopIconInfo[i]]),
  3599. "onclick": U.UF.C.closure(function (obj) {
  3600. //防止拖动图标即打开了桌面应用
  3601. U.MD.D.click(this, obj);
  3602. }, [_lhsteacherDesktopIconInfo[i]])
  3603. }, _frag); //
  3604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3607. }
  3608. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3609. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3610. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3611. continue
  3612. }
  3613. _content = $$("div", {
  3614. className: "U_MD_D_KO",
  3615. "onmousedown": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3619. "onclick": U.UF.C.closure(function (obj) {
  3620. //防止拖动图标即打开了桌面应用
  3621. U.MD.D.click(this, obj);
  3622. }, [_zhoujiateacherDesktopIconInfo[i]])
  3623. }, _frag); //
  3624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3627. }
  3628. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3629. for (i = 0; i < _hanDeskIcon.length; i++) {
  3630. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3631. continue
  3632. }
  3633. _content = $$("div", {
  3634. className: "U_MD_D_KO",
  3635. "onmousedown": U.UF.C.closure(function (obj) {
  3636. //防止拖动图标即打开了桌面应用
  3637. U.MD.D.click(this, obj);
  3638. }, [_hanDeskIcon[i]]),
  3639. "onclick": U.UF.C.closure(function (obj) {
  3640. //防止拖动图标即打开了桌面应用
  3641. U.MD.D.click(this, obj);
  3642. }, [_hanDeskIcon[i]])
  3643. }, _frag); //
  3644. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3645. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3646. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3647. }
  3648. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3649. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3650. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3651. continue
  3652. }
  3653. _content = $$("div", {
  3654. className: "U_MD_D_KO",
  3655. "onmousedown": U.UF.C.closure(function (obj) {
  3656. //防止拖动图标即打开了桌面应用
  3657. U.MD.D.click(this, obj);
  3658. }, [_orgStemDeskIcon[i]]),
  3659. "onclick": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_orgStemDeskIcon[i]])
  3663. }, _frag); //
  3664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3667. }
  3668. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3669. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3670. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3671. continue
  3672. }
  3673. _content = $$("div", {
  3674. className: "U_MD_D_KO",
  3675. "onmousedown": U.UF.C.closure(function (obj) {
  3676. //防止拖动图标即打开了桌面应用
  3677. U.MD.D.click(this, obj);
  3678. }, [_szulsDeskIcon[i]]),
  3679. "onclick": U.UF.C.closure(function (obj) {
  3680. //防止拖动图标即打开了桌面应用
  3681. U.MD.D.click(this, obj);
  3682. }, [_szulsDeskIcon[i]])
  3683. }, _frag); //
  3684. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3685. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3686. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3687. }
  3688. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3689. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3690. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3691. continue
  3692. }
  3693. _content = $$("div", {
  3694. className: "U_MD_D_KO",
  3695. "onmousedown": U.UF.C.closure(function (obj) {
  3696. //防止拖动图标即打开了桌面应用
  3697. U.MD.D.click(this, obj);
  3698. }, [_orgDesktopIconInfo[i]]),
  3699. "onclick": U.UF.C.closure(function (obj) {
  3700. //防止拖动图标即打开了桌面应用
  3701. U.MD.D.click(this, obj);
  3702. }, [_orgDesktopIconInfo[i]])
  3703. }, _frag); //
  3704. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3705. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3706. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3707. }
  3708. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3709. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3710. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3711. continue
  3712. }
  3713. _content = $$("div", {
  3714. className: "U_MD_D_KO",
  3715. "onmousedown": U.UF.C.closure(function (obj) {
  3716. //防止拖动图标即打开了桌面应用
  3717. U.MD.D.click(this, obj);
  3718. }, [_schoolDesktopIconInfo[i]]),
  3719. "onclick": U.UF.C.closure(function (obj) {
  3720. //防止拖动图标即打开了桌面应用
  3721. U.MD.D.click(this, obj);
  3722. }, [_schoolDesktopIconInfo[i]])
  3723. }, _frag); //
  3724. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3725. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3726. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3727. }
  3728. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3729. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3730. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3731. continue
  3732. }
  3733. _content = $$("div", {
  3734. className: "U_MD_D_KO",
  3735. "onmousedown": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_GMteacherDesktopIconInfo[i]]),
  3739. "onclick": U.UF.C.closure(function (obj) {
  3740. //防止拖动图标即打开了桌面应用
  3741. U.MD.D.click(this, obj);
  3742. }, [_GMteacherDesktopIconInfo[i]])
  3743. }, _frag); //
  3744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3747. }
  3748. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3749. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3750. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3751. continue
  3752. }
  3753. _content = $$("div", {
  3754. className: "U_MD_D_KO",
  3755. "onmousedown": U.UF.C.closure(function (obj) {
  3756. //防止拖动图标即打开了桌面应用
  3757. U.MD.D.click(this, obj);
  3758. }, [_SONGteacherDesktopIconInfo[i]]),
  3759. "onclick": U.UF.C.closure(function (obj) {
  3760. //防止拖动图标即打开了桌面应用
  3761. U.MD.D.click(this, obj);
  3762. }, [_SONGteacherDesktopIconInfo[i]])
  3763. }, _frag); //
  3764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3767. }
  3768. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3769. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3770. _content = $$("div", {
  3771. className: "U_MD_D_KO",
  3772. "onmousedown": U.UF.C.closure(function (obj) {
  3773. //防止拖动图标即打开了桌面应用
  3774. U.MD.D.click(this, obj);
  3775. }, [_GMstudentDesktopIconInfo[i]]),
  3776. "onclick": U.UF.C.closure(function (obj) {
  3777. //防止拖动图标即打开了桌面应用
  3778. U.MD.D.click(this, obj);
  3779. }, [_GMstudentDesktopIconInfo[i]])
  3780. }, _frag); //
  3781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3784. }
  3785. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3786. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3787. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3788. continue
  3789. }
  3790. _content = $$("div", {
  3791. className: "U_MD_D_KO",
  3792. "onmousedown": U.UF.C.closure(function (obj) {
  3793. //防止拖动图标即打开了桌面应用
  3794. U.MD.D.click(this, obj);
  3795. }, [_tcTeacherDeskIconInfo[i]]),
  3796. "onclick": U.UF.C.closure(function (obj) {
  3797. //防止拖动图标即打开了桌面应用
  3798. U.MD.D.click(this, obj);
  3799. }, [_tcTeacherDeskIconInfo[i]])
  3800. }, _frag); //
  3801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3804. }
  3805. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3806. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3807. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3808. continue
  3809. }
  3810. _content = $$("div", {
  3811. className: "U_MD_D_KO",
  3812. "onmousedown": U.UF.C.closure(function (obj) {
  3813. //防止拖动图标即打开了桌面应用
  3814. U.MD.D.click(this, obj);
  3815. }, [_tcOrganizerDeskIconInfo[i]]),
  3816. "onclick": U.UF.C.closure(function (obj) {
  3817. //防止拖动图标即打开了桌面应用
  3818. U.MD.D.click(this, obj);
  3819. }, [_tcOrganizerDeskIconInfo[i]])
  3820. }, _frag); //
  3821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3824. }
  3825. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3826. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3827. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3828. continue
  3829. }
  3830. _content = $$("div", {
  3831. className: "U_MD_D_KO",
  3832. "onmousedown": U.UF.C.closure(function (obj) {
  3833. //防止拖动图标即打开了桌面应用
  3834. U.MD.D.click(this, obj);
  3835. }, [_szscTeacherDeskIconInfo[i]]),
  3836. "onclick": U.UF.C.closure(function (obj) {
  3837. //防止拖动图标即打开了桌面应用
  3838. U.MD.D.click(this, obj);
  3839. }, [_szscTeacherDeskIconInfo[i]])
  3840. }, _frag); //
  3841. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3842. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3843. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3844. }
  3845. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3846. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3847. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3848. continue
  3849. }
  3850. _content = $$("div", {
  3851. className: "U_MD_D_KO",
  3852. "onmousedown": U.UF.C.closure(function (obj) {
  3853. //防止拖动图标即打开了桌面应用
  3854. U.MD.D.click(this, obj);
  3855. }, [_szscOrganizerDeskIconInfo[i]]),
  3856. "onclick": U.UF.C.closure(function (obj) {
  3857. //防止拖动图标即打开了桌面应用
  3858. U.MD.D.click(this, obj);
  3859. }, [_szscOrganizerDeskIconInfo[i]])
  3860. }, _frag); //
  3861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3864. }
  3865. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3866. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3867. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3868. continue
  3869. }
  3870. _content = $$("div", {
  3871. className: "U_MD_D_KO",
  3872. "onmousedown": U.UF.C.closure(function (obj) {
  3873. //防止拖动图标即打开了桌面应用
  3874. U.MD.D.click(this, obj);
  3875. }, [_nsfxTeacherDeskIconInfo[i]]),
  3876. "onclick": U.UF.C.closure(function (obj) {
  3877. //防止拖动图标即打开了桌面应用
  3878. U.MD.D.click(this, obj);
  3879. }, [_nsfxTeacherDeskIconInfo[i]])
  3880. }, _frag); //
  3881. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3882. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3883. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3884. }
  3885. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3886. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3887. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3888. continue
  3889. }
  3890. _content = $$("div", {
  3891. className: "U_MD_D_KO",
  3892. "onmousedown": U.UF.C.closure(function (obj) {
  3893. //防止拖动图标即打开了桌面应用
  3894. U.MD.D.click(this, obj);
  3895. }, [_stiaTeacherDeskIconInfo[i]]),
  3896. "onclick": U.UF.C.closure(function (obj) {
  3897. //防止拖动图标即打开了桌面应用
  3898. U.MD.D.click(this, obj);
  3899. }, [_stiaTeacherDeskIconInfo[i]])
  3900. }, _frag); //
  3901. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3902. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3903. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3904. }
  3905. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3906. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3907. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3908. continue
  3909. }
  3910. _content = $$("div", {
  3911. className: "U_MD_D_KO",
  3912. "onmousedown": U.UF.C.closure(function (obj) {
  3913. //防止拖动图标即打开了桌面应用
  3914. U.MD.D.click(this, obj);
  3915. }, [_szdjgTeacherDeskIconInfo[i]]),
  3916. "onclick": U.UF.C.closure(function (obj) {
  3917. //防止拖动图标即打开了桌面应用
  3918. U.MD.D.click(this, obj);
  3919. }, [_szdjgTeacherDeskIconInfo[i]])
  3920. }, _frag); //
  3921. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3922. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3923. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3924. }
  3925. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3926. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3927. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3928. continue
  3929. }
  3930. _content = $$("div", {
  3931. className: "U_MD_D_KO",
  3932. "onmousedown": U.UF.C.closure(function (obj) {
  3933. //防止拖动图标即打开了桌面应用
  3934. U.MD.D.click(this, obj);
  3935. }, [_x010607TeacherDeskIconInfo[i]]),
  3936. "onclick": U.UF.C.closure(function (obj) {
  3937. //防止拖动图标即打开了桌面应用
  3938. U.MD.D.click(this, obj);
  3939. }, [_x010607TeacherDeskIconInfo[i]])
  3940. }, _frag); //
  3941. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3942. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3943. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3944. }
  3945. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3946. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3947. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3948. continue
  3949. }
  3950. _content = $$("div", {
  3951. className: "U_MD_D_KO",
  3952. "onmousedown": U.UF.C.closure(function (obj) {
  3953. //防止拖动图标即打开了桌面应用
  3954. U.MD.D.click(this, obj);
  3955. }, [_xhlyTeacherDeskIconInfo[i]]),
  3956. "onclick": U.UF.C.closure(function (obj) {
  3957. //防止拖动图标即打开了桌面应用
  3958. U.MD.D.click(this, obj);
  3959. }, [_xhlyTeacherDeskIconInfo[i]])
  3960. }, _frag); //
  3961. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3962. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3963. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3964. }
  3965. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3966. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3967. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3968. continue
  3969. }
  3970. _content = $$("div", {
  3971. className: "U_MD_D_KO",
  3972. "onmousedown": U.UF.C.closure(function (obj) {
  3973. //防止拖动图标即打开了桌面应用
  3974. U.MD.D.click(this, obj);
  3975. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3976. "onclick": U.UF.C.closure(function (obj) {
  3977. //防止拖动图标即打开了桌面应用
  3978. U.MD.D.click(this, obj);
  3979. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3980. }, _frag); //
  3981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3984. }
  3985. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3986. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3987. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3988. continue
  3989. }
  3990. _content = $$("div", {
  3991. className: "U_MD_D_KO",
  3992. "onmousedown": U.UF.C.closure(function (obj) {
  3993. //防止拖动图标即打开了桌面应用
  3994. U.MD.D.click(this, obj);
  3995. }, [_x010503TeacherDeskIconInfo[i]]),
  3996. "onclick": U.UF.C.closure(function (obj) {
  3997. //防止拖动图标即打开了桌面应用
  3998. U.MD.D.click(this, obj);
  3999. }, [_x010503TeacherDeskIconInfo[i]])
  4000. }, _frag); //
  4001. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4002. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4003. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4004. }
  4005. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4006. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4007. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4008. continue
  4009. }
  4010. _content = $$("div", {
  4011. className: "U_MD_D_KO",
  4012. "onmousedown": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_x010504TeacherDeskIconInfo[i]]),
  4016. "onclick": U.UF.C.closure(function (obj) {
  4017. //防止拖动图标即打开了桌面应用
  4018. U.MD.D.click(this, obj);
  4019. }, [_x010504TeacherDeskIconInfo[i]])
  4020. }, _frag); //
  4021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4024. }
  4025. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4026. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4027. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4028. continue
  4029. }
  4030. _content = $$("div", {
  4031. className: "U_MD_D_KO",
  4032. "onmousedown": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_x010204TeacherDeskIconInfo[i]]),
  4036. "onclick": U.UF.C.closure(function (obj) {
  4037. //防止拖动图标即打开了桌面应用
  4038. U.MD.D.click(this, obj);
  4039. }, [_x010204TeacherDeskIconInfo[i]])
  4040. }, _frag); //
  4041. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4042. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4043. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4044. }
  4045. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4046. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4047. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4048. continue
  4049. }
  4050. _content = $$("div", {
  4051. className: "U_MD_D_KO",
  4052. "onmousedown": U.UF.C.closure(function (obj) {
  4053. //防止拖动图标即打开了桌面应用
  4054. U.MD.D.click(this, obj);
  4055. }, [_trailTeacherDeskIconInfo[i]]),
  4056. "onclick": U.UF.C.closure(function (obj) {
  4057. //防止拖动图标即打开了桌面应用
  4058. U.MD.D.click(this, obj);
  4059. }, [_trailTeacherDeskIconInfo[i]])
  4060. }, _frag); //
  4061. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4062. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4063. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4064. }
  4065. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4066. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4067. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4068. continue
  4069. }
  4070. _content = $$("div", {
  4071. className: "U_MD_D_KO",
  4072. "onmousedown": U.UF.C.closure(function (obj) {
  4073. //防止拖动图标即打开了桌面应用
  4074. U.MD.D.click(this, obj);
  4075. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4076. "onclick": U.UF.C.closure(function (obj) {
  4077. //防止拖动图标即打开了桌面应用
  4078. U.MD.D.click(this, obj);
  4079. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4080. }, _frag); //
  4081. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4082. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4083. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4084. }
  4085. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4086. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4087. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4088. continue
  4089. }
  4090. _content = $$("div", {
  4091. className: "U_MD_D_KO",
  4092. "onmousedown": U.UF.C.closure(function (obj) {
  4093. //防止拖动图标即打开了桌面应用
  4094. U.MD.D.click(this, obj);
  4095. }, [_x010608TeacherDeskIconInfo[i]]),
  4096. "onclick": U.UF.C.closure(function (obj) {
  4097. //防止拖动图标即打开了桌面应用
  4098. U.MD.D.click(this, obj);
  4099. }, [_x010608TeacherDeskIconInfo[i]])
  4100. }, _frag); //
  4101. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4102. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4103. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4104. }
  4105. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4106. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4107. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4108. continue
  4109. }
  4110. _content = $$("div", {
  4111. className: "U_MD_D_KO",
  4112. "onmousedown": U.UF.C.closure(function (obj) {
  4113. //防止拖动图标即打开了桌面应用
  4114. U.MD.D.click(this, obj);
  4115. }, [_x010611TeacherDeskIconInfo[i]]),
  4116. "onclick": U.UF.C.closure(function (obj) {
  4117. //防止拖动图标即打开了桌面应用
  4118. U.MD.D.click(this, obj);
  4119. }, [_x010611TeacherDeskIconInfo[i]])
  4120. }, _frag); //
  4121. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4122. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4123. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4124. }
  4125. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4126. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4127. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4128. continue
  4129. }
  4130. _content = $$("div", {
  4131. className: "U_MD_D_KO",
  4132. "onmousedown": U.UF.C.closure(function (obj) {
  4133. //防止拖动图标即打开了桌面应用
  4134. U.MD.D.click(this, obj);
  4135. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4136. "onclick": U.UF.C.closure(function (obj) {
  4137. //防止拖动图标即打开了桌面应用
  4138. U.MD.D.click(this, obj);
  4139. }, [_tianyuanTeacherDeskIconInfo[i]])
  4140. }, _frag); //
  4141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4144. }
  4145. } else {
  4146. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4147. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4148. continue
  4149. }
  4150. _content = $$("div", {
  4151. className: "U_MD_D_KO",
  4152. "onmousedown": U.UF.C.closure(function (obj) {
  4153. //防止拖动图标即打开了桌面应用
  4154. U.MD.D.click(this, obj);
  4155. }, [_teacherDesktopIconInfo[i]]),
  4156. "onclick": U.UF.C.closure(function (obj) {
  4157. //防止拖动图标即打开了桌面应用
  4158. U.MD.D.click(this, obj);
  4159. }, [_teacherDesktopIconInfo[i]])
  4160. }, _frag); //
  4161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4164. }
  4165. }
  4166. } else {
  4167. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4168. _content = $$("div", {
  4169. className: "U_MD_D_KO",
  4170. style: { 'width': '124px', 'height': '145px' },
  4171. "onmousedown": U.UF.C.closure(function (obj) {
  4172. //防止拖动图标即打开了桌面应用
  4173. U.MD.D.click(this, obj);
  4174. }, [_easyDesktopIconInfo[i]]),
  4175. "onclick": U.UF.C.closure(function (obj) {
  4176. //防止拖动图标即打开了桌面应用
  4177. U.MD.D.click(this, obj);
  4178. }, [_easyDesktopIconInfo[i]])
  4179. }, _frag); //
  4180. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4183. }
  4184. }
  4185. if (type == 1) {
  4186. //加载好后给图标定位
  4187. U.MD.D.iconPostion($(_frag).Child());
  4188. } else {
  4189. //加载好后给图标定位
  4190. U.MD.D.iconPostion2($(_frag).Child());
  4191. }
  4192. //把图标加载到页面
  4193. el.appendChild(_frag);
  4194. }
  4195. /**
  4196. * 显示任务栏
  4197. *
  4198. * @param {element} 桌面元素
  4199. */
  4200. U.MD.D.I.displayTaskbar = function (el) {
  4201. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4202. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4203. //任务栏位置变化
  4204. U.selectEl(el).css({ "bottom": "0px" });
  4205. //桌面位置变话
  4206. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4207. }
  4208. }
  4209. //#region 桌面图标拖动逻辑
  4210. /**
  4211. * 桌面排列图标
  4212. *
  4213. * @param {element} 桌面元素
  4214. * @param {object} 上下相距的距离
  4215. * @param {object} 左右相距的距离
  4216. * @return {object} 命名空间
  4217. */
  4218. U.MD.D.iconPostion = function (childs, top, left) {
  4219. var i; //用于循环处理
  4220. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4221. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4222. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4223. for (i = 0; i < childs.length; i++) {
  4224. //如果竖排top超过了范围处理
  4225. if (top + 95 > US.height - 10) {
  4226. //left超过了页面范围处理,则向上重叠打印处理
  4227. if ((left + 180) > US.width) {
  4228. top -= 110;
  4229. left -= 90;
  4230. }
  4231. //没有超过范围,那么left+90添加到下一个竖排打印
  4232. else {
  4233. left += 90;
  4234. top = 15;
  4235. };
  4236. }
  4237. //给图标的位置赋值
  4238. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4239. if (i < childs.length - 1) {
  4240. //页面图标每次向下加95
  4241. top += 95;
  4242. }
  4243. }
  4244. //返回最后调用的图标的位置
  4245. return [top, left];
  4246. }
  4247. /**
  4248. * 桌面排列图标
  4249. *
  4250. * @param {element} 桌面元素
  4251. * @param {object} 上下相距的距离
  4252. * @param {object} 左右相距的距离
  4253. * @return {object} 命名空间
  4254. */
  4255. U.MD.D.iconPostion2 = function (childs, top, left) {
  4256. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4257. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4258. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4259. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4260. for (i = 0; i < childs.length; i++) {
  4261. //如果竖排top超过了范围处理
  4262. if (left + 150 > US.width - 10) {
  4263. //left超过了页面范围处理,则向上重叠打印处理
  4264. if ((top + 180) > US.Height) {
  4265. top -= 150;
  4266. left -= 150;
  4267. }
  4268. //没有超过范围,那么left+90添加到下一个竖排打印
  4269. else {
  4270. top += 150;
  4271. left = ol;
  4272. };
  4273. }
  4274. //给图标的位置赋值
  4275. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4276. if (i < childs.length - 1) {
  4277. //页面图标每次向下加95
  4278. left += 150;
  4279. }
  4280. }
  4281. //返回最后调用的图标的位置
  4282. return [top, left];
  4283. }
  4284. /**
  4285. * 桌面点击事件逻辑
  4286. *
  4287. * @param {element} 桌面元素
  4288. * @param {object} 上下相距的距离
  4289. * @param {object} 左右相距的距离
  4290. * @return {object} 命名空间
  4291. */
  4292. U.MD.D.click = function (el, obj) {
  4293. var _buttonnumber = event.button; //点击的按钮的事件值
  4294. var _userinfo = US.userInfo;
  4295. U.UF.EV.stopBubble(); //阻止向上冒泡
  4296. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4297. if (_buttonnumber < 2) {
  4298. //如果是click事件的处理
  4299. if (event.type == "click") {
  4300. //如果元素在mousemove事件中没有移动则出发click事件
  4301. if (!U.MD.D.I.IsDrag) {
  4302. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4303. U.alert("请先登录您的账号!");
  4304. setTimeout(() => {
  4305. U.MD.U.L.login();
  4306. }, 2000);
  4307. } else {
  4308. //打开应用处理
  4309. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4310. }
  4311. }
  4312. }
  4313. //如果是mouse事件的处理
  4314. else {
  4315. if (US.Config.type == '1') {
  4316. //拖动处理,添加拖动和拖动结束事件
  4317. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4318. }
  4319. }
  4320. U.MD.D.I.IsDrag = false;
  4321. }
  4322. }
  4323. /**
  4324. * 拖动的处理
  4325. *
  4326. */
  4327. U.MD.D.iconMove = function () {
  4328. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4329. U.MD.D.I.IsDrag = true;
  4330. }
  4331. /**
  4332. * 拖动结束后,这里是定位处理,以网状的形式定位
  4333. *
  4334. * @param {element} 拖动的元素
  4335. * @return {object} 命名空间
  4336. */
  4337. U.MD.D.iconUp = function (el) {
  4338. var _top = 15,
  4339. _left = 20,
  4340. _margin,
  4341. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4342. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4343. if (_positioninfo["OT"] > 15) {
  4344. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4345. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4346. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4347. }
  4348. if (_positioninfo["OL"] > 20) {
  4349. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4350. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4351. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4352. }
  4353. //while循环判断么一个重叠的元素
  4354. do {
  4355. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4356. _top = _positioninfo[0] + 95; //得到定位后的top
  4357. _left = _positioninfo[1]; //得到定位后的left
  4358. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4359. }
  4360. /**
  4361. * 判断拖动后图标是否重叠
  4362. *
  4363. * @param {element} 拖动的元素
  4364. * @param {element} 桌面所有的元素
  4365. * @param {array} 拖动元素的位置
  4366. ----------[0] 上 top
  4367. ----------[1] 左 left
  4368. * @return {object} 命名空间
  4369. */
  4370. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4371. //循环所有的图标
  4372. for (var i = 0; i < childs.length; i++) {
  4373. //判断有没有和该图标诶子重叠的元素
  4374. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4375. return childs[i]; //如果有返回
  4376. }
  4377. }
  4378. }
  4379. //#endregion
  4380. //#endregion
  4381. //#region 桌面应用
  4382. /**
  4383. * 打开应用
  4384. *
  4385. * @param {string} 类型
  4386. -----------------Disk 网盘系统
  4387. -----------------PDisk 学习系统网盘
  4388. -----------------Poto 图片
  4389. -----------------Video 视频
  4390. -----------------Music 音乐
  4391. -----------------Word word
  4392. -----------------Excel excel
  4393. -----------------Txt 记事本
  4394. -----------------PB 学习系统
  4395. -----------------Blog 朋友圈系统
  4396. -----------------FTP ftp系统
  4397. -----------------Group 好友群
  4398. -----------------SY 首页系统
  4399. -----------------Set 个人设置
  4400. -----------------XSet 系统设置
  4401. -----------------App 我们所有的app
  4402. -----------------BC c.1473.cn 平台
  4403. -----------------CWeb d.1473.cn 变成平台
  4404. -----------------其他的外联系统 我们统一用iframe打开
  4405. * @param {array} 类型
  4406. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4407. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4408. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4409. 如果第一个参数为其他,则无第二个参数
  4410. * @returns {array}
  4411. */
  4412. window.addEventListener('message', function (e) { // 监听 message 事件
  4413. // alert(e.data.type);
  4414. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4415. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4416. //3是展示全部阶段 2学生 1老师 4专家
  4417. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4418. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4419. //3是展示全部阶段 2学生 1老师 4专家
  4420. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4421. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4422. //3是展示全部阶段 2学生 1老师 4专家
  4423. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4424. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4425. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4426. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4427. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4428. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4429. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4430. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4431. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4432. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4433. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4434. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4435. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4436. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4437. //3是展示全部阶段 2学生 1老师 4专家
  4438. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4439. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4440. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4441. U.MD.D.I.selectUser();
  4442. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4443. var _formel = document.getElementById("study");
  4444. U.UF.F.windowZooming(_formel);
  4445. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4446. var _formel = document.getElementById("studyDetail");
  4447. U.UF.F.windowZooming(_formel);
  4448. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4449. var _formel = document.getElementById("studyDetail");
  4450. U.UF.F.windowZooming(_formel);
  4451. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4452. var _formel = document.getElementById("studentStudy");
  4453. U.UF.F.windowZooming(_formel);
  4454. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4455. // var _formel = document.getElementById("study");
  4456. //如果最大化了,那么就把他缩小
  4457. // if (_formel.ismaximize) {
  4458. // return;
  4459. // }
  4460. // U.UF.F.windowZooming(_formel);
  4461. // U.UF.F.topWindow(_formel);
  4462. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4463. // var _formel = document.getElementById("studyDetail");
  4464. //如果最大化了,那么就把他缩小
  4465. // if (_formel.ismaximize) {
  4466. // return;
  4467. // }
  4468. // U.UF.F.windowZooming(_formel);
  4469. // U.UF.F.topWindow(_formel);
  4470. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4471. // var _formel = document.getElementById("studentStudy");
  4472. // if (_formel.ismaximize) {
  4473. // return;
  4474. // }
  4475. // U.UF.F.windowZooming(_formel);
  4476. // U.UF.F.topWindow(_formel);
  4477. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4478. var _formel = document.getElementById("study");
  4479. // if (_formel.ismaximize) {
  4480. // return;
  4481. // }
  4482. // U.UF.F.windowZooming(_formel);
  4483. U.UF.F.topWindow(_formel);
  4484. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4485. var _formel = document.getElementById("studentIndex");
  4486. U.UF.F.windowZooming(_formel);
  4487. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4488. var _formel = document.getElementById("studyDetailS");
  4489. U.UF.F.windowZooming(_formel);
  4490. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4491. var _formel = document.getElementById("studioIndex");
  4492. U.UF.F.windowZooming(_formel);
  4493. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4494. var _formel = document.getElementById("studyDetailStudio");
  4495. U.UF.F.windowZooming(_formel);
  4496. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4497. var _formel = document.getElementById("studyDetailStudio");
  4498. U.UF.F.windowZooming(_formel);
  4499. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4500. var _formel = document.getElementById("studyDetailNT");
  4501. U.UF.F.windowZooming(_formel);
  4502. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4503. var _formel = document.getElementById("studyDetailS");
  4504. U.UF.F.windowZooming(_formel);
  4505. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4506. var _formel = document.getElementById("studyDetailS");
  4507. U.UF.F.topWindow(_formel);
  4508. } else if (e.data.tools && e.data.tools == "1") {
  4509. // U.MD.D.I.openApplication("whiteboard")
  4510. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4511. } else if (e.data.tools && e.data.tools == "2") {
  4512. U.MD.D.I.openApplication("note")
  4513. } else if (e.data.tools && e.data.tools == "3") {
  4514. // U.MD.D.I.openApplication("mind")
  4515. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4516. } else if (e.data.tools && e.data.tools == "4") {
  4517. U.MD.D.I.openApplication("investigation")
  4518. } else if (e.data.tools && e.data.tools == "6") {
  4519. // U.MD.D.I.openApplication("doc")
  4520. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4521. } else if (e.data.tools && e.data.tools == "7") {
  4522. // U.MD.D.I.openApplication("mindNetwork")
  4523. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4524. } else if (e.data.tools && e.data.tools == "8") {
  4525. U.MD.D.I.openApplication("library")
  4526. } else if (e.data.tools && e.data.tools == "17") {
  4527. U.MD.D.I.openApplication("stuLibrary")
  4528. } else if (e.data.tools && e.data.tools == "18") {
  4529. U.MD.D.I.openApplication("train")
  4530. } else if (e.data.tools && e.data.tools == "21") {
  4531. U.MD.D.I.openApplication("program")
  4532. } else if (e.data.tools && e.data.tools == "22") {
  4533. U.MD.D.I.openApplication("AIprogram2")
  4534. } else if (e.data.tools && e.data.tools == "23") {
  4535. U.MD.D.I.openApplication("Pythonprogram")
  4536. } else if (e.data.tools && e.data.tools == "24") {
  4537. U.MD.D.I.openApplication("AIprogram")
  4538. } else if (e.data.tools && e.data.tools == "25") {
  4539. U.MD.D.I.openApplication("sys")
  4540. } else if (e.data.tools && e.data.tools == "26") {
  4541. // U.MD.D.I.openApplication("courseDesign")
  4542. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4543. } else if (e.data.tools && e.data.tools == "31") {
  4544. U.MD.D.I.openApplication("netWorkPanel")
  4545. } else if (e.data.tools && e.data.tools == "32") {
  4546. U.MD.D.I.openApplication("codeEdit")
  4547. } else if (e.data.tools && e.data.tools == "57") {
  4548. U.MD.D.I.openApplication("CocoPi")
  4549. } else if (e.data.tools && e.data.tools == "63") {
  4550. U.MD.D.I.openApplication("Wood")
  4551. } else if (e.data.tools && e.data.tools == "58") {
  4552. U.MD.D.I.openApplication("car")
  4553. } else if (e.data.tools && e.data.tools == "59") {
  4554. U.MD.D.I.openApplication("lineSearch")
  4555. } else if (e.data.tools && e.data.tools == "60") {
  4556. U.MD.D.I.openApplication("deepLearning")
  4557. } else if (e.data.tools && e.data.tools == "61") {
  4558. U.MD.D.I.openApplication("allHistory")
  4559. } else if (e.data.tools && e.data.tools == "28") {
  4560. U.MD.D.I.openApplication("translation")
  4561. } else if (e.data.tools && e.data.tools == "37") {
  4562. U.MD.D.I.openApplication("mohe")
  4563. } else if (e.data.tools && e.data.tools == "38") {
  4564. U.MD.D.I.openApplication("24game")
  4565. } else if (e.data.tools && e.data.tools == "39") {
  4566. U.MD.D.I.openApplication("GeoGebra")
  4567. } else if (e.data.tools && e.data.tools == "43") {
  4568. U.MD.D.I.openApplication("studentEvaluate")
  4569. } else if (e.data.tools && e.data.tools == "44") {
  4570. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4571. } else if (e.data.tools && e.data.tools == "46") {
  4572. U.MD.D.I.openApplication("project")
  4573. } else if (e.data.tools && e.data.tools == "71") {
  4574. U.MD.D.I.openApplication("aigptCourse")
  4575. } else if (e.data.tools && e.data.tools == "1s") {
  4576. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4577. } else if (e.data.tools && e.data.tools == "3s") {
  4578. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4579. } else if (e.data.tools && e.data.tools == "6s") {
  4580. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4581. } else if (e.data.tools && e.data.tools == "1studio") {
  4582. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4583. } else if (e.data.tools && e.data.tools == "3studio") {
  4584. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4585. } else if (e.data.tools && e.data.tools == "6studio") {
  4586. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4587. } else if (e.data.tools && e.data.tools == "3y") {
  4588. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4589. } else if (e.data.tools && e.data.tools == "1y") {
  4590. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4591. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4592. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4593. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4594. U.MD.D.I.openApplication("AIAnalyse")
  4595. } else if (e.data.tools && e.data.tools == "1teacher") {
  4596. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4597. } else if (e.data.tools && e.data.tools == "3teacher") {
  4598. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4599. } else if (e.data.tools && e.data.tools == "7teacher") {
  4600. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4601. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4602. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4603. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4604. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4605. } else if (e.data.tools && e.data.tools == "1E") {
  4606. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4607. } else if (e.data.tools && e.data.tools == "3E") {
  4608. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4609. } else if (e.data.tools && e.data.tools == "57y") {
  4610. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4611. } else if (e.data.tools && e.data.tools == "57u") {
  4612. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4613. } else if (e.data.tools && e.data.tools == "57teacher") {
  4614. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4615. } else if (e.data.tools && e.data.tools == "64") {
  4616. U.MD.D.I.openApplication("AIChat")
  4617. } else if (e.data.tools && e.data.tools == "66") {
  4618. U.MD.D.I.openApplication("formulaEdi")
  4619. } else if (e.data.tools && e.data.tools == "67") {
  4620. U.MD.D.I.openApplication("molStr")
  4621. } else if (e.data.tools && e.data.tools == "68") {
  4622. U.MD.D.I.openApplication("timeAxis")
  4623. } else if (e.data.tools && e.data.tools == "openCourse") {
  4624. let _data = {
  4625. typea: e.data.typea || '',
  4626. typeb: e.data.typeb || '',
  4627. typed: e.data.typed || '',
  4628. }
  4629. U.MD.D.I.openInApplication("index", _data)
  4630. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4631. let _data = {
  4632. classid: e.data.classid || '',
  4633. }
  4634. U.MD.D.I.openInApplication("dataClass", _data)
  4635. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4636. let _data = {
  4637. cid: e.data.cid || '',
  4638. gid: e.data.gid || '',
  4639. }
  4640. U.MD.D.I.openInApplication("opencCscl", _data)
  4641. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4642. U.MD.D.I.openApplication("dataBoardTest")
  4643. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4644. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4645. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4646. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4647. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4648. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4649. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4650. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4651. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4652. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4653. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4654. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4655. }else if (e.data.tools && e.data.tools == "loginSz") {
  4656. U.MD.D.I.openInApplication("loginSz")
  4657. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4658. if($('#classroom_observation_board')[0]){
  4659. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4660. }
  4661. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4662. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4663. if($('#classroom_observation_ob_comment')[0]){
  4664. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4665. }
  4666. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4667. }else if (e.data.tools && e.data.tools == "logout"){
  4668. U.MD.U.LO.logoutSystem()
  4669. }else if (e.data.tools && e.data.tools == "getLogin"){
  4670. let _iframe = $('#UI_Login')[0];
  4671. if (_iframe) {
  4672. var userInfo = US.userInfo;
  4673. var type = 2
  4674. if(userInfo && userInfo.userid){
  4675. type = 1
  4676. }
  4677. _contentWindow = _iframe.contentWindow;
  4678. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4679. }
  4680. }
  4681. });
  4682. U.MD.D.I.selectUser = function () {
  4683. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4684. if (res.value[0].length > 0) {
  4685. US.userInfo = res.value[0][0];
  4686. $(".userName")[0].innerHTML = US.userInfo.username;
  4687. }
  4688. }, [], { "type": "GET", "withCredentials": true });
  4689. }
  4690. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4691. var _userinfo = US.userInfo, //登录用户信息
  4692. _userid = US.userInfo.userid, //登录用户id
  4693. _oid = _userinfo.organizeid,
  4694. _type = US.userInfo.type,
  4695. _org = US.userInfo.org,
  4696. _role = US.userInfo.role,
  4697. _classId = US.userInfo.classid;
  4698. if (_type == 4) {
  4699. tType = 4
  4700. }
  4701. switch (str) {
  4702. case "studyDetailNT": //无终端模式
  4703. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4704. setTimeout(() => {
  4705. U.MD.U.L.login();
  4706. }, 2000);
  4707. } else {
  4708. _formdiv = new U.UF.UI.form(
  4709. "课程详情",
  4710. $$("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 }), {
  4711. "id": "studyDetailNT",
  4712. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4713. "onresize": function () { }
  4714. }, {
  4715. closecallback: function () { }
  4716. }, { "style": { "height": "36px" } }).form; //创建窗体
  4717. _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); } }
  4718. break;
  4719. }
  4720. case "studyDetail":
  4721. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4722. setTimeout(() => {
  4723. U.MD.U.L.login();
  4724. }, 2000);
  4725. } else {
  4726. _formdiv = new U.UF.UI.form(
  4727. "课程详情",
  4728. $$("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 }), {
  4729. "id": "studyDetail",
  4730. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4731. "onresize": function () { }
  4732. }, {
  4733. closecallback: function () { }
  4734. }, { "style": { "height": "36px" } }).form; //创建窗体
  4735. _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); } }
  4736. break;
  4737. }
  4738. case "studyDetailTrain":
  4739. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4740. setTimeout(() => {
  4741. U.MD.U.L.login();
  4742. }, 2000);
  4743. } else {
  4744. _formdiv = new U.UF.UI.form(
  4745. "培训详情",
  4746. $$("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 }), {
  4747. "id": "studyDetailTrain",
  4748. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4749. "onresize": function () { }
  4750. }, {
  4751. closecallback: function () { }
  4752. }, { "style": { "height": "36px" } }).form; //创建窗体
  4753. _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); } }
  4754. break;
  4755. }
  4756. case "studyDetailS":
  4757. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4758. setTimeout(() => {
  4759. U.MD.U.L.login();
  4760. }, 2000);
  4761. } else {
  4762. _formdiv = new U.UF.UI.form(
  4763. "项目详情",
  4764. $$("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 }), {
  4765. "id": "studyDetailS",
  4766. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4767. "onresize": function () { }
  4768. }, {
  4769. closecallback: function () { }
  4770. }, { "style": { "height": "36px" } }).form; //创建窗体
  4771. _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); } }
  4772. break;
  4773. }
  4774. case "studyDetailStudio":
  4775. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4776. setTimeout(() => {
  4777. U.MD.U.L.login();
  4778. }, 2000);
  4779. } else {
  4780. _formdiv = new U.UF.UI.form(
  4781. "工作详情",
  4782. $$("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 }), {
  4783. "id": "studyDetailStudio",
  4784. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4785. "onresize": function () { }
  4786. }, {
  4787. closecallback: function () { }
  4788. }, { "style": { "height": "36px" } }).form; //创建窗体
  4789. _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); } }
  4790. break;
  4791. }
  4792. case "studyDetailS5":
  4793. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4794. setTimeout(() => {
  4795. U.MD.U.L.login();
  4796. }, 2000);
  4797. } else {
  4798. _formdiv = new U.UF.UI.form(
  4799. "项目详情",
  4800. $$("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 }), {
  4801. "id": "studyDetailS",
  4802. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4803. "onresize": function () { }
  4804. }, {
  4805. closecallback: function () { }
  4806. }, { "style": { "height": "36px" } }).form; //创建窗体
  4807. _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); } }
  4808. break;
  4809. }
  4810. case "studyDetailGM":
  4811. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4812. setTimeout(() => {
  4813. U.MD.U.L.login();
  4814. }, 2000);
  4815. } else {
  4816. _formdiv = new U.UF.UI.form(
  4817. "课程详情",
  4818. $$("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 }), {
  4819. "id": "studyDetail",
  4820. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4821. "onresize": function () { }
  4822. }, {
  4823. closecallback: function () { }
  4824. }, { "style": { "height": "36px" } }).form; //创建窗体
  4825. _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); } }
  4826. break;
  4827. }
  4828. case "hanUrl":
  4829. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4830. setTimeout(() => {
  4831. U.MD.U.L.login();
  4832. }, 2000);
  4833. } else {
  4834. _formdiv = new U.UF.UI.form(
  4835. "汉字宫",
  4836. $$("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" }), {
  4837. "id": "hanUrl",
  4838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4839. "onresize": function () { }
  4840. }, {
  4841. closecallback: function () { }
  4842. }, { "style": { "height": "36px" } }).form; //创建窗体
  4843. _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); } }
  4844. break;
  4845. }
  4846. case "index":
  4847. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4848. setTimeout(() => {
  4849. U.MD.U.L.login();
  4850. }, 2000);
  4851. } else {
  4852. _formdiv = new U.UF.UI.form(
  4853. "课程中心",
  4854. $$("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 }), {
  4855. "id": "study",
  4856. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4857. "onresize": function () { }
  4858. }, {
  4859. closecallback: function () { }
  4860. }, { "style": { "height": "36px" } }).form; //创建窗体
  4861. _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); } }
  4862. break;
  4863. }
  4864. case "dataClass":
  4865. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4866. setTimeout(() => {
  4867. U.MD.U.L.login();
  4868. }, 2000);
  4869. } else {
  4870. _formdiv = new U.UF.UI.form(
  4871. "数据报告",
  4872. $$("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 }), {
  4873. "id": "dataClass",
  4874. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4875. "onresize": function () { }
  4876. }, {
  4877. closecallback: function () { }
  4878. }, { "style": { "height": "36px" } }).form; //创建窗体
  4879. _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); } }
  4880. break;
  4881. }
  4882. case "opencCscl":
  4883. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4884. setTimeout(() => {
  4885. U.MD.U.L.login();
  4886. }, 2000);
  4887. } else {
  4888. _formdiv = new U.UF.UI.form(
  4889. "协同建构",
  4890. $$("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 }), {
  4891. "id": "futureClass",
  4892. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4893. "onresize": function () { }
  4894. }, {
  4895. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4896. }, { "style": { "height": "36px" } }).form; //创建窗体
  4897. _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); } }
  4898. break;
  4899. }
  4900. case "openCourseUpdate":
  4901. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4902. setTimeout(() => {
  4903. U.MD.U.L.login();
  4904. }, 2000);
  4905. } else {
  4906. _formdiv = new U.UF.UI.form(
  4907. "课程管理",
  4908. $$("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 }), {
  4909. "id": "openCourseUpdate",
  4910. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4911. "onresize": function () { }
  4912. }, {
  4913. closecallback: function () { }
  4914. }, { "style": { "height": "36px" } }).form; //创建窗体
  4915. break;
  4916. }
  4917. case "openNewCourseUpdate":
  4918. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4919. setTimeout(() => {
  4920. U.MD.U.L.login();
  4921. }, 2000);
  4922. } else {
  4923. _formdiv = new U.UF.UI.form(
  4924. "课程管理",
  4925. $$("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 }), {
  4926. "id": "openCourseUpdate",
  4927. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4928. "onresize": function () { }
  4929. }, {
  4930. closecallback: function () { }
  4931. }, { "style": { "height": "36px" } }).form; //创建窗体
  4932. break;
  4933. }
  4934. case "openCourseEUpdate":
  4935. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4936. setTimeout(() => {
  4937. U.MD.U.L.login();
  4938. }, 2000);
  4939. } else {
  4940. _formdiv = new U.UF.UI.form(
  4941. "课程管理",
  4942. $$("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 }), {
  4943. "id": "openCourseUpdate",
  4944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4945. "onresize": function () { }
  4946. }, {
  4947. closecallback: function () { }
  4948. }, { "style": { "height": "36px" } }).form; //创建窗体
  4949. break;
  4950. }
  4951. case "openCourseAiUpdate":
  4952. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4953. setTimeout(() => {
  4954. U.MD.U.L.login();
  4955. }, 2000);
  4956. } else {
  4957. _formdiv = new U.UF.UI.form(
  4958. "课程管理",
  4959. $$("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 }), {
  4960. "id": "openCourseUpdate",
  4961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4962. "onresize": function () { }
  4963. }, {
  4964. closecallback: function () { }
  4965. }, { "style": { "height": "36px" } }).form; //创建窗体
  4966. break;
  4967. }
  4968. case "openCourseAiUpdate2":
  4969. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4970. setTimeout(() => {
  4971. U.MD.U.L.login();
  4972. }, 2000);
  4973. } else {
  4974. _formdiv = new U.UF.UI.form(
  4975. "课程管理",
  4976. $$("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 }), {
  4977. "id": "openCourseUpdate",
  4978. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4979. "onresize": function () { }
  4980. }, {
  4981. closecallback: function () { }
  4982. }, { "style": { "height": "36px" } }).form; //创建窗体
  4983. break;
  4984. }
  4985. case "openCourseNewUpdate":
  4986. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4987. setTimeout(() => {
  4988. U.MD.U.L.login();
  4989. }, 2000);
  4990. } else {
  4991. _formdiv = new U.UF.UI.form(
  4992. "课程管理",
  4993. $$("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 }), {
  4994. "id": "openCourseUpdate",
  4995. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4996. "onresize": function () { }
  4997. }, {
  4998. closecallback: function () { }
  4999. }, { "style": { "height": "36px" } }).form; //创建窗体
  5000. break;
  5001. }
  5002. case "inviteLoginSz":
  5003. _formdiv = new U.UF.UI.form(
  5004. "随机码登录",
  5005. $$("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 }), {
  5006. "id": "loginSz",
  5007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5008. "onresize": function () { }
  5009. }, {
  5010. closecallback: function () { }
  5011. }, { "style": { "height": "36px" } }).form; //创建窗体
  5012. break;
  5013. case "loginSz":
  5014. _formdiv = new U.UF.UI.form(
  5015. "教师登录",
  5016. $$("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" }), {
  5017. "id": "loginSz",
  5018. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5019. "onresize": function () { }
  5020. }, {
  5021. closecallback: function () { }
  5022. }, { "style": { "height": "36px" } }).form; //创建窗体
  5023. break;
  5024. case "teacher":
  5025. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5026. setTimeout(() => {
  5027. U.MD.U.L.login();
  5028. }, 2000);
  5029. } else {
  5030. _formdiv = new U.UF.UI.form(
  5031. "教师管理",
  5032. $$("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 }), {
  5033. "id": "teacher",
  5034. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5035. "onresize": function () { }
  5036. }, {
  5037. closecallback: function () { }
  5038. }, { "style": { "height": "36px" } }).form; //创建窗体
  5039. break;
  5040. }
  5041. case "dataBoardSZArea":
  5042. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5043. setTimeout(() => {
  5044. U.MD.U.L.login();
  5045. }, 2000);
  5046. } else {
  5047. _formdiv = new U.UF.UI.form(
  5048. "综合数据看板",
  5049. $$("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 }), {
  5050. "id": "dataBoardSZArea",
  5051. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5052. "onresize": function () { }
  5053. }, {
  5054. closecallback: function () { }
  5055. }, { "style": { "height": "36px" } }).form; //创建窗体
  5056. break;
  5057. }
  5058. case "dataBoardSZCity":
  5059. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5060. setTimeout(() => {
  5061. U.MD.U.L.login();
  5062. }, 2000);
  5063. } else {
  5064. _formdiv = new U.UF.UI.form(
  5065. "综合数据看板",
  5066. $$("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 }), {
  5067. "id": "dataBoardSZCity",
  5068. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5069. "onresize": function () { }
  5070. }, {
  5071. closecallback: function () { }
  5072. }, { "style": { "height": "36px" } }).form; //创建窗体
  5073. break;
  5074. }
  5075. case "classroom_observation_board":
  5076. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5077. setTimeout(() => {
  5078. U.MD.U.L.login();
  5079. }, 2000);
  5080. } else {
  5081. _formdiv = new U.UF.UI.form(
  5082. "课堂观察",
  5083. $$("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 }), {
  5084. "id": "classroom_observation_board",
  5085. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5086. "onresize": function () { }
  5087. }, {
  5088. closecallback: function () { }
  5089. }, { "style": { "height": "36px" } }).form; //创建窗体
  5090. break;
  5091. }
  5092. case "classroom_observation_ob_comment":
  5093. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5094. setTimeout(() => {
  5095. U.MD.U.L.login();
  5096. }, 2000);
  5097. } else {
  5098. _formdiv = new U.UF.UI.form(
  5099. "课堂审核",
  5100. $$("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 }), {
  5101. "id": "classroom_observation_ob_comment",
  5102. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5103. "onresize": function () { }
  5104. }, {
  5105. closecallback: function () { }
  5106. }, { "style": { "height": "36px" } }).form; //创建窗体
  5107. break;
  5108. }
  5109. }
  5110. }
  5111. U.MD.D.I.openApplication = function (str, obj, info) {
  5112. obj = obj || {};
  5113. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5114. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5115. _userinfo = US.userInfo, //登录用户信息
  5116. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5117. _oid = obj.organizeid || _userinfo.organizeid,
  5118. _type = US.userInfo.type,
  5119. _org = US.userInfo.org,
  5120. _role = US.userInfo.role,
  5121. _classId = US.userInfo.classid,
  5122. _TscreenType = 1
  5123. _screenType = 2,
  5124. _SscreenType = 3;
  5125. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5126. return;
  5127. }
  5128. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5129. switch (str) {
  5130. case "studnetProject": //好友打开
  5131. _formdiv = new U.UF.UI.form(
  5132. "我的项目",
  5133. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5134. "id": "studnetProject",
  5135. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5136. "onresize": function () { }
  5137. }, {
  5138. closecallback: function () { }
  5139. }, { "style": { "height": "36px" } }).form; //创建窗体
  5140. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5141. break;
  5142. case "studentEvaluate": //好友打开
  5143. _formdiv = new U.UF.UI.form(
  5144. "我的评价",
  5145. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5146. "id": "studentEvaluate",
  5147. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5148. "onresize": function () { }
  5149. }, {
  5150. closecallback: function () { }
  5151. }, { "style": { "height": "36px" } }).form; //创建窗体
  5152. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5153. break;
  5154. case "my":
  5155. _formdiv = new U.UF.UI.form(
  5156. "我的资料",
  5157. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5158. "id": "my",
  5159. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5160. "onresize": function () { }
  5161. }, {
  5162. closecallback: function () { }
  5163. }, { "style": { "height": "36px" } }).form; //创建窗体
  5164. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5165. break;
  5166. case "program":
  5167. _formdiv = new U.UF.UI.form(
  5168. "编程平台",
  5169. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5170. "id": "program",
  5171. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5172. "onresize": function () { }
  5173. }, {
  5174. closecallback: function () { }
  5175. }, { "style": { "height": "36px" } }).form; //创建窗体
  5176. _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); } }
  5177. break;
  5178. case "library":
  5179. _formdiv = new U.UF.UI.form(
  5180. "素材库",
  5181. $$("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 }), {
  5182. "id": "library",
  5183. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5184. "onresize": function () { }
  5185. }, {
  5186. closecallback: function () { }
  5187. }, { "style": { "height": "36px" } }).form; //创建窗体
  5188. _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); } }
  5189. break;
  5190. case "whiteboard":
  5191. _formdiv = new U.UF.UI.form(
  5192. "电子白板",
  5193. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5194. "id": "whiteboard",
  5195. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5196. "onresize": function () { }
  5197. }, {
  5198. closecallback: function () { }
  5199. }, { "style": { "height": "36px" } }).form; //创建窗体
  5200. _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); } }
  5201. break;
  5202. case "investigation":
  5203. _formdiv = new U.UF.UI.form(
  5204. "问卷调查",
  5205. $$("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 }), {
  5206. "id": "investigation",
  5207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5208. "onresize": function () { }
  5209. }, {
  5210. closecallback: function () { }
  5211. }, { "style": { "height": "36px" } }).form; //创建窗体
  5212. _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); } }
  5213. break;
  5214. case "note":
  5215. _formdiv = new U.UF.UI.form(
  5216. "便签分类",
  5217. $$("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 }), {
  5218. "id": "note",
  5219. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5220. "onresize": function () { }
  5221. }, {
  5222. closecallback: function () { }
  5223. }, { "style": { "height": "36px" } }).form; //创建窗体
  5224. _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); } }
  5225. break;
  5226. // case "score":
  5227. // _formdiv = new U.UF.UI.form(
  5228. // "量规评分",
  5229. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5230. // "id": "score",
  5231. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5232. // "onresize": function() {}
  5233. // }, {
  5234. // closecallback: function() {}
  5235. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5236. // _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); } }
  5237. // break;
  5238. case "mind":
  5239. _formdiv = new U.UF.UI.form(
  5240. "思维导图",
  5241. $$("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"
  5242. "id": "mind",
  5243. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5244. "onresize": function () { }
  5245. }, {
  5246. closecallback: function () { }
  5247. }, { "style": { "height": "36px" } }).form; //创建窗体
  5248. _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); } }
  5249. break;
  5250. case "doc":
  5251. // U.MD.D.I.isRoom();
  5252. _formdiv = new U.UF.UI.form(
  5253. "协同文档",
  5254. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5255. "id": "doc",
  5256. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5257. "onresize": function () { }
  5258. }, {
  5259. closecallback: function () { }
  5260. }, { "style": { "height": "36px" } }).form; //创建窗体
  5261. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5262. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5263. // })
  5264. _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); } }
  5265. break;
  5266. case "studentStudy":
  5267. _formdiv = new U.UF.UI.form(
  5268. "课程中心",
  5269. $$("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
  5270. "id": "studentStudy",
  5271. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5272. "onresize": function () { }
  5273. }, {
  5274. closecallback: function () { }
  5275. }, { "style": { "height": "36px" } }).form; //创建窗体
  5276. _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); } }
  5277. break;
  5278. case "train": //好友打开
  5279. _formdiv = new U.UF.UI.form(
  5280. "训练平台",
  5281. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5282. "id": "train",
  5283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { }
  5287. }, { "style": { "height": "36px" } }).form; //创建窗体
  5288. _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); } }
  5289. break;
  5290. case "mindNetwork": //好友打开
  5291. _formdiv = new U.UF.UI.form(
  5292. "思维网格",
  5293. $$("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 }), {
  5294. "id": "mindNetwork",
  5295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5296. "onresize": function () { }
  5297. }, {
  5298. closecallback: function () { }
  5299. }, { "style": { "height": "36px" } }).form; //创建窗体
  5300. _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); } }
  5301. break;
  5302. case "studentClassRoom": //好友打开
  5303. _formdiv = new U.UF.UI.form(
  5304. "实时课堂",
  5305. $$("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 }), {
  5306. "id": "studentClassRoom",
  5307. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5308. "onresize": function () { }
  5309. }, {
  5310. closecallback: function () { }
  5311. }, { "style": { "height": "36px" } }).form; //创建窗体
  5312. _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); } }
  5313. setTimeout(() => {
  5314. U.UF.F.windowZooming(_formdiv)
  5315. }, 0);
  5316. break;
  5317. }
  5318. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5319. switch (str) {
  5320. case "studnetProject": //好友打开
  5321. _formdiv = new U.UF.UI.form(
  5322. "我的项目",
  5323. $$("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 }), {
  5324. "id": "studnetProject",
  5325. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5326. "onresize": function () { }
  5327. }, {
  5328. closecallback: function () { }
  5329. }, { "style": { "height": "36px" } }).form; //创建窗体
  5330. _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); } }
  5331. break;
  5332. case "studentEvaluate": //好友打开
  5333. _formdiv = new U.UF.UI.form(
  5334. "我的评价",
  5335. $$("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 }), {
  5336. "id": "studentEvaluate",
  5337. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5338. "onresize": function () { }
  5339. }, {
  5340. closecallback: function () { }
  5341. }, { "style": { "height": "36px" } }).form; //创建窗体
  5342. _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); } }
  5343. break;
  5344. case "my":
  5345. _formdiv = new U.UF.UI.form(
  5346. "我的资料",
  5347. $$("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 }), {
  5348. "id": "my",
  5349. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5350. "onresize": function () { }
  5351. }, {
  5352. closecallback: function () { }
  5353. }, { "style": { "height": "36px" } }).form; //创建窗体
  5354. _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); } }
  5355. break;
  5356. case "program":
  5357. _formdiv = new U.UF.UI.form(
  5358. "编程平台",
  5359. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5360. "id": "program",
  5361. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5362. "onresize": function () { }
  5363. }, {
  5364. closecallback: function () { }
  5365. }, { "style": { "height": "36px" } }).form; //创建窗体
  5366. _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); } }
  5367. break;
  5368. case "library":
  5369. _formdiv = new U.UF.UI.form(
  5370. "素材库",
  5371. $$("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 }), {
  5372. "id": "library",
  5373. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5374. "onresize": function () { }
  5375. }, {
  5376. closecallback: function () { }
  5377. }, { "style": { "height": "36px" } }).form; //创建窗体
  5378. _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); } }
  5379. break;
  5380. case "whiteboard":
  5381. _formdiv = new U.UF.UI.form(
  5382. "电子白板",
  5383. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5384. "id": "whiteboard",
  5385. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5386. "onresize": function () { }
  5387. }, {
  5388. closecallback: function () { }
  5389. }, { "style": { "height": "36px" } }).form; //创建窗体
  5390. _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); } }
  5391. break;
  5392. case "investigation":
  5393. _formdiv = new U.UF.UI.form(
  5394. "问卷调查",
  5395. $$("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 }), {
  5396. "id": "investigation",
  5397. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5398. "onresize": function () { }
  5399. }, {
  5400. closecallback: function () { }
  5401. }, { "style": { "height": "36px" } }).form; //创建窗体
  5402. _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); } }
  5403. break;
  5404. case "note":
  5405. _formdiv = new U.UF.UI.form(
  5406. "便签分类",
  5407. $$("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 }), {
  5408. "id": "note",
  5409. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5410. "onresize": function () { }
  5411. }, {
  5412. closecallback: function () { }
  5413. }, { "style": { "height": "36px" } }).form; //创建窗体
  5414. _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); } }
  5415. break;
  5416. // case "score":
  5417. // _formdiv = new U.UF.UI.form(
  5418. // "量规评分",
  5419. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5420. // "id": "score",
  5421. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5422. // "onresize": function() {}
  5423. // }, {
  5424. // closecallback: function() {}
  5425. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5426. // _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); } }
  5427. // break;
  5428. case "mind":
  5429. _formdiv = new U.UF.UI.form(
  5430. "思维导图",
  5431. $$("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"
  5432. "id": "mind",
  5433. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5434. "onresize": function () { }
  5435. }, {
  5436. closecallback: function () { }
  5437. }, { "style": { "height": "36px" } }).form; //创建窗体
  5438. _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); } }
  5439. break;
  5440. case "doc":
  5441. // U.MD.D.I.isRoom();
  5442. _formdiv = new U.UF.UI.form(
  5443. "协同文档",
  5444. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5445. "id": "doc",
  5446. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5447. "onresize": function () { }
  5448. }, {
  5449. closecallback: function () { }
  5450. }, { "style": { "height": "36px" } }).form; //创建窗体
  5451. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5452. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5453. })
  5454. _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); } }
  5455. break;
  5456. case "train": //好友打开
  5457. _formdiv = new U.UF.UI.form(
  5458. "训练平台",
  5459. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5460. "id": "train",
  5461. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5462. "onresize": function () { }
  5463. }, {
  5464. closecallback: function () { }
  5465. }, { "style": { "height": "36px" } }).form; //创建窗体
  5466. _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); } }
  5467. break;
  5468. case "studentStudy":
  5469. _formdiv = new U.UF.UI.form(
  5470. "课程中心",
  5471. $$("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
  5472. "id": "studentStudy",
  5473. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5474. "onresize": function () { }
  5475. }, {
  5476. closecallback: function () { }
  5477. }, { "style": { "height": "36px" } }).form; //创建窗体
  5478. _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); } }
  5479. break;
  5480. case "mindNetwork": //好友打开
  5481. _formdiv = new U.UF.UI.form(
  5482. "思维网格",
  5483. $$("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 }), {
  5484. "id": "mindNetwork",
  5485. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5486. "onresize": function () { }
  5487. }, {
  5488. closecallback: function () { }
  5489. }, { "style": { "height": "36px" } }).form; //创建窗体
  5490. _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); } }
  5491. break;
  5492. case "studentClassRoom": //好友打开
  5493. _formdiv = new U.UF.UI.form(
  5494. "实时课堂",
  5495. $$("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 }), {
  5496. "id": "studentClassRoom",
  5497. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5498. "onresize": function () { }
  5499. }, {
  5500. closecallback: function () { }
  5501. }, { "style": { "height": "36px" } }).form; //创建窗体
  5502. _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); } }
  5503. setTimeout(() => {
  5504. U.UF.F.windowZooming(_formdiv)
  5505. }, 0);
  5506. break;
  5507. }
  5508. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5509. //选择应用处理
  5510. switch (str) {
  5511. case "project": //好友打开
  5512. _formdiv = new U.UF.UI.form(
  5513. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5514. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5515. "id": "project",
  5516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5517. "onresize": function () { }
  5518. }, {
  5519. closecallback: function () { }
  5520. }, { "style": { "height": "36px" } }).form; //创建窗体
  5521. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5522. break;
  5523. case "student":
  5524. _formdiv = new U.UF.UI.form(
  5525. "学生管理",
  5526. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  5527. "id": "student",
  5528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5529. "onresize": function () { }
  5530. }, {
  5531. closecallback: function () { }
  5532. }, { "style": { "height": "36px" } }).form; //创建窗体
  5533. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5534. break;
  5535. case "evaluate":
  5536. _formdiv = new U.UF.UI.form(
  5537. "学生评价",
  5538. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5539. "id": "evaluate",
  5540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, { "style": { "height": "36px" } }).form; //创建窗体
  5545. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5546. break;
  5547. case "sys":
  5548. _formdiv = new U.UF.UI.form(
  5549. "目标管理",
  5550. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5551. "id": "sys",
  5552. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5553. "onresize": function () { }
  5554. }, {
  5555. closecallback: function () { }
  5556. }, { "style": { "height": "36px" } }).form; //创建窗体
  5557. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5558. break;
  5559. case "courseDesign":
  5560. _formdiv = new U.UF.UI.form(
  5561. "项目设计",
  5562. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5563. "id": "courseDesign",
  5564. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5565. "onresize": function () { }
  5566. }, {
  5567. closecallback: function () { }
  5568. }, { "style": { "height": "36px" } }).form; //创建窗体
  5569. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5570. break;
  5571. case "program":
  5572. _formdiv = new U.UF.UI.form(
  5573. "编程平台",
  5574. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5575. "id": "program",
  5576. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5577. "onresize": function () { }
  5578. }, {
  5579. closecallback: function () { }
  5580. }, { "style": { "height": "36px" } }).form; //创建窗体
  5581. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5582. break;
  5583. case "class":
  5584. _formdiv = new U.UF.UI.form(
  5585. "班级管理",
  5586. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5587. "id": "class",
  5588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5589. "onresize": function () { }
  5590. }, {
  5591. closecallback: function () { }
  5592. }, { "style": { "height": "36px" } }).form; //创建窗体
  5593. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5594. break;
  5595. case "Grade":
  5596. _formdiv = new U.UF.UI.form(
  5597. "年级管理",
  5598. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5599. "id": "Grade",
  5600. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5601. "onresize": function () { }
  5602. }, {
  5603. closecallback: function () { }
  5604. }, { "style": { "height": "36px" } }).form; //创建窗体
  5605. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5606. break;
  5607. case "teacherOffice":
  5608. _formdiv = new U.UF.UI.form(
  5609. "教研室",
  5610. $$("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 }), {
  5611. "id": "teacherOffice",
  5612. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5613. "onresize": function () { }
  5614. }, {
  5615. closecallback: function () { }
  5616. }, { "style": { "height": "36px" } }).form; //创建窗体
  5617. _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); } }
  5618. break;
  5619. case "my":
  5620. _formdiv = new U.UF.UI.form(
  5621. "我的资料",
  5622. $$("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 }), {
  5623. "id": "my",
  5624. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5625. "onresize": function () { }
  5626. }, {
  5627. closecallback: function () { }
  5628. }, { "style": { "height": "36px" } }).form; //创建窗体
  5629. _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); } }
  5630. break;
  5631. case "notice":
  5632. _formdiv = new U.UF.UI.form(
  5633. "通知公告",
  5634. $$("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 }), {
  5635. "id": "notice",
  5636. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5637. "onresize": function () { }
  5638. }, {
  5639. closecallback: function () { }
  5640. }, { "style": { "height": "36px" } }).form; //创建窗体
  5641. _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); } }
  5642. break;
  5643. case "library":
  5644. _formdiv = new U.UF.UI.form(
  5645. "素材库",
  5646. $$("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 }), {
  5647. "id": "library",
  5648. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5649. "onresize": function () { }
  5650. }, {
  5651. closecallback: function () { }
  5652. }, { "style": { "height": "36px" } }).form; //创建窗体
  5653. _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); } }
  5654. break;
  5655. case "whiteboard":
  5656. _formdiv = new U.UF.UI.form(
  5657. "电子白板",
  5658. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5659. "id": "whiteboard",
  5660. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5661. "onresize": function () { }
  5662. }, {
  5663. closecallback: function () { }
  5664. }, { "style": { "height": "36px" } }).form; //创建窗体
  5665. _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); } }
  5666. break;
  5667. case "investigation":
  5668. _formdiv = new U.UF.UI.form(
  5669. "问卷调查",
  5670. $$("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 }), {
  5671. "id": "investigation",
  5672. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5673. "onresize": function () { }
  5674. }, {
  5675. closecallback: function () { }
  5676. }, { "style": { "height": "36px" } }).form; //创建窗体
  5677. _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); } }
  5678. break;
  5679. case "note":
  5680. _formdiv = new U.UF.UI.form(
  5681. "便签分类",
  5682. $$("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 }), {
  5683. "id": "note",
  5684. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5685. "onresize": function () { }
  5686. }, {
  5687. closecallback: function () { }
  5688. }, { "style": { "height": "36px" } }).form; //创建窗体
  5689. _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); } }
  5690. break;
  5691. // case "score":
  5692. // _formdiv = new U.UF.UI.form(
  5693. // "量规评分",
  5694. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5695. // "id": "score",
  5696. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5697. // "onresize": function() {}
  5698. // }, {
  5699. // closecallback: function() {}
  5700. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5701. // _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); } }
  5702. // break;
  5703. case "mind":
  5704. _formdiv = new U.UF.UI.form(
  5705. "思维导图",
  5706. $$("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"
  5707. "id": "mind",
  5708. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5709. "onresize": function () { }
  5710. }, {
  5711. closecallback: function () { }
  5712. }, { "style": { "height": "36px" } }).form; //创建窗体
  5713. _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); } }
  5714. break;
  5715. case "doc":
  5716. // U.MD.D.I.isRoom();
  5717. _formdiv = new U.UF.UI.form(
  5718. "协同文档",
  5719. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5720. "id": "doc",
  5721. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5722. "onresize": function () { }
  5723. }, {
  5724. closecallback: function () { }
  5725. }, { "style": { "height": "36px" } }).form; //创建窗体
  5726. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5727. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5728. })
  5729. _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); } }
  5730. break;
  5731. case "study":
  5732. _formdiv = new U.UF.UI.form(
  5733. "课程中心",
  5734. $$("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
  5735. "id": "study",
  5736. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5737. "onresize": function () { }
  5738. }, {
  5739. closecallback: function () { }
  5740. }, { "style": { "height": "36px" } }).form; //创建窗体
  5741. _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); } }
  5742. break;
  5743. case "mindNetwork": //好友打开
  5744. _formdiv = new U.UF.UI.form(
  5745. "思维网格",
  5746. $$("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 }), {
  5747. "id": "mindNetwork",
  5748. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5749. "onresize": function () { }
  5750. }, {
  5751. closecallback: function () { }
  5752. }, { "style": { "height": "36px" } }).form; //创建窗体
  5753. _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); } }
  5754. break;
  5755. case "train": //好友打开
  5756. _formdiv = new U.UF.UI.form(
  5757. "训练平台",
  5758. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5759. "id": "mindNetwork",
  5760. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5761. "onresize": function () { }
  5762. }, {
  5763. closecallback: function () { }
  5764. }, { "style": { "height": "36px" } }).form; //创建窗体
  5765. _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); } }
  5766. break;
  5767. case "teacherClassRoom": //好友打开
  5768. _formdiv = new U.UF.UI.form(
  5769. "实时课堂",
  5770. $$("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 }), {
  5771. "id": "teacherClassRoom",
  5772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5773. "onresize": function () { }
  5774. }, {
  5775. closecallback: function () { }
  5776. }, { "style": { "height": "36px" } }).form; //创建窗体
  5777. _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); } }
  5778. setTimeout(() => {
  5779. U.UF.F.windowZooming(_formdiv)
  5780. }, 0);
  5781. break;
  5782. }
  5783. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5784. switch (str) {
  5785. case "project": //好友打开
  5786. _formdiv = new U.UF.UI.form(
  5787. "课程管理",
  5788. $$("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 }), {
  5789. "id": "project",
  5790. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5791. "onresize": function () { }
  5792. }, {
  5793. closecallback: function () { }
  5794. }, { "style": { "height": "36px" } }).form; //创建窗体
  5795. _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); } }
  5796. break;
  5797. case "evaluate":
  5798. _formdiv = new U.UF.UI.form(
  5799. "学生评价",
  5800. $$("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 }), {
  5801. "id": "evaluate",
  5802. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5803. "onresize": function () { }
  5804. }, {
  5805. closecallback: function () { }
  5806. }, { "style": { "height": "36px" } }).form; //创建窗体
  5807. _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); } }
  5808. break;
  5809. case "notice":
  5810. _formdiv = new U.UF.UI.form(
  5811. "通知公告",
  5812. $$("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 }), {
  5813. "id": "notice",
  5814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5815. "onresize": function () { }
  5816. }, {
  5817. closecallback: function () { }
  5818. }, { "style": { "height": "36px" } }).form; //创建窗体
  5819. _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); } }
  5820. break;
  5821. case "stuLibrary":
  5822. _formdiv = new U.UF.UI.form(
  5823. "学习资料",
  5824. $$("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 }), {
  5825. "id": "stuLibrary",
  5826. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5827. "onresize": function () { }
  5828. }, {
  5829. closecallback: function () { }
  5830. }, { "style": { "height": "36px" } }).form; //创建窗体
  5831. _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); } }
  5832. break;
  5833. case "program":
  5834. _formdiv = new U.UF.UI.form(
  5835. "编程平台",
  5836. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5837. "id": "program",
  5838. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5839. "onresize": function () { }
  5840. }, {
  5841. closecallback: function () { }
  5842. }, { "style": { "height": "36px" } }).form; //创建窗体
  5843. _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); } }
  5844. break;
  5845. case "whiteboard":
  5846. _formdiv = new U.UF.UI.form(
  5847. "电子白板",
  5848. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5849. "id": "whiteboard",
  5850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5851. "onresize": function () { }
  5852. }, {
  5853. closecallback: function () { }
  5854. }, { "style": { "height": "36px" } }).form; //创建窗体
  5855. _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); } }
  5856. break;
  5857. case "investigation":
  5858. _formdiv = new U.UF.UI.form(
  5859. "问卷调查",
  5860. $$("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 }), {
  5861. "id": "investigation",
  5862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5863. "onresize": function () { }
  5864. }, {
  5865. closecallback: function () { }
  5866. }, { "style": { "height": "36px" } }).form; //创建窗体
  5867. _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); } }
  5868. break;
  5869. case "mind":
  5870. _formdiv = new U.UF.UI.form(
  5871. "思维导图",
  5872. $$("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"
  5873. "id": "mind",
  5874. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5875. "onresize": function () { }
  5876. }, {
  5877. closecallback: function () { }
  5878. }, { "style": { "height": "36px" } }).form; //创建窗体
  5879. _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); } }
  5880. break;
  5881. case "doc":
  5882. // U.MD.D.I.isRoom();
  5883. _formdiv = new U.UF.UI.form(
  5884. "协同文档",
  5885. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5886. "id": "doc",
  5887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5888. "onresize": function () { }
  5889. }, {
  5890. closecallback: function () { }
  5891. }, { "style": { "height": "36px" } }).form; //创建窗体
  5892. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5893. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5894. })
  5895. _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); } }
  5896. break;
  5897. case "study":
  5898. _formdiv = new U.UF.UI.form(
  5899. "课程中心",
  5900. $$("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
  5901. "id": "study",
  5902. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5903. "onresize": function () { }
  5904. }, {
  5905. closecallback: function () { }
  5906. }, { "style": { "height": "36px" } }).form; //创建窗体
  5907. _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); } }
  5908. break;
  5909. case "mindNetwork": //好友打开
  5910. _formdiv = new U.UF.UI.form(
  5911. "思维网格",
  5912. $$("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 }), {
  5913. "id": "mindNetwork",
  5914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5915. "onresize": function () { }
  5916. }, {
  5917. closecallback: function () { }
  5918. }, { "style": { "height": "36px" } }).form; //创建窗体
  5919. _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); } }
  5920. break;
  5921. case "train": //好友打开
  5922. _formdiv = new U.UF.UI.form(
  5923. "训练平台",
  5924. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5925. "id": "train",
  5926. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5927. "onresize": function () { }
  5928. }, {
  5929. closecallback: function () { }
  5930. }, { "style": { "height": "36px" } }).form; //创建窗体
  5931. _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); } }
  5932. break;
  5933. case "sys":
  5934. _formdiv = new U.UF.UI.form(
  5935. "目标管理",
  5936. $$("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 }), {
  5937. "id": "sys",
  5938. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5939. "onresize": function () { }
  5940. }, {
  5941. closecallback: function () { }
  5942. }, { "style": { "height": "36px" } }).form; //创建窗体
  5943. _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); } }
  5944. break;
  5945. case "courseDesign":
  5946. _formdiv = new U.UF.UI.form(
  5947. "项目设计",
  5948. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5949. "id": "courseDesign",
  5950. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5951. "onresize": function () { }
  5952. }, {
  5953. closecallback: function () { }
  5954. }, { "style": { "height": "36px" } }).form; //创建窗体
  5955. _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); } }
  5956. break;
  5957. }
  5958. } else if (!_type) {
  5959. switch (str) {
  5960. case "my":
  5961. _formdiv = new U.UF.UI.form(
  5962. "我的资料",
  5963. $$("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 }), {
  5964. "id": "my",
  5965. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5966. "onresize": function () { }
  5967. }, {
  5968. closecallback: function () { }
  5969. }, { "style": { "height": "36px" } }).form; //创建窗体
  5970. _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); } }
  5971. break;
  5972. }
  5973. }
  5974. switch (str) {
  5975. // AIprogram2 AI体验 aihub.cocorobo.cn
  5976. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5977. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5978. case "formulaEdi": //公式编辑
  5979. _formdiv = new U.UF.UI.form(
  5980. "公式编辑",
  5981. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5982. "id": "formulaEdi",
  5983. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5984. "onresize": function () { }
  5985. }, {
  5986. closecallback: function () { }
  5987. }, { "style": { "height": "36px" } }).form; //创建窗体
  5988. _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); } }
  5989. break;
  5990. case "molStr": //分子结构
  5991. _formdiv = new U.UF.UI.form(
  5992. "分子结构",
  5993. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5994. "id": "molStr",
  5995. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5996. "onresize": function () { }
  5997. }, {
  5998. closecallback: function () { }
  5999. }, { "style": { "height": "36px" } }).form; //创建窗体
  6000. _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); } }
  6001. break;
  6002. case "timeAxis": //时间轴
  6003. _formdiv = new U.UF.UI.form(
  6004. "时间轴",
  6005. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6006. "id": "timeAxis",
  6007. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6008. "onresize": function () { }
  6009. }, {
  6010. closecallback: function () { }
  6011. }, { "style": { "height": "36px" } }).form; //创建窗体
  6012. _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); } }
  6013. break;
  6014. case "AIprogram2": //AI体验
  6015. _formdiv = new U.UF.UI.form(
  6016. "AI体验",
  6017. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6018. "id": "AIprogram2",
  6019. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6020. "onresize": function () { }
  6021. }, {
  6022. closecallback: function () { }
  6023. }, { "style": { "height": "36px" } }).form; //创建窗体
  6024. _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); } }
  6025. break;
  6026. case "Pythonprogram": //python编程
  6027. _formdiv = new U.UF.UI.form(
  6028. "Python编程",
  6029. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6030. "id": "Pythonprogram",
  6031. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6032. "onresize": function () { }
  6033. }, {
  6034. closecallback: function () { }
  6035. }, { "style": { "height": "36px" } }).form; //创建窗体
  6036. _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); } }
  6037. break;
  6038. case "AIprogram": //ai编程
  6039. _formdiv = new U.UF.UI.form(
  6040. "AI编程平台",
  6041. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6042. "id": "AIprogram",
  6043. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6044. "onresize": function () { }
  6045. }, {
  6046. closecallback: function () { }
  6047. }, { "style": { "height": "36px" } }).form; //创建窗体
  6048. _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); } }
  6049. break;
  6050. case "CocoPi": //CocoPi
  6051. _formdiv = new U.UF.UI.form(
  6052. "CocoPi",
  6053. $$("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" }), {
  6054. "id": "CocoPi",
  6055. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6056. "onresize": function () { }
  6057. }, {
  6058. closecallback: function () { }
  6059. }, { "style": { "height": "36px" } }).form; //创建窗体
  6060. _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); } }
  6061. break;
  6062. case "Wood": //Wood
  6063. _formdiv = new U.UF.UI.form(
  6064. "海龟编程",
  6065. $$("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/" }), {
  6066. "id": "Wood",
  6067. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6068. "onresize": function () { }
  6069. }, {
  6070. closecallback: function () { }
  6071. }, { "style": { "height": "36px" } }).form; //创建窗体
  6072. _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); } }
  6073. break;
  6074. case "car": //模拟驾驶
  6075. _formdiv = new U.UF.UI.form(
  6076. "模拟驾驶",
  6077. $$("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/" }), {
  6078. "id": "car",
  6079. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6080. "onresize": function () { }
  6081. }, {
  6082. closecallback: function () { }
  6083. }, { "style": { "height": "36px" } }).form; //创建窗体
  6084. _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); } }
  6085. break;
  6086. case "lineSearch": //路径搜索
  6087. _formdiv = new U.UF.UI.form(
  6088. "路径搜索",
  6089. $$("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/" }), {
  6090. "id": "lineSearch",
  6091. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6092. "onresize": function () { }
  6093. }, {
  6094. closecallback: function () { }
  6095. }, { "style": { "height": "36px" } }).form; //创建窗体
  6096. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6097. break;
  6098. case "deepLearning": //深度学习
  6099. _formdiv = new U.UF.UI.form(
  6100. "深度学习",
  6101. $$("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/#" }), {
  6102. "id": "deepLearning",
  6103. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6104. "onresize": function () { }
  6105. }, {
  6106. closecallback: function () { }
  6107. }, { "style": { "height": "36px" } }).form; //创建窗体
  6108. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6109. break;
  6110. case "allHistory": //深度学习
  6111. _formdiv = new U.UF.UI.form(
  6112. "全历史",
  6113. $$("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/" }), {
  6114. "id": "allHistory",
  6115. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6116. "onresize": function () { }
  6117. }, {
  6118. closecallback: function () { }
  6119. }, { "style": { "height": "36px" } }).form; //创建窗体
  6120. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6121. break;
  6122. case "chatPDF": //ai编程
  6123. _formdiv = new U.UF.UI.form(
  6124. "chatPDF",
  6125. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6126. "id": "chatPDF",
  6127. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6128. "onresize": function () { }
  6129. }, {
  6130. closecallback: function () { }
  6131. }, { "style": { "height": "36px" } }).form; //创建窗体
  6132. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6133. break;
  6134. case "resources": //国家教育
  6135. _formdiv = new U.UF.UI.form(
  6136. "国家教育",
  6137. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6138. "id": "resources",
  6139. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6140. "onresize": function () { }
  6141. }, {
  6142. closecallback: function () { }
  6143. }, { "style": { "height": "36px" } }).form; //创建窗体
  6144. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6145. break;
  6146. case "codeEdit": //源码编辑
  6147. _formdiv = new U.UF.UI.form(
  6148. "源码编辑",
  6149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6150. "id": "codeEdit",
  6151. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6152. "onresize": function () { }
  6153. }, {
  6154. closecallback: function () { }
  6155. }, { "style": { "height": "36px" } }).form; //创建窗体
  6156. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6157. break; //
  6158. case "MindMap": //MindMap
  6159. _formdiv = new U.UF.UI.form(
  6160. "MindMap",
  6161. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6162. "id": "MindMap",
  6163. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6164. "onresize": function () { }
  6165. }, {
  6166. closecallback: function () { }
  6167. }, { "style": { "height": "36px" } }).form; //创建窗体
  6168. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6169. break;
  6170. case "netWorkPanel": //netWorkPanel
  6171. _formdiv = new U.UF.UI.form(
  6172. "netWorkPanel",
  6173. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6174. "id": "netWorkPanel",
  6175. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6176. "onresize": function () { }
  6177. }, {
  6178. closecallback: function () { }
  6179. }, { "style": { "height": "36px" } }).form; //创建窗体
  6180. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6181. break;
  6182. case "GeoGebra": //GeoGebra
  6183. _formdiv = new U.UF.UI.form(
  6184. "GeoGebra",
  6185. $$("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" }), {
  6186. "id": "GeoGebra",
  6187. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6188. "onresize": function () { }
  6189. }, {
  6190. closecallback: function () { }
  6191. }, { "style": { "height": "36px" } }).form; //创建窗体
  6192. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6193. break;
  6194. case "translation": //翻译
  6195. _formdiv = new U.UF.UI.form(
  6196. "翻译",
  6197. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6198. "id": "translation",
  6199. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6200. "onresize": function () { }
  6201. }, {
  6202. closecallback: function () { }
  6203. }, { "style": { "height": "36px" } }).form; //创建窗体
  6204. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6205. break;
  6206. case "mohe": //魔盒
  6207. _formdiv = new U.UF.UI.form(
  6208. "魔盒识字",
  6209. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6210. "id": "mohe",
  6211. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6212. "onresize": function () { }
  6213. }, {
  6214. closecallback: function () { }
  6215. }, { "style": { "height": "36px" } }).form; //创建窗体
  6216. _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); } }
  6217. break;
  6218. case "24game": //24点
  6219. _formdiv = new U.UF.UI.form(
  6220. "24点",
  6221. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6222. "id": "24game",
  6223. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6224. "onresize": function () { }
  6225. }, {
  6226. closecallback: function () { }
  6227. }, { "style": { "height": "36px" } }).form; //创建窗体
  6228. _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); } }
  6229. break;
  6230. case "case":
  6231. _formdiv = new U.UF.UI.form(
  6232. "课程进展",
  6233. $$("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 }), {
  6234. "id": "case",
  6235. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6236. "onresize": function () { }
  6237. }, {
  6238. closecallback: function () { }
  6239. }, { "style": { "height": "36px" } }).form; //创建窗体
  6240. _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); } }
  6241. break;
  6242. case "snf":
  6243. _formdiv = new U.UF.UI.form(
  6244. "赛诺梵",
  6245. $$("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" }), {
  6246. "id": "snf",
  6247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6248. "onresize": function () { }
  6249. }, {
  6250. closecallback: function () { }
  6251. }, { "style": { "height": "36px" } }).form; //创建窗体
  6252. _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); } }
  6253. break;
  6254. case "hanFamily":
  6255. _formdiv = new U.UF.UI.form(
  6256. "汉字家族",
  6257. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6258. "id": "hanFamily",
  6259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6260. "onresize": function () { }
  6261. }, {
  6262. closecallback: function () { }
  6263. }, { "style": { "height": "36px" } }).form; //创建窗体
  6264. _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); } }
  6265. break;
  6266. case "hanClassics":
  6267. _formdiv = new U.UF.UI.form(
  6268. "国学经典",
  6269. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6270. "id": "hanClassics",
  6271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6272. "onresize": function () { }
  6273. }, {
  6274. closecallback: function () { }
  6275. }, { "style": { "height": "36px" } }).form; //创建窗体
  6276. _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); } }
  6277. break;
  6278. case "hanTraining":
  6279. _formdiv = new U.UF.UI.form(
  6280. "笔画训练",
  6281. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6282. "id": "hanTraining",
  6283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6284. "onresize": function () { }
  6285. }, {
  6286. closecallback: function () { }
  6287. }, { "style": { "height": "36px" } }).form; //创建窗体
  6288. _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); } }
  6289. break;
  6290. case "hanClass":
  6291. _formdiv = new U.UF.UI.form(
  6292. "书法课堂",
  6293. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6294. "id": "hanClass",
  6295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6296. "onresize": function () { }
  6297. }, {
  6298. closecallback: function () { }
  6299. }, { "style": { "height": "36px" } }).form; //创建窗体
  6300. _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); } }
  6301. break;
  6302. case "han":
  6303. _formdiv = new U.UF.UI.form(
  6304. "汉字宫",
  6305. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6306. "id": "han",
  6307. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6308. "onresize": function () { }
  6309. }, {
  6310. closecallback: function () { }
  6311. }, { "style": { "height": "36px" } }).form; //创建窗体
  6312. _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); } }
  6313. break;
  6314. case "projectGM": //课程管理
  6315. _formdiv = new U.UF.UI.form(
  6316. "课程管理",
  6317. $$("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 }), {
  6318. "id": "projectGM",
  6319. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6320. "onresize": function () { }
  6321. }, {
  6322. closecallback: function () { }
  6323. }, { "style": { "height": "36px" } }).form; //创建窗体
  6324. _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); } }
  6325. break;
  6326. case "studyGM": //课程中心
  6327. _formdiv = new U.UF.UI.form(
  6328. "课程中心",
  6329. $$("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
  6330. "id": "study",
  6331. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6332. "onresize": function () { }
  6333. }, {
  6334. closecallback: function () { }
  6335. }, { "style": { "height": "36px" } }).form; //创建窗体
  6336. _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); } }
  6337. break;
  6338. // studentGM
  6339. case "studentGM": //学生管理
  6340. _formdiv = new U.UF.UI.form(
  6341. "学生管理",
  6342. $$("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 }), {
  6343. "id": "studentGM",
  6344. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6345. "onresize": function () { }
  6346. }, {
  6347. closecallback: function () { }
  6348. }, { "style": { "height": "36px" } }).form; //创建窗体
  6349. _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); } }
  6350. break;
  6351. case "evaluateGM": //学生评价
  6352. _formdiv = new U.UF.UI.form(
  6353. "学生评价",
  6354. $$("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 }), {
  6355. "id": "evaluateGM",
  6356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6357. "onresize": function () { }
  6358. }, {
  6359. closecallback: function () { }
  6360. }, { "style": { "height": "36px" } }).form; //创建窗体
  6361. _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); } }
  6362. break;
  6363. // classGM
  6364. case "classGM": //班级管理
  6365. _formdiv = new U.UF.UI.form(
  6366. "班级管理",
  6367. $$("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 }), {
  6368. "id": "classGM",
  6369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6370. "onresize": function () { }
  6371. }, {
  6372. closecallback: function () { }
  6373. }, { "style": { "height": "36px" } }).form; //创建窗体
  6374. _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); } }
  6375. break;
  6376. // dataGM
  6377. case "dataGM":
  6378. _formdiv = new U.UF.UI.form(
  6379. "我的资料",
  6380. $$("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 }), {
  6381. "id": "dataGM",
  6382. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //创建窗体
  6387. _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); } }
  6388. break;
  6389. // caseGM
  6390. case "caseGM": //课程进展
  6391. _formdiv = new U.UF.UI.form(
  6392. "课程进展",
  6393. $$("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 }), {
  6394. "id": "caseGM",
  6395. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6396. "onresize": function () { }
  6397. }, {
  6398. closecallback: function () { }
  6399. }, { "style": { "height": "36px" } }).form; //创建窗体
  6400. _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); } }
  6401. break;
  6402. // meterialGM
  6403. case "meterialGM": //素材库
  6404. _formdiv = new U.UF.UI.form(
  6405. "素材库",
  6406. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  6407. "id": "meterialGM",
  6408. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6409. "onresize": function () { }
  6410. }, {
  6411. closecallback: function () { }
  6412. }, { "style": { "height": "36px" } }).form; //创建窗体
  6413. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6414. break;
  6415. // evaluateSGM
  6416. case "evaluateSGM": //我的评价
  6417. _formdiv = new U.UF.UI.form(
  6418. "我的评价",
  6419. $$("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 }), {
  6420. "id": "evaluateSGM",
  6421. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6422. "onresize": function () { }
  6423. }, {
  6424. closecallback: function () { }
  6425. }, { "style": { "height": "36px" } }).form; //创建窗体
  6426. _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); } }
  6427. break;
  6428. case "jupyter": //jupyter
  6429. _formdiv = new U.UF.UI.form(
  6430. "jupyter",
  6431. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6432. "id": "jupyter",
  6433. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6434. "onresize": function () { }
  6435. }, {
  6436. closecallback: function () { }
  6437. }, { "style": { "height": "36px" } }).form; //创建窗体
  6438. _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); } }
  6439. break;
  6440. case "number": //数字实验室
  6441. _formdiv = new U.UF.UI.form(
  6442. "数字实验室",
  6443. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6444. "id": "number",
  6445. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6446. "onresize": function () { }
  6447. }, {
  6448. closecallback: function () { }
  6449. }, { "style": { "height": "36px" } }).form; //创建窗体
  6450. _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); } }
  6451. break;
  6452. case "studentCourse": //项目管理 学生
  6453. _formdiv = new U.UF.UI.form(
  6454. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6455. $$("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 }), {
  6456. "id": "studentCourse",
  6457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6458. "onresize": function () { }
  6459. }, {
  6460. closecallback: function () { }
  6461. }, { "style": { "height": "36px" } }).form; //创建窗体
  6462. _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); } }
  6463. break;
  6464. case "studentCourseS": //项目管理 老师
  6465. _formdiv = new U.UF.UI.form(
  6466. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6467. $$("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 }), {
  6468. "id": "studentCourseS",
  6469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6470. "onresize": function () { }
  6471. }, {
  6472. closecallback: function () { }
  6473. }, { "style": { "height": "36px" } }).form; //创建窗体
  6474. _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); } }
  6475. break;
  6476. case "studentIndex": //项目中心
  6477. _formdiv = new U.UF.UI.form(
  6478. "项目中心",
  6479. $$("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 }), {
  6480. "id": "studentIndex",
  6481. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6482. "onresize": function () { }
  6483. }, {
  6484. closecallback: function () { }
  6485. }, { "style": { "height": "36px" } }).form; //创建窗体
  6486. _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); } }
  6487. break;
  6488. case "CaseDesignS":
  6489. _formdiv = new U.UF.UI.form(
  6490. "项目进展",
  6491. $$("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 }), {
  6492. "id": "case",
  6493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6494. "onresize": function () { }
  6495. }, {
  6496. closecallback: function () { }
  6497. }, { "style": { "height": "36px" } }).form; //创建窗体
  6498. _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); } }
  6499. break;
  6500. case "tcStudent": //腾讯学生管理
  6501. _formdiv = new U.UF.UI.form(
  6502. "学生管理",
  6503. $$("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 }), {
  6504. "id": "tcStudent",
  6505. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6506. "onresize": function () { }
  6507. }, {
  6508. closecallback: function () { }
  6509. }, { "style": { "height": "36px" } }).form; //创建窗体
  6510. _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); } }
  6511. break;
  6512. case "tcSchool": //腾讯学校管理
  6513. _formdiv = new U.UF.UI.form(
  6514. "学校管理",
  6515. $$("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 }), {
  6516. "id": "tcSchool",
  6517. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6518. "onresize": function () { }
  6519. }, {
  6520. closecallback: function () { }
  6521. }, { "style": { "height": "36px" } }).form; //创建窗体
  6522. _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); } }
  6523. break;
  6524. case "tcTeacher": //腾讯学校管理
  6525. _formdiv = new U.UF.UI.form(
  6526. "教师管理",
  6527. $$("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 }), {
  6528. "id": "tcTeacher",
  6529. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6530. "onresize": function () { }
  6531. }, {
  6532. closecallback: function () { }
  6533. }, { "style": { "height": "36px" } }).form; //创建窗体
  6534. _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); } }
  6535. break;
  6536. case "teacher":
  6537. _formdiv = new U.UF.UI.form(
  6538. "教师管理",
  6539. $$("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 }), {
  6540. "id": "teacher",
  6541. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6542. "onresize": function () { }
  6543. }, {
  6544. closecallback: function () { }
  6545. }, { "style": { "height": "36px" } }).form; //创建窗体
  6546. _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); } }
  6547. break;
  6548. case "tcData": //腾讯我的资料
  6549. _formdiv = new U.UF.UI.form(
  6550. "我的资料",
  6551. $$("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 }), {
  6552. "id": "tcData",
  6553. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6554. "onresize": function () { }
  6555. }, {
  6556. closecallback: function () { }
  6557. }, { "style": { "height": "36px" } }).form; //创建窗体
  6558. _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); } }
  6559. break;
  6560. case "tcNotice": //腾讯消息通知
  6561. _formdiv = new U.UF.UI.form(
  6562. "消息通知",
  6563. $$("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 }), {
  6564. "id": "tcNotice",
  6565. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6566. "onresize": function () { }
  6567. }, {
  6568. closecallback: function () { }
  6569. }, { "style": { "height": "36px" } }).form; //创建窗体
  6570. _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); } }
  6571. break;
  6572. case "myReport": //好友打开
  6573. _formdiv = new U.UF.UI.form(
  6574. "我的评价",
  6575. $$("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 }), {
  6576. "id": "myReport",
  6577. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6578. "onresize": function () { }
  6579. }, {
  6580. closecallback: function () { }
  6581. }, { "style": { "height": "36px" } }).form; //创建窗体
  6582. _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); } }
  6583. break;
  6584. case "learnAna": //好友打开
  6585. _formdiv = new U.UF.UI.form(
  6586. "学习分析",
  6587. $$("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 }), {
  6588. "id": "learnAna",
  6589. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6590. "onresize": function () { }
  6591. }, {
  6592. closecallback: function () { }
  6593. }, { "style": { "height": "36px" } }).form; //创建窗体
  6594. _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); } }
  6595. break;
  6596. case "AIChat": //AI共创
  6597. _formdiv = new U.UF.UI.form(
  6598. "AI共创",
  6599. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6600. "id": "AIChat",
  6601. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6602. "onresize": function () { }
  6603. }, {
  6604. istop: true,
  6605. closecallback: function () { $("#aichat_icon").remove(); },
  6606. narrowcallback: function () {
  6607. if (!$("#aichat_icon")[0]) {
  6608. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6609. }
  6610. },
  6611. }, { "style": { "height": "36px" } }).form; //创建窗体
  6612. _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); } }
  6613. break;
  6614. case "ainew": //AI共创
  6615. _formdiv = new U.UF.UI.form(
  6616. "AI协同",
  6617. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6618. "id": "ainew",
  6619. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6620. "onresize": function () { }
  6621. }, {
  6622. closecallback: function () { }
  6623. }, { "style": { "height": "36px" } }).form; //创建窗体
  6624. _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); } }
  6625. break;
  6626. case "gpt4": //gpt4
  6627. _formdiv = new U.UF.UI.form(
  6628. "AI助手",
  6629. $$("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 }), {
  6630. "id": "gpt4",
  6631. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6632. "onresize": function () { }
  6633. }, {
  6634. closecallback: function () { }
  6635. }, { "style": { "height": "36px" } }).form; //创建窗体
  6636. _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); } }
  6637. break;
  6638. case "aigpt": //gpt4
  6639. _formdiv = new U.UF.UI.form(
  6640. "AI助手+",
  6641. $$("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 }), {
  6642. "id": "aigpt",
  6643. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6644. "onresize": function () { }
  6645. }, {
  6646. closecallback: function () {
  6647. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6648. }
  6649. }, { "style": { "height": "36px" } }).form; //创建窗体
  6650. _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); } }
  6651. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6652. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6653. })
  6654. break;
  6655. case "aiKnowledge": //aiKnowledge
  6656. _formdiv = new U.UF.UI.form(
  6657. "知识建构",
  6658. $$("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 }), {
  6659. "id": "aiKnowledge",
  6660. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6661. "onresize": function () { }
  6662. }, {
  6663. closecallback: function () { }
  6664. }, { "style": { "height": "36px" } }).form; //创建窗体
  6665. _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); } }
  6666. break;
  6667. case "futureClass": //AI共创
  6668. _formdiv = new U.UF.UI.form(
  6669. "协同建构",
  6670. $$("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
  6671. "id": "synergyCourse",
  6672. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6673. "onresize": function () { }
  6674. }, {
  6675. closecallback: function () {
  6676. $("iframe", _formdiv)[0].contentWindow.loginout();
  6677. }
  6678. }, { "style": { "height": "36px" } }).form; //创建窗体
  6679. _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); } }
  6680. break;
  6681. case "aiagent": //ai agent
  6682. _formdiv = new U.UF.UI.form(
  6683. "AI Agent",
  6684. $$("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" }), {
  6685. "id": "AIAgent",
  6686. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6687. "onresize": function () { }
  6688. }, {
  6689. closecallback: function () { }
  6690. }, { "style": { "height": "36px" } }).form; //创建窗体
  6691. _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); } }
  6692. break;
  6693. case "dataBoard": //数据看板
  6694. _formdiv = new U.UF.UI.form(
  6695. "数据看板",
  6696. $$("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 }), {
  6697. "id": "dataBoard",
  6698. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6699. "onresize": function () { }
  6700. }, {
  6701. closecallback: function () { }
  6702. }, { "style": { "height": "36px" } }).form; //创建窗体
  6703. _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); } }
  6704. break;
  6705. case "dataBoardSies": //数据融合
  6706. _formdiv = new U.UF.UI.form(
  6707. "数据融合",
  6708. $$("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 }), {
  6709. "id": "dataBoardSies",
  6710. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6711. "onresize": function () { }
  6712. }, {
  6713. closecallback: function () { }
  6714. }, { "style": { "height": "36px" } }).form; //创建窗体
  6715. _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); } }
  6716. break;
  6717. case "dataBoardNew": //数据看板
  6718. _formdiv = new U.UF.UI.form(
  6719. "综合看板",
  6720. $$("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 }), {
  6721. "id": "dataBoardNew",
  6722. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6723. "onresize": function () { }
  6724. }, {
  6725. closecallback: function () { }
  6726. }, { "style": { "height": "36px" } }).form; //创建窗体
  6727. _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); } }
  6728. break;
  6729. case "dataBoardTest": //数据看板
  6730. _formdiv = new U.UF.UI.form(
  6731. "评测看板",
  6732. $$("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 }), {
  6733. "id": "dataBoardTest",
  6734. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6735. "onresize": function () { }
  6736. }, {
  6737. closecallback: function () { }
  6738. }, { "style": { "height": "36px" } }).form; //创建窗体
  6739. _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); } }
  6740. break;
  6741. case "AIAnalyse": //AI共创
  6742. _formdiv = new U.UF.UI.form(
  6743. "AI分析",
  6744. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6745. "id": "AIAnalyse",
  6746. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6747. "onresize": function () { }
  6748. }, {
  6749. closecallback: function () { }
  6750. }, { "style": { "height": "36px" } }).form; //创建窗体
  6751. _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); } }
  6752. break;
  6753. case "studioCourse": //AI共创
  6754. _formdiv = new U.UF.UI.form(
  6755. "工作管理",
  6756. $$("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 }), {
  6757. "id": "studioCourse",
  6758. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6759. "onresize": function () { }
  6760. }, {
  6761. closecallback: function () { }
  6762. }, { "style": { "height": "36px" } }).form; //创建窗体
  6763. _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); } }
  6764. break;
  6765. case "studioIndex": //AI共创
  6766. _formdiv = new U.UF.UI.form(
  6767. "工作中心",
  6768. $$("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 }), {
  6769. "id": "studioIndex",
  6770. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6771. "onresize": function () { }
  6772. }, {
  6773. closecallback: function () { }
  6774. }, { "style": { "height": "36px" } }).form; //创建窗体
  6775. _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); } }
  6776. break;
  6777. case "source":
  6778. _formdiv = new U.UF.UI.form(
  6779. "教学资源",
  6780. $$("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 }), {
  6781. "id": "source",
  6782. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6783. "onresize": function () { }
  6784. }, {
  6785. closecallback: function () { }
  6786. }, { "style": { "height": "36px" } }).form; //创建窗体
  6787. _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); } }
  6788. break;
  6789. case "testTeacher":
  6790. _formdiv = new U.UF.UI.form(
  6791. "智能表单",
  6792. $$("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 }), {
  6793. "id": "testTeacher",
  6794. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6795. "onresize": function () { }
  6796. }, {
  6797. closecallback: function () { }
  6798. }, { "style": { "height": "36px" } }).form; //创建窗体
  6799. _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); } }
  6800. break;
  6801. case "testStudent":
  6802. _formdiv = new U.UF.UI.form(
  6803. "教师中心",
  6804. $$("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 }), {
  6805. "id": "testStudent",
  6806. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6807. "onresize": function () { }
  6808. }, {
  6809. closecallback: function () { }
  6810. }, { "style": { "height": "36px" } }).form; //创建窗体
  6811. _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); } }
  6812. break;
  6813. case "testTeacherSies":
  6814. _formdiv = new U.UF.UI.form(
  6815. "教师管理",
  6816. $$("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 }), {
  6817. "id": "testTeacherSies",
  6818. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6819. "onresize": function () { }
  6820. }, {
  6821. closecallback: function () { }
  6822. }, { "style": { "height": "36px" } }).form; //创建窗体
  6823. _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); } }
  6824. break;
  6825. case "testStudentSies":
  6826. _formdiv = new U.UF.UI.form(
  6827. "教师中心",
  6828. $$("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 }), {
  6829. "id": "testStudentSies",
  6830. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6831. "onresize": function () { }
  6832. }, {
  6833. closecallback: function () { }
  6834. }, { "style": { "height": "36px" } }).form; //创建窗体
  6835. _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); } }
  6836. break;
  6837. case "ytpbl": //消息通知
  6838. _formdiv = new U.UF.UI.form(
  6839. "案例征集",
  6840. $$("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 }), {
  6841. "id": "ytpbl",
  6842. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6843. "onresize": function () { }
  6844. }, {
  6845. closecallback: function () { }
  6846. }, { "style": { "height": "36px" } }).form; //创建窗体
  6847. _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); } }
  6848. // 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");
  6849. break;
  6850. case "aiCourseResource": //人工智能窗体
  6851. _formdiv = new U.UF.UI.form(
  6852. false,
  6853. $$("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 }), {
  6854. "id": "aiCourseResource",
  6855. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6856. "onresize": function () { },
  6857. "isdrag": false,
  6858. }, {
  6859. closecallback: function () { }
  6860. }, { "style": { "height": "36px" } }).form; //创建窗体
  6861. _taskbar = ''
  6862. break;
  6863. case "szdjgCocooroboX": //图形化编程
  6864. _formdiv = new U.UF.UI.form(
  6865. "图形化编程",
  6866. $$("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" }), {
  6867. "id": "szdjgCocooroboX",
  6868. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6869. "onresize": function () { }
  6870. }, {
  6871. closecallback: function () { }
  6872. }, { "style": { "height": "36px" } }).form; //创建窗体
  6873. _taskbar = ''
  6874. break;
  6875. case "szdjgPython": //python编程
  6876. _formdiv = new U.UF.UI.form(
  6877. "Python编程",
  6878. $$("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" }), {
  6879. "id": "szdjgPython",
  6880. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6881. "onresize": function () { }
  6882. }, {
  6883. closecallback: function () { }
  6884. }, { "style": { "height": "36px" } }).form; //创建窗体
  6885. _taskbar = ''
  6886. break;
  6887. case "Record":
  6888. _formdiv = new U.UF.UI.form(
  6889. "观察记录",
  6890. $$("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 }), {
  6891. "id": "Record",
  6892. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6893. "onresize": function () { }
  6894. }, {
  6895. closecallback: function () { }
  6896. }, { "style": { "height": "36px" } }).form; //创建窗体
  6897. _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); } }
  6898. break;
  6899. case "aigptCourse":
  6900. _formdiv = new U.UF.UI.form(
  6901. "AI智能体",
  6902. $$("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' }), {
  6903. "id": "aigptCourse",
  6904. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6905. "onresize": function () { }
  6906. }, {
  6907. closecallback: function () { }
  6908. }, { "style": { "height": "36px" } }).form; //创建窗体
  6909. _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); } }
  6910. break;
  6911. case "classroomObservation":
  6912. _formdiv = new U.UF.UI.form(
  6913. "课堂观察",
  6914. $$("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 }), {
  6915. "id": "classroomObservation",
  6916. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6917. "onresize": function () { }
  6918. }, {
  6919. closecallback: function () { }
  6920. }, { "style": { "height": "36px" } }).form; //创建窗体
  6921. _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); } }
  6922. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6923. break;
  6924. case "pblCourse":
  6925. _formdiv = new U.UF.UI.form(
  6926. "学生PBL",
  6927. $$("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 }), {
  6928. "id": "pblCourse",
  6929. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6930. "onresize": function () { }
  6931. }, {
  6932. closecallback: function () { }
  6933. }, { "style": { "height": "36px" } }).form; //创建窗体
  6934. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6935. break;
  6936. case "appStore":
  6937. _formdiv = new U.UF.UI.form(
  6938. "CocoFlow",
  6939. $$("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 }), {
  6940. "id": "pblCourse",
  6941. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6942. "onresize": function () { }
  6943. }, {
  6944. closecallback: function () { }
  6945. }, { "style": { "height": "36px" } }).form; //创建窗体
  6946. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6947. break;
  6948. case "userExamine":
  6949. _formdiv = new U.UF.UI.form(
  6950. "账号申请",
  6951. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  6952. "id": "userExamine",
  6953. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  6954. "onresize": function () { }
  6955. }, {
  6956. closecallback: function () { }
  6957. }, { "style": { "height": "36px" } }).form; //创建窗体
  6958. break;
  6959. }
  6960. //U.MD.D.I.openClick(str);
  6961. //如果有任务栏信息
  6962. if (_taskbar) {
  6963. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6964. }
  6965. }
  6966. // U.MD.D.I.openClick = function(str){
  6967. // var click = '';
  6968. // switch(str){
  6969. // case 'friend':
  6970. // click = '我的好友';
  6971. // break;
  6972. // case 'domain':
  6973. // click = '域名管理';
  6974. // break;
  6975. // case 'disk':
  6976. // click = '我的云盘';
  6977. // break;
  6978. // case 'word':
  6979. // click = 'Word';
  6980. // break;
  6981. // case 'excel':
  6982. // click = 'Execl';
  6983. // break;
  6984. // case 'txt':
  6985. // click = '文本文件';
  6986. // break;
  6987. // case 'lookupFriend':
  6988. // click = '查找好友';
  6989. // break;
  6990. // case 'ftp':
  6991. // click = 'FTP';
  6992. // break;
  6993. // case 'group':
  6994. // click = '群组';
  6995. // break;
  6996. // case 'set':
  6997. // click = '我的设置';
  6998. // break;
  6999. // case 'systemSet':
  7000. // click = '系统设置';
  7001. // break;
  7002. // case 'boomYun':
  7003. // click = '互联办公';
  7004. // break;
  7005. // case 'xz':
  7006. // click = '云端下载';
  7007. // break;
  7008. // case 'client':
  7009. // click = '有思浏览器';
  7010. // break;
  7011. // case 'backEndProgramming':
  7012. // click = '在线后台编程';
  7013. // break;
  7014. // case 'frontEndProgramming':
  7015. // click = '在线前端编程';
  7016. // break;
  7017. // default: break;
  7018. // }
  7019. // if(U.MD.D.I.Ip && click){
  7020. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7021. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7022. // })
  7023. // }
  7024. // }
  7025. /**
  7026. *函数作用:ajax简易函数,使用post格式
  7027. *@param url {data} 后台地址
  7028. *@param data {data} 参数json
  7029. *@param fn {data} 回调函数
  7030. *
  7031. */
  7032. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7033. // var xhr = new XMLHttpRequest();
  7034. // xhr.open("GET",url,true);
  7035. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7036. // xhr.onreadystatechange = function(){
  7037. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7038. // fn.call(this,xhr.responseText);
  7039. // }
  7040. // };
  7041. // xhr.send();
  7042. // }
  7043. /*判断是否是内网IP*/
  7044. // U.MD.D.I.isInnerIPFn = function(str){
  7045. // var curPageUrl = str;
  7046. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7047. // curPageUrl =curPageUrl.replace(reg1,'');
  7048. // // console.log('curPageUrl-1 '+curPageUrl);
  7049. // var reg2 = /\:+/g;//替换冒号为一点
  7050. // curPageUrl =curPageUrl.replace(reg2,'.');
  7051. // // console.log('curPageUrl-2 '+curPageUrl);
  7052. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7053. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7054. // if(curPageUrl[2] != '16'){
  7055. // return ipAddress;
  7056. // }else{
  7057. // return false;
  7058. // }
  7059. // }
  7060. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7061. // //compatibility for firefox and chrome
  7062. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7063. // var pc = new myPeerConnection({
  7064. // iceServers: []
  7065. // }),
  7066. // noop = function() {},
  7067. // localIPs = {},
  7068. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7069. // key;
  7070. // function iterateIP(ip) {
  7071. // if (!localIPs[ip]) onNewIP(ip);
  7072. // localIPs[ip] = true;
  7073. // }
  7074. // //create a bogus data channel
  7075. // pc.createDataChannel("");
  7076. // // create offer and set local description
  7077. // pc.createOffer().then(function(sdp) {
  7078. // sdp.sdp.split('\n').forEach(function(line) {
  7079. // if (line.indexOf('candidate') < 0) return;
  7080. // line.match(ipRegex).forEach(iterateIP);
  7081. // });
  7082. // pc.setLocalDescription(sdp, noop, noop);
  7083. // }).catch(function(reason) {
  7084. // // An error occurred, so handle the failure to connect
  7085. // });
  7086. // //sten for candidate events
  7087. // pc.onicecandidate = function(ice) {
  7088. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7089. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7090. // };
  7091. // }
  7092. // U.MD.D.I.getUserIpBool = function(callback){
  7093. // U.MD.D.I.getUserIP(function(ip){
  7094. // alert("Got IP! :" + ip);
  7095. // });
  7096. //}
  7097. //#endregion
  7098. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7099. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7100. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7101. _userinfo = US.userInfo, //登录用户信息
  7102. _userid = US.userInfo.userid //登录用户id
  7103. let _iframe;
  7104. let _cid = cid,
  7105. _stage = stage,
  7106. _task = task,
  7107. _tool = tool;
  7108. var _jie = $$("div", {
  7109. "style": {
  7110. "position": "absolute",
  7111. "bottom": "50px",
  7112. "right": "50px",
  7113. "zIndex": "9999",
  7114. "backgroundColor": "#2268bc",
  7115. "color": "#fff",
  7116. "padding": "12px 20px",
  7117. "cursor": "pointer",
  7118. "borderRadius": "4px",
  7119. },
  7120. "innerHTML": "提交作业"
  7121. })
  7122. let aTool = ''
  7123. let _loading = document.createElement('div')
  7124. _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;"
  7125. // _loading.id = "";
  7126. let _lchild = document.createElement('div')
  7127. let _limg = document.createElement('img')
  7128. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7129. _limg.style = "width: 26px;margin-right: 10px;"
  7130. _lchild.appendChild(_limg)
  7131. let _lspan = document.createElement('span')
  7132. _lspan.innerHTML = "上传中..."
  7133. _lchild.appendChild(_lspan)
  7134. _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%);"
  7135. _loading.appendChild(_lchild)
  7136. var _box = $$('div', {
  7137. "style": {
  7138. "position": "relative",
  7139. "width": "100%",
  7140. "height": "100%",
  7141. },
  7142. })
  7143. _box.appendChild(_loading)
  7144. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7145. switch (str) {
  7146. case "whiteboard":
  7147. aTool = 1;
  7148. _iframe = $$("iframe", {
  7149. "frameborder": "no",
  7150. "border": "0",
  7151. "scrolling ": "no",
  7152. "style": {
  7153. "cssText": "border:0;width:100%;height:100%"
  7154. },
  7155. "src": "https://beta.iwb.cocorobo.cn/"
  7156. })
  7157. _box.appendChild(_iframe);
  7158. _box.appendChild(_jie);
  7159. _formdiv = new U.UF.UI.form(
  7160. "电子白板",
  7161. _box, {
  7162. "id": "whiteboard" + cid + stage + task + tool,
  7163. "style": {
  7164. "width": "90%",
  7165. "height": "90%",
  7166. "overflow": 'hidden'
  7167. },
  7168. "onresize": function () { }
  7169. }, {
  7170. closecallback: function () { }
  7171. }, {
  7172. "style": {
  7173. "height": "36px"
  7174. }
  7175. }).form; //创建窗体
  7176. _taskbar = {
  7177. "id": str + _formdiv.id,
  7178. "style": {
  7179. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7180. },
  7181. "name": "电子白板",
  7182. "forms": _formdiv,
  7183. "click": function () {
  7184. U.MD.D.I.openApplication(str, obj, info);
  7185. }
  7186. }
  7187. break;
  7188. case "mind":
  7189. aTool = 3;
  7190. _iframe = $$("iframe", {
  7191. "frameborder": "no",
  7192. "border": "0",
  7193. "scrolling ": "no",
  7194. "style": {
  7195. "cssText": "border:0;width:100%;height:100%"
  7196. },
  7197. "src": "/kityminder-editor/dist/index.html"
  7198. })
  7199. _box.appendChild(_iframe);
  7200. _box.appendChild(_jie);
  7201. _formdiv = new U.UF.UI.form(
  7202. "思维导图",
  7203. _box, { //"/jsmind/example/demo.html"
  7204. "id": "mind" + cid + stage + task + tool,
  7205. "style": {
  7206. "width": "90%",
  7207. "height": "90%",
  7208. "overflow": 'hidden'
  7209. },
  7210. "onresize": function () { }
  7211. }, {
  7212. closecallback: function () { }
  7213. }, {
  7214. "style": {
  7215. "height": "36px"
  7216. }
  7217. }).form; //创建窗体
  7218. _taskbar = {
  7219. "id": str + _formdiv.id,
  7220. "style": {
  7221. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7222. },
  7223. "name": "思维导图",
  7224. "forms": _formdiv,
  7225. "click": function () {
  7226. U.MD.D.I.openApplication(str, obj, info);
  7227. }
  7228. }
  7229. break;
  7230. case "MindMap":
  7231. aTool = 3;
  7232. _iframe = $$("iframe", {
  7233. "frameborder": "no",
  7234. "border": "0",
  7235. "scrolling ": "no",
  7236. "style": {
  7237. "cssText": "border:0;width:100%;height:100%"
  7238. },
  7239. "src": "//cloud.cocorobo.cn/mind/"
  7240. })
  7241. _box.appendChild(_iframe);
  7242. _box.appendChild(_jie);
  7243. _formdiv = new U.UF.UI.form(
  7244. "思维导图",
  7245. _box, { //"/jsmind/example/demo.html"
  7246. "id": "mind" + cid + stage + task + tool,
  7247. "style": {
  7248. "width": "90%",
  7249. "height": "90%",
  7250. "overflow": 'hidden'
  7251. },
  7252. "onresize": function () { }
  7253. }, {
  7254. closecallback: function () { }
  7255. }, {
  7256. "style": {
  7257. "height": "36px"
  7258. }
  7259. }).form; //创建窗体
  7260. _taskbar = {
  7261. "id": str + _formdiv.id,
  7262. "style": {
  7263. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7264. },
  7265. "name": "思维导图",
  7266. "forms": _formdiv,
  7267. "click": function () {
  7268. U.MD.D.I.openApplication(str, obj, info);
  7269. }
  7270. }
  7271. break;
  7272. case "doc":
  7273. aTool = 6;
  7274. _iframe = $$("iframe", {
  7275. "frameborder": "no",
  7276. "border": "0",
  7277. "scrolling ": "no",
  7278. "style": {
  7279. "cssText": "border:0;width:100%;height:100%"
  7280. },
  7281. "src": "/Office/Word/WordEditArea.htm"
  7282. })
  7283. _box.appendChild(_iframe);
  7284. _box.appendChild(_jie);
  7285. _formdiv = new U.UF.UI.form(
  7286. "协同文档",
  7287. _box, {
  7288. "id": "doc" + cid + stage + task + tool,
  7289. "style": {
  7290. "width": "90%",
  7291. "height": "90%",
  7292. "overflow": 'hidden'
  7293. },
  7294. "onresize": function () { }
  7295. }, {
  7296. closecallback: function () { }
  7297. }, {
  7298. "style": {
  7299. "height": "36px"
  7300. }
  7301. }).form; //创建窗体
  7302. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7303. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7304. })
  7305. _taskbar = {
  7306. "id": str + _formdiv.id,
  7307. "style": {
  7308. "backgroundImage": "url(/img/icon/doc.png)"
  7309. },
  7310. "name": "协同文档",
  7311. "forms": _formdiv,
  7312. "click": function () {
  7313. U.MD.D.I.openApplication(str, obj, info);
  7314. }
  7315. }
  7316. break;
  7317. case "mindNetwork": //好友打开
  7318. aTool = 7;
  7319. _iframe = $$("iframe", {
  7320. "webkitallowfullscreen": "",
  7321. "mozallowfullscreen": "",
  7322. "allowfullscreen": "",
  7323. "frameborder": "no",
  7324. "border": "0",
  7325. "scrolling ": "no",
  7326. "style": {
  7327. "cssText": "border:0; width:100%; height:100%;"
  7328. },
  7329. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7330. })
  7331. _box.appendChild(_iframe);
  7332. _box.appendChild(_jie);
  7333. _formdiv = new U.UF.UI.form(
  7334. "思维网格",
  7335. _box, {
  7336. "id": "mindNetwork" + cid + stage + task + tool,
  7337. "style": {
  7338. "width": "90%",
  7339. "height": "90%",
  7340. "overflow": 'hidden'
  7341. },
  7342. "onresize": function () { }
  7343. }, {
  7344. closecallback: function () { }
  7345. }, {
  7346. "style": {
  7347. "height": "36px"
  7348. }
  7349. }).form; //创建窗体
  7350. _taskbar = {
  7351. "id": str + _formdiv.id,
  7352. "style": {
  7353. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7354. },
  7355. "name": "思维网格",
  7356. "forms": _formdiv,
  7357. "click": function () {
  7358. U.MD.D.I.openApplication(str, obj, info);
  7359. }
  7360. }
  7361. break;
  7362. case "courseDesign":
  7363. _iframe = $$("iframe", {
  7364. "webkitallowfullscreen": "",
  7365. "mozallowfullscreen": "",
  7366. "allowfullscreen": "",
  7367. "frameborder": "no",
  7368. "border": "0",
  7369. "scrolling ": "no",
  7370. "style": {
  7371. "cssText": "border:0; width:100%; height:100%;"
  7372. },
  7373. "src": "/course-design-vue"
  7374. })
  7375. _box.appendChild(_iframe);
  7376. _box.appendChild(_jie);
  7377. _formdiv = new U.UF.UI.form(
  7378. "项目设计",
  7379. _box, {
  7380. "id": "courseDesign" + cid + stage + task + tool,
  7381. "style": {
  7382. "width": "90%",
  7383. "height": "90%",
  7384. "overflow": 'hidden'
  7385. },
  7386. "onresize": function () { }
  7387. }, {
  7388. closecallback: function () { }
  7389. }, {
  7390. "style": {
  7391. "height": "36px"
  7392. }
  7393. }).form; //创建窗体
  7394. _taskbar = {
  7395. "id": str + _formdiv.id,
  7396. "style": {
  7397. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7398. },
  7399. "name": "项目设计",
  7400. "forms": _formdiv,
  7401. "click": function () {
  7402. U.MD.D.I.openApplication(str, obj, info);
  7403. }
  7404. }
  7405. break;
  7406. }
  7407. const script1 = document.createElement("script");
  7408. script1.type = "text/javascript";
  7409. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7410. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7411. const script2 = document.createElement("script");
  7412. script2.type = "text/javascript";
  7413. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7414. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7415. const script3 = document.createElement("script");
  7416. script3.type = "text/javascript";
  7417. script3.charset = "UTF-8";
  7418. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7419. const script4 = document.createElement("script");
  7420. script4.type = "text/javascript";
  7421. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7422. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7423. if (_iframe) {
  7424. if (str == 'doc') {
  7425. _iframe = _formdiv.querySelector('iframe')
  7426. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7427. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7428. _iframe.contentWindow.document.body.appendChild(script1);
  7429. _iframe.contentWindow.document.body.appendChild(script2);
  7430. // _iframe.contentWindow.document.body.appendChild(script3);
  7431. _iframe.contentWindow.document.body.appendChild(script4);
  7432. })
  7433. if (onloadListener) {
  7434. _iframe.contentDocument.location.reload()
  7435. } else {
  7436. _iframe.contentDocument.location.reload()
  7437. }
  7438. } else if (str == 'courseDesign') {
  7439. U.UF.DL.iframeLoad(_iframe, function () {
  7440. // _iframe.contentWindow.U.MD.O.W.load();
  7441. // _iframe.contentWindow.document.body.appendChild(script1);
  7442. _iframe.contentWindow.document.body.appendChild(script2);
  7443. _iframe.contentWindow.document.body.appendChild(script4);
  7444. })
  7445. } else if (str == 'mind') {
  7446. _iframe = _formdiv.querySelector('iframe')
  7447. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7448. //
  7449. _iframe.contentWindow.document.body.appendChild(script1);
  7450. _iframe.contentWindow.document.body.appendChild(script2);
  7451. _iframe.contentWindow.document.body.appendChild(script4);
  7452. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7453. })
  7454. if (onloadListener) {
  7455. _iframe.contentDocument.location.reload()
  7456. } else {
  7457. _iframe.contentDocument.location.reload()
  7458. }
  7459. } else if (str == 'whiteboard') {
  7460. _iframe = _formdiv.querySelector('iframe')
  7461. let onloadListener = _iframe.onload = () => {
  7462. _iframe.contentWindow.document.body.appendChild(script1);
  7463. _iframe.contentWindow.document.body.appendChild(script2);
  7464. _iframe.contentWindow.document.body.appendChild(script4);
  7465. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7466. };
  7467. // if (onloadListener) {
  7468. // try {
  7469. // _iframe.src += "?cocorobo="+new Date().getTime()
  7470. // _iframe.contentWindow.document.location.reload()
  7471. // } catch (error) {
  7472. // }
  7473. // } else {
  7474. // _iframe.contentDocument.location.reload()
  7475. // }
  7476. } else {
  7477. _iframe.onload = () => {
  7478. _iframe.contentWindow.document.body.appendChild(script1);
  7479. _iframe.contentWindow.document.body.appendChild(script2);
  7480. // _iframe.contentWindow.document.body.appendChild(script3);
  7481. _iframe.contentWindow.document.body.appendChild(script4);
  7482. };
  7483. }
  7484. _jie.onclick = async () => {
  7485. let text = ''
  7486. if (aTool == 1) {
  7487. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7488. } else if (aTool == 6) {
  7489. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7490. } else if (aTool == 3) {
  7491. text = await U.MD.D.I.getEditorContent(_iframe);
  7492. }
  7493. _loading.style.display = 'flex'
  7494. console.log(_loading);
  7495. var _ajs = _iframe.contentWindow.document.createElement("script");
  7496. _ajs.type = "text/javascript";
  7497. _ajs.innerHTML =
  7498. // 'console.log(' + _loading + ');\n' +
  7499. 'var _js = document.createElement("script");\n' +
  7500. '_js.type="text/javascript";\n' +
  7501. '_js.charset="UTF-8";\n' +
  7502. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7503. "_js.onload = function(){\n" +
  7504. ' var a = document.getElementsByTagName("img")\n' +
  7505. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7506. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7507. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7508. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7509. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7510. "beforeUpload_shishi(file," +
  7511. "'" +
  7512. _userid +
  7513. "'" +
  7514. ", " +
  7515. "'" +
  7516. _cid +
  7517. "'" +
  7518. ", " +
  7519. "'" +
  7520. _stage +
  7521. "'" +
  7522. ", " +
  7523. "'" +
  7524. _task +
  7525. "'" +
  7526. ", " +
  7527. "'" +
  7528. _tool +
  7529. "'" +
  7530. ", " +
  7531. "'" +
  7532. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7533. "'" +
  7534. ", " +
  7535. "'" +
  7536. aTool +
  7537. "'" +
  7538. ", " +
  7539. "`" +
  7540. text +
  7541. "`" +
  7542. ")\n" +
  7543. " });\n" +
  7544. "}\n" +
  7545. "document.head.appendChild(_js);\n";
  7546. _iframe.contentWindow.document.head.appendChild(_ajs);
  7547. }
  7548. }
  7549. //U.MD.D.I.openClick(str);
  7550. //如果有任务栏信息
  7551. // if (_taskbar) {
  7552. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7553. // }
  7554. }
  7555. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7556. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7557. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7558. _userinfo = US.userInfo, //登录用户信息
  7559. _userid = US.userInfo.userid //登录用户id
  7560. let _iframe;
  7561. let _cid = cid,
  7562. _stage = stage,
  7563. _task = task,
  7564. _tool = tool;
  7565. var _jie = $$("div", {
  7566. "style": {
  7567. "position": "absolute",
  7568. "bottom": "50px",
  7569. "right": "50px",
  7570. "zIndex": "9999",
  7571. "backgroundColor": "#2268bc",
  7572. "color": "#fff",
  7573. "padding": "12px 20px",
  7574. "cursor": "pointer",
  7575. "borderRadius": "4px",
  7576. },
  7577. "innerHTML": "提交作业"
  7578. })
  7579. let aTool = ''
  7580. let _loading = document.createElement('div')
  7581. _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;"
  7582. // _loading.id = "";
  7583. let _lchild = document.createElement('div')
  7584. let _limg = document.createElement('img')
  7585. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7586. _limg.style = "width: 26px;margin-right: 10px;"
  7587. _lchild.appendChild(_limg)
  7588. let _lspan = document.createElement('span')
  7589. _lspan.innerHTML = "上传中..."
  7590. _lchild.appendChild(_lspan)
  7591. _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%);"
  7592. _loading.appendChild(_lchild)
  7593. let _box = $$('div', {
  7594. "style": {
  7595. "position": "relative",
  7596. "width": "100%",
  7597. "height": "100%",
  7598. },
  7599. })
  7600. _box.appendChild(_loading)
  7601. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7602. switch (str) {
  7603. case "whiteboard":
  7604. aTool = 1;
  7605. _iframe = $$("iframe", {
  7606. "frameborder": "no",
  7607. "border": "0",
  7608. "scrolling ": "no",
  7609. "style": {
  7610. "cssText": "border:0;width:100%;height:100%"
  7611. },
  7612. "src": "https://beta.iwb.cocorobo.cn/"
  7613. })
  7614. _box.appendChild(_iframe);
  7615. _box.appendChild(_jie);
  7616. _formdiv = new U.UF.UI.form(
  7617. "电子白板",
  7618. _box, {
  7619. "id": "whiteboard" + cid + stage + task + tool,
  7620. "style": {
  7621. "width": "90%",
  7622. "height": "90%",
  7623. "overflow": 'hidden'
  7624. },
  7625. "onresize": function () { }
  7626. }, {
  7627. closecallback: function () { }
  7628. }, {
  7629. "style": {
  7630. "height": "36px"
  7631. }
  7632. }).form; //创建窗体
  7633. _taskbar = {
  7634. "id": str + _formdiv.id,
  7635. "style": {
  7636. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7637. },
  7638. "name": "电子白板",
  7639. "forms": _formdiv,
  7640. "click": function () {
  7641. U.MD.D.I.openApplication(str, obj, info);
  7642. }
  7643. }
  7644. break;
  7645. case "mind":
  7646. aTool = 3;
  7647. _iframe = $$("iframe", {
  7648. "frameborder": "no",
  7649. "border": "0",
  7650. "scrolling ": "no",
  7651. "style": {
  7652. "cssText": "border:0;width:100%;height:100%"
  7653. },
  7654. "src": "/kityminder-editor/dist/index.html"
  7655. })
  7656. _box.appendChild(_iframe);
  7657. _box.appendChild(_jie);
  7658. _formdiv = new U.UF.UI.form(
  7659. "思维导图",
  7660. _box, { //"/jsmind/example/demo.html"
  7661. "id": "mind" + cid + stage + task + tool,
  7662. "style": {
  7663. "width": "90%",
  7664. "height": "90%",
  7665. "overflow": 'hidden'
  7666. },
  7667. "onresize": function () { }
  7668. }, {
  7669. closecallback: function () { }
  7670. }, {
  7671. "style": {
  7672. "height": "36px"
  7673. }
  7674. }).form; //创建窗体
  7675. _taskbar = {
  7676. "id": str + _formdiv.id,
  7677. "style": {
  7678. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7679. },
  7680. "name": "思维导图",
  7681. "forms": _formdiv,
  7682. "click": function () {
  7683. U.MD.D.I.openApplication(str, obj, info);
  7684. }
  7685. }
  7686. break;
  7687. case "MindMap":
  7688. aTool = 3;
  7689. _iframe = $$("iframe", {
  7690. "frameborder": "no",
  7691. "border": "0",
  7692. "scrolling ": "no",
  7693. "style": {
  7694. "cssText": "border:0;width:100%;height:100%"
  7695. },
  7696. "src": "//cloud.cocorobo.cn/mind/"
  7697. })
  7698. _box.appendChild(_iframe);
  7699. _box.appendChild(_jie);
  7700. _formdiv = new U.UF.UI.form(
  7701. "思维导图",
  7702. _box, { //"/jsmind/example/demo.html"
  7703. "id": "mind" + cid + stage + task + tool,
  7704. "style": {
  7705. "width": "90%",
  7706. "height": "90%",
  7707. "overflow": 'hidden'
  7708. },
  7709. "onresize": function () { }
  7710. }, {
  7711. closecallback: function () { }
  7712. }, {
  7713. "style": {
  7714. "height": "36px"
  7715. }
  7716. }).form; //创建窗体
  7717. _taskbar = {
  7718. "id": str + _formdiv.id,
  7719. "style": {
  7720. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7721. },
  7722. "name": "思维导图",
  7723. "forms": _formdiv,
  7724. "click": function () {
  7725. U.MD.D.I.openApplication(str, obj, info);
  7726. }
  7727. }
  7728. break;
  7729. case "doc":
  7730. aTool = 6;
  7731. _iframe = $$("iframe", {
  7732. "frameborder": "no",
  7733. "border": "0",
  7734. "scrolling ": "no",
  7735. "style": {
  7736. "cssText": "border:0;width:100%;height:100%"
  7737. },
  7738. "src": "/Office/Word/WordEditArea.htm"
  7739. })
  7740. _box.appendChild(_iframe);
  7741. _box.appendChild(_jie);
  7742. _formdiv = new U.UF.UI.form(
  7743. "协同文档",
  7744. _box, {
  7745. "id": "doc" + cid + stage + task + tool,
  7746. "style": {
  7747. "width": "90%",
  7748. "height": "90%",
  7749. "overflow": 'hidden'
  7750. },
  7751. "onresize": function () { }
  7752. }, {
  7753. closecallback: function () { }
  7754. }, {
  7755. "style": {
  7756. "height": "36px"
  7757. }
  7758. }).form; //创建窗体
  7759. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7760. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7761. })
  7762. _taskbar = {
  7763. "id": str + _formdiv.id,
  7764. "style": {
  7765. "backgroundImage": "url(/img/icon/doc.png)"
  7766. },
  7767. "name": "协同文档",
  7768. "forms": _formdiv,
  7769. "click": function () {
  7770. U.MD.D.I.openApplication(str, obj, info);
  7771. }
  7772. }
  7773. break;
  7774. case "mindNetwork": //好友打开
  7775. aTool = 7;
  7776. _iframe = $$("iframe", {
  7777. "webkitallowfullscreen": "",
  7778. "mozallowfullscreen": "",
  7779. "allowfullscreen": "",
  7780. "frameborder": "no",
  7781. "border": "0",
  7782. "scrolling ": "no",
  7783. "style": {
  7784. "cssText": "border:0; width:100%; height:100%;"
  7785. },
  7786. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7787. })
  7788. _box.appendChild(_iframe);
  7789. _box.appendChild(_jie);
  7790. _formdiv = new U.UF.UI.form(
  7791. "思维网格",
  7792. _box, {
  7793. "id": "mindNetwork" + cid + stage + task + tool,
  7794. "style": {
  7795. "width": "90%",
  7796. "height": "90%",
  7797. "overflow": 'hidden'
  7798. },
  7799. "onresize": function () { }
  7800. }, {
  7801. closecallback: function () { }
  7802. }, {
  7803. "style": {
  7804. "height": "36px"
  7805. }
  7806. }).form; //创建窗体
  7807. _taskbar = {
  7808. "id": str + _formdiv.id,
  7809. "style": {
  7810. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7811. },
  7812. "name": "思维网格",
  7813. "forms": _formdiv,
  7814. "click": function () {
  7815. U.MD.D.I.openApplication(str, obj, info);
  7816. }
  7817. }
  7818. break;
  7819. case "courseDesign":
  7820. _iframe = $$("iframe", {
  7821. "webkitallowfullscreen": "",
  7822. "mozallowfullscreen": "",
  7823. "allowfullscreen": "",
  7824. "frameborder": "no",
  7825. "border": "0",
  7826. "scrolling ": "no",
  7827. "style": {
  7828. "cssText": "border:0; width:100%; height:100%;"
  7829. },
  7830. "src": "/course-design-vue"
  7831. })
  7832. _box.appendChild(_iframe);
  7833. _box.appendChild(_jie);
  7834. _formdiv = new U.UF.UI.form(
  7835. "项目设计",
  7836. _box, {
  7837. "id": "courseDesign" + cid + stage + task + tool,
  7838. "style": {
  7839. "width": "90%",
  7840. "height": "90%",
  7841. "overflow": 'hidden'
  7842. },
  7843. "onresize": function () { }
  7844. }, {
  7845. closecallback: function () { }
  7846. }, {
  7847. "style": {
  7848. "height": "36px"
  7849. }
  7850. }).form; //创建窗体
  7851. _taskbar = {
  7852. "id": str + _formdiv.id,
  7853. "style": {
  7854. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7855. },
  7856. "name": "项目设计",
  7857. "forms": _formdiv,
  7858. "click": function () {
  7859. U.MD.D.I.openApplication(str, obj, info);
  7860. }
  7861. }
  7862. break;
  7863. }
  7864. const script1 = document.createElement("script");
  7865. script1.type = "text/javascript";
  7866. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7867. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7868. const script2 = document.createElement("script");
  7869. script2.type = "text/javascript";
  7870. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7871. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7872. const script3 = document.createElement("script");
  7873. script3.type = "text/javascript";
  7874. script3.charset = "UTF-8";
  7875. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7876. const script4 = document.createElement("script");
  7877. script4.type = "text/javascript";
  7878. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7879. script4.src = window.origin + "/js/Common/jietu2E.js";
  7880. if (_iframe) {
  7881. if (str == 'doc') {
  7882. _iframe = _formdiv.querySelector('iframe')
  7883. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7884. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7885. _iframe.contentWindow.document.body.appendChild(script1);
  7886. _iframe.contentWindow.document.body.appendChild(script2);
  7887. // _iframe.contentWindow.document.body.appendChild(script3);
  7888. _iframe.contentWindow.document.body.appendChild(script4);
  7889. })
  7890. if (onloadListener) {
  7891. _iframe.contentDocument.location.reload()
  7892. } else {
  7893. _iframe.contentDocument.location.reload()
  7894. }
  7895. } else if (str == 'courseDesign') {
  7896. U.UF.DL.iframeLoad(_iframe, function () {
  7897. // _iframe.contentWindow.U.MD.O.W.load();
  7898. // _iframe.contentWindow.document.body.appendChild(script1);
  7899. _iframe.contentWindow.document.body.appendChild(script2);
  7900. _iframe.contentWindow.document.body.appendChild(script4);
  7901. })
  7902. } else if (str == 'mind') {
  7903. _iframe = _formdiv.querySelector('iframe')
  7904. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7905. //
  7906. _iframe.contentWindow.document.body.appendChild(script1);
  7907. _iframe.contentWindow.document.body.appendChild(script2);
  7908. _iframe.contentWindow.document.body.appendChild(script4);
  7909. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7910. })
  7911. if (onloadListener) {
  7912. _iframe.contentDocument.location.reload()
  7913. } else {
  7914. _iframe.contentDocument.location.reload()
  7915. }
  7916. } else if (str == 'whiteboard') {
  7917. _iframe = _formdiv.querySelector('iframe')
  7918. let onloadListener = _iframe.onload = () => {
  7919. _iframe.contentWindow.document.body.appendChild(script1);
  7920. _iframe.contentWindow.document.body.appendChild(script2);
  7921. _iframe.contentWindow.document.body.appendChild(script4);
  7922. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7923. };
  7924. // if (onloadListener) {
  7925. // try {
  7926. // _iframe.src += "?cocorobo="+new Date().getTime()
  7927. // _iframe.contentWindow.document.location.reload()
  7928. // } catch (error) {
  7929. // }
  7930. // } else {
  7931. // _iframe.contentDocument.location.reload()
  7932. // }
  7933. } else {
  7934. _iframe.onload = () => {
  7935. _iframe.contentWindow.document.body.appendChild(script1);
  7936. _iframe.contentWindow.document.body.appendChild(script2);
  7937. // _iframe.contentWindow.document.body.appendChild(script3);
  7938. _iframe.contentWindow.document.body.appendChild(script4);
  7939. };
  7940. }
  7941. _jie.onclick = async () => {
  7942. let text = ''
  7943. if (aTool == 1) {
  7944. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7945. } else if (aTool == 6) {
  7946. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7947. } else if (aTool == 3) {
  7948. text = await U.MD.D.I.getEditorContent(_iframe);
  7949. }
  7950. _loading.style.display = 'flex'
  7951. console.log(_loading);
  7952. var _ajs = _iframe.contentWindow.document.createElement("script");
  7953. _ajs.type = "text/javascript";
  7954. _ajs.innerHTML =
  7955. // 'console.log(' + _loading + ');\n' +
  7956. 'var _js = document.createElement("script");\n' +
  7957. '_js.type="text/javascript";\n' +
  7958. '_js.charset="UTF-8";\n' +
  7959. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7960. "_js.onload = function(){\n" +
  7961. ' var a = document.getElementsByTagName("img")\n' +
  7962. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7963. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7964. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7965. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7966. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7967. "beforeUpload_shishi(file," +
  7968. "'" +
  7969. _userid +
  7970. "'" +
  7971. ", " +
  7972. "'" +
  7973. _cid +
  7974. "'" +
  7975. ", " +
  7976. "'" +
  7977. _stage +
  7978. "'" +
  7979. ", " +
  7980. "'" +
  7981. _task +
  7982. "'" +
  7983. ", " +
  7984. "'" +
  7985. _tool +
  7986. "'" +
  7987. ", " +
  7988. "'" +
  7989. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7990. "'" +
  7991. ", " +
  7992. "'" +
  7993. aTool +
  7994. "'" +
  7995. ", " +
  7996. "`" +
  7997. text +
  7998. "`" +
  7999. ")\n" +
  8000. " });\n" +
  8001. "}\n" +
  8002. "document.head.appendChild(_js);\n";
  8003. _iframe.contentWindow.document.head.appendChild(_ajs);
  8004. }
  8005. }
  8006. //U.MD.D.I.openClick(str);
  8007. //如果有任务栏信息
  8008. // if (_taskbar) {
  8009. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8010. // }
  8011. }
  8012. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8013. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8014. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8015. _userid = student.userid, //登录用户id
  8016. _username = student.student //用户名字
  8017. let _iframe;
  8018. let _cid = cid,
  8019. _stage = stage,
  8020. _task = task,
  8021. _tool = tool;
  8022. var _jie = $$("div", {
  8023. "style": {
  8024. "position": "absolute",
  8025. "bottom": "50px",
  8026. "right": "50px",
  8027. "zIndex": "9999",
  8028. "backgroundColor": "#2268bc",
  8029. "color": "#fff",
  8030. "padding": "12px 20px",
  8031. "cursor": "pointer",
  8032. "borderRadius": "4px",
  8033. },
  8034. "innerHTML": "提交作业"
  8035. })
  8036. let aTool = ''
  8037. let _loading = document.createElement('div')
  8038. _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;"
  8039. // _loading.id = "";
  8040. let _lchild = document.createElement('div')
  8041. let _limg = document.createElement('img')
  8042. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8043. _limg.style = "width: 26px;margin-right: 10px;"
  8044. _lchild.appendChild(_limg)
  8045. let _lspan = document.createElement('span')
  8046. _lspan.innerHTML = "上传中..."
  8047. _lchild.appendChild(_lspan)
  8048. _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%);"
  8049. _loading.appendChild(_lchild)
  8050. var _box = $$('div', {
  8051. "style": {
  8052. "position": "relative",
  8053. "width": "100%",
  8054. "height": "100%",
  8055. },
  8056. })
  8057. _box.appendChild(_loading)
  8058. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8059. switch (str) {
  8060. case "whiteboard":
  8061. aTool = 1;
  8062. _iframe = $$("iframe", {
  8063. "frameborder": "no",
  8064. "border": "0",
  8065. "scrolling ": "no",
  8066. "style": {
  8067. "cssText": "border:0;width:100%;height:100%"
  8068. },
  8069. "src": "https://beta.iwb.cocorobo.cn/"
  8070. })
  8071. _box.appendChild(_iframe);
  8072. _box.appendChild(_jie);
  8073. _formdiv = new U.UF.UI.form(
  8074. "电子白板-" + _username,
  8075. _box, {
  8076. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8077. "style": {
  8078. "width": "90%",
  8079. "height": "90%",
  8080. "overflow": 'hidden'
  8081. },
  8082. "onresize": function () { }
  8083. }, {
  8084. closecallback: function () { }
  8085. }, {
  8086. "style": {
  8087. "height": "36px"
  8088. }
  8089. }).form; //创建窗体
  8090. _taskbar = {
  8091. "id": str + _formdiv.id,
  8092. "style": {
  8093. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8094. },
  8095. "name": "电子白板",
  8096. "forms": _formdiv,
  8097. "click": function () {
  8098. U.MD.D.I.openApplication(str, obj, info);
  8099. }
  8100. }
  8101. break;
  8102. case "mind":
  8103. aTool = 3;
  8104. _iframe = $$("iframe", {
  8105. "frameborder": "no",
  8106. "border": "0",
  8107. "scrolling ": "no",
  8108. "style": {
  8109. "cssText": "border:0;width:100%;height:100%"
  8110. },
  8111. "src": "/kityminder-editor/dist/index.html"
  8112. })
  8113. _box.appendChild(_iframe);
  8114. _box.appendChild(_jie);
  8115. _formdiv = new U.UF.UI.form(
  8116. "思维导图-" + _username,
  8117. _box, { //"/jsmind/example/demo.html"
  8118. "id": "mind" + cid + stage + task + tool + _userid,
  8119. "style": {
  8120. "width": "90%",
  8121. "height": "90%",
  8122. "overflow": 'hidden'
  8123. },
  8124. "onresize": function () { }
  8125. }, {
  8126. closecallback: function () { }
  8127. }, {
  8128. "style": {
  8129. "height": "36px"
  8130. }
  8131. }).form; //创建窗体
  8132. _taskbar = {
  8133. "id": str + _formdiv.id,
  8134. "style": {
  8135. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8136. },
  8137. "name": "思维导图",
  8138. "forms": _formdiv,
  8139. "click": function () {
  8140. U.MD.D.I.openApplication(str, obj, info);
  8141. }
  8142. }
  8143. break;
  8144. case "MindMap":
  8145. aTool = 3;
  8146. _iframe = $$("iframe", {
  8147. "frameborder": "no",
  8148. "border": "0",
  8149. "scrolling ": "no",
  8150. "style": {
  8151. "cssText": "border:0;width:100%;height:100%"
  8152. },
  8153. "src": "//cloud.cocorobo.cn/mind/"
  8154. })
  8155. _box.appendChild(_iframe);
  8156. _box.appendChild(_jie);
  8157. _formdiv = new U.UF.UI.form(
  8158. "思维导图-" + _username,
  8159. _box, { //"/jsmind/example/demo.html"
  8160. "id": "mind" + cid + stage + task + tool + _userid,
  8161. "style": {
  8162. "width": "90%",
  8163. "height": "90%",
  8164. "overflow": 'hidden'
  8165. },
  8166. "onresize": function () { }
  8167. }, {
  8168. closecallback: function () { }
  8169. }, {
  8170. "style": {
  8171. "height": "36px"
  8172. }
  8173. }).form; //创建窗体
  8174. _taskbar = {
  8175. "id": str + _formdiv.id,
  8176. "style": {
  8177. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8178. },
  8179. "name": "思维导图",
  8180. "forms": _formdiv,
  8181. "click": function () {
  8182. U.MD.D.I.openApplication(str, obj, info);
  8183. }
  8184. }
  8185. break;
  8186. case "doc":
  8187. aTool = 6;
  8188. _iframe = $$("iframe", {
  8189. "frameborder": "no",
  8190. "border": "0",
  8191. "scrolling ": "no",
  8192. "style": {
  8193. "cssText": "border:0;width:100%;height:100%"
  8194. },
  8195. "src": "/Office/Word/WordEditArea.htm"
  8196. })
  8197. _box.appendChild(_iframe);
  8198. _box.appendChild(_jie);
  8199. _formdiv = new U.UF.UI.form(
  8200. "协同文档-" + _username,
  8201. _box, {
  8202. "id": "doc" + cid + stage + task + tool + _userid,
  8203. "style": {
  8204. "width": "90%",
  8205. "height": "90%",
  8206. "overflow": 'hidden'
  8207. },
  8208. "onresize": function () { }
  8209. }, {
  8210. closecallback: function () { }
  8211. }, {
  8212. "style": {
  8213. "height": "36px"
  8214. }
  8215. }).form; //创建窗体
  8216. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8217. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8218. })
  8219. _taskbar = {
  8220. "id": str + _formdiv.id,
  8221. "style": {
  8222. "backgroundImage": "url(/img/icon/doc.png)"
  8223. },
  8224. "name": "协同文档",
  8225. "forms": _formdiv,
  8226. "click": function () {
  8227. U.MD.D.I.openApplication(str, obj, info);
  8228. }
  8229. }
  8230. break;
  8231. case "mindNetwork": //好友打开
  8232. aTool = 7;
  8233. _iframe = $$("iframe", {
  8234. "webkitallowfullscreen": "",
  8235. "mozallowfullscreen": "",
  8236. "allowfullscreen": "",
  8237. "frameborder": "no",
  8238. "border": "0",
  8239. "scrolling ": "no",
  8240. "style": {
  8241. "cssText": "border:0; width:100%; height:100%;"
  8242. },
  8243. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8244. })
  8245. _box.appendChild(_iframe);
  8246. _box.appendChild(_jie);
  8247. _formdiv = new U.UF.UI.form(
  8248. "思维网格-" + _username,
  8249. _box, {
  8250. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8251. "style": {
  8252. "width": "90%",
  8253. "height": "90%",
  8254. "overflow": 'hidden'
  8255. },
  8256. "onresize": function () { }
  8257. }, {
  8258. closecallback: function () { }
  8259. }, {
  8260. "style": {
  8261. "height": "36px"
  8262. }
  8263. }).form; //创建窗体
  8264. _taskbar = {
  8265. "id": str + _formdiv.id,
  8266. "style": {
  8267. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8268. },
  8269. "name": "思维网格",
  8270. "forms": _formdiv,
  8271. "click": function () {
  8272. U.MD.D.I.openApplication(str, obj, info);
  8273. }
  8274. }
  8275. break;
  8276. case "courseDesign":
  8277. _iframe = $$("iframe", {
  8278. "webkitallowfullscreen": "",
  8279. "mozallowfullscreen": "",
  8280. "allowfullscreen": "",
  8281. "frameborder": "no",
  8282. "border": "0",
  8283. "scrolling ": "no",
  8284. "style": {
  8285. "cssText": "border:0; width:100%; height:100%;"
  8286. },
  8287. "src": "/course-design-vue"
  8288. })
  8289. _box.appendChild(_iframe);
  8290. _box.appendChild(_jie);
  8291. _formdiv = new U.UF.UI.form(
  8292. "项目设计-" + _username,
  8293. _box, {
  8294. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8295. "style": {
  8296. "width": "90%",
  8297. "height": "90%",
  8298. "overflow": 'hidden'
  8299. },
  8300. "onresize": function () { }
  8301. }, {
  8302. closecallback: function () { }
  8303. }, {
  8304. "style": {
  8305. "height": "36px"
  8306. }
  8307. }).form; //创建窗体
  8308. _taskbar = {
  8309. "id": str + _formdiv.id,
  8310. "style": {
  8311. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8312. },
  8313. "name": "项目设计",
  8314. "forms": _formdiv,
  8315. "click": function () {
  8316. U.MD.D.I.openApplication(str, obj, info);
  8317. }
  8318. }
  8319. break;
  8320. }
  8321. const script1 = document.createElement("script");
  8322. script1.type = "text/javascript";
  8323. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8324. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8325. const script2 = document.createElement("script");
  8326. script2.type = "text/javascript";
  8327. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8328. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8329. const script3 = document.createElement("script");
  8330. script3.type = "text/javascript";
  8331. script3.charset = "UTF-8";
  8332. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8333. const script4 = document.createElement("script");
  8334. script4.type = "text/javascript";
  8335. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8336. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8337. if (_iframe) {
  8338. if (str == 'doc') {
  8339. _iframe = _formdiv.querySelector('iframe')
  8340. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8341. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8342. _iframe.contentWindow.document.body.appendChild(script1);
  8343. _iframe.contentWindow.document.body.appendChild(script2);
  8344. // _iframe.contentWindow.document.body.appendChild(script3);
  8345. _iframe.contentWindow.document.body.appendChild(script4);
  8346. })
  8347. if (onloadListener) {
  8348. _iframe.contentDocument.location.reload()
  8349. } else {
  8350. _iframe.contentDocument.location.reload()
  8351. }
  8352. } else if (str == 'courseDesign') {
  8353. U.UF.DL.iframeLoad(_iframe, function () {
  8354. // _iframe.contentWindow.U.MD.O.W.load();
  8355. // _iframe.contentWindow.document.body.appendChild(script1);
  8356. _iframe.contentWindow.document.body.appendChild(script2);
  8357. _iframe.contentWindow.document.body.appendChild(script4);
  8358. })
  8359. } else if (str == 'mind') {
  8360. _iframe = _formdiv.querySelector('iframe')
  8361. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8362. //
  8363. _iframe.contentWindow.document.body.appendChild(script1);
  8364. _iframe.contentWindow.document.body.appendChild(script2);
  8365. _iframe.contentWindow.document.body.appendChild(script4);
  8366. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8367. })
  8368. if (onloadListener) {
  8369. _iframe.contentDocument.location.reload()
  8370. } else {
  8371. _iframe.contentDocument.location.reload()
  8372. }
  8373. } else if (str == 'whiteboard') {
  8374. _iframe = _formdiv.querySelector('iframe')
  8375. let onloadListener = _iframe.onload = () => {
  8376. _iframe.contentWindow.document.body.appendChild(script1);
  8377. _iframe.contentWindow.document.body.appendChild(script2);
  8378. _iframe.contentWindow.document.body.appendChild(script4);
  8379. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8380. };
  8381. // if (onloadListener) {
  8382. // try {
  8383. // _iframe.src += "?cocorobo="+new Date().getTime()
  8384. // _iframe.contentWindow.document.location.reload()
  8385. // } catch (error) {
  8386. // }
  8387. // } else {
  8388. // _iframe.contentDocument.location.reload()
  8389. // }
  8390. } else {
  8391. _iframe.onload = () => {
  8392. _iframe.contentWindow.document.body.appendChild(script1);
  8393. _iframe.contentWindow.document.body.appendChild(script2);
  8394. // _iframe.contentWindow.document.body.appendChild(script3);
  8395. _iframe.contentWindow.document.body.appendChild(script4);
  8396. };
  8397. }
  8398. _jie.onclick = async () => {
  8399. let text = ''
  8400. if (aTool == 1) {
  8401. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8402. } else if (aTool == 6) {
  8403. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8404. } else if (aTool == 3) {
  8405. text = await U.MD.D.I.getEditorContent(_iframe);
  8406. }
  8407. _loading.style.display = 'flex'
  8408. console.log(_loading);
  8409. var _ajs = _iframe.contentWindow.document.createElement("script");
  8410. _ajs.type = "text/javascript";
  8411. _ajs.innerHTML =
  8412. // 'console.log(' + _loading + ');\n' +
  8413. 'var _js = document.createElement("script");\n' +
  8414. '_js.type="text/javascript";\n' +
  8415. '_js.charset="UTF-8";\n' +
  8416. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8417. "_js.onload = function(){\n" +
  8418. ' var a = document.getElementsByTagName("img")\n' +
  8419. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8420. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8421. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8422. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8423. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8424. "beforeUpload_shishi(file," +
  8425. "'" +
  8426. _userid +
  8427. "'" +
  8428. ", " +
  8429. "'" +
  8430. _cid +
  8431. "'" +
  8432. ", " +
  8433. "'" +
  8434. _stage +
  8435. "'" +
  8436. ", " +
  8437. "'" +
  8438. _task +
  8439. "'" +
  8440. ", " +
  8441. "'" +
  8442. _tool +
  8443. "'" +
  8444. ", " +
  8445. "'" +
  8446. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8447. "'" +
  8448. ", " +
  8449. "'" +
  8450. aTool +
  8451. "'" +
  8452. ", " +
  8453. "`" +
  8454. text +
  8455. "`" +
  8456. ")\n" +
  8457. " });\n" +
  8458. "}\n" +
  8459. "document.head.appendChild(_js);\n";
  8460. _iframe.contentWindow.document.head.appendChild(_ajs);
  8461. }
  8462. }
  8463. }
  8464. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8465. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8466. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8467. _userid = student.userid, //登录用户id
  8468. _username = student.student //用户名字
  8469. let _iframe;
  8470. let _cid = cid,
  8471. _stage = stage,
  8472. _task = task,
  8473. _tool = tool;
  8474. var _jie = $$("div", {
  8475. "style": {
  8476. "position": "absolute",
  8477. "bottom": "50px",
  8478. "right": "50px",
  8479. "zIndex": "9999",
  8480. "backgroundColor": "#2268bc",
  8481. "color": "#fff",
  8482. "padding": "12px 20px",
  8483. "cursor": "pointer",
  8484. "borderRadius": "4px",
  8485. },
  8486. "innerHTML": "提交作业"
  8487. })
  8488. let aTool = ''
  8489. let _loading = document.createElement('div')
  8490. _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;"
  8491. // _loading.id = "";
  8492. let _lchild = document.createElement('div')
  8493. let _limg = document.createElement('img')
  8494. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8495. _limg.style = "width: 26px;margin-right: 10px;"
  8496. _lchild.appendChild(_limg)
  8497. let _lspan = document.createElement('span')
  8498. _lspan.innerHTML = "上传中..."
  8499. _lchild.appendChild(_lspan)
  8500. _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%);"
  8501. _loading.appendChild(_lchild)
  8502. var _box = $$('div', {
  8503. "style": {
  8504. "position": "relative",
  8505. "width": "100%",
  8506. "height": "100%",
  8507. },
  8508. })
  8509. _box.appendChild(_loading)
  8510. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8511. switch (str) {
  8512. case "whiteboard":
  8513. aTool = 1;
  8514. _iframe = $$("iframe", {
  8515. "frameborder": "no",
  8516. "border": "0",
  8517. "scrolling ": "no",
  8518. "style": {
  8519. "cssText": "border:0;width:100%;height:100%"
  8520. },
  8521. "src": "https://beta.iwb.cocorobo.cn/"
  8522. })
  8523. _box.appendChild(_iframe);
  8524. _box.appendChild(_jie);
  8525. _formdiv = new U.UF.UI.form(
  8526. "电子白板-" + _username,
  8527. _box, {
  8528. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8529. "style": {
  8530. "width": "90%",
  8531. "height": "90%",
  8532. "overflow": 'hidden'
  8533. },
  8534. "onresize": function () { }
  8535. }, {
  8536. closecallback: function () { }
  8537. }, {
  8538. "style": {
  8539. "height": "36px"
  8540. }
  8541. }).form; //创建窗体
  8542. _taskbar = {
  8543. "id": str + _formdiv.id,
  8544. "style": {
  8545. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8546. },
  8547. "name": "电子白板",
  8548. "forms": _formdiv,
  8549. "click": function () {
  8550. U.MD.D.I.openApplication(str, obj, info);
  8551. }
  8552. }
  8553. break;
  8554. case "mind":
  8555. aTool = 3;
  8556. _iframe = $$("iframe", {
  8557. "frameborder": "no",
  8558. "border": "0",
  8559. "scrolling ": "no",
  8560. "style": {
  8561. "cssText": "border:0;width:100%;height:100%"
  8562. },
  8563. "src": "/kityminder-editor/dist/index.html"
  8564. })
  8565. _box.appendChild(_iframe);
  8566. _box.appendChild(_jie);
  8567. _formdiv = new U.UF.UI.form(
  8568. "思维导图-" + _username,
  8569. _box, { //"/jsmind/example/demo.html"
  8570. "id": "mind" + cid + stage + task + tool + _userid,
  8571. "style": {
  8572. "width": "90%",
  8573. "height": "90%",
  8574. "overflow": 'hidden'
  8575. },
  8576. "onresize": function () { }
  8577. }, {
  8578. closecallback: function () { }
  8579. }, {
  8580. "style": {
  8581. "height": "36px"
  8582. }
  8583. }).form; //创建窗体
  8584. _taskbar = {
  8585. "id": str + _formdiv.id,
  8586. "style": {
  8587. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8588. },
  8589. "name": "思维导图",
  8590. "forms": _formdiv,
  8591. "click": function () {
  8592. U.MD.D.I.openApplication(str, obj, info);
  8593. }
  8594. }
  8595. break;
  8596. case "MindMap":
  8597. aTool = 3;
  8598. _iframe = $$("iframe", {
  8599. "frameborder": "no",
  8600. "border": "0",
  8601. "scrolling ": "no",
  8602. "style": {
  8603. "cssText": "border:0;width:100%;height:100%"
  8604. },
  8605. "src": "//cloud.cocorobo.cn/mind/"
  8606. })
  8607. _box.appendChild(_iframe);
  8608. _box.appendChild(_jie);
  8609. _formdiv = new U.UF.UI.form(
  8610. "思维导图-" + _username,
  8611. _box, { //"/jsmind/example/demo.html"
  8612. "id": "mind" + cid + stage + task + tool + _userid,
  8613. "style": {
  8614. "width": "90%",
  8615. "height": "90%",
  8616. "overflow": 'hidden'
  8617. },
  8618. "onresize": function () { }
  8619. }, {
  8620. closecallback: function () { }
  8621. }, {
  8622. "style": {
  8623. "height": "36px"
  8624. }
  8625. }).form; //创建窗体
  8626. _taskbar = {
  8627. "id": str + _formdiv.id,
  8628. "style": {
  8629. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8630. },
  8631. "name": "思维导图",
  8632. "forms": _formdiv,
  8633. "click": function () {
  8634. U.MD.D.I.openApplication(str, obj, info);
  8635. }
  8636. }
  8637. break;
  8638. case "doc":
  8639. aTool = 6;
  8640. _iframe = $$("iframe", {
  8641. "frameborder": "no",
  8642. "border": "0",
  8643. "scrolling ": "no",
  8644. "style": {
  8645. "cssText": "border:0;width:100%;height:100%"
  8646. },
  8647. "src": "/Office/Word/WordEditArea.htm"
  8648. })
  8649. _box.appendChild(_iframe);
  8650. _box.appendChild(_jie);
  8651. _formdiv = new U.UF.UI.form(
  8652. "协同文档-" + _username,
  8653. _box, {
  8654. "id": "doc" + cid + stage + task + tool + _userid,
  8655. "style": {
  8656. "width": "90%",
  8657. "height": "90%",
  8658. "overflow": 'hidden'
  8659. },
  8660. "onresize": function () { }
  8661. }, {
  8662. closecallback: function () { }
  8663. }, {
  8664. "style": {
  8665. "height": "36px"
  8666. }
  8667. }).form; //创建窗体
  8668. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8669. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8670. })
  8671. _taskbar = {
  8672. "id": str + _formdiv.id,
  8673. "style": {
  8674. "backgroundImage": "url(/img/icon/doc.png)"
  8675. },
  8676. "name": "协同文档",
  8677. "forms": _formdiv,
  8678. "click": function () {
  8679. U.MD.D.I.openApplication(str, obj, info);
  8680. }
  8681. }
  8682. break;
  8683. case "mindNetwork": //好友打开
  8684. aTool = 7;
  8685. _iframe = $$("iframe", {
  8686. "webkitallowfullscreen": "",
  8687. "mozallowfullscreen": "",
  8688. "allowfullscreen": "",
  8689. "frameborder": "no",
  8690. "border": "0",
  8691. "scrolling ": "no",
  8692. "style": {
  8693. "cssText": "border:0; width:100%; height:100%;"
  8694. },
  8695. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8696. })
  8697. _box.appendChild(_iframe);
  8698. _box.appendChild(_jie);
  8699. _formdiv = new U.UF.UI.form(
  8700. "思维网格-" + _username,
  8701. _box, {
  8702. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8703. "style": {
  8704. "width": "90%",
  8705. "height": "90%",
  8706. "overflow": 'hidden'
  8707. },
  8708. "onresize": function () { }
  8709. }, {
  8710. closecallback: function () { }
  8711. }, {
  8712. "style": {
  8713. "height": "36px"
  8714. }
  8715. }).form; //创建窗体
  8716. _taskbar = {
  8717. "id": str + _formdiv.id,
  8718. "style": {
  8719. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8720. },
  8721. "name": "思维网格",
  8722. "forms": _formdiv,
  8723. "click": function () {
  8724. U.MD.D.I.openApplication(str, obj, info);
  8725. }
  8726. }
  8727. break;
  8728. case "courseDesign":
  8729. _iframe = $$("iframe", {
  8730. "webkitallowfullscreen": "",
  8731. "mozallowfullscreen": "",
  8732. "allowfullscreen": "",
  8733. "frameborder": "no",
  8734. "border": "0",
  8735. "scrolling ": "no",
  8736. "style": {
  8737. "cssText": "border:0; width:100%; height:100%;"
  8738. },
  8739. "src": "/course-design-vue"
  8740. })
  8741. _box.appendChild(_iframe);
  8742. _box.appendChild(_jie);
  8743. _formdiv = new U.UF.UI.form(
  8744. "项目设计-" + _username,
  8745. _box, {
  8746. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8747. "style": {
  8748. "width": "90%",
  8749. "height": "90%",
  8750. "overflow": 'hidden'
  8751. },
  8752. "onresize": function () { }
  8753. }, {
  8754. closecallback: function () { }
  8755. }, {
  8756. "style": {
  8757. "height": "36px"
  8758. }
  8759. }).form; //创建窗体
  8760. _taskbar = {
  8761. "id": str + _formdiv.id,
  8762. "style": {
  8763. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8764. },
  8765. "name": "项目设计",
  8766. "forms": _formdiv,
  8767. "click": function () {
  8768. U.MD.D.I.openApplication(str, obj, info);
  8769. }
  8770. }
  8771. break;
  8772. }
  8773. const script1 = document.createElement("script");
  8774. script1.type = "text/javascript";
  8775. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8776. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8777. const script2 = document.createElement("script");
  8778. script2.type = "text/javascript";
  8779. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8780. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8781. const script3 = document.createElement("script");
  8782. script3.type = "text/javascript";
  8783. script3.charset = "UTF-8";
  8784. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8785. const script4 = document.createElement("script");
  8786. script4.type = "text/javascript";
  8787. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8788. script4.src = window.origin + "/js/Common/jietu2E.js";
  8789. if (_iframe) {
  8790. if (str == 'doc') {
  8791. _iframe = _formdiv.querySelector('iframe')
  8792. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8793. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8794. _iframe.contentWindow.document.body.appendChild(script1);
  8795. _iframe.contentWindow.document.body.appendChild(script2);
  8796. // _iframe.contentWindow.document.body.appendChild(script3);
  8797. _iframe.contentWindow.document.body.appendChild(script4);
  8798. })
  8799. if (onloadListener) {
  8800. _iframe.contentDocument.location.reload()
  8801. } else {
  8802. _iframe.contentDocument.location.reload()
  8803. }
  8804. } else if (str == 'courseDesign') {
  8805. U.UF.DL.iframeLoad(_iframe, function () {
  8806. // _iframe.contentWindow.U.MD.O.W.load();
  8807. // _iframe.contentWindow.document.body.appendChild(script1);
  8808. _iframe.contentWindow.document.body.appendChild(script2);
  8809. _iframe.contentWindow.document.body.appendChild(script4);
  8810. })
  8811. } else if (str == 'mind') {
  8812. _iframe = _formdiv.querySelector('iframe')
  8813. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8814. //
  8815. _iframe.contentWindow.document.body.appendChild(script1);
  8816. _iframe.contentWindow.document.body.appendChild(script2);
  8817. _iframe.contentWindow.document.body.appendChild(script4);
  8818. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8819. })
  8820. if (onloadListener) {
  8821. _iframe.contentDocument.location.reload()
  8822. } else {
  8823. _iframe.contentDocument.location.reload()
  8824. }
  8825. } else if (str == 'whiteboard') {
  8826. _iframe = _formdiv.querySelector('iframe')
  8827. let onloadListener = _iframe.onload = () => {
  8828. _iframe.contentWindow.document.body.appendChild(script1);
  8829. _iframe.contentWindow.document.body.appendChild(script2);
  8830. _iframe.contentWindow.document.body.appendChild(script4);
  8831. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8832. };
  8833. // if (onloadListener) {
  8834. // try {
  8835. // _iframe.src += "?cocorobo="+new Date().getTime()
  8836. // _iframe.contentWindow.document.location.reload()
  8837. // } catch (error) {
  8838. // }
  8839. // } else {
  8840. // _iframe.contentDocument.location.reload()
  8841. // }
  8842. } else {
  8843. _iframe.onload = () => {
  8844. _iframe.contentWindow.document.body.appendChild(script1);
  8845. _iframe.contentWindow.document.body.appendChild(script2);
  8846. // _iframe.contentWindow.document.body.appendChild(script3);
  8847. _iframe.contentWindow.document.body.appendChild(script4);
  8848. };
  8849. }
  8850. _jie.onclick = async () => {
  8851. let text = ''
  8852. if (aTool == 1) {
  8853. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8854. } else if (aTool == 6) {
  8855. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8856. } else if (aTool == 3) {
  8857. text = await U.MD.D.I.getEditorContent(_iframe);
  8858. }
  8859. _loading.style.display = 'flex'
  8860. console.log(_loading);
  8861. var _ajs = _iframe.contentWindow.document.createElement("script");
  8862. _ajs.type = "text/javascript";
  8863. _ajs.innerHTML =
  8864. // 'console.log(' + _loading + ');\n' +
  8865. 'var _js = document.createElement("script");\n' +
  8866. '_js.type="text/javascript";\n' +
  8867. '_js.charset="UTF-8";\n' +
  8868. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8869. "_js.onload = function(){\n" +
  8870. ' var a = document.getElementsByTagName("img")\n' +
  8871. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8872. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8873. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8874. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8875. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8876. "beforeUpload_shishi(file," +
  8877. "'" +
  8878. _userid +
  8879. "'" +
  8880. ", " +
  8881. "'" +
  8882. _cid +
  8883. "'" +
  8884. ", " +
  8885. "'" +
  8886. _stage +
  8887. "'" +
  8888. ", " +
  8889. "'" +
  8890. _task +
  8891. "'" +
  8892. ", " +
  8893. "'" +
  8894. _tool +
  8895. "'" +
  8896. ", " +
  8897. "'" +
  8898. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8899. "'" +
  8900. ", " +
  8901. "'" +
  8902. aTool +
  8903. "'" +
  8904. ", " +
  8905. "`" +
  8906. text +
  8907. "`" +
  8908. ")\n" +
  8909. " });\n" +
  8910. "}\n" +
  8911. "document.head.appendChild(_js);\n";
  8912. _iframe.contentWindow.document.head.appendChild(_ajs);
  8913. }
  8914. }
  8915. }
  8916. U.MD.D.I.getEditorContent = function (iframe) {
  8917. return new Promise((resolve, reject) => {
  8918. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8919. console.log(content);
  8920. resolve(content)
  8921. });
  8922. });
  8923. }
  8924. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8925. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8926. // if (res.value[0].length > 0) {
  8927. // // resolve(res.value[0][0].text);
  8928. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8929. // $(fileInput).val('');
  8930. // });
  8931. // }
  8932. // }, [], { "type": "GET", "withCredentials": true });
  8933. var xmlhttp;
  8934. var Mac, Sn, DeviceId
  8935. if (window.XMLHttpRequest) {
  8936. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8937. xmlhttp = new XMLHttpRequest();
  8938. } else {
  8939. // IE6, IE5 浏览器执行代码
  8940. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8941. }
  8942. xmlhttp.onreadystatechange = function () {
  8943. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8944. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8945. // resolve(res.value[0][0].text);
  8946. if (type == '2') {
  8947. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8948. } else if (type == '3') {
  8949. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8950. }
  8951. } else {
  8952. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8953. }
  8954. }
  8955. }
  8956. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8957. xmlhttp.send();
  8958. }
  8959. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8960. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8961. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8962. _userinfo = US.userInfo, //登录用户信息
  8963. _userid = US.userInfo.userid //登录用户id
  8964. let _iframe;
  8965. let _cid = cid,
  8966. _stage = stage,
  8967. _task = task,
  8968. _tool = tool;
  8969. var _jie = $$("div", {
  8970. "style": {
  8971. "position": "absolute",
  8972. "bottom": "50px",
  8973. "right": "50px",
  8974. "zIndex": "9999",
  8975. "backgroundColor": "#2268bc",
  8976. "color": "#fff",
  8977. "padding": "12px 20px",
  8978. "cursor": "pointer",
  8979. "borderRadius": "4px",
  8980. },
  8981. "innerHTML": "确认并提交"
  8982. })
  8983. let aTool = ''
  8984. let _loading = document.createElement('div')
  8985. _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;"
  8986. // _loading.id = "";
  8987. let _lchild = document.createElement('div')
  8988. let _limg = document.createElement('img')
  8989. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8990. _limg.style = "width: 26px;margin-right: 10px;"
  8991. _lchild.appendChild(_limg)
  8992. let _lspan = document.createElement('span')
  8993. _lspan.innerHTML = "上传中..."
  8994. _lchild.appendChild(_lspan)
  8995. _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%);"
  8996. _loading.appendChild(_lchild)
  8997. var _box = $$('div', {
  8998. "style": {
  8999. "position": "relative",
  9000. "width": "100%",
  9001. "height": "100%",
  9002. },
  9003. })
  9004. _box.appendChild(_loading)
  9005. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9006. switch (str) {
  9007. case "whiteboard":
  9008. aTool = 1;
  9009. _iframe = $$("iframe", {
  9010. "frameborder": "no",
  9011. "border": "0",
  9012. "scrolling ": "no",
  9013. "style": {
  9014. "cssText": "border:0;width:100%;height:100%"
  9015. },
  9016. "src": "https://beta.iwb.cocorobo.cn/"
  9017. })
  9018. _box.appendChild(_iframe);
  9019. _box.appendChild(_jie);
  9020. _formdiv = new U.UF.UI.form(
  9021. "电子白板",
  9022. _box, {
  9023. "id": "whiteboards" + cid + stage + task + tool,
  9024. "style": {
  9025. "width": "90%",
  9026. "height": "90%",
  9027. "overflow": 'hidden'
  9028. },
  9029. "onresize": function () { }
  9030. }, {
  9031. closecallback: function () { }
  9032. }, {
  9033. "style": {
  9034. "height": "36px"
  9035. }
  9036. }).form; //创建窗体
  9037. _taskbar = {
  9038. "id": str + _formdiv.id,
  9039. "style": {
  9040. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9041. },
  9042. "name": "电子白板",
  9043. "forms": _formdiv,
  9044. "click": function () {
  9045. U.MD.D.I.openApplication(str, obj, info);
  9046. }
  9047. }
  9048. break;
  9049. case "mind":
  9050. aTool = 3;
  9051. _iframe = $$("iframe", {
  9052. "frameborder": "no",
  9053. "border": "0",
  9054. "scrolling ": "no",
  9055. "style": {
  9056. "cssText": "border:0;width:100%;height:100%"
  9057. },
  9058. "src": "/kityminder-editor/dist/index.html"
  9059. });
  9060. _box.appendChild(_iframe);
  9061. _box.appendChild(_jie);
  9062. _formdiv = new U.UF.UI.form(
  9063. "思维导图",
  9064. _box, { //"/jsmind/example/demo.html"
  9065. "id": "minds" + cid + stage + task + tool,
  9066. "style": {
  9067. "width": "90%",
  9068. "height": "90%",
  9069. "overflow": 'hidden'
  9070. },
  9071. "onresize": function () { }
  9072. }, {
  9073. closecallback: function () { }
  9074. }, {
  9075. "style": {
  9076. "height": "36px"
  9077. }
  9078. }).form; //创建窗体
  9079. _taskbar = {
  9080. "id": str + _formdiv.id,
  9081. "style": {
  9082. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9083. },
  9084. "name": "思维导图",
  9085. "forms": _formdiv,
  9086. "click": function () {
  9087. U.MD.D.I.openApplication(str, obj, info);
  9088. }
  9089. }
  9090. break;
  9091. case "doc":
  9092. aTool = 6;
  9093. _iframe = $$("iframe", {
  9094. "frameborder": "no",
  9095. "border": "0",
  9096. "scrolling ": "no",
  9097. "style": {
  9098. "cssText": "border:0;width:100%;height:100%"
  9099. },
  9100. "src": "/Office/Word/WordEditArea.htm"
  9101. })
  9102. _box.appendChild(_iframe);
  9103. _box.appendChild(_jie);
  9104. _formdiv = new U.UF.UI.form(
  9105. "协同文档",
  9106. _box, {
  9107. "id": "docs" + cid + stage + task + tool,
  9108. "style": {
  9109. "width": "90%",
  9110. "height": "90%",
  9111. "overflow": 'hidden'
  9112. },
  9113. "onresize": function () { }
  9114. }, {
  9115. closecallback: function () { }
  9116. }, {
  9117. "style": {
  9118. "height": "36px"
  9119. }
  9120. }).form; //创建窗体
  9121. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9122. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9123. })
  9124. _taskbar = {
  9125. "id": str + _formdiv.id,
  9126. "style": {
  9127. "backgroundImage": "url(/img/icon/doc.png)"
  9128. },
  9129. "name": "协同文档",
  9130. "forms": _formdiv,
  9131. "click": function () {
  9132. U.MD.D.I.openApplication(str, obj, info);
  9133. }
  9134. }
  9135. break;
  9136. }
  9137. const script1 = document.createElement("script");
  9138. script1.type = "text/javascript";
  9139. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9140. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9141. const script2 = document.createElement("script");
  9142. script2.type = "text/javascript";
  9143. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9144. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9145. const script3 = document.createElement("script");
  9146. script3.type = "text/javascript";
  9147. script3.charset = "UTF-8";
  9148. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9149. const script4 = document.createElement("script");
  9150. script4.type = "text/javascript";
  9151. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9152. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9153. if (_iframe) {
  9154. if (str == 'doc') {
  9155. _iframe = _formdiv.querySelector('iframe')
  9156. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9157. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9158. _iframe.contentWindow.document.body.appendChild(script1);
  9159. _iframe.contentWindow.document.body.appendChild(script2);
  9160. // _iframe.contentWindow.document.body.appendChild(script3);
  9161. _iframe.contentWindow.document.body.appendChild(script4);
  9162. })
  9163. if (onloadListener) {
  9164. _iframe.contentDocument.location.reload()
  9165. } else {
  9166. _iframe.contentDocument.location.reload()
  9167. }
  9168. } else if (str == 'mind') {
  9169. _iframe = _formdiv.querySelector('iframe')
  9170. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9171. _iframe.contentWindow.document.body.appendChild(script1);
  9172. _iframe.contentWindow.document.body.appendChild(script2);
  9173. _iframe.contentWindow.document.body.appendChild(script4);
  9174. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9175. })
  9176. if (onloadListener) {
  9177. _iframe.contentDocument.location.reload()
  9178. } else {
  9179. _iframe.contentDocument.location.reload()
  9180. }
  9181. } else {
  9182. _iframe.onload = () => {
  9183. _iframe.contentWindow.document.body.appendChild(script1);
  9184. _iframe.contentWindow.document.body.appendChild(script2);
  9185. // _iframe.contentWindow.document.body.appendChild(script3);
  9186. _iframe.contentWindow.document.body.appendChild(script4);
  9187. };
  9188. }
  9189. _jie.onclick = async () => {
  9190. let text = ''
  9191. if (aTool == 6) {
  9192. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9193. } else if (aTool == 3) {
  9194. text = await U.MD.D.I.getEditorContent(_iframe);
  9195. }
  9196. _loading.style.display = 'flex'
  9197. console.log(_loading);
  9198. var _ajs = _iframe.contentWindow.document.createElement("script");
  9199. _ajs.type = "text/javascript";
  9200. _ajs.innerHTML =
  9201. // 'console.log(' + _loading + ');\n' +
  9202. 'var _js = document.createElement("script");\n' +
  9203. '_js.type="text/javascript";\n' +
  9204. '_js.charset="UTF-8";\n' +
  9205. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9206. "_js.onload = function(){\n" +
  9207. ' var a = document.getElementsByTagName("img")\n' +
  9208. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9209. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9210. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9211. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9212. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9213. "beforeUpload_shishi(file," +
  9214. "'" +
  9215. _userid +
  9216. "'" +
  9217. ", " +
  9218. "'" +
  9219. _cid +
  9220. "'" +
  9221. ", " +
  9222. "'" +
  9223. _stage +
  9224. "'" +
  9225. ", " +
  9226. "'" +
  9227. _task +
  9228. "'" +
  9229. ", " +
  9230. "'" +
  9231. _tool +
  9232. "'" +
  9233. ", " +
  9234. "'" +
  9235. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9236. "'" +
  9237. ", " +
  9238. "'" +
  9239. aTool +
  9240. "'" +
  9241. ", " +
  9242. "`" +
  9243. text +
  9244. "`" +
  9245. ")\n" +
  9246. " });\n" +
  9247. "}\n" +
  9248. "document.head.appendChild(_js);\n";
  9249. _iframe.contentWindow.document.head.appendChild(_ajs);
  9250. }
  9251. }
  9252. //U.MD.D.I.openClick(str);
  9253. //如果有任务栏信息
  9254. // if (_taskbar) {
  9255. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9256. // }
  9257. }
  9258. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9259. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9260. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9261. _userinfo = US.userInfo, //登录用户信息
  9262. _userid = US.userInfo.userid //登录用户id
  9263. let _iframe;
  9264. let _cid = cid,
  9265. _stage = stage,
  9266. _task = task,
  9267. _tool = tool;
  9268. var _jie = $$("div", {
  9269. "style": {
  9270. "position": "absolute",
  9271. "bottom": "50px",
  9272. "right": "50px",
  9273. "zIndex": "9999",
  9274. "backgroundColor": "#2268bc",
  9275. "color": "#fff",
  9276. "padding": "12px 20px",
  9277. "cursor": "pointer",
  9278. "borderRadius": "4px",
  9279. },
  9280. "innerHTML": "确认并提交"
  9281. })
  9282. let aTool = ''
  9283. let _loading = document.createElement('div')
  9284. _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;"
  9285. // _loading.id = "";
  9286. let _lchild = document.createElement('div')
  9287. let _limg = document.createElement('img')
  9288. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9289. _limg.style = "width: 26px;margin-right: 10px;"
  9290. _lchild.appendChild(_limg)
  9291. let _lspan = document.createElement('span')
  9292. _lspan.innerHTML = "上传中..."
  9293. _lchild.appendChild(_lspan)
  9294. _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%);"
  9295. _loading.appendChild(_lchild)
  9296. var _box = $$('div', {
  9297. "style": {
  9298. "position": "relative",
  9299. "width": "100%",
  9300. "height": "100%",
  9301. },
  9302. })
  9303. _box.appendChild(_loading)
  9304. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9305. switch (str) {
  9306. case "whiteboard":
  9307. aTool = 1;
  9308. _iframe = $$("iframe", {
  9309. "frameborder": "no",
  9310. "border": "0",
  9311. "scrolling ": "no",
  9312. "style": {
  9313. "cssText": "border:0;width:100%;height:100%"
  9314. },
  9315. "src": "https://beta.iwb.cocorobo.cn/"
  9316. })
  9317. _box.appendChild(_iframe);
  9318. _box.appendChild(_jie);
  9319. _formdiv = new U.UF.UI.form(
  9320. "电子白板",
  9321. _box, {
  9322. "id": "whiteboards" + cid + stage + task + tool,
  9323. "style": {
  9324. "width": "90%",
  9325. "height": "90%",
  9326. "overflow": 'hidden'
  9327. },
  9328. "onresize": function () { }
  9329. }, {
  9330. closecallback: function () { }
  9331. }, {
  9332. "style": {
  9333. "height": "36px"
  9334. }
  9335. }).form; //创建窗体
  9336. _taskbar = {
  9337. "id": str + _formdiv.id,
  9338. "style": {
  9339. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9340. },
  9341. "name": "电子白板",
  9342. "forms": _formdiv,
  9343. "click": function () {
  9344. U.MD.D.I.openApplication(str, obj, info);
  9345. }
  9346. }
  9347. break;
  9348. case "mind":
  9349. aTool = 3;
  9350. _iframe = $$("iframe", {
  9351. "frameborder": "no",
  9352. "border": "0",
  9353. "scrolling ": "no",
  9354. "style": {
  9355. "cssText": "border:0;width:100%;height:100%"
  9356. },
  9357. "src": "/kityminder-editor/dist/index.html"
  9358. });
  9359. _box.appendChild(_iframe);
  9360. _box.appendChild(_jie);
  9361. _formdiv = new U.UF.UI.form(
  9362. "思维导图",
  9363. _box, { //"/jsmind/example/demo.html"
  9364. "id": "minds" + cid + stage + task + tool,
  9365. "style": {
  9366. "width": "90%",
  9367. "height": "90%",
  9368. "overflow": 'hidden'
  9369. },
  9370. "onresize": function () { }
  9371. }, {
  9372. closecallback: function () { }
  9373. }, {
  9374. "style": {
  9375. "height": "36px"
  9376. }
  9377. }).form; //创建窗体
  9378. _taskbar = {
  9379. "id": str + _formdiv.id,
  9380. "style": {
  9381. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9382. },
  9383. "name": "思维导图",
  9384. "forms": _formdiv,
  9385. "click": function () {
  9386. U.MD.D.I.openApplication(str, obj, info);
  9387. }
  9388. }
  9389. break;
  9390. case "doc":
  9391. aTool = 6;
  9392. _iframe = $$("iframe", {
  9393. "frameborder": "no",
  9394. "border": "0",
  9395. "scrolling ": "no",
  9396. "style": {
  9397. "cssText": "border:0;width:100%;height:100%"
  9398. },
  9399. "src": "/Office/Word/WordEditArea.htm"
  9400. })
  9401. _box.appendChild(_iframe);
  9402. _box.appendChild(_jie);
  9403. _formdiv = new U.UF.UI.form(
  9404. "协同文档",
  9405. _box, {
  9406. "id": "docs" + cid + stage + task + tool,
  9407. "style": {
  9408. "width": "90%",
  9409. "height": "90%",
  9410. "overflow": 'hidden'
  9411. },
  9412. "onresize": function () { }
  9413. }, {
  9414. closecallback: function () { }
  9415. }, {
  9416. "style": {
  9417. "height": "36px"
  9418. }
  9419. }).form; //创建窗体
  9420. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9421. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9422. })
  9423. _taskbar = {
  9424. "id": str + _formdiv.id,
  9425. "style": {
  9426. "backgroundImage": "url(/img/icon/doc.png)"
  9427. },
  9428. "name": "协同文档",
  9429. "forms": _formdiv,
  9430. "click": function () {
  9431. U.MD.D.I.openApplication(str, obj, info);
  9432. }
  9433. }
  9434. break;
  9435. }
  9436. const script1 = document.createElement("script");
  9437. script1.type = "text/javascript";
  9438. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9439. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9440. const script2 = document.createElement("script");
  9441. script2.type = "text/javascript";
  9442. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9443. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9444. const script3 = document.createElement("script");
  9445. script3.type = "text/javascript";
  9446. script3.charset = "UTF-8";
  9447. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9448. const script4 = document.createElement("script");
  9449. script4.type = "text/javascript";
  9450. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9451. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9452. if (_iframe) {
  9453. if (str == 'doc') {
  9454. _iframe = _formdiv.querySelector('iframe')
  9455. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9456. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9457. _iframe.contentWindow.document.body.appendChild(script1);
  9458. _iframe.contentWindow.document.body.appendChild(script2);
  9459. // _iframe.contentWindow.document.body.appendChild(script3);
  9460. _iframe.contentWindow.document.body.appendChild(script4);
  9461. })
  9462. if (onloadListener) {
  9463. _iframe.contentDocument.location.reload()
  9464. } else {
  9465. _iframe.contentDocument.location.reload()
  9466. }
  9467. } else if (str == 'mind') {
  9468. _iframe = _formdiv.querySelector('iframe')
  9469. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9470. _iframe.contentWindow.document.body.appendChild(script1);
  9471. _iframe.contentWindow.document.body.appendChild(script2);
  9472. _iframe.contentWindow.document.body.appendChild(script4);
  9473. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9474. })
  9475. if (onloadListener) {
  9476. _iframe.contentDocument.location.reload()
  9477. } else {
  9478. _iframe.contentDocument.location.reload()
  9479. }
  9480. } else {
  9481. _iframe.onload = () => {
  9482. _iframe.contentWindow.document.body.appendChild(script1);
  9483. _iframe.contentWindow.document.body.appendChild(script2);
  9484. // _iframe.contentWindow.document.body.appendChild(script3);
  9485. _iframe.contentWindow.document.body.appendChild(script4);
  9486. };
  9487. }
  9488. _jie.onclick = async () => {
  9489. let text = ''
  9490. if (aTool == 6) {
  9491. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9492. } else if (aTool == 3) {
  9493. text = await U.MD.D.I.getEditorContent(_iframe);
  9494. }
  9495. _loading.style.display = 'flex'
  9496. console.log(_loading);
  9497. var _ajs = _iframe.contentWindow.document.createElement("script");
  9498. _ajs.type = "text/javascript";
  9499. _ajs.innerHTML =
  9500. // 'console.log(' + _loading + ');\n' +
  9501. 'var _js = document.createElement("script");\n' +
  9502. '_js.type="text/javascript";\n' +
  9503. '_js.charset="UTF-8";\n' +
  9504. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9505. "_js.onload = function(){\n" +
  9506. ' var a = document.getElementsByTagName("img")\n' +
  9507. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9508. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9509. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9510. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9511. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9512. "beforeUpload_shishi(file," +
  9513. "'" +
  9514. _userid +
  9515. "'" +
  9516. ", " +
  9517. "'" +
  9518. _cid +
  9519. "'" +
  9520. ", " +
  9521. "'" +
  9522. _stage +
  9523. "'" +
  9524. ", " +
  9525. "'" +
  9526. _task +
  9527. "'" +
  9528. ", " +
  9529. "'" +
  9530. _tool +
  9531. "'" +
  9532. ", " +
  9533. "'" +
  9534. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9535. "'" +
  9536. ", " +
  9537. "'" +
  9538. aTool +
  9539. "'" +
  9540. ", " +
  9541. "`" +
  9542. text +
  9543. "`" +
  9544. ")\n" +
  9545. " });\n" +
  9546. "}\n" +
  9547. "document.head.appendChild(_js);\n";
  9548. _iframe.contentWindow.document.head.appendChild(_ajs);
  9549. }
  9550. }
  9551. //U.MD.D.I.openClick(str);
  9552. //如果有任务栏信息
  9553. // if (_taskbar) {
  9554. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9555. // }
  9556. }
  9557. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9558. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9559. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9560. _userinfo = US.userInfo, //登录用户信息
  9561. _userid = US.userInfo.userid //登录用户id
  9562. let _iframe;
  9563. let _cid = cid,
  9564. _stage = stage,
  9565. _task = task,
  9566. _tool = tool;
  9567. var _jie = $$("div", {
  9568. "style": {
  9569. "position": "absolute",
  9570. "bottom": "50px",
  9571. "right": "50px",
  9572. "zIndex": "9999",
  9573. "backgroundColor": "#2268bc",
  9574. "color": "#fff",
  9575. "padding": "12px 20px",
  9576. "cursor": "pointer",
  9577. "borderRadius": "4px",
  9578. },
  9579. "innerHTML": "上传模板"
  9580. })
  9581. let aTool = ''
  9582. let _loading = document.createElement('div')
  9583. _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;"
  9584. // _loading.id = "";
  9585. let _lchild = document.createElement('div')
  9586. let _limg = document.createElement('img')
  9587. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9588. _limg.style = "width: 26px;margin-right: 10px;"
  9589. _lchild.appendChild(_limg)
  9590. let _lspan = document.createElement('span')
  9591. _lspan.innerHTML = "上传中..."
  9592. _lchild.appendChild(_lspan)
  9593. _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%);"
  9594. _loading.appendChild(_lchild)
  9595. var _box = $$('div', {
  9596. "style": {
  9597. "position": "relative",
  9598. "width": "100%",
  9599. "height": "100%",
  9600. },
  9601. })
  9602. _box.appendChild(_loading)
  9603. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9604. switch (str) {
  9605. case "whiteboard":
  9606. aTool = 1;
  9607. _iframe = $$("iframe", {
  9608. "frameborder": "no",
  9609. "border": "0",
  9610. "scrolling ": "no",
  9611. "style": {
  9612. "cssText": "border:0;width:100%;height:100%"
  9613. },
  9614. "src": "https://beta.iwb.cocorobo.cn/"
  9615. })
  9616. _box.appendChild(_iframe);
  9617. _box.appendChild(_jie);
  9618. _formdiv = new U.UF.UI.form(
  9619. "电子白板",
  9620. _box, {
  9621. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9622. "style": {
  9623. "width": "90%",
  9624. "height": "90%",
  9625. "overflow": 'hidden'
  9626. },
  9627. "onresize": function () { }
  9628. }, {
  9629. closecallback: function () { }
  9630. }, {
  9631. "style": {
  9632. "height": "36px"
  9633. }
  9634. }).form; //创建窗体
  9635. _taskbar = {
  9636. "id": str + _formdiv.id,
  9637. "style": {
  9638. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9639. },
  9640. "name": "电子白板",
  9641. "forms": _formdiv,
  9642. "click": function () {
  9643. U.MD.D.I.openApplication(str, obj, info);
  9644. }
  9645. }
  9646. break;
  9647. case "mind":
  9648. aTool = 3;
  9649. _iframe = $$("iframe", {
  9650. "frameborder": "no",
  9651. "border": "0",
  9652. "scrolling ": "no",
  9653. "style": {
  9654. "cssText": "border:0;width:100%;height:100%"
  9655. },
  9656. "src": "/kityminder-editor/dist/index.html"
  9657. });
  9658. _box.appendChild(_iframe);
  9659. _box.appendChild(_jie);
  9660. _formdiv = new U.UF.UI.form(
  9661. "思维导图",
  9662. _box, { //"/jsmind/example/demo.html"
  9663. "id": "minds_Yu" + cid + stage + task + tool,
  9664. "style": {
  9665. "width": "90%",
  9666. "height": "90%",
  9667. "overflow": 'hidden'
  9668. },
  9669. "onresize": function () { }
  9670. }, {
  9671. closecallback: function () { }
  9672. }, {
  9673. "style": {
  9674. "height": "36px"
  9675. }
  9676. }).form; //创建窗体
  9677. _taskbar = {
  9678. "id": str + _formdiv.id,
  9679. "style": {
  9680. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9681. },
  9682. "name": "思维导图",
  9683. "forms": _formdiv,
  9684. "click": function () {
  9685. U.MD.D.I.openApplication(str, obj, info);
  9686. }
  9687. }
  9688. break;
  9689. case "doc":
  9690. aTool = 6;
  9691. _iframe = $$("iframe", {
  9692. "frameborder": "no",
  9693. "border": "0",
  9694. "scrolling ": "no",
  9695. "style": {
  9696. "cssText": "border:0;width:100%;height:100%"
  9697. },
  9698. "src": "/Office/Word/WordEditArea.htm"
  9699. })
  9700. _box.appendChild(_iframe);
  9701. _box.appendChild(_jie);
  9702. _formdiv = new U.UF.UI.form(
  9703. "协同文档",
  9704. _box, {
  9705. "id": "docs_Yu" + cid + stage + task + tool,
  9706. "style": {
  9707. "width": "90%",
  9708. "height": "90%",
  9709. "overflow": 'hidden'
  9710. },
  9711. "onresize": function () { }
  9712. }, {
  9713. closecallback: function () { }
  9714. }, {
  9715. "style": {
  9716. "height": "36px"
  9717. }
  9718. }).form; //创建窗体
  9719. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9720. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9721. })
  9722. _taskbar = {
  9723. "id": str + _formdiv.id,
  9724. "style": {
  9725. "backgroundImage": "url(/img/icon/doc.png)"
  9726. },
  9727. "name": "协同文档",
  9728. "forms": _formdiv,
  9729. "click": function () {
  9730. U.MD.D.I.openApplication(str, obj, info);
  9731. }
  9732. }
  9733. break;
  9734. case "CocoPi":
  9735. aTool = 57;
  9736. _iframe = $$("iframe", {
  9737. "allowpaymentrequest": "allowpaymentrequest",
  9738. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9739. "webkitallowfullscreen": "",
  9740. "mozallowfullscreen": "",
  9741. "frameborder": "no",
  9742. "border": "0",
  9743. "scrolling ": "no",
  9744. "style": {
  9745. "cssText": "border:0;width:100%;height:100%"
  9746. },
  9747. "src": "https://pi.cocorobo.cn/"
  9748. })
  9749. _box.appendChild(_iframe);
  9750. _box.appendChild(_jie);
  9751. _formdiv = new U.UF.UI.form(
  9752. "CocoPi",
  9753. _box, {
  9754. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9755. "style": {
  9756. "width": "90%",
  9757. "height": "90%",
  9758. "overflow": 'hidden'
  9759. },
  9760. "onresize": function () { }
  9761. }, {
  9762. closecallback: function () { }
  9763. }, {
  9764. "style": {
  9765. "height": "36px"
  9766. }
  9767. }).form; //创建窗体
  9768. _taskbar = {
  9769. "id": str + _formdiv.id,
  9770. "style": {
  9771. "backgroundImage": "url(/img/icon/cocopi.png)"
  9772. },
  9773. "name": "CocoPi",
  9774. "forms": _formdiv,
  9775. "click": function () {
  9776. U.MD.D.I.openApplication(str, obj, info);
  9777. }
  9778. }
  9779. break;
  9780. }
  9781. if (_iframe) {
  9782. if (str == 'doc') {
  9783. _iframe = _formdiv.querySelector('iframe')
  9784. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9785. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9786. })
  9787. if (onloadListener) {
  9788. _iframe.contentDocument.location.reload()
  9789. } else {
  9790. _iframe.contentDocument.location.reload()
  9791. }
  9792. } else if (str == 'mind') {
  9793. _iframe = _formdiv.querySelector('iframe')
  9794. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9795. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9796. })
  9797. if (onloadListener) {
  9798. _iframe.contentDocument.location.reload()
  9799. } else {
  9800. _iframe.contentDocument.location.reload()
  9801. }
  9802. } else if (str == 'whiteboard') {
  9803. _iframe = _formdiv.querySelector('iframe')
  9804. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9805. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9806. })
  9807. // if (onloadListener) {
  9808. // try {
  9809. // _iframe.src += "?cocorobo="+new Date().getTime()
  9810. // _iframe.contentWindow.document.location.reload()
  9811. // } catch (error) {
  9812. // }
  9813. // } else {
  9814. // _iframe.contentDocument.location.reload()
  9815. // }
  9816. } else if (str == 'CocoPi') {
  9817. _iframe = _formdiv.querySelector('iframe')
  9818. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9819. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9820. })
  9821. if (onloadListener) {
  9822. _iframe.contentDocument.location.reload()
  9823. } else {
  9824. _iframe.contentDocument.location.reload()
  9825. }
  9826. } else {
  9827. _iframe.onload = () => { };
  9828. }
  9829. _jie.onclick = async () => {
  9830. let text = ''
  9831. let type = '2'
  9832. if (aTool == 1) {
  9833. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9834. type = '3'
  9835. } else if (aTool == 6) {
  9836. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9837. type = '1'
  9838. } else if (aTool == 3) {
  9839. text = await U.MD.D.I.getEditorContent(_iframe);
  9840. type = '2'
  9841. } else if (aTool == 57) {
  9842. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9843. type = '4'
  9844. }
  9845. _loading.style.display = 'flex'
  9846. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9847. }
  9848. }
  9849. //U.MD.D.I.openClick(str);
  9850. //如果有任务栏信息
  9851. // if (_taskbar) {
  9852. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9853. // }
  9854. }
  9855. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9856. var xmlhttp;
  9857. var Mac, Sn, DeviceId
  9858. if (window.XMLHttpRequest) {
  9859. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9860. xmlhttp = new XMLHttpRequest();
  9861. } else {
  9862. // IE6, IE5 浏览器执行代码
  9863. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9864. }
  9865. xmlhttp.onreadystatechange = function () {
  9866. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9867. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9868. // resolve(res.value[0][0].text);
  9869. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9870. }
  9871. }
  9872. }
  9873. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9874. xmlhttp.send();
  9875. }
  9876. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9877. var xmlhttp;
  9878. var Mac, Sn, DeviceId
  9879. if (window.XMLHttpRequest) {
  9880. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9881. xmlhttp = new XMLHttpRequest();
  9882. } else {
  9883. // IE6, IE5 浏览器执行代码
  9884. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9885. }
  9886. xmlhttp.onreadystatechange = function () {
  9887. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9888. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9889. // resolve(res.value[0][0].text);
  9890. if (type == '2') {
  9891. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9892. } else if (type == '3') {
  9893. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9894. } else if (type == '4') {
  9895. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9896. }
  9897. } else {
  9898. if (type == '2') {
  9899. iframe.contentWindow.editor.minder.importData('json', '')
  9900. } else if (type == '3') {
  9901. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9902. } else if (type == '4') {
  9903. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9904. }
  9905. }
  9906. }
  9907. }
  9908. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9909. xmlhttp.send();
  9910. }
  9911. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9912. var xmlhttp;
  9913. var Mac, Sn, DeviceId
  9914. if (window.XMLHttpRequest) {
  9915. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9916. xmlhttp = new XMLHttpRequest();
  9917. } else {
  9918. // IE6, IE5 浏览器执行代码
  9919. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9920. }
  9921. xmlhttp.onreadystatechange = function () {
  9922. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9923. if (xmlhttp.response) {
  9924. // resolve(res.value[0][0].text);
  9925. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9926. // $(fileInput).val('');
  9927. // });
  9928. span.innerHTML = '上传成功'
  9929. setTimeout(() => {
  9930. loading.style.display = 'none'
  9931. }, 1000);
  9932. }
  9933. }
  9934. }
  9935. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9936. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9937. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9938. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9939. // 设置请求头,表示请求体的编码格式
  9940. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9941. // 设置请求体,使用url-encoded格式的数据
  9942. }
  9943. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9944. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9945. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9946. _userinfo = US.userInfo, //登录用户信息
  9947. _userid = US.userInfo.userid //登录用户id
  9948. let _iframe;
  9949. let _cid = cid,
  9950. _stage = stage,
  9951. _task = task,
  9952. _tool = tool;
  9953. var _jie = $$("div", {
  9954. "style": {
  9955. "position": "absolute",
  9956. "bottom": "50px",
  9957. "right": "50px",
  9958. "zIndex": "9999",
  9959. "backgroundColor": "#2268bc",
  9960. "color": "#fff",
  9961. "padding": "12px 20px",
  9962. "cursor": "pointer",
  9963. "borderRadius": "4px",
  9964. },
  9965. "innerHTML": "提交作业"
  9966. })
  9967. let aTool = ''
  9968. let _loading = document.createElement('div')
  9969. _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;"
  9970. // _loading.id = "";
  9971. let _lchild = document.createElement('div')
  9972. let _limg = document.createElement('img')
  9973. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9974. _limg.style = "width: 26px;margin-right: 10px;"
  9975. _lchild.appendChild(_limg)
  9976. let _lspan = document.createElement('span')
  9977. _lspan.innerHTML = "上传中..."
  9978. _lchild.appendChild(_lspan)
  9979. _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%);"
  9980. _loading.appendChild(_lchild)
  9981. var _box = $$('div', {
  9982. "style": {
  9983. "position": "relative",
  9984. "width": "100%",
  9985. "height": "100%",
  9986. },
  9987. })
  9988. _box.appendChild(_loading)
  9989. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9990. switch (str) {
  9991. case "CocoPi":
  9992. aTool = 57;
  9993. _iframe = $$("iframe", {
  9994. "allowpaymentrequest": "allowpaymentrequest",
  9995. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9996. "webkitallowfullscreen": "",
  9997. "mozallowfullscreen": "",
  9998. "frameborder": "no",
  9999. "border": "0",
  10000. "scrolling ": "no",
  10001. "style": {
  10002. "cssText": "border:0;width:100%;height:100%"
  10003. },
  10004. "src": "https://pi.cocorobo.cn/"
  10005. })
  10006. _box.appendChild(_iframe);
  10007. _box.appendChild(_jie);
  10008. _formdiv = new U.UF.UI.form(
  10009. "CocoPi",
  10010. _box, {
  10011. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10012. "style": {
  10013. "width": "90%",
  10014. "height": "90%",
  10015. "overflow": 'hidden'
  10016. },
  10017. "onresize": function () { }
  10018. }, {
  10019. closecallback: function () { }
  10020. }, {
  10021. "style": {
  10022. "height": "36px"
  10023. }
  10024. }).form; //创建窗体
  10025. _taskbar = {
  10026. "id": str + _formdiv.id,
  10027. "style": {
  10028. "backgroundImage": "url(/img/icon/cocopi.png)"
  10029. },
  10030. "name": "CocoPi",
  10031. "forms": _formdiv,
  10032. "click": function () {
  10033. U.MD.D.I.openApplication(str, obj, info);
  10034. }
  10035. }
  10036. break;
  10037. }
  10038. if (_iframe) {
  10039. if (str == 'CocoPi') {
  10040. _iframe = _formdiv.querySelector('iframe')
  10041. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10042. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10043. })
  10044. if (onloadListener) {
  10045. _iframe.contentDocument.location.reload()
  10046. } else {
  10047. _iframe.contentDocument.location.reload()
  10048. }
  10049. }
  10050. _jie.onclick = async () => {
  10051. let text = ''
  10052. if (aTool == 57) {
  10053. text = _iframe.contentWindow.getLoadXmlStr()
  10054. }
  10055. _loading.style.display = 'flex'
  10056. console.log(_loading);
  10057. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10058. _loading.style.display = 'none'
  10059. let _div = document.createElement('div')
  10060. _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;"
  10061. let _inner = document.createElement('div')
  10062. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10063. _inner.innerHTML = "上传成功"
  10064. _div.appendChild(_inner)
  10065. _iframe.contentWindow.window.document.body.appendChild(_div)
  10066. _div.onclick = () => {
  10067. _iframe.contentWindow.window.document.body.removeChild(_div)
  10068. }
  10069. setTimeout(() => {
  10070. _iframe.contentWindow.window.document.body.removeChild(_div)
  10071. }, 1000);
  10072. }, [], { "type": "POST", "withCredentials": true });
  10073. }
  10074. }
  10075. }
  10076. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10077. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10078. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10079. _userid = student.userid, //登录用户id
  10080. _username = student.student //用户名字
  10081. let _iframe;
  10082. let _cid = cid,
  10083. _stage = stage,
  10084. _task = task,
  10085. _tool = tool;
  10086. var _jie = $$("div", {
  10087. "style": {
  10088. "position": "absolute",
  10089. "bottom": "50px",
  10090. "right": "50px",
  10091. "zIndex": "9999",
  10092. "backgroundColor": "#2268bc",
  10093. "color": "#fff",
  10094. "padding": "12px 20px",
  10095. "cursor": "pointer",
  10096. "borderRadius": "4px",
  10097. },
  10098. "innerHTML": "提交作业"
  10099. })
  10100. let aTool = ''
  10101. let _loading = document.createElement('div')
  10102. _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;"
  10103. // _loading.id = "";
  10104. let _lchild = document.createElement('div')
  10105. let _limg = document.createElement('img')
  10106. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10107. _limg.style = "width: 26px;margin-right: 10px;"
  10108. _lchild.appendChild(_limg)
  10109. let _lspan = document.createElement('span')
  10110. _lspan.innerHTML = "上传中..."
  10111. _lchild.appendChild(_lspan)
  10112. _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%);"
  10113. _loading.appendChild(_lchild)
  10114. var _box = $$('div', {
  10115. "style": {
  10116. "position": "relative",
  10117. "width": "100%",
  10118. "height": "100%",
  10119. },
  10120. })
  10121. _box.appendChild(_loading)
  10122. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10123. switch (str) {
  10124. case "CocoPi":
  10125. aTool = 57;
  10126. _iframe = $$("iframe", {
  10127. "allowpaymentrequest": "allowpaymentrequest",
  10128. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10129. "webkitallowfullscreen": "",
  10130. "mozallowfullscreen": "",
  10131. "frameborder": "no",
  10132. "border": "0",
  10133. "scrolling ": "no",
  10134. "style": {
  10135. "cssText": "border:0;width:100%;height:100%"
  10136. },
  10137. "src": "https://pi.cocorobo.cn/"
  10138. })
  10139. _box.appendChild(_iframe);
  10140. _box.appendChild(_jie);
  10141. _formdiv = new U.UF.UI.form(
  10142. "CocoPi-" + _username,
  10143. _box, {
  10144. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10145. "style": {
  10146. "width": "90%",
  10147. "height": "90%",
  10148. "overflow": 'hidden'
  10149. },
  10150. "onresize": function () { }
  10151. }, {
  10152. closecallback: function () { }
  10153. }, {
  10154. "style": {
  10155. "height": "36px"
  10156. }
  10157. }).form; //创建窗体
  10158. _taskbar = {
  10159. "id": str + _formdiv.id,
  10160. "style": {
  10161. "backgroundImage": "url(/img/icon/cocopi.png)"
  10162. },
  10163. "name": "CocoPi",
  10164. "forms": _formdiv,
  10165. "click": function () {
  10166. U.MD.D.I.openApplication(str, obj, info);
  10167. }
  10168. }
  10169. break;
  10170. }
  10171. if (_iframe) {
  10172. if (str == 'CocoPi') {
  10173. _iframe = _formdiv.querySelector('iframe')
  10174. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10175. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10176. })
  10177. if (onloadListener) {
  10178. _iframe.contentDocument.location.reload()
  10179. } else {
  10180. _iframe.contentDocument.location.reload()
  10181. }
  10182. }
  10183. _jie.onclick = async () => {
  10184. let text = ''
  10185. if (aTool == 57) {
  10186. text = _iframe.contentWindow.getLoadXmlStr()
  10187. }
  10188. _loading.style.display = 'flex'
  10189. console.log(_loading);
  10190. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10191. _loading.style.display = 'none'
  10192. let _div = document.createElement('div')
  10193. _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;"
  10194. let _inner = document.createElement('div')
  10195. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10196. _inner.innerHTML = "上传成功"
  10197. _div.appendChild(_inner)
  10198. _iframe.contentWindow.window.document.body.appendChild(_div)
  10199. _div.onclick = () => {
  10200. _iframe.contentWindow.window.document.body.removeChild(_div)
  10201. }
  10202. setTimeout(() => {
  10203. _iframe.contentWindow.window.document.body.removeChild(_div)
  10204. }, 1000);
  10205. }, [], { "type": "POST", "withCredentials": true });
  10206. }
  10207. }
  10208. }
  10209. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10210. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10211. if (res.value[0].length > 0) {
  10212. if (atool == 57) {
  10213. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10214. }
  10215. } else {
  10216. if (atool == 57) {
  10217. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10218. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10219. }
  10220. }
  10221. }, [], { "type": "POST", "withCredentials": true });
  10222. }