DeskTop.js 707 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小学学生桌面图标的全局变量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. ];
  717. //hk
  718. U.MD.D.I.hkaceteacherDeskIcon = [
  719. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  720. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  726. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  727. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  728. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  729. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  730. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  731. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  732. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  734. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  735. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  736. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  737. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  738. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  739. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  740. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  741. ];
  742. //hk
  743. U.MD.D.I.hkaceStudentDeskIcon = [
  744. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  745. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  746. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  747. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  748. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. ];
  751. //香海正覺蓮社佛教正覺中學
  752. U.MD.D.I.hkZJLSteacherDeskIcon = [
  753. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  754. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  756. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  757. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  759. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  760. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  761. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  762. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  763. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  764. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  765. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  766. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  767. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  768. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  769. ];
  770. //香海正覺蓮社佛教正覺中學
  771. U.MD.D.I.hkZJLSStudentDeskIcon = [
  772. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  776. ];
  777. //云海
  778. U.MD.D.I.yunhaiTeacherDeskIcon = [
  779. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  780. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  781. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  782. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  783. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  784. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  785. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  786. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  787. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  788. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  789. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  790. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  791. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  792. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  793. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  794. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  796. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  797. ];
  798. //福田
  799. U.MD.D.I.heyuanTeacherDeskIcon = [
  800. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  801. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  802. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  803. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  804. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  805. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  806. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  807. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  808. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  809. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  810. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  811. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  812. ];
  813. //福田
  814. U.MD.D.I.heyuanAdminDeskIcon = [
  815. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  816. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  817. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  818. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  819. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  820. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  821. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  822. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  823. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  824. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  825. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  826. ];
  827. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  828. U.MD.D.I.szherTeacherDeskIcon = [
  829. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  832. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  833. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  834. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  835. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  836. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  837. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  838. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  839. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  840. ];
  841. //dsei
  842. U.MD.D.I.dseiTeacherDeskIcon = [
  843. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  844. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  845. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  846. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  847. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  848. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  849. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  850. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  851. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  852. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  853. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  854. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  855. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  856. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  857. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  858. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  859. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  860. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  861. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  862. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  863. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  864. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  865. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  866. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  867. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  868. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  869. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  870. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  871. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  872. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  873. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  874. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  875. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  876. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  877. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  878. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  879. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  880. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  881. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  882. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  883. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  884. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  885. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  886. ];
  887. //dsei
  888. U.MD.D.I.dseiAdminDeskIcon = [
  889. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  890. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  891. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  892. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  893. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  894. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  895. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  896. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  897. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  898. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  899. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  900. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  901. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  902. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  903. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  904. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  905. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  906. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  907. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  908. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  909. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  910. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  911. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  912. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  913. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  914. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  915. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  916. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  917. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  918. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  919. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  920. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  921. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  922. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  923. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  924. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  925. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  926. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  927. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  928. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  929. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  930. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  931. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  932. ];
  933. //dsei
  934. U.MD.D.I.dseiStudentDeskIcon = [
  935. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  936. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  937. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  938. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  939. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  941. ];
  942. //未来教育基地
  943. U.MD.D.I.szjkyTeacherDeskIcon = [
  944. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  945. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  946. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  947. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  948. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  949. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  950. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  951. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  952. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  953. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  954. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  955. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  956. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  957. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  958. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  959. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  960. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  961. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  962. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  963. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  964. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  965. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  966. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  967. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  968. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  969. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  970. ];
  971. //未来教育基地
  972. U.MD.D.I.szjkyAdminDeskIcon = [
  973. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  974. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  975. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  976. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  977. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  978. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  979. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  980. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  981. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  982. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  983. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  984. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  985. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  986. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  987. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  988. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  989. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  990. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  991. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  992. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  993. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  994. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  995. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  996. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  997. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  998. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  999. ];
  1000. //未来教育基地
  1001. U.MD.D.I.szjkyStudentDeskIcon = [
  1002. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1003. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1004. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1005. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1006. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1007. ];
  1008. //成华教育局
  1009. U.MD.D.I.chjyjTeacherDeskIcon = [
  1010. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1011. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1012. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1013. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1014. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1015. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1016. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1017. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1018. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1019. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1020. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1022. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1023. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1024. ];
  1025. //成华教育局chjyj
  1026. U.MD.D.I.chjyjAdminDeskIcon = [
  1027. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1028. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1029. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1030. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1031. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1032. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1033. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1034. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1035. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1036. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1037. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1038. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1039. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1040. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1041. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1042. ];
  1043. //成华教育局chjyj
  1044. U.MD.D.I.chjyjStudentDeskIcon = [
  1045. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1046. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1047. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1048. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1049. ];
  1050. //tpc
  1051. U.MD.D.I.tpcStudentDeskIcon = [
  1052. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. ];
  1057. //tpc
  1058. U.MD.D.I.tpcTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1062. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1063. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1064. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1065. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1066. ];
  1067. //tpc
  1068. U.MD.D.I.tpcAdminDeskIcon = [
  1069. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1070. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1071. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1072. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1073. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1074. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1075. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1076. ];
  1077. //THU-IOE
  1078. U.MD.D.I.thuioeTeacherDeskIcon = [
  1079. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1080. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1081. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1082. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1083. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1084. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1085. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1086. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1087. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1088. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1089. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1090. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1091. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1092. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1093. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1094. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1095. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1096. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1097. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1098. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1099. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1100. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1101. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1102. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1103. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1104. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1105. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1106. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1107. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1108. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1109. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1110. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1111. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1112. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1114. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1116. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1117. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1118. ];
  1119. //THU-IOE
  1120. U.MD.D.I.thuioeStudentDeskIcon = [
  1121. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1122. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1123. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. ];
  1126. //jccssyl
  1127. U.MD.D.I.jccssylTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1135. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1136. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1137. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1138. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1139. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1140. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1141. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1142. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1144. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1145. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1147. ];
  1148. //jccssyl
  1149. U.MD.D.I.jccssylStudentDeskIcon = [
  1150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1151. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1152. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. ];
  1155. //cale
  1156. U.MD.D.I.caleTeacherDeskIcon = [
  1157. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1158. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1159. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1160. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1164. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1169. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1170. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1171. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1172. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1173. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1174. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1175. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1176. ];
  1177. //cale
  1178. U.MD.D.I.caleStudentDeskIcon = [
  1179. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1181. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1182. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1183. ];
  1184. //lqwmsgzs
  1185. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1186. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1187. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1188. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1189. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1190. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1191. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1192. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1193. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1194. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1195. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1196. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1197. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1198. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1199. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1200. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1201. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1202. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1203. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1204. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1205. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1206. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1207. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1208. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1209. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1210. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1211. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1212. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1213. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1214. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1215. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1216. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1217. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1218. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1219. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1220. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1221. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1222. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1223. ];
  1224. //lqwmsgzs
  1225. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1226. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1227. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1228. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1230. ];
  1231. //盐田区幼儿园
  1232. U.MD.D.I.ytyTeacherDeskIcon = [
  1233. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1234. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1235. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1236. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1237. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1238. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1239. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1240. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1242. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1244. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1245. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1246. ];
  1247. //盐田区幼儿园
  1248. U.MD.D.I.ytyStudentDeskIcon = [
  1249. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1250. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1251. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1252. ];
  1253. //scnuai
  1254. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1255. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1256. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1257. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1258. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1259. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1260. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1261. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1262. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1263. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1264. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1265. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1266. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1267. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1269. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1270. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1273. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1274. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1275. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1276. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1277. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1278. ];
  1279. //scnuai
  1280. U.MD.D.I.scnuaiAdminDeskIcon = [
  1281. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1282. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1283. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1284. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1285. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1286. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1287. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1288. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1289. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1290. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1291. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1292. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1293. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1294. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1295. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1296. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1297. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1298. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1299. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1300. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1301. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1302. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1303. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1304. ];
  1305. //scnuai
  1306. U.MD.D.I.scnuaiStudentDeskIcon = [
  1307. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1308. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1309. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. ];
  1312. //cocobiz
  1313. U.MD.D.I.cocobizteacherDeskIcon = [
  1314. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1316. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1317. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1318. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1319. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1320. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1321. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1322. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1323. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1324. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1325. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1326. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1327. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1328. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1329. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1330. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1331. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1332. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1333. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1334. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1335. ];
  1336. //cocobiz
  1337. U.MD.D.I.cocobizStudentDeskIcon = [
  1338. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1339. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1340. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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. ];
  1345. //xxzjky
  1346. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1347. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1348. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1349. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1350. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1351. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1353. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1354. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1355. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1356. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1357. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1358. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1359. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1360. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1361. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1362. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1363. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1364. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1365. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1366. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1367. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1368. ];
  1369. //xxzjky
  1370. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1371. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1372. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1374. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1375. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1376. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //nsfx
  1379. U.MD.D.I.nsfxTeacherDeskIcon = [
  1380. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1389. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1392. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1393. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1394. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1395. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1396. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1397. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1398. ];
  1399. //nsfx
  1400. U.MD.D.I.nsfxStudentDeskIcon = [
  1401. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1404. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1405. ];
  1406. //stia
  1407. U.MD.D.I.stiaTeacherDeskIcon = [
  1408. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1409. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1410. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1411. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1412. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1413. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1414. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1415. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1416. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1417. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1418. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1419. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1420. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1421. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1422. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1423. ];
  1424. //stia
  1425. U.MD.D.I.stiaStudentDeskIcon = [
  1426. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1427. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1428. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1430. ];
  1431. //szdjg
  1432. U.MD.D.I.szdjgTeacherDeskIcon = [
  1433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1435. ];
  1436. //szdjg
  1437. U.MD.D.I.szdjgStudentDeskIcon = [
  1438. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1439. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1440. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1441. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. ];
  1443. //010607
  1444. U.MD.D.I.x010607TeacherDeskIcon = [
  1445. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1446. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1447. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1448. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1449. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1450. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1451. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1452. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1453. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1456. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1457. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1458. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1459. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1460. ];
  1461. //010607
  1462. U.MD.D.I.x010607StudentDeskIcon = [
  1463. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. ];
  1468. //010608
  1469. U.MD.D.I.x010608TeacherDeskIcon = [
  1470. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1471. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1472. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1473. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1474. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1475. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1476. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1477. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1478. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1479. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1480. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1481. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1484. ];
  1485. //010608
  1486. U.MD.D.I.x010608StudentDeskIcon = [
  1487. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1488. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1489. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1490. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1491. ];
  1492. //xhly
  1493. U.MD.D.I.xhlyTeacherDeskIcon = [
  1494. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1495. ];
  1496. //010608
  1497. U.MD.D.I.xhlyStudentDeskIcon = [
  1498. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1499. ];
  1500. //北师大
  1501. U.MD.D.I.BSDNSteacherDeskIcon = [
  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": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1513. ];
  1514. //北师大
  1515. U.MD.D.I.BSDNSstudentDeskIcon = [
  1516. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1517. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1518. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1520. ];
  1521. //CUHK_EDU
  1522. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1523. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1524. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1526. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1527. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1528. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1529. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1530. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1531. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1532. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1533. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1534. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1535. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1536. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1537. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1538. ];
  1539. //CUHK_EDU
  1540. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1541. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1542. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1543. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1544. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1545. ];
  1546. //010503
  1547. U.MD.D.I.x010503TeacherDeskIcon = [
  1548. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1549. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1551. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1552. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1556. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1557. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1558. ];
  1559. //010503
  1560. U.MD.D.I.x010503StudentDeskIcon = [
  1561. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1562. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1565. ];
  1566. //SPROUT Lab
  1567. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1570. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1575. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1576. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1577. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1578. ];
  1579. //SPROUT Lab
  1580. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1581. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1582. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. ];
  1586. //010204
  1587. U.MD.D.I.x010204TeacherDeskIcon = [
  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. ];
  1591. //010204
  1592. U.MD.D.I.x010204StudentDeskIcon = [
  1593. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1594. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1595. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1596. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. ];
  1598. //trail
  1599. U.MD.D.I.trailTeacherDeskIcon = [
  1600. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1601. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1602. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1603. ];
  1604. //trail
  1605. U.MD.D.I.trailStudentDeskIcon = [
  1606. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1607. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1608. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1609. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1610. ];
  1611. //trial
  1612. U.MD.D.I.trialTeacherDeskIcon = [
  1613. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1614. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1615. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1616. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1618. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1619. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1620. ];
  1621. //trial
  1622. U.MD.D.I.trialStudentDeskIcon = [
  1623. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1624. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1627. ];
  1628. //010504
  1629. U.MD.D.I.x010504TeacherDeskIcon = [
  1630. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1631. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1632. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1633. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1634. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1635. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1636. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1637. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1638. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1639. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1640. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1641. ];
  1642. //010504
  1643. U.MD.D.I.x010504StudentDeskIcon = [
  1644. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1645. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1646. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1647. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1648. ];
  1649. //010505
  1650. U.MD.D.I.x010505TeacherDeskIcon = [
  1651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1653. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1654. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1655. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1656. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1657. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1658. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1659. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1660. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1661. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1662. ];
  1663. //010505
  1664. U.MD.D.I.x010505StudentDeskIcon = [
  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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1668. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. ];
  1670. //SCNUET
  1671. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1678. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1679. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1680. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1681. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1683. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1684. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1688. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1690. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1691. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1692. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1693. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1694. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1695. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1696. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1697. ];
  1698. //SCNUET
  1699. U.MD.D.I.SCNUETAdminDeskIcon = [
  1700. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1701. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1707. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1708. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1709. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1710. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1711. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1712. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1713. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1714. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1716. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1717. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1718. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1719. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1720. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1721. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1722. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1723. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1724. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1725. ];
  1726. //SCNUET
  1727. U.MD.D.I.SCNUETStudentDeskIcon = [
  1728. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1732. ];
  1733. //x020201
  1734. U.MD.D.I.x020201TeacherDeskIcon = [
  1735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1737. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1738. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1740. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1741. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1742. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.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": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1746. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1747. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1749. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1750. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1751. ];
  1752. //x020201
  1753. U.MD.D.I.x020201AdminDeskIcon = [
  1754. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1755. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1756. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1757. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1758. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1759. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1760. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1761. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1762. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1763. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1764. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1765. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1766. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1767. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1768. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1769. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1770. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1771. ];
  1772. //020201
  1773. U.MD.D.I.x020201StudentDeskIcon = [
  1774. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1775. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1776. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1778. ];
  1779. //010611
  1780. U.MD.D.I.x010611TeacherDeskIcon = [
  1781. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1782. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1783. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1784. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1785. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1786. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1789. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1790. ];
  1791. //010611
  1792. U.MD.D.I.x010611StudentDeskIcon = [
  1793. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1794. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1795. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1796. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1797. ];
  1798. //010612
  1799. U.MD.D.I.x010612TeacherDeskIcon = [
  1800. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1801. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1802. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1803. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1804. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1805. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1808. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1809. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1810. ];
  1811. //010612
  1812. U.MD.D.I.x010612StudentDeskIcon = [
  1813. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1815. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1817. ];
  1818. //tianyuan
  1819. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1820. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1821. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1822. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1823. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1824. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1825. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1826. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1827. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1828. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1829. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1830. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1831. ];
  1832. //010611
  1833. U.MD.D.I.tianyuanStudentDeskIcon = [
  1834. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1835. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1836. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1837. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1838. ];
  1839. //320101
  1840. U.MD.D.I.x320101TeacherDeskIcon = [
  1841. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1842. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1843. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1844. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1845. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1846. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1847. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1848. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1849. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1850. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1851. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1852. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1853. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1854. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1855. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1856. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1857. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1858. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1859. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1860. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1861. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1862. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1863. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1864. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1865. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1866. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1867. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1868. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1869. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1870. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1871. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1872. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1873. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1874. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1875. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1876. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1877. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1878. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1879. ];
  1880. //320101
  1881. U.MD.D.I.x320101StudentDeskIcon = [
  1882. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1883. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1884. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1885. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1886. ];
  1887. //szsy
  1888. U.MD.D.I.szsyTeacherDeskIcon = [
  1889. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1890. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1891. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1892. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1893. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1894. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1895. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1896. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1897. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1898. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1899. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1900. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1901. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1902. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1903. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1904. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1905. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1906. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1907. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1908. ];
  1909. //szsy
  1910. U.MD.D.I.szsyStudentDeskIcon = [
  1911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1914. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1915. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1916. ];
  1917. //010404
  1918. U.MD.D.I.x010404TeacherDeskIcon = [
  1919. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1920. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1921. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1922. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1923. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1924. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1925. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1926. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1927. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1928. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1929. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1930. ];
  1931. //010404
  1932. U.MD.D.I.x010404StudentDeskIcon = [
  1933. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1934. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1935. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1936. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1937. ];
  1938. //#region 桌面初始化a
  1939. /**
  1940. * 初始化桌面的起始函数
  1941. *
  1942. */
  1943. U.MD.D.I.init = function () {
  1944. if ($("#U_MD_D_K")[0]) {
  1945. //初始化桌面图标
  1946. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1947. // var clickUrl = ':12588/requestIp.php';
  1948. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1949. // U.MD.D.I.Ip = data;
  1950. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1951. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1952. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1953. // })
  1954. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1955. // })
  1956. }
  1957. }
  1958. /**
  1959. * 模式切换
  1960. *
  1961. */
  1962. U.MD.D.I.ModeCheck = function (type) {
  1963. if (US.Config.type == type) {
  1964. return
  1965. }
  1966. US.Config.type = type
  1967. $('.U_PBL_Check .active')[0].className = ''
  1968. if (type == 1) {
  1969. $('.U_PBL_Check div')[0].className = 'active'
  1970. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1971. } else {
  1972. $('.U_PBL_Check div')[1].className = 'active'
  1973. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1974. }
  1975. //初始化桌面图标
  1976. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1977. if (type == 2) {
  1978. U.MD.D.I.openApplication("project")
  1979. }
  1980. }
  1981. /**
  1982. * 隐藏任务栏
  1983. *
  1984. * @param {element} 桌面元素
  1985. */
  1986. U.MD.D.I.hiddenTaskbar = function (el) {
  1987. //任务栏位置变小
  1988. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1989. //桌面的位置变大
  1990. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1991. }
  1992. /**
  1993. * 隐藏任务栏
  1994. *
  1995. * @param {element} 桌面元素
  1996. */
  1997. U.MD.D.I.hiddenTaskbarout = function (el) {
  1998. //任务栏位置变小
  1999. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2000. //任务栏位置变化
  2001. U.selectEl(el).css({ "bottom": "-60px" });
  2002. //桌面的位置变大
  2003. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2004. }
  2005. }
  2006. /**
  2007. * 初始化打印桌面图标
  2008. *
  2009. * @param {element} 桌面元素
  2010. */
  2011. U.MD.D.I.initDesktopIcons = function (el, type) {
  2012. var i, //用于循环
  2013. _content, //桌面图标元素
  2014. _iconcontent, //桌面图标元素
  2015. _frag = $$("frag"), //定义一个碎片元素
  2016. _type = US.userInfo.type,
  2017. _org = US.userInfo.org,
  2018. _oid = US.userInfo.organizeid,
  2019. _role = US.userInfo.role,
  2020. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2021. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2022. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2023. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2024. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2025. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2026. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2027. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2028. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2029. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2030. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2031. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2032. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2033. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2034. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2035. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2036. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2037. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2038. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2039. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2040. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2041. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2042. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2043. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2044. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2045. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2046. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2047. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2048. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2049. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2050. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2051. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2052. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2053. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2054. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2055. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2056. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2057. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2058. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2059. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2060. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2061. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2062. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2063. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2064. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2065. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2066. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2067. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2068. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2069. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2070. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2071. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2072. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2073. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2074. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2075. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2076. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2077. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2078. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2079. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2080. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2081. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2082. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2083. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2084. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2085. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2086. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2087. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2088. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2089. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2090. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2091. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2092. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2093. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2094. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2095. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2096. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2097. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2098. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2099. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2100. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2101. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2102. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2103. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2104. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2105. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2106. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2107. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2108. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2109. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2110. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2111. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2112. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2113. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2114. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2115. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2116. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2117. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2118. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2119. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2120. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2121. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2122. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2123. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2124. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2125. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2126. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2127. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2128. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2129. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2130. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2131. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2132. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2133. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2134. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2135. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2136. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2137. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2138. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2139. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2140. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2141. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2142. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2143. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2144. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926','8406b214-085f-11f0-b508-005056924926','65ad80f0-16bb-11f0-a66a-005056924926'];
  2145. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636','7cc601a0-fafc-4116-a805-0adbacf7a38d'];
  2146. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2147. //清楚桌面图标
  2148. el.innerHTML = "";
  2149. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2150. _teacherDesktopIconInfo.push(
  2151. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2152. { "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)" } },
  2153. )
  2154. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2155. }
  2156. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2157. _teacherDesktopIconInfo.push(
  2158. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2159. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2160. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2161. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2162. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2163. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2164. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2165. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2166. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2167. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2168. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2169. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2170. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2171. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2172. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2173. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2174. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2175. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2176. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2177. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2178. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2179. )
  2180. }
  2181. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2182. _teacherDesktopIconInfo.push(
  2183. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2184. )
  2185. }
  2186. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2187. _nsfxTeacherDeskIconInfo.push(
  2188. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2189. )
  2190. }
  2191. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2192. // _teacherDesktopIconInfo.push(
  2193. // )
  2194. // }
  2195. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2196. _teacherDesktopIconInfo.push(
  2197. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2198. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2199. )
  2200. }
  2201. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2202. _teacherDesktopIconInfo.push(
  2203. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2205. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2206. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2207. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2208. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2209. )
  2210. _studentDesktopIconInfo.push(
  2211. )
  2212. }
  2213. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2214. _teacherDesktopIconInfo.push(
  2215. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2216. )
  2217. _studentDesktopIconInfo.push(
  2218. )
  2219. }
  2220. //010606 组织
  2221. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2222. _teacherDesktopIconInfo.push(
  2223. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2224. )
  2225. _studentDesktopIconInfo.push(
  2226. )
  2227. }
  2228. //麒麟二中 和 民新小学
  2229. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2230. _teacherDesktopIconInfo.push(
  2231. )
  2232. }
  2233. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2234. _teacherDesktopIconInfo.push(
  2235. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2236. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2237. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2238. )
  2239. }
  2240. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2241. _hkTeacherDeskIconInfo.push(
  2242. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2243. )
  2244. }
  2245. //北师大附中(010601)
  2246. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2247. // _teacherDesktopIconInfo.push(
  2248. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2249. // )
  2250. // _studentDesktopIconInfo.push(
  2251. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2252. // )
  2253. // }
  2254. //樂善堂余近卿中學
  2255. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2256. _teacherDesktopIconInfo.push(
  2257. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2258. )
  2259. }
  2260. // Education Artificial Intelligence
  2261. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2262. _teacherDesktopIconInfo.push(
  2263. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2264. )
  2265. }
  2266. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2267. _teacherDesktopIconInfo.push(
  2268. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2269. )
  2270. }
  2271. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2272. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2273. _teacherDesktopIconInfo.push(
  2274. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2275. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2276. )
  2277. }
  2278. //麒麟二中
  2279. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2280. _studentDesktopIconInfo.push(
  2281. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2282. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2283. )
  2284. }
  2285. //万科双语
  2286. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2287. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2288. if (el.Name == '项目管理') {
  2289. el.Name = 'PBL项目'
  2290. }
  2291. return el
  2292. })
  2293. _studentDesktopIconInfo3.push(
  2294. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2295. )
  2296. }
  2297. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2298. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2299. return el.Name != '魔盒识字' && el.Name != '24点'
  2300. })
  2301. }
  2302. 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) {
  2303. _studentDesktopIconInfo.push(
  2304. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2305. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2306. )
  2307. }
  2308. //循环创建桌面图标
  2309. if (type == 1) {
  2310. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2311. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2312. _content = $$("div", {
  2313. className: "U_MD_D_KO",
  2314. "onmousedown": U.UF.C.closure(function (obj) {
  2315. //防止拖动图标即打开了桌面应用
  2316. U.MD.D.click(this, obj);
  2317. }, [_studentDesktopIconInfo[i]]),
  2318. "onclick": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_studentDesktopIconInfo[i]])
  2322. }, _frag); //
  2323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2326. }
  2327. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2328. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2329. _content = $$("div", {
  2330. className: "U_MD_D_KO",
  2331. "onmousedown": U.UF.C.closure(function (obj) {
  2332. //防止拖动图标即打开了桌面应用
  2333. U.MD.D.click(this, obj);
  2334. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2335. "onclick": U.UF.C.closure(function (obj) {
  2336. //防止拖动图标即打开了桌面应用
  2337. U.MD.D.click(this, obj);
  2338. }, [_hkZJLSStudentDeskIconInfo[i]])
  2339. }, _frag); //
  2340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2343. } //
  2344. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2345. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2346. _content = $$("div", {
  2347. className: "U_MD_D_KO",
  2348. "onmousedown": U.UF.C.closure(function (obj) {
  2349. //防止拖动图标即打开了桌面应用
  2350. U.MD.D.click(this, obj);
  2351. }, [_ytyStudentDeskIconInfo[i]]),
  2352. "onclick": U.UF.C.closure(function (obj) {
  2353. //防止拖动图标即打开了桌面应用
  2354. U.MD.D.click(this, obj);
  2355. }, [_ytyStudentDeskIconInfo[i]])
  2356. }, _frag); //
  2357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2360. } //
  2361. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2362. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2363. _content = $$("div", {
  2364. className: "U_MD_D_KO",
  2365. "onmousedown": U.UF.C.closure(function (obj) {
  2366. //防止拖动图标即打开了桌面应用
  2367. U.MD.D.click(this, obj);
  2368. }, [_jccssylStudentDeskIconInfo[i]]),
  2369. "onclick": U.UF.C.closure(function (obj) {
  2370. //防止拖动图标即打开了桌面应用
  2371. U.MD.D.click(this, obj);
  2372. }, [_jccssylStudentDeskIconInfo[i]])
  2373. }, _frag); //
  2374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2377. }
  2378. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2379. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2380. _content = $$("div", {
  2381. className: "U_MD_D_KO",
  2382. "onmousedown": U.UF.C.closure(function (obj) {
  2383. //防止拖动图标即打开了桌面应用
  2384. U.MD.D.click(this, obj);
  2385. }, [_scnuaiStudentDeskIconInfo[i]]),
  2386. "onclick": U.UF.C.closure(function (obj) {
  2387. //防止拖动图标即打开了桌面应用
  2388. U.MD.D.click(this, obj);
  2389. }, [_scnuaiStudentDeskIconInfo[i]])
  2390. }, _frag); //
  2391. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2392. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2393. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2394. }
  2395. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2396. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2397. _content = $$("div", {
  2398. className: "U_MD_D_KO",
  2399. "onmousedown": U.UF.C.closure(function (obj) {
  2400. //防止拖动图标即打开了桌面应用
  2401. U.MD.D.click(this, obj);
  2402. }, [_caleStudentDeskIconInfo[i]]),
  2403. "onclick": U.UF.C.closure(function (obj) {
  2404. //防止拖动图标即打开了桌面应用
  2405. U.MD.D.click(this, obj);
  2406. }, [_caleStudentDeskIconInfo[i]])
  2407. }, _frag); //
  2408. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2409. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2410. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2411. }
  2412. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2413. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2414. _content = $$("div", {
  2415. className: "U_MD_D_KO",
  2416. "onmousedown": U.UF.C.closure(function (obj) {
  2417. //防止拖动图标即打开了桌面应用
  2418. U.MD.D.click(this, obj);
  2419. }, [_thuioeStudentDeskIconInfo[i]]),
  2420. "onclick": U.UF.C.closure(function (obj) {
  2421. //防止拖动图标即打开了桌面应用
  2422. U.MD.D.click(this, obj);
  2423. }, [_thuioeStudentDeskIconInfo[i]])
  2424. }, _frag); //
  2425. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2426. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2427. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2428. }
  2429. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2430. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2431. _content = $$("div", {
  2432. className: "U_MD_D_KO",
  2433. "onmousedown": U.UF.C.closure(function (obj) {
  2434. //防止拖动图标即打开了桌面应用
  2435. U.MD.D.click(this, obj);
  2436. }, [_tpcStudentDeskIconInfo[i]]),
  2437. "onclick": U.UF.C.closure(function (obj) {
  2438. //防止拖动图标即打开了桌面应用
  2439. U.MD.D.click(this, obj);
  2440. }, [_tpcStudentDeskIconInfo[i]])
  2441. }, _frag); //
  2442. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2443. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2444. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2445. } //
  2446. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2447. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2448. _content = $$("div", {
  2449. className: "U_MD_D_KO",
  2450. "onmousedown": U.UF.C.closure(function (obj) {
  2451. //防止拖动图标即打开了桌面应用
  2452. U.MD.D.click(this, obj);
  2453. }, [_chjyjStudentDeskIconInfo[i]]),
  2454. "onclick": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_chjyjStudentDeskIconInfo[i]])
  2458. }, _frag); //
  2459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2462. }
  2463. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2464. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2465. _content = $$("div", {
  2466. className: "U_MD_D_KO",
  2467. "onmousedown": U.UF.C.closure(function (obj) {
  2468. //防止拖动图标即打开了桌面应用
  2469. U.MD.D.click(this, obj);
  2470. }, [_szjkyStudentDeskIconInfo[i]]),
  2471. "onclick": U.UF.C.closure(function (obj) {
  2472. //防止拖动图标即打开了桌面应用
  2473. U.MD.D.click(this, obj);
  2474. }, [_szjkyStudentDeskIconInfo[i]])
  2475. }, _frag); //
  2476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2479. }
  2480. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2481. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2482. _content = $$("div", {
  2483. className: "U_MD_D_KO",
  2484. "onmousedown": U.UF.C.closure(function (obj) {
  2485. //防止拖动图标即打开了桌面应用
  2486. U.MD.D.click(this, obj);
  2487. }, [_x020201StudentDeskIconInfo[i]]),
  2488. "onclick": U.UF.C.closure(function (obj) {
  2489. //防止拖动图标即打开了桌面应用
  2490. U.MD.D.click(this, obj);
  2491. }, [_x020201StudentDeskIconInfo[i]])
  2492. }, _frag); //
  2493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2496. }
  2497. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2498. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2499. _content = $$("div", {
  2500. className: "U_MD_D_KO",
  2501. "onmousedown": U.UF.C.closure(function (obj) {
  2502. //防止拖动图标即打开了桌面应用
  2503. U.MD.D.click(this, obj);
  2504. }, [_SCNUETStudentDeskIconInfo[i]]),
  2505. "onclick": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_SCNUETStudentDeskIconInfo[i]])
  2509. }, _frag); //
  2510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2513. }
  2514. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2515. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2516. _content = $$("div", {
  2517. className: "U_MD_D_KO",
  2518. "onmousedown": U.UF.C.closure(function (obj) {
  2519. //防止拖动图标即打开了桌面应用
  2520. U.MD.D.click(this, obj);
  2521. }, [_dseiStudentDeskIconInfo[i]]),
  2522. "onclick": U.UF.C.closure(function (obj) {
  2523. //防止拖动图标即打开了桌面应用
  2524. U.MD.D.click(this, obj);
  2525. }, [_dseiStudentDeskIconInfo[i]])
  2526. }, _frag); //
  2527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2530. }
  2531. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2532. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2533. _content = $$("div", {
  2534. className: "U_MD_D_KO",
  2535. "onmousedown": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2539. "onclick": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2543. }, _frag); //
  2544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2547. }
  2548. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2549. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2550. _content = $$("div", {
  2551. className: "U_MD_D_KO",
  2552. "onmousedown": U.UF.C.closure(function (obj) {
  2553. //防止拖动图标即打开了桌面应用
  2554. U.MD.D.click(this, obj);
  2555. }, [_nsfxStudentDeskIconInfo[i]]),
  2556. "onclick": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_nsfxStudentDeskIconInfo[i]])
  2560. }, _frag); //
  2561. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2562. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2563. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2564. }
  2565. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2566. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2567. _content = $$("div", {
  2568. className: "U_MD_D_KO",
  2569. "onmousedown": U.UF.C.closure(function (obj) {
  2570. //防止拖动图标即打开了桌面应用
  2571. U.MD.D.click(this, obj);
  2572. }, [_stiaStudentDeskIconInfo[i]]),
  2573. "onclick": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_stiaStudentDeskIconInfo[i]])
  2577. }, _frag); //
  2578. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2579. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2580. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2581. }
  2582. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2583. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2584. _content = $$("div", {
  2585. className: "U_MD_D_KO",
  2586. "onmousedown": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_szdjgStudentDeskIconInfo[i]]),
  2590. "onclick": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_szdjgStudentDeskIconInfo[i]])
  2594. }, _frag); //
  2595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2598. }
  2599. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2600. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2601. _content = $$("div", {
  2602. className: "U_MD_D_KO",
  2603. "onmousedown": U.UF.C.closure(function (obj) {
  2604. //防止拖动图标即打开了桌面应用
  2605. U.MD.D.click(this, obj);
  2606. }, [_x010607StudentDeskIconInfo[i]]),
  2607. "onclick": U.UF.C.closure(function (obj) {
  2608. //防止拖动图标即打开了桌面应用
  2609. U.MD.D.click(this, obj);
  2610. }, [_x010607StudentDeskIconInfo[i]])
  2611. }, _frag); //
  2612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2615. }
  2616. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2617. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. "onmousedown": U.UF.C.closure(function (obj) {
  2621. //防止拖动图标即打开了桌面应用
  2622. U.MD.D.click(this, obj);
  2623. }, [_xhlyStudentDeskIconInfo[i]]),
  2624. "onclick": U.UF.C.closure(function (obj) {
  2625. //防止拖动图标即打开了桌面应用
  2626. U.MD.D.click(this, obj);
  2627. }, [_xhlyStudentDeskIconInfo[i]])
  2628. }, _frag); //
  2629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2632. }
  2633. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2634. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2635. _content = $$("div", {
  2636. className: "U_MD_D_KO",
  2637. "onmousedown": U.UF.C.closure(function (obj) {
  2638. //防止拖动图标即打开了桌面应用
  2639. U.MD.D.click(this, obj);
  2640. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2641. "onclick": U.UF.C.closure(function (obj) {
  2642. //防止拖动图标即打开了桌面应用
  2643. U.MD.D.click(this, obj);
  2644. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2645. }, _frag); //
  2646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2649. }
  2650. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2651. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2652. _content = $$("div", {
  2653. className: "U_MD_D_KO",
  2654. "onmousedown": U.UF.C.closure(function (obj) {
  2655. //防止拖动图标即打开了桌面应用
  2656. U.MD.D.click(this, obj);
  2657. }, [_x010503StudentDeskIconInfo[i]]),
  2658. "onclick": U.UF.C.closure(function (obj) {
  2659. //防止拖动图标即打开了桌面应用
  2660. U.MD.D.click(this, obj);
  2661. }, [_x010503StudentDeskIconInfo[i]])
  2662. }, _frag); //
  2663. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2664. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2665. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2666. }
  2667. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2668. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2669. _content = $$("div", {
  2670. className: "U_MD_D_KO",
  2671. "onmousedown": U.UF.C.closure(function (obj) {
  2672. //防止拖动图标即打开了桌面应用
  2673. U.MD.D.click(this, obj);
  2674. }, [_x010504StudentDeskIconInfo[i]]),
  2675. "onclick": U.UF.C.closure(function (obj) {
  2676. //防止拖动图标即打开了桌面应用
  2677. U.MD.D.click(this, obj);
  2678. }, [_x010504StudentDeskIconInfo[i]])
  2679. }, _frag); //
  2680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2683. }
  2684. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2685. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2686. _content = $$("div", {
  2687. className: "U_MD_D_KO",
  2688. "onmousedown": U.UF.C.closure(function (obj) {
  2689. //防止拖动图标即打开了桌面应用
  2690. U.MD.D.click(this, obj);
  2691. }, [_x010505StudentDeskIconInfo[i]]),
  2692. "onclick": U.UF.C.closure(function (obj) {
  2693. //防止拖动图标即打开了桌面应用
  2694. U.MD.D.click(this, obj);
  2695. }, [_x010505StudentDeskIconInfo[i]])
  2696. }, _frag); //
  2697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2700. }
  2701. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2702. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2703. _content = $$("div", {
  2704. className: "U_MD_D_KO",
  2705. "onmousedown": U.UF.C.closure(function (obj) {
  2706. //防止拖动图标即打开了桌面应用
  2707. U.MD.D.click(this, obj);
  2708. }, [_x010404StudentDeskIconInfo[i]]),
  2709. "onclick": U.UF.C.closure(function (obj) {
  2710. //防止拖动图标即打开了桌面应用
  2711. U.MD.D.click(this, obj);
  2712. }, [_x010404StudentDeskIconInfo[i]])
  2713. }, _frag); //
  2714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2717. }
  2718. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2719. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2720. _content = $$("div", {
  2721. className: "U_MD_D_KO",
  2722. "onmousedown": U.UF.C.closure(function (obj) {
  2723. //防止拖动图标即打开了桌面应用
  2724. U.MD.D.click(this, obj);
  2725. }, [_x010204StudentDeskIconInfo[i]]),
  2726. "onclick": U.UF.C.closure(function (obj) {
  2727. //防止拖动图标即打开了桌面应用
  2728. U.MD.D.click(this, obj);
  2729. }, [_x010204StudentDeskIconInfo[i]])
  2730. }, _frag); //
  2731. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2732. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2733. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2734. }
  2735. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2736. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2737. _content = $$("div", {
  2738. className: "U_MD_D_KO",
  2739. "onmousedown": U.UF.C.closure(function (obj) {
  2740. //防止拖动图标即打开了桌面应用
  2741. U.MD.D.click(this, obj);
  2742. }, [_x320101StudentDeskIconInfo[i]]),
  2743. "onclick": U.UF.C.closure(function (obj) {
  2744. //防止拖动图标即打开了桌面应用
  2745. U.MD.D.click(this, obj);
  2746. }, [_x320101StudentDeskIconInfo[i]])
  2747. }, _frag); //
  2748. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2749. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2750. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2751. }
  2752. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2753. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2754. _content = $$("div", {
  2755. className: "U_MD_D_KO",
  2756. "onmousedown": U.UF.C.closure(function (obj) {
  2757. //防止拖动图标即打开了桌面应用
  2758. U.MD.D.click(this, obj);
  2759. }, [_trailStudentDeskIconInfo[i]]),
  2760. "onclick": U.UF.C.closure(function (obj) {
  2761. //防止拖动图标即打开了桌面应用
  2762. U.MD.D.click(this, obj);
  2763. }, [_trailStudentDeskIconInfo[i]])
  2764. }, _frag); //
  2765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2768. }
  2769. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2770. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2771. _content = $$("div", {
  2772. className: "U_MD_D_KO",
  2773. "onmousedown": U.UF.C.closure(function (obj) {
  2774. //防止拖动图标即打开了桌面应用
  2775. U.MD.D.click(this, obj);
  2776. }, [_trialStudentDeskIconInfo[i]]),
  2777. "onclick": U.UF.C.closure(function (obj) {
  2778. //防止拖动图标即打开了桌面应用
  2779. U.MD.D.click(this, obj);
  2780. }, [_trialStudentDeskIconInfo[i]])
  2781. }, _frag); //
  2782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2785. }
  2786. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2787. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2788. _content = $$("div", {
  2789. className: "U_MD_D_KO",
  2790. "onmousedown": U.UF.C.closure(function (obj) {
  2791. //防止拖动图标即打开了桌面应用
  2792. U.MD.D.click(this, obj);
  2793. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2794. "onclick": U.UF.C.closure(function (obj) {
  2795. //防止拖动图标即打开了桌面应用
  2796. U.MD.D.click(this, obj);
  2797. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2798. }, _frag); //
  2799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2802. }
  2803. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2804. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2805. _content = $$("div", {
  2806. className: "U_MD_D_KO",
  2807. "onmousedown": U.UF.C.closure(function (obj) {
  2808. //防止拖动图标即打开了桌面应用
  2809. U.MD.D.click(this, obj);
  2810. }, [_szsyStudentDeskIconInfo[i]]),
  2811. "onclick": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_szsyStudentDeskIconInfo[i]])
  2815. }, _frag); //
  2816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2819. }
  2820. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2821. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2822. _content = $$("div", {
  2823. className: "U_MD_D_KO",
  2824. "onmousedown": U.UF.C.closure(function (obj) {
  2825. //防止拖动图标即打开了桌面应用
  2826. U.MD.D.click(this, obj);
  2827. }, [_x010608StudentDeskIconInfo[i]]),
  2828. "onclick": U.UF.C.closure(function (obj) {
  2829. //防止拖动图标即打开了桌面应用
  2830. U.MD.D.click(this, obj);
  2831. }, [_x010608StudentDeskIconInfo[i]])
  2832. }, _frag); //
  2833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2836. }
  2837. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2838. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2839. _content = $$("div", {
  2840. className: "U_MD_D_KO",
  2841. "onmousedown": U.UF.C.closure(function (obj) {
  2842. //防止拖动图标即打开了桌面应用
  2843. U.MD.D.click(this, obj);
  2844. }, [_x010611StudentDeskIconInfo[i]]),
  2845. "onclick": U.UF.C.closure(function (obj) {
  2846. //防止拖动图标即打开了桌面应用
  2847. U.MD.D.click(this, obj);
  2848. }, [_x010611StudentDeskIconInfo[i]])
  2849. }, _frag); //
  2850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2853. }
  2854. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2855. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2856. _content = $$("div", {
  2857. className: "U_MD_D_KO",
  2858. "onmousedown": U.UF.C.closure(function (obj) {
  2859. //防止拖动图标即打开了桌面应用
  2860. U.MD.D.click(this, obj);
  2861. }, [_x010612StudentDeskIconInfo[i]]),
  2862. "onclick": U.UF.C.closure(function (obj) {
  2863. //防止拖动图标即打开了桌面应用
  2864. U.MD.D.click(this, obj);
  2865. }, [_x010612StudentDeskIconInfo[i]])
  2866. }, _frag); //
  2867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2870. }
  2871. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2872. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2873. _content = $$("div", {
  2874. className: "U_MD_D_KO",
  2875. "onmousedown": U.UF.C.closure(function (obj) {
  2876. //防止拖动图标即打开了桌面应用
  2877. U.MD.D.click(this, obj);
  2878. }, [_tianyuantudentDeskIconInfo[i]]),
  2879. "onclick": U.UF.C.closure(function (obj) {
  2880. //防止拖动图标即打开了桌面应用
  2881. U.MD.D.click(this, obj);
  2882. }, [_tianyuantudentDeskIconInfo[i]])
  2883. }, _frag); //
  2884. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2885. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2886. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2887. }
  2888. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2889. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2890. _content = $$("div", {
  2891. className: "U_MD_D_KO",
  2892. "onmousedown": U.UF.C.closure(function (obj) {
  2893. //防止拖动图标即打开了桌面应用
  2894. U.MD.D.click(this, obj);
  2895. }, [_siesStudentDeskIconInfo[i]]),
  2896. "onclick": U.UF.C.closure(function (obj) {
  2897. //防止拖动图标即打开了桌面应用
  2898. U.MD.D.click(this, obj);
  2899. }, [_siesStudentDeskIconInfo[i]])
  2900. }, _frag); //
  2901. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2902. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2903. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2904. }
  2905. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2906. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2907. _content = $$("div", {
  2908. className: "U_MD_D_KO",
  2909. "onmousedown": U.UF.C.closure(function (obj) {
  2910. //防止拖动图标即打开了桌面应用
  2911. U.MD.D.click(this, obj);
  2912. }, [_guzmsStudentDeskIconInfo[i]]),
  2913. "onclick": U.UF.C.closure(function (obj) {
  2914. //防止拖动图标即打开了桌面应用
  2915. U.MD.D.click(this, obj);
  2916. }, [_guzmsStudentDeskIconInfo[i]])
  2917. }, _frag); //
  2918. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2919. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2920. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2921. }
  2922. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2923. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2924. _content = $$("div", {
  2925. className: "U_MD_D_KO",
  2926. "onmousedown": U.UF.C.closure(function (obj) {
  2927. //防止拖动图标即打开了桌面应用
  2928. U.MD.D.click(this, obj);
  2929. }, [_hkStudentDeskIconInfo[i]]),
  2930. "onclick": U.UF.C.closure(function (obj) {
  2931. //防止拖动图标即打开了桌面应用
  2932. U.MD.D.click(this, obj);
  2933. }, [_hkStudentDeskIconInfo[i]])
  2934. }, _frag); //
  2935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2938. }
  2939. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2940. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2941. _content = $$("div", {
  2942. className: "U_MD_D_KO",
  2943. "onmousedown": U.UF.C.closure(function (obj) {
  2944. //防止拖动图标即打开了桌面应用
  2945. U.MD.D.click(this, obj);
  2946. }, [_hkaceStudentDeskIconInfo[i]]),
  2947. "onclick": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_hkaceStudentDeskIconInfo[i]])
  2951. }, _frag); //
  2952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2955. }
  2956. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2957. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2958. _content = $$("div", {
  2959. className: "U_MD_D_KO",
  2960. "onmousedown": U.UF.C.closure(function (obj) {
  2961. //防止拖动图标即打开了桌面应用
  2962. U.MD.D.click(this, obj);
  2963. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2964. "onclick": U.UF.C.closure(function (obj) {
  2965. //防止拖动图标即打开了桌面应用
  2966. U.MD.D.click(this, obj);
  2967. }, [_BSDNSstudentDesktopIconInfo[i]])
  2968. }, _frag); //
  2969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2972. }
  2973. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2974. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_cocobizStudentDeskIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_cocobizStudentDeskIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2991. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2992. _content = $$("div", {
  2993. className: "U_MD_D_KO",
  2994. "onmousedown": U.UF.C.closure(function (obj) {
  2995. //防止拖动图标即打开了桌面应用
  2996. U.MD.D.click(this, obj);
  2997. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2998. "onclick": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_xxzjkyStudentDeskIconInfo[i]])
  3002. }, _frag); //
  3003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3006. }
  3007. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3008. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3009. _content = $$("div", {
  3010. className: "U_MD_D_KO",
  3011. "onmousedown": U.UF.C.closure(function (obj) {
  3012. //防止拖动图标即打开了桌面应用
  3013. U.MD.D.click(this, obj);
  3014. }, [_studentDesktopIconInfo[i]]),
  3015. "onclick": U.UF.C.closure(function (obj) {
  3016. //防止拖动图标即打开了桌面应用
  3017. U.MD.D.click(this, obj);
  3018. }, [_studentDesktopIconInfo[i]])
  3019. }, _frag); //
  3020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3023. }
  3024. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3025. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3026. _content = $$("div", {
  3027. className: "U_MD_D_KO",
  3028. "onmousedown": U.UF.C.closure(function (obj) {
  3029. //防止拖动图标即打开了桌面应用
  3030. U.MD.D.click(this, obj);
  3031. }, [_tcStudentDeskIconInfo[i]]),
  3032. "onclick": U.UF.C.closure(function (obj) {
  3033. //防止拖动图标即打开了桌面应用
  3034. U.MD.D.click(this, obj);
  3035. }, [_tcStudentDeskIconInfo[i]])
  3036. }, _frag); //
  3037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3040. }
  3041. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3042. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3043. _content = $$("div", {
  3044. className: "U_MD_D_KO",
  3045. "onmousedown": U.UF.C.closure(function (obj) {
  3046. //防止拖动图标即打开了桌面应用
  3047. U.MD.D.click(this, obj);
  3048. }, [_szscStudentDeskIconInfo[i]]),
  3049. "onclick": U.UF.C.closure(function (obj) {
  3050. //防止拖动图标即打开了桌面应用
  3051. U.MD.D.click(this, obj);
  3052. }, [_szscStudentDeskIconInfo[i]])
  3053. }, _frag); //
  3054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3057. }
  3058. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3059. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  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. }, [_studentDesktopIconInfo3[i]]),
  3066. "onclick": U.UF.C.closure(function (obj) {
  3067. //防止拖动图标即打开了桌面应用
  3068. U.MD.D.click(this, obj);
  3069. }, [_studentDesktopIconInfo3[i]])
  3070. }, _frag); //
  3071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3074. }
  3075. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3076. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3077. _content = $$("div", {
  3078. className: "U_MD_D_KO",
  3079. "onmousedown": U.UF.C.closure(function (obj) {
  3080. //防止拖动图标即打开了桌面应用
  3081. U.MD.D.click(this, obj);
  3082. }, [_studentDesktopIconInfo2[i]]),
  3083. "onclick": U.UF.C.closure(function (obj) {
  3084. //防止拖动图标即打开了桌面应用
  3085. U.MD.D.click(this, obj);
  3086. }, [_studentDesktopIconInfo2[i]])
  3087. }, _frag); //
  3088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3091. }
  3092. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3093. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3094. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3095. continue
  3096. }
  3097. _content = $$("div", {
  3098. className: "U_MD_D_KO",
  3099. "onmousedown": U.UF.C.closure(function (obj) {
  3100. //防止拖动图标即打开了桌面应用
  3101. U.MD.D.click(this, obj);
  3102. }, [_wanketeacherDesktopIconInfo[i]]),
  3103. "onclick": U.UF.C.closure(function (obj) {
  3104. //防止拖动图标即打开了桌面应用
  3105. U.MD.D.click(this, obj);
  3106. }, [_wanketeacherDesktopIconInfo[i]])
  3107. }, _frag); //
  3108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3111. }
  3112. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3113. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3114. _content = $$("div", {
  3115. className: "U_MD_D_KO",
  3116. "onmousedown": U.UF.C.closure(function (obj) {
  3117. //防止拖动图标即打开了桌面应用
  3118. U.MD.D.click(this, obj);
  3119. }, [_wankeAdminDesktopIconInfo[i]]),
  3120. "onclick": U.UF.C.closure(function (obj) {
  3121. //防止拖动图标即打开了桌面应用
  3122. U.MD.D.click(this, obj);
  3123. }, [_wankeAdminDesktopIconInfo[i]])
  3124. }, _frag); //
  3125. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3126. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3127. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3128. }
  3129. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3130. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3131. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3132. continue
  3133. }
  3134. _content = $$("div", {
  3135. className: "U_MD_D_KO",
  3136. "onmousedown": U.UF.C.closure(function (obj) {
  3137. //防止拖动图标即打开了桌面应用
  3138. U.MD.D.click(this, obj);
  3139. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3140. "onclick": U.UF.C.closure(function (obj) {
  3141. //防止拖动图标即打开了桌面应用
  3142. U.MD.D.click(this, obj);
  3143. }, [_scnuaiTeacherDeskIconInfo[i]])
  3144. }, _frag); //
  3145. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3146. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3147. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3148. }
  3149. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3150. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3151. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3152. continue
  3153. }
  3154. _content = $$("div", {
  3155. className: "U_MD_D_KO",
  3156. "onmousedown": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3160. "onclick": U.UF.C.closure(function (obj) {
  3161. //防止拖动图标即打开了桌面应用
  3162. U.MD.D.click(this, obj);
  3163. }, [_BSDNSteacherDesktopIconInfo[i]])
  3164. }, _frag); //
  3165. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3166. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3167. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3168. }
  3169. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3170. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3171. _content = $$("div", {
  3172. className: "U_MD_D_KO",
  3173. "onmousedown": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_scnuaiAdminDeskIconInfo[i]]),
  3177. "onclick": U.UF.C.closure(function (obj) {
  3178. //防止拖动图标即打开了桌面应用
  3179. U.MD.D.click(this, obj);
  3180. }, [_scnuaiAdminDeskIconInfo[i]])
  3181. }, _frag); //
  3182. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3183. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3184. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3185. }
  3186. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3187. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3188. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3189. continue
  3190. }
  3191. _content = $$("div", {
  3192. className: "U_MD_D_KO",
  3193. "onmousedown": U.UF.C.closure(function (obj) {
  3194. //防止拖动图标即打开了桌面应用
  3195. U.MD.D.click(this, obj);
  3196. }, [_jccssylTeacherDeskIconInfo[i]]),
  3197. "onclick": U.UF.C.closure(function (obj) {
  3198. //防止拖动图标即打开了桌面应用
  3199. U.MD.D.click(this, obj);
  3200. }, [_jccssylTeacherDeskIconInfo[i]])
  3201. }, _frag); //
  3202. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3203. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3204. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3205. }
  3206. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3207. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3208. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3209. continue
  3210. }
  3211. _content = $$("div", {
  3212. className: "U_MD_D_KO",
  3213. "onmousedown": U.UF.C.closure(function (obj) {
  3214. //防止拖动图标即打开了桌面应用
  3215. U.MD.D.click(this, obj);
  3216. }, [_caleTeacherDeskIconInfo[i]]),
  3217. "onclick": U.UF.C.closure(function (obj) {
  3218. //防止拖动图标即打开了桌面应用
  3219. U.MD.D.click(this, obj);
  3220. }, [_caleTeacherDeskIconInfo[i]])
  3221. }, _frag); //
  3222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3225. }
  3226. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3227. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3228. _content = $$("div", {
  3229. className: "U_MD_D_KO",
  3230. "onmousedown": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_tpcOrganizerDeskIconInfo[i]]),
  3234. "onclick": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_tpcOrganizerDeskIconInfo[i]])
  3238. }, _frag); //
  3239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3242. }
  3243. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3244. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3245. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3246. continue
  3247. }
  3248. _content = $$("div", {
  3249. className: "U_MD_D_KO",
  3250. "onmousedown": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_tpcTeacherDeskIconInfo[i]]),
  3254. "onclick": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_tpcTeacherDeskIconInfo[i]])
  3258. }, _frag); //
  3259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3262. }
  3263. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3264. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3265. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3266. continue
  3267. }
  3268. _content = $$("div", {
  3269. className: "U_MD_D_KO",
  3270. "onmousedown": U.UF.C.closure(function (obj) {
  3271. //防止拖动图标即打开了桌面应用
  3272. U.MD.D.click(this, obj);
  3273. }, [_teacherDesktopIconInfo2[i]]),
  3274. "onclick": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_teacherDesktopIconInfo2[i]])
  3278. }, _frag); //
  3279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3282. }
  3283. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3284. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3285. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3286. continue
  3287. }
  3288. _content = $$("div", {
  3289. className: "U_MD_D_KO",
  3290. "onmousedown": U.UF.C.closure(function (obj) {
  3291. //防止拖动图标即打开了桌面应用
  3292. U.MD.D.click(this, obj);
  3293. }, [_thuioeTeacherDeskIconInfo[i]]),
  3294. "onclick": U.UF.C.closure(function (obj) {
  3295. //防止拖动图标即打开了桌面应用
  3296. U.MD.D.click(this, obj);
  3297. }, [_thuioeTeacherDeskIconInfo[i]])
  3298. }, _frag); //
  3299. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3300. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3301. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3302. }
  3303. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3304. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3305. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3306. continue
  3307. }
  3308. _content = $$("div", {
  3309. className: "U_MD_D_KO",
  3310. "onmousedown": U.UF.C.closure(function (obj) {
  3311. //防止拖动图标即打开了桌面应用
  3312. U.MD.D.click(this, obj);
  3313. }, [_lotechTeacherDeskIconInfo[i]]),
  3314. "onclick": U.UF.C.closure(function (obj) {
  3315. //防止拖动图标即打开了桌面应用
  3316. U.MD.D.click(this, obj);
  3317. }, [_lotechTeacherDeskIconInfo[i]])
  3318. }, _frag); //
  3319. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3320. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3321. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3322. }//
  3323. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3324. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3325. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3326. continue
  3327. }
  3328. _content = $$("div", {
  3329. className: "U_MD_D_KO",
  3330. "onmousedown": U.UF.C.closure(function (obj) {
  3331. //防止拖动图标即打开了桌面应用
  3332. U.MD.D.click(this, obj);
  3333. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3334. "onclick": U.UF.C.closure(function (obj) {
  3335. //防止拖动图标即打开了桌面应用
  3336. U.MD.D.click(this, obj);
  3337. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3338. }, _frag); //
  3339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3342. }
  3343. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3344. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3345. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3346. continue
  3347. }
  3348. _content = $$("div", {
  3349. className: "U_MD_D_KO",
  3350. "onmousedown": U.UF.C.closure(function (obj) {
  3351. //防止拖动图标即打开了桌面应用
  3352. U.MD.D.click(this, obj);
  3353. }, [_siesTeacherDeskIconInfo[i]]),
  3354. "onclick": U.UF.C.closure(function (obj) {
  3355. //防止拖动图标即打开了桌面应用
  3356. U.MD.D.click(this, obj);
  3357. }, [_siesTeacherDeskIconInfo[i]])
  3358. }, _frag); //
  3359. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3360. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3361. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3362. }
  3363. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3364. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3365. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3366. continue
  3367. }
  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. }, [_guzmsTeacherDeskIconInfo[i]]),
  3374. "onclick": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_guzmsTeacherDeskIconInfo[i]])
  3378. }, _frag); //
  3379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3382. }
  3383. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3384. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3385. if(_role === 0 && _longhuaTeacherDeskIconInfo[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. }, [_longhuaTeacherDeskIconInfo[i]]),
  3394. "onclick": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_longhuaTeacherDeskIconInfo[i]])
  3398. }, _frag); //
  3399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3402. }
  3403. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3404. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3405. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3406. continue
  3407. }
  3408. _content = $$("div", {
  3409. className: "U_MD_D_KO",
  3410. "onmousedown": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_ytyTeacherDeskIconInfo[i]]),
  3414. "onclick": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_ytyTeacherDeskIconInfo[i]])
  3418. }, _frag); //
  3419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3422. }
  3423. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3424. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3425. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3426. continue
  3427. }
  3428. _content = $$("div", {
  3429. className: "U_MD_D_KO",
  3430. "onmousedown": U.UF.C.closure(function (obj) {
  3431. //防止拖动图标即打开了桌面应用
  3432. U.MD.D.click(this, obj);
  3433. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3434. "onclick": U.UF.C.closure(function (obj) {
  3435. //防止拖动图标即打开了桌面应用
  3436. U.MD.D.click(this, obj);
  3437. }, [_yunhaiTeacherDeskIconInfo[i]])
  3438. }, _frag); //
  3439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3442. } //_hkStudentDeskIconInfo
  3443. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3444. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3445. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3446. continue
  3447. }
  3448. _content = $$("div", {
  3449. className: "U_MD_D_KO",
  3450. "onmousedown": U.UF.C.closure(function (obj) {
  3451. //防止拖动图标即打开了桌面应用
  3452. U.MD.D.click(this, obj);
  3453. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3454. "onclick": U.UF.C.closure(function (obj) {
  3455. //防止拖动图标即打开了桌面应用
  3456. U.MD.D.click(this, obj);
  3457. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3458. }, _frag); //
  3459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3462. }
  3463. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3464. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3465. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3466. continue
  3467. }
  3468. _content = $$("div", {
  3469. className: "U_MD_D_KO",
  3470. "onmousedown": U.UF.C.closure(function (obj) {
  3471. //防止拖动图标即打开了桌面应用
  3472. U.MD.D.click(this, obj);
  3473. }, [_ricohTeacherDeskIconInfo[i]]),
  3474. "onclick": U.UF.C.closure(function (obj) {
  3475. //防止拖动图标即打开了桌面应用
  3476. U.MD.D.click(this, obj);
  3477. }, [_ricohTeacherDeskIconInfo[i]])
  3478. }, _frag); //
  3479. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3480. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3481. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3482. }
  3483. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3484. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3485. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3486. continue
  3487. }
  3488. _content = $$("div", {
  3489. className: "U_MD_D_KO",
  3490. "onmousedown": U.UF.C.closure(function (obj) {
  3491. //防止拖动图标即打开了桌面应用
  3492. U.MD.D.click(this, obj);
  3493. }, [_hkTeacherDeskIconInfo[i]]),
  3494. "onclick": U.UF.C.closure(function (obj) {
  3495. //防止拖动图标即打开了桌面应用
  3496. U.MD.D.click(this, obj);
  3497. }, [_hkTeacherDeskIconInfo[i]])
  3498. }, _frag); //
  3499. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3500. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3501. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3502. }
  3503. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3504. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3505. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3506. continue
  3507. }
  3508. _content = $$("div", {
  3509. className: "U_MD_D_KO",
  3510. "onmousedown": U.UF.C.closure(function (obj) {
  3511. //防止拖动图标即打开了桌面应用
  3512. U.MD.D.click(this, obj);
  3513. }, [_hkaceTeacherDeskIconInfo[i]]),
  3514. "onclick": U.UF.C.closure(function (obj) {
  3515. //防止拖动图标即打开了桌面应用
  3516. U.MD.D.click(this, obj);
  3517. }, [_hkaceTeacherDeskIconInfo[i]])
  3518. }, _frag); //
  3519. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3520. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3521. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3522. }
  3523. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3524. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3525. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3526. continue
  3527. }
  3528. _content = $$("div", {
  3529. className: "U_MD_D_KO",
  3530. "onmousedown": U.UF.C.closure(function (obj) {
  3531. //防止拖动图标即打开了桌面应用
  3532. U.MD.D.click(this, obj);
  3533. }, [_cocobizTeacherDeskIconInfo[i]]),
  3534. "onclick": U.UF.C.closure(function (obj) {
  3535. //防止拖动图标即打开了桌面应用
  3536. U.MD.D.click(this, obj);
  3537. }, [_cocobizTeacherDeskIconInfo[i]])
  3538. }, _frag); //
  3539. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3540. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3541. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3542. }
  3543. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3544. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3545. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3546. continue
  3547. }
  3548. _content = $$("div", {
  3549. className: "U_MD_D_KO",
  3550. "onmousedown": U.UF.C.closure(function (obj) {
  3551. //防止拖动图标即打开了桌面应用
  3552. U.MD.D.click(this, obj);
  3553. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3554. "onclick": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3558. }, _frag); //
  3559. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3560. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3561. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3562. }
  3563. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3564. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3565. _content = $$("div", {
  3566. className: "U_MD_D_KO",
  3567. "onmousedown": U.UF.C.closure(function (obj) {
  3568. //防止拖动图标即打开了桌面应用
  3569. U.MD.D.click(this, obj);
  3570. }, [_gdjgAdminDeskIconInfo[i]]),
  3571. "onclick": U.UF.C.closure(function (obj) {
  3572. //防止拖动图标即打开了桌面应用
  3573. U.MD.D.click(this, obj);
  3574. }, [_gdjgAdminDeskIconInfo[i]])
  3575. }, _frag); //
  3576. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3577. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3578. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3579. }
  3580. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3581. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3582. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3583. continue
  3584. }
  3585. _content = $$("div", {
  3586. className: "U_MD_D_KO",
  3587. "onmousedown": U.UF.C.closure(function (obj) {
  3588. //防止拖动图标即打开了桌面应用
  3589. U.MD.D.click(this, obj);
  3590. }, [_gdjgTeacherDeskIconInfo[i]]),
  3591. "onclick": U.UF.C.closure(function (obj) {
  3592. //防止拖动图标即打开了桌面应用
  3593. U.MD.D.click(this, obj);
  3594. }, [_gdjgTeacherDeskIconInfo[i]])
  3595. }, _frag); //
  3596. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3597. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3598. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3599. }
  3600. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3601. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3602. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3603. continue
  3604. }
  3605. _content = $$("div", {
  3606. className: "U_MD_D_KO",
  3607. "onmousedown": U.UF.C.closure(function (obj) {
  3608. //防止拖动图标即打开了桌面应用
  3609. U.MD.D.click(this, obj);
  3610. }, [_szherTeacherDeskIconInfo[i]]),
  3611. "onclick": U.UF.C.closure(function (obj) {
  3612. //防止拖动图标即打开了桌面应用
  3613. U.MD.D.click(this, obj);
  3614. }, [_szherTeacherDeskIconInfo[i]])
  3615. }, _frag); //
  3616. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3617. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3618. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3619. }
  3620. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3621. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3622. _content = $$("div", {
  3623. className: "U_MD_D_KO",
  3624. "onmousedown": U.UF.C.closure(function (obj) {
  3625. //防止拖动图标即打开了桌面应用
  3626. U.MD.D.click(this, obj);
  3627. }, [_heyuannAdminDeskIconInfo[i]]),
  3628. "onclick": U.UF.C.closure(function (obj) {
  3629. //防止拖动图标即打开了桌面应用
  3630. U.MD.D.click(this, obj);
  3631. }, [_heyuannAdminDeskIconInfo[i]])
  3632. }, _frag); //
  3633. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3634. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3635. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3636. }
  3637. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3638. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3639. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3640. continue
  3641. }
  3642. _content = $$("div", {
  3643. className: "U_MD_D_KO",
  3644. "onmousedown": U.UF.C.closure(function (obj) {
  3645. //防止拖动图标即打开了桌面应用
  3646. U.MD.D.click(this, obj);
  3647. }, [_heyuanTeacherDeskIconInfo[i]]),
  3648. "onclick": U.UF.C.closure(function (obj) {
  3649. //防止拖动图标即打开了桌面应用
  3650. U.MD.D.click(this, obj);
  3651. }, [_heyuanTeacherDeskIconInfo[i]])
  3652. }, _frag); //
  3653. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3654. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3655. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3656. } //
  3657. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3658. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3659. _content = $$("div", {
  3660. className: "U_MD_D_KO",
  3661. "onmousedown": U.UF.C.closure(function (obj) {
  3662. //防止拖动图标即打开了桌面应用
  3663. U.MD.D.click(this, obj);
  3664. }, [_dseiAdminDeskIconInfo[i]]),
  3665. "onclick": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_dseiAdminDeskIconInfo[i]])
  3669. }, _frag); //
  3670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3673. }
  3674. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3675. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3676. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3677. continue
  3678. }
  3679. _content = $$("div", {
  3680. className: "U_MD_D_KO",
  3681. "onmousedown": U.UF.C.closure(function (obj) {
  3682. //防止拖动图标即打开了桌面应用
  3683. U.MD.D.click(this, obj);
  3684. }, [_dseiTeacherDeskIconInfo[i]]),
  3685. "onclick": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_dseiTeacherDeskIconInfo[i]])
  3689. }, _frag); //
  3690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3693. } //
  3694. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3695. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3696. _content = $$("div", {
  3697. className: "U_MD_D_KO",
  3698. "onmousedown": U.UF.C.closure(function (obj) {
  3699. //防止拖动图标即打开了桌面应用
  3700. U.MD.D.click(this, obj);
  3701. }, [_chjyjAdminDeskIconInfo[i]]),
  3702. "onclick": U.UF.C.closure(function (obj) {
  3703. //防止拖动图标即打开了桌面应用
  3704. U.MD.D.click(this, obj);
  3705. }, [_chjyjAdminDeskIconInfo[i]])
  3706. }, _frag); //
  3707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3710. }//
  3711. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3712. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3713. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3714. continue
  3715. }
  3716. _content = $$("div", {
  3717. className: "U_MD_D_KO",
  3718. "onmousedown": U.UF.C.closure(function (obj) {
  3719. //防止拖动图标即打开了桌面应用
  3720. U.MD.D.click(this, obj);
  3721. }, [_chjyjTeacherDeskIconInfo[i]]),
  3722. "onclick": U.UF.C.closure(function (obj) {
  3723. //防止拖动图标即打开了桌面应用
  3724. U.MD.D.click(this, obj);
  3725. }, [_chjyjTeacherDeskIconInfo[i]])
  3726. }, _frag); //
  3727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3730. }
  3731. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3732. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  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. }, [_szjkyAdminDeskIconInfo[i]]),
  3739. "onclick": U.UF.C.closure(function (obj) {
  3740. //防止拖动图标即打开了桌面应用
  3741. U.MD.D.click(this, obj);
  3742. }, [_szjkyAdminDeskIconInfo[i]])
  3743. }, _frag); //
  3744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3747. }//
  3748. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3749. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3750. if(_role === 0 && _szjkyTeacherDeskIconInfo[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. }, [_szjkyTeacherDeskIconInfo[i]]),
  3759. "onclick": U.UF.C.closure(function (obj) {
  3760. //防止拖动图标即打开了桌面应用
  3761. U.MD.D.click(this, obj);
  3762. }, [_szjkyTeacherDeskIconInfo[i]])
  3763. }, _frag); //
  3764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3767. }
  3768. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3769. for (i = 0; i < _x020201AdminDeskIconInfo.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. }, [_x020201AdminDeskIconInfo[i]]),
  3776. "onclick": U.UF.C.closure(function (obj) {
  3777. //防止拖动图标即打开了桌面应用
  3778. U.MD.D.click(this, obj);
  3779. }, [_x020201AdminDeskIconInfo[i]])
  3780. }, _frag); //
  3781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3784. }//
  3785. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3786. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3787. if(_role === 0 && _x020201TeacherDeskIconInfo[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. }, [_x020201TeacherDeskIconInfo[i]]),
  3796. "onclick": U.UF.C.closure(function (obj) {
  3797. //防止拖动图标即打开了桌面应用
  3798. U.MD.D.click(this, obj);
  3799. }, [_x020201TeacherDeskIconInfo[i]])
  3800. }, _frag); //
  3801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3804. }
  3805. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3806. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3807. _content = $$("div", {
  3808. className: "U_MD_D_KO",
  3809. "onmousedown": U.UF.C.closure(function (obj) {
  3810. //防止拖动图标即打开了桌面应用
  3811. U.MD.D.click(this, obj);
  3812. }, [_SCNUETAdminDeskIconInfo[i]]),
  3813. "onclick": U.UF.C.closure(function (obj) {
  3814. //防止拖动图标即打开了桌面应用
  3815. U.MD.D.click(this, obj);
  3816. }, [_SCNUETAdminDeskIconInfo[i]])
  3817. }, _frag); //
  3818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3821. }//
  3822. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3823. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3824. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3825. continue
  3826. }
  3827. _content = $$("div", {
  3828. className: "U_MD_D_KO",
  3829. "onmousedown": U.UF.C.closure(function (obj) {
  3830. //防止拖动图标即打开了桌面应用
  3831. U.MD.D.click(this, obj);
  3832. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3833. "onclick": U.UF.C.closure(function (obj) {
  3834. //防止拖动图标即打开了桌面应用
  3835. U.MD.D.click(this, obj);
  3836. }, [_SCNUETTeacherDeskIconInfo[i]])
  3837. }, _frag); //
  3838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3841. }
  3842. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3843. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3844. _content = $$("div", {
  3845. className: "U_MD_D_KO",
  3846. "onmousedown": U.UF.C.closure(function (obj) {
  3847. //防止拖动图标即打开了桌面应用
  3848. U.MD.D.click(this, obj);
  3849. }, [_futianAdminDeskIconInfo[i]]),
  3850. "onclick": U.UF.C.closure(function (obj) {
  3851. //防止拖动图标即打开了桌面应用
  3852. U.MD.D.click(this, obj);
  3853. }, [_futianAdminDeskIconInfo[i]])
  3854. }, _frag); //
  3855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3858. }
  3859. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3860. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3861. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3862. continue
  3863. }
  3864. _content = $$("div", {
  3865. className: "U_MD_D_KO",
  3866. "onmousedown": U.UF.C.closure(function (obj) {
  3867. //防止拖动图标即打开了桌面应用
  3868. U.MD.D.click(this, obj);
  3869. }, [_futianTeacherDeskIconInfo[i]]),
  3870. "onclick": U.UF.C.closure(function (obj) {
  3871. //防止拖动图标即打开了桌面应用
  3872. U.MD.D.click(this, obj);
  3873. }, [_futianTeacherDeskIconInfo[i]])
  3874. }, _frag); //
  3875. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3876. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3877. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3878. }
  3879. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3880. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3881. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3882. continue
  3883. }
  3884. _content = $$("div", {
  3885. className: "U_MD_D_KO",
  3886. "onmousedown": U.UF.C.closure(function (obj) {
  3887. //防止拖动图标即打开了桌面应用
  3888. U.MD.D.click(this, obj);
  3889. }, [_MingdeTeacherDeskIcon[i]]),
  3890. "onclick": U.UF.C.closure(function (obj) {
  3891. //防止拖动图标即打开了桌面应用
  3892. U.MD.D.click(this, obj);
  3893. }, [_MingdeTeacherDeskIcon[i]])
  3894. }, _frag); //
  3895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3898. }
  3899. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3900. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3901. _content = $$("div", {
  3902. className: "U_MD_D_KO",
  3903. "onmousedown": U.UF.C.closure(function (obj) {
  3904. //防止拖动图标即打开了桌面应用
  3905. U.MD.D.click(this, obj);
  3906. }, [_lhsAdminDesktopIconInfo[i]]),
  3907. "onclick": U.UF.C.closure(function (obj) {
  3908. //防止拖动图标即打开了桌面应用
  3909. U.MD.D.click(this, obj);
  3910. }, [_lhsAdminDesktopIconInfo[i]])
  3911. }, _frag); //
  3912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3915. }
  3916. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3917. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3918. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3919. continue
  3920. }
  3921. _content = $$("div", {
  3922. className: "U_MD_D_KO",
  3923. "onmousedown": U.UF.C.closure(function (obj) {
  3924. //防止拖动图标即打开了桌面应用
  3925. U.MD.D.click(this, obj);
  3926. }, [_lhsteacherDesktopIconInfo[i]]),
  3927. "onclick": U.UF.C.closure(function (obj) {
  3928. //防止拖动图标即打开了桌面应用
  3929. U.MD.D.click(this, obj);
  3930. }, [_lhsteacherDesktopIconInfo[i]])
  3931. }, _frag); //
  3932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3935. }
  3936. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3937. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3938. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3939. continue
  3940. }
  3941. _content = $$("div", {
  3942. className: "U_MD_D_KO",
  3943. "onmousedown": U.UF.C.closure(function (obj) {
  3944. //防止拖动图标即打开了桌面应用
  3945. U.MD.D.click(this, obj);
  3946. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3947. "onclick": U.UF.C.closure(function (obj) {
  3948. //防止拖动图标即打开了桌面应用
  3949. U.MD.D.click(this, obj);
  3950. }, [_zhoujiateacherDesktopIconInfo[i]])
  3951. }, _frag); //
  3952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3955. }
  3956. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3957. for (i = 0; i < _hanDeskIcon.length; i++) {
  3958. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3959. continue
  3960. }
  3961. _content = $$("div", {
  3962. className: "U_MD_D_KO",
  3963. "onmousedown": U.UF.C.closure(function (obj) {
  3964. //防止拖动图标即打开了桌面应用
  3965. U.MD.D.click(this, obj);
  3966. }, [_hanDeskIcon[i]]),
  3967. "onclick": U.UF.C.closure(function (obj) {
  3968. //防止拖动图标即打开了桌面应用
  3969. U.MD.D.click(this, obj);
  3970. }, [_hanDeskIcon[i]])
  3971. }, _frag); //
  3972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3975. }
  3976. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3977. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3978. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3979. continue
  3980. }
  3981. _content = $$("div", {
  3982. className: "U_MD_D_KO",
  3983. "onmousedown": U.UF.C.closure(function (obj) {
  3984. //防止拖动图标即打开了桌面应用
  3985. U.MD.D.click(this, obj);
  3986. }, [_orgStemDeskIcon[i]]),
  3987. "onclick": U.UF.C.closure(function (obj) {
  3988. //防止拖动图标即打开了桌面应用
  3989. U.MD.D.click(this, obj);
  3990. }, [_orgStemDeskIcon[i]])
  3991. }, _frag); //
  3992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3995. }
  3996. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3997. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3998. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3999. continue
  4000. }
  4001. _content = $$("div", {
  4002. className: "U_MD_D_KO",
  4003. "onmousedown": U.UF.C.closure(function (obj) {
  4004. //防止拖动图标即打开了桌面应用
  4005. U.MD.D.click(this, obj);
  4006. }, [_szulsDeskIcon[i]]),
  4007. "onclick": U.UF.C.closure(function (obj) {
  4008. //防止拖动图标即打开了桌面应用
  4009. U.MD.D.click(this, obj);
  4010. }, [_szulsDeskIcon[i]])
  4011. }, _frag); //
  4012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4015. }
  4016. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4017. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4018. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4019. continue
  4020. }
  4021. _content = $$("div", {
  4022. className: "U_MD_D_KO",
  4023. "onmousedown": U.UF.C.closure(function (obj) {
  4024. //防止拖动图标即打开了桌面应用
  4025. U.MD.D.click(this, obj);
  4026. }, [_orgDesktopIconInfo[i]]),
  4027. "onclick": U.UF.C.closure(function (obj) {
  4028. //防止拖动图标即打开了桌面应用
  4029. U.MD.D.click(this, obj);
  4030. }, [_orgDesktopIconInfo[i]])
  4031. }, _frag); //
  4032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4035. }
  4036. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4037. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4038. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4039. continue
  4040. }
  4041. _content = $$("div", {
  4042. className: "U_MD_D_KO",
  4043. "onmousedown": U.UF.C.closure(function (obj) {
  4044. //防止拖动图标即打开了桌面应用
  4045. U.MD.D.click(this, obj);
  4046. }, [_schoolDesktopIconInfo[i]]),
  4047. "onclick": U.UF.C.closure(function (obj) {
  4048. //防止拖动图标即打开了桌面应用
  4049. U.MD.D.click(this, obj);
  4050. }, [_schoolDesktopIconInfo[i]])
  4051. }, _frag); //
  4052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4055. }
  4056. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4057. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4058. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4059. continue
  4060. }
  4061. _content = $$("div", {
  4062. className: "U_MD_D_KO",
  4063. "onmousedown": U.UF.C.closure(function (obj) {
  4064. //防止拖动图标即打开了桌面应用
  4065. U.MD.D.click(this, obj);
  4066. }, [_GMteacherDesktopIconInfo[i]]),
  4067. "onclick": U.UF.C.closure(function (obj) {
  4068. //防止拖动图标即打开了桌面应用
  4069. U.MD.D.click(this, obj);
  4070. }, [_GMteacherDesktopIconInfo[i]])
  4071. }, _frag); //
  4072. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4073. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4074. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4075. }
  4076. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4077. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4078. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4079. continue
  4080. }
  4081. _content = $$("div", {
  4082. className: "U_MD_D_KO",
  4083. "onmousedown": U.UF.C.closure(function (obj) {
  4084. //防止拖动图标即打开了桌面应用
  4085. U.MD.D.click(this, obj);
  4086. }, [_SONGteacherDesktopIconInfo[i]]),
  4087. "onclick": U.UF.C.closure(function (obj) {
  4088. //防止拖动图标即打开了桌面应用
  4089. U.MD.D.click(this, obj);
  4090. }, [_SONGteacherDesktopIconInfo[i]])
  4091. }, _frag); //
  4092. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4093. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4094. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4095. }
  4096. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4097. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4098. _content = $$("div", {
  4099. className: "U_MD_D_KO",
  4100. "onmousedown": U.UF.C.closure(function (obj) {
  4101. //防止拖动图标即打开了桌面应用
  4102. U.MD.D.click(this, obj);
  4103. }, [_GMstudentDesktopIconInfo[i]]),
  4104. "onclick": U.UF.C.closure(function (obj) {
  4105. //防止拖动图标即打开了桌面应用
  4106. U.MD.D.click(this, obj);
  4107. }, [_GMstudentDesktopIconInfo[i]])
  4108. }, _frag); //
  4109. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4110. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4111. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4112. }
  4113. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4114. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4115. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4116. continue
  4117. }
  4118. _content = $$("div", {
  4119. className: "U_MD_D_KO",
  4120. "onmousedown": U.UF.C.closure(function (obj) {
  4121. //防止拖动图标即打开了桌面应用
  4122. U.MD.D.click(this, obj);
  4123. }, [_tcTeacherDeskIconInfo[i]]),
  4124. "onclick": U.UF.C.closure(function (obj) {
  4125. //防止拖动图标即打开了桌面应用
  4126. U.MD.D.click(this, obj);
  4127. }, [_tcTeacherDeskIconInfo[i]])
  4128. }, _frag); //
  4129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4132. }
  4133. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4134. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4135. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4136. continue
  4137. }
  4138. _content = $$("div", {
  4139. className: "U_MD_D_KO",
  4140. "onmousedown": U.UF.C.closure(function (obj) {
  4141. //防止拖动图标即打开了桌面应用
  4142. U.MD.D.click(this, obj);
  4143. }, [_tcOrganizerDeskIconInfo[i]]),
  4144. "onclick": U.UF.C.closure(function (obj) {
  4145. //防止拖动图标即打开了桌面应用
  4146. U.MD.D.click(this, obj);
  4147. }, [_tcOrganizerDeskIconInfo[i]])
  4148. }, _frag); //
  4149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4152. }
  4153. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4154. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4155. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4156. continue
  4157. }
  4158. _content = $$("div", {
  4159. className: "U_MD_D_KO",
  4160. "onmousedown": U.UF.C.closure(function (obj) {
  4161. //防止拖动图标即打开了桌面应用
  4162. U.MD.D.click(this, obj);
  4163. }, [_szscTeacherDeskIconInfo[i]]),
  4164. "onclick": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_szscTeacherDeskIconInfo[i]])
  4168. }, _frag); //
  4169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4172. }
  4173. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4174. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4175. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4176. continue
  4177. }
  4178. _content = $$("div", {
  4179. className: "U_MD_D_KO",
  4180. "onmousedown": U.UF.C.closure(function (obj) {
  4181. //防止拖动图标即打开了桌面应用
  4182. U.MD.D.click(this, obj);
  4183. }, [_szscOrganizerDeskIconInfo[i]]),
  4184. "onclick": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_szscOrganizerDeskIconInfo[i]])
  4188. }, _frag); //
  4189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4192. }
  4193. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4194. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4195. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4196. continue
  4197. }
  4198. _content = $$("div", {
  4199. className: "U_MD_D_KO",
  4200. "onmousedown": U.UF.C.closure(function (obj) {
  4201. //防止拖动图标即打开了桌面应用
  4202. U.MD.D.click(this, obj);
  4203. }, [_nsfxTeacherDeskIconInfo[i]]),
  4204. "onclick": U.UF.C.closure(function (obj) {
  4205. //防止拖动图标即打开了桌面应用
  4206. U.MD.D.click(this, obj);
  4207. }, [_nsfxTeacherDeskIconInfo[i]])
  4208. }, _frag); //
  4209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4212. }
  4213. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4214. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4215. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4216. continue
  4217. }
  4218. _content = $$("div", {
  4219. className: "U_MD_D_KO",
  4220. "onmousedown": U.UF.C.closure(function (obj) {
  4221. //防止拖动图标即打开了桌面应用
  4222. U.MD.D.click(this, obj);
  4223. }, [_stiaTeacherDeskIconInfo[i]]),
  4224. "onclick": U.UF.C.closure(function (obj) {
  4225. //防止拖动图标即打开了桌面应用
  4226. U.MD.D.click(this, obj);
  4227. }, [_stiaTeacherDeskIconInfo[i]])
  4228. }, _frag); //
  4229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4232. }
  4233. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4234. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4235. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4236. continue
  4237. }
  4238. _content = $$("div", {
  4239. className: "U_MD_D_KO",
  4240. "onmousedown": U.UF.C.closure(function (obj) {
  4241. //防止拖动图标即打开了桌面应用
  4242. U.MD.D.click(this, obj);
  4243. }, [_szdjgTeacherDeskIconInfo[i]]),
  4244. "onclick": U.UF.C.closure(function (obj) {
  4245. //防止拖动图标即打开了桌面应用
  4246. U.MD.D.click(this, obj);
  4247. }, [_szdjgTeacherDeskIconInfo[i]])
  4248. }, _frag); //
  4249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4252. }
  4253. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4254. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4255. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4256. continue
  4257. }
  4258. _content = $$("div", {
  4259. className: "U_MD_D_KO",
  4260. "onmousedown": U.UF.C.closure(function (obj) {
  4261. //防止拖动图标即打开了桌面应用
  4262. U.MD.D.click(this, obj);
  4263. }, [_x010607TeacherDeskIconInfo[i]]),
  4264. "onclick": U.UF.C.closure(function (obj) {
  4265. //防止拖动图标即打开了桌面应用
  4266. U.MD.D.click(this, obj);
  4267. }, [_x010607TeacherDeskIconInfo[i]])
  4268. }, _frag); //
  4269. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4270. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4271. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4272. }
  4273. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4274. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4275. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4276. continue
  4277. }
  4278. _content = $$("div", {
  4279. className: "U_MD_D_KO",
  4280. "onmousedown": U.UF.C.closure(function (obj) {
  4281. //防止拖动图标即打开了桌面应用
  4282. U.MD.D.click(this, obj);
  4283. }, [_xhlyTeacherDeskIconInfo[i]]),
  4284. "onclick": U.UF.C.closure(function (obj) {
  4285. //防止拖动图标即打开了桌面应用
  4286. U.MD.D.click(this, obj);
  4287. }, [_xhlyTeacherDeskIconInfo[i]])
  4288. }, _frag); //
  4289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4292. }
  4293. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4294. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4295. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4296. continue
  4297. }
  4298. _content = $$("div", {
  4299. className: "U_MD_D_KO",
  4300. "onmousedown": U.UF.C.closure(function (obj) {
  4301. //防止拖动图标即打开了桌面应用
  4302. U.MD.D.click(this, obj);
  4303. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4304. "onclick": U.UF.C.closure(function (obj) {
  4305. //防止拖动图标即打开了桌面应用
  4306. U.MD.D.click(this, obj);
  4307. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4308. }, _frag); //
  4309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4312. }
  4313. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4314. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4315. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4316. continue
  4317. }
  4318. _content = $$("div", {
  4319. className: "U_MD_D_KO",
  4320. "onmousedown": U.UF.C.closure(function (obj) {
  4321. //防止拖动图标即打开了桌面应用
  4322. U.MD.D.click(this, obj);
  4323. }, [_x010503TeacherDeskIconInfo[i]]),
  4324. "onclick": U.UF.C.closure(function (obj) {
  4325. //防止拖动图标即打开了桌面应用
  4326. U.MD.D.click(this, obj);
  4327. }, [_x010503TeacherDeskIconInfo[i]])
  4328. }, _frag); //
  4329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4332. }
  4333. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4334. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4335. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4336. continue
  4337. }
  4338. _content = $$("div", {
  4339. className: "U_MD_D_KO",
  4340. "onmousedown": U.UF.C.closure(function (obj) {
  4341. //防止拖动图标即打开了桌面应用
  4342. U.MD.D.click(this, obj);
  4343. }, [_x010504TeacherDeskIconInfo[i]]),
  4344. "onclick": U.UF.C.closure(function (obj) {
  4345. //防止拖动图标即打开了桌面应用
  4346. U.MD.D.click(this, obj);
  4347. }, [_x010504TeacherDeskIconInfo[i]])
  4348. }, _frag); //
  4349. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4350. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4351. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4352. }
  4353. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4354. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4355. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4356. continue
  4357. }
  4358. _content = $$("div", {
  4359. className: "U_MD_D_KO",
  4360. "onmousedown": U.UF.C.closure(function (obj) {
  4361. //防止拖动图标即打开了桌面应用
  4362. U.MD.D.click(this, obj);
  4363. }, [_x010505TeacherDeskIconInfo[i]]),
  4364. "onclick": U.UF.C.closure(function (obj) {
  4365. //防止拖动图标即打开了桌面应用
  4366. U.MD.D.click(this, obj);
  4367. }, [_x010505TeacherDeskIconInfo[i]])
  4368. }, _frag); //
  4369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4372. }
  4373. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4374. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4375. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4376. continue
  4377. }
  4378. _content = $$("div", {
  4379. className: "U_MD_D_KO",
  4380. "onmousedown": U.UF.C.closure(function (obj) {
  4381. //防止拖动图标即打开了桌面应用
  4382. U.MD.D.click(this, obj);
  4383. }, [_x010404TeacherDeskIconInfo[i]]),
  4384. "onclick": U.UF.C.closure(function (obj) {
  4385. //防止拖动图标即打开了桌面应用
  4386. U.MD.D.click(this, obj);
  4387. }, [_x010404TeacherDeskIconInfo[i]])
  4388. }, _frag); //
  4389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4392. }
  4393. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4394. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4395. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4396. continue
  4397. }
  4398. _content = $$("div", {
  4399. className: "U_MD_D_KO",
  4400. "onmousedown": U.UF.C.closure(function (obj) {
  4401. //防止拖动图标即打开了桌面应用
  4402. U.MD.D.click(this, obj);
  4403. }, [_x010204TeacherDeskIconInfo[i]]),
  4404. "onclick": U.UF.C.closure(function (obj) {
  4405. //防止拖动图标即打开了桌面应用
  4406. U.MD.D.click(this, obj);
  4407. }, [_x010204TeacherDeskIconInfo[i]])
  4408. }, _frag); //
  4409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4412. }
  4413. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4414. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4415. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4416. continue
  4417. }
  4418. _content = $$("div", {
  4419. className: "U_MD_D_KO",
  4420. "onmousedown": U.UF.C.closure(function (obj) {
  4421. //防止拖动图标即打开了桌面应用
  4422. U.MD.D.click(this, obj);
  4423. }, [_x320101TeacherDeskIconInfo[i]]),
  4424. "onclick": U.UF.C.closure(function (obj) {
  4425. //防止拖动图标即打开了桌面应用
  4426. U.MD.D.click(this, obj);
  4427. }, [_x320101TeacherDeskIconInfo[i]])
  4428. }, _frag); //
  4429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4432. }
  4433. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4434. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4435. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4436. continue
  4437. }
  4438. _content = $$("div", {
  4439. className: "U_MD_D_KO",
  4440. "onmousedown": U.UF.C.closure(function (obj) {
  4441. //防止拖动图标即打开了桌面应用
  4442. U.MD.D.click(this, obj);
  4443. }, [_trailTeacherDeskIconInfo[i]]),
  4444. "onclick": U.UF.C.closure(function (obj) {
  4445. //防止拖动图标即打开了桌面应用
  4446. U.MD.D.click(this, obj);
  4447. }, [_trailTeacherDeskIconInfo[i]])
  4448. }, _frag); //
  4449. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4450. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4451. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4452. }
  4453. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4454. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4455. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4456. continue
  4457. }
  4458. _content = $$("div", {
  4459. className: "U_MD_D_KO",
  4460. "onmousedown": U.UF.C.closure(function (obj) {
  4461. //防止拖动图标即打开了桌面应用
  4462. U.MD.D.click(this, obj);
  4463. }, [_trialTeacherDeskIconInfo[i]]),
  4464. "onclick": U.UF.C.closure(function (obj) {
  4465. //防止拖动图标即打开了桌面应用
  4466. U.MD.D.click(this, obj);
  4467. }, [_trialTeacherDeskIconInfo[i]])
  4468. }, _frag); //
  4469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4472. }
  4473. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4474. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4475. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4476. continue
  4477. }
  4478. _content = $$("div", {
  4479. className: "U_MD_D_KO",
  4480. "onmousedown": U.UF.C.closure(function (obj) {
  4481. //防止拖动图标即打开了桌面应用
  4482. U.MD.D.click(this, obj);
  4483. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4484. "onclick": U.UF.C.closure(function (obj) {
  4485. //防止拖动图标即打开了桌面应用
  4486. U.MD.D.click(this, obj);
  4487. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4488. }, _frag); //
  4489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4492. }
  4493. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4494. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4495. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4496. continue
  4497. }
  4498. _content = $$("div", {
  4499. className: "U_MD_D_KO",
  4500. "onmousedown": U.UF.C.closure(function (obj) {
  4501. //防止拖动图标即打开了桌面应用
  4502. U.MD.D.click(this, obj);
  4503. }, [_szsyTeacherDeskIconInfo[i]]),
  4504. "onclick": U.UF.C.closure(function (obj) {
  4505. //防止拖动图标即打开了桌面应用
  4506. U.MD.D.click(this, obj);
  4507. }, [_szsyTeacherDeskIconInfo[i]])
  4508. }, _frag); //
  4509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4512. }
  4513. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4514. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4515. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4516. continue
  4517. }
  4518. _content = $$("div", {
  4519. className: "U_MD_D_KO",
  4520. "onmousedown": U.UF.C.closure(function (obj) {
  4521. //防止拖动图标即打开了桌面应用
  4522. U.MD.D.click(this, obj);
  4523. }, [_x010608TeacherDeskIconInfo[i]]),
  4524. "onclick": U.UF.C.closure(function (obj) {
  4525. //防止拖动图标即打开了桌面应用
  4526. U.MD.D.click(this, obj);
  4527. }, [_x010608TeacherDeskIconInfo[i]])
  4528. }, _frag); //
  4529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4532. }
  4533. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4534. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4535. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4536. continue
  4537. }
  4538. _content = $$("div", {
  4539. className: "U_MD_D_KO",
  4540. "onmousedown": U.UF.C.closure(function (obj) {
  4541. //防止拖动图标即打开了桌面应用
  4542. U.MD.D.click(this, obj);
  4543. }, [_x010611TeacherDeskIconInfo[i]]),
  4544. "onclick": U.UF.C.closure(function (obj) {
  4545. //防止拖动图标即打开了桌面应用
  4546. U.MD.D.click(this, obj);
  4547. }, [_x010611TeacherDeskIconInfo[i]])
  4548. }, _frag); //
  4549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4552. }
  4553. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4554. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4555. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4556. continue
  4557. }
  4558. _content = $$("div", {
  4559. className: "U_MD_D_KO",
  4560. "onmousedown": U.UF.C.closure(function (obj) {
  4561. //防止拖动图标即打开了桌面应用
  4562. U.MD.D.click(this, obj);
  4563. }, [_x010612TeacherDeskIconInfo[i]]),
  4564. "onclick": U.UF.C.closure(function (obj) {
  4565. //防止拖动图标即打开了桌面应用
  4566. U.MD.D.click(this, obj);
  4567. }, [_x010612TeacherDeskIconInfo[i]])
  4568. }, _frag); //
  4569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4572. }
  4573. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4574. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4575. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4576. continue
  4577. }
  4578. _content = $$("div", {
  4579. className: "U_MD_D_KO",
  4580. "onmousedown": U.UF.C.closure(function (obj) {
  4581. //防止拖动图标即打开了桌面应用
  4582. U.MD.D.click(this, obj);
  4583. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4584. "onclick": U.UF.C.closure(function (obj) {
  4585. //防止拖动图标即打开了桌面应用
  4586. U.MD.D.click(this, obj);
  4587. }, [_tianyuanTeacherDeskIconInfo[i]])
  4588. }, _frag); //
  4589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4592. }
  4593. } else {
  4594. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4595. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4596. continue
  4597. }
  4598. _content = $$("div", {
  4599. className: "U_MD_D_KO",
  4600. "onmousedown": U.UF.C.closure(function (obj) {
  4601. //防止拖动图标即打开了桌面应用
  4602. U.MD.D.click(this, obj);
  4603. }, [_teacherDesktopIconInfo[i]]),
  4604. "onclick": U.UF.C.closure(function (obj) {
  4605. //防止拖动图标即打开了桌面应用
  4606. U.MD.D.click(this, obj);
  4607. }, [_teacherDesktopIconInfo[i]])
  4608. }, _frag); //
  4609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4612. }
  4613. }
  4614. } else {
  4615. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4616. _content = $$("div", {
  4617. className: "U_MD_D_KO",
  4618. style: { 'width': '124px', 'height': '145px' },
  4619. "onmousedown": U.UF.C.closure(function (obj) {
  4620. //防止拖动图标即打开了桌面应用
  4621. U.MD.D.click(this, obj);
  4622. }, [_easyDesktopIconInfo[i]]),
  4623. "onclick": U.UF.C.closure(function (obj) {
  4624. //防止拖动图标即打开了桌面应用
  4625. U.MD.D.click(this, obj);
  4626. }, [_easyDesktopIconInfo[i]])
  4627. }, _frag); //
  4628. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4631. }
  4632. }
  4633. if (type == 1) {
  4634. //加载好后给图标定位
  4635. U.MD.D.iconPostion($(_frag).Child());
  4636. } else {
  4637. //加载好后给图标定位
  4638. U.MD.D.iconPostion2($(_frag).Child());
  4639. }
  4640. //把图标加载到页面
  4641. el.appendChild(_frag);
  4642. }
  4643. /**
  4644. * 显示任务栏
  4645. *
  4646. * @param {element} 桌面元素
  4647. */
  4648. U.MD.D.I.displayTaskbar = function (el) {
  4649. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4650. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4651. //任务栏位置变化
  4652. U.selectEl(el).css({ "bottom": "0px" });
  4653. //桌面位置变话
  4654. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4655. }
  4656. }
  4657. //#region 桌面图标拖动逻辑
  4658. /**
  4659. * 桌面排列图标
  4660. *
  4661. * @param {element} 桌面元素
  4662. * @param {object} 上下相距的距离
  4663. * @param {object} 左右相距的距离
  4664. * @return {object} 命名空间
  4665. */
  4666. U.MD.D.iconPostion = function (childs, top, left) {
  4667. var i; //用于循环处理
  4668. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4669. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4670. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4671. for (i = 0; i < childs.length; i++) {
  4672. //如果竖排top超过了范围处理
  4673. if (top + 95 > US.height - 10) {
  4674. //left超过了页面范围处理,则向上重叠打印处理
  4675. if ((left + 180) > US.width) {
  4676. top -= 110;
  4677. left -= 90;
  4678. }
  4679. //没有超过范围,那么left+90添加到下一个竖排打印
  4680. else {
  4681. left += 90;
  4682. top = 15;
  4683. };
  4684. }
  4685. //给图标的位置赋值
  4686. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4687. if (i < childs.length - 1) {
  4688. //页面图标每次向下加95
  4689. top += 95;
  4690. }
  4691. }
  4692. //返回最后调用的图标的位置
  4693. return [top, left];
  4694. }
  4695. /**
  4696. * 桌面排列图标
  4697. *
  4698. * @param {element} 桌面元素
  4699. * @param {object} 上下相距的距离
  4700. * @param {object} 左右相距的距离
  4701. * @return {object} 命名空间
  4702. */
  4703. U.MD.D.iconPostion2 = function (childs, top, left) {
  4704. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4705. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4706. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4707. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4708. for (i = 0; i < childs.length; i++) {
  4709. //如果竖排top超过了范围处理
  4710. if (left + 150 > US.width - 10) {
  4711. //left超过了页面范围处理,则向上重叠打印处理
  4712. if ((top + 180) > US.Height) {
  4713. top -= 150;
  4714. left -= 150;
  4715. }
  4716. //没有超过范围,那么left+90添加到下一个竖排打印
  4717. else {
  4718. top += 150;
  4719. left = ol;
  4720. };
  4721. }
  4722. //给图标的位置赋值
  4723. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4724. if (i < childs.length - 1) {
  4725. //页面图标每次向下加95
  4726. left += 150;
  4727. }
  4728. }
  4729. //返回最后调用的图标的位置
  4730. return [top, left];
  4731. }
  4732. /**
  4733. * 桌面点击事件逻辑
  4734. *
  4735. * @param {element} 桌面元素
  4736. * @param {object} 上下相距的距离
  4737. * @param {object} 左右相距的距离
  4738. * @return {object} 命名空间
  4739. */
  4740. U.MD.D.click = function (el, obj) {
  4741. var _buttonnumber = event.button; //点击的按钮的事件值
  4742. var _userinfo = US.userInfo;
  4743. U.UF.EV.stopBubble(); //阻止向上冒泡
  4744. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4745. if (_buttonnumber < 2) {
  4746. //如果是click事件的处理
  4747. if (event.type == "click") {
  4748. //如果元素在mousemove事件中没有移动则出发click事件
  4749. if (!U.MD.D.I.IsDrag) {
  4750. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4751. U.alert("请先登录您的账号!");
  4752. setTimeout(() => {
  4753. U.MD.U.L.login();
  4754. }, 2000);
  4755. } else {
  4756. //打开应用处理
  4757. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4758. }
  4759. }
  4760. }
  4761. //如果是mouse事件的处理
  4762. else {
  4763. if (US.Config.type == '1') {
  4764. //拖动处理,添加拖动和拖动结束事件
  4765. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4766. }
  4767. }
  4768. U.MD.D.I.IsDrag = false;
  4769. }
  4770. }
  4771. /**
  4772. * 拖动的处理
  4773. *
  4774. */
  4775. U.MD.D.iconMove = function () {
  4776. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4777. U.MD.D.I.IsDrag = true;
  4778. }
  4779. /**
  4780. * 拖动结束后,这里是定位处理,以网状的形式定位
  4781. *
  4782. * @param {element} 拖动的元素
  4783. * @return {object} 命名空间
  4784. */
  4785. U.MD.D.iconUp = function (el) {
  4786. var _top = 15,
  4787. _left = 20,
  4788. _margin,
  4789. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4790. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4791. if (_positioninfo["OT"] > 15) {
  4792. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4793. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4794. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4795. }
  4796. if (_positioninfo["OL"] > 20) {
  4797. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4798. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4799. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4800. }
  4801. //while循环判断么一个重叠的元素
  4802. do {
  4803. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4804. _top = _positioninfo[0] + 95; //得到定位后的top
  4805. _left = _positioninfo[1]; //得到定位后的left
  4806. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4807. }
  4808. /**
  4809. * 判断拖动后图标是否重叠
  4810. *
  4811. * @param {element} 拖动的元素
  4812. * @param {element} 桌面所有的元素
  4813. * @param {array} 拖动元素的位置
  4814. ----------[0] 上 top
  4815. ----------[1] 左 left
  4816. * @return {object} 命名空间
  4817. */
  4818. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4819. //循环所有的图标
  4820. for (var i = 0; i < childs.length; i++) {
  4821. //判断有没有和该图标诶子重叠的元素
  4822. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4823. return childs[i]; //如果有返回
  4824. }
  4825. }
  4826. }
  4827. //#endregion
  4828. //#endregion
  4829. //#region 桌面应用
  4830. /**
  4831. * 打开应用
  4832. *
  4833. * @param {string} 类型
  4834. -----------------Disk 网盘系统
  4835. -----------------PDisk 学习系统网盘
  4836. -----------------Poto 图片
  4837. -----------------Video 视频
  4838. -----------------Music 音乐
  4839. -----------------Word word
  4840. -----------------Excel excel
  4841. -----------------Txt 记事本
  4842. -----------------PB 学习系统
  4843. -----------------Blog 朋友圈系统
  4844. -----------------FTP ftp系统
  4845. -----------------Group 好友群
  4846. -----------------SY 首页系统
  4847. -----------------Set 个人设置
  4848. -----------------XSet 系统设置
  4849. -----------------App 我们所有的app
  4850. -----------------BC c.1473.cn 平台
  4851. -----------------CWeb d.1473.cn 变成平台
  4852. -----------------其他的外联系统 我们统一用iframe打开
  4853. * @param {array} 类型
  4854. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4855. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4856. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4857. 如果第一个参数为其他,则无第二个参数
  4858. * @returns {array}
  4859. */
  4860. window.addEventListener('message', function (e) { // 监听 message 事件
  4861. // alert(e.data.type);
  4862. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4863. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4864. //3是展示全部阶段 2学生 1老师 4专家
  4865. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4866. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4867. //3是展示全部阶段 2学生 1老师 4专家
  4868. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4869. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4870. //3是展示全部阶段 2学生 1老师 4专家
  4871. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4872. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4873. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4874. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4875. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4876. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4877. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4878. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4879. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4880. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4881. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4882. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4883. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4884. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4885. //3是展示全部阶段 2学生 1老师 4专家
  4886. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4887. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4888. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4889. U.MD.D.I.selectUser();
  4890. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4891. var _formel = document.getElementById("study");
  4892. U.UF.F.windowZooming(_formel);
  4893. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4894. var _formel = document.getElementById("studyDetail");
  4895. U.UF.F.windowZooming(_formel);
  4896. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4897. var _formel = document.getElementById("studyDetail");
  4898. U.UF.F.windowZooming(_formel);
  4899. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4900. var _formel = document.getElementById("studentStudy");
  4901. U.UF.F.windowZooming(_formel);
  4902. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4903. // var _formel = document.getElementById("study");
  4904. //如果最大化了,那么就把他缩小
  4905. // if (_formel.ismaximize) {
  4906. // return;
  4907. // }
  4908. // U.UF.F.windowZooming(_formel);
  4909. // U.UF.F.topWindow(_formel);
  4910. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4911. // var _formel = document.getElementById("studyDetail");
  4912. //如果最大化了,那么就把他缩小
  4913. // if (_formel.ismaximize) {
  4914. // return;
  4915. // }
  4916. // U.UF.F.windowZooming(_formel);
  4917. // U.UF.F.topWindow(_formel);
  4918. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4919. // var _formel = document.getElementById("studentStudy");
  4920. // if (_formel.ismaximize) {
  4921. // return;
  4922. // }
  4923. // U.UF.F.windowZooming(_formel);
  4924. // U.UF.F.topWindow(_formel);
  4925. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4926. var _formel = document.getElementById("study");
  4927. // if (_formel.ismaximize) {
  4928. // return;
  4929. // }
  4930. // U.UF.F.windowZooming(_formel);
  4931. U.UF.F.topWindow(_formel);
  4932. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4933. var _formel = document.getElementById("studentIndex");
  4934. U.UF.F.windowZooming(_formel);
  4935. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4936. var _formel = document.getElementById("studyDetailS");
  4937. U.UF.F.windowZooming(_formel);
  4938. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4939. var _formel = document.getElementById("studioIndex");
  4940. U.UF.F.windowZooming(_formel);
  4941. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4942. var _formel = document.getElementById("studyDetailStudio");
  4943. U.UF.F.windowZooming(_formel);
  4944. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4945. var _formel = document.getElementById("studyDetailStudio");
  4946. U.UF.F.windowZooming(_formel);
  4947. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4948. var _formel = document.getElementById("studyDetailNT");
  4949. U.UF.F.windowZooming(_formel);
  4950. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4951. var _formel = document.getElementById("studyDetailS");
  4952. U.UF.F.windowZooming(_formel);
  4953. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4954. var _formel = document.getElementById("studyDetailS");
  4955. U.UF.F.topWindow(_formel);
  4956. } else if (e.data.tools && e.data.tools == "1") {
  4957. // U.MD.D.I.openApplication("whiteboard")
  4958. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4959. } else if (e.data.tools && e.data.tools == "2") {
  4960. U.MD.D.I.openApplication("note")
  4961. } else if (e.data.tools && e.data.tools == "3") {
  4962. // U.MD.D.I.openApplication("mind")
  4963. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4964. } else if (e.data.tools && e.data.tools == "4") {
  4965. U.MD.D.I.openApplication("investigation")
  4966. } else if (e.data.tools && e.data.tools == "6") {
  4967. // U.MD.D.I.openApplication("doc")
  4968. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4969. } else if (e.data.tools && e.data.tools == "7") {
  4970. // U.MD.D.I.openApplication("mindNetwork")
  4971. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4972. } else if (e.data.tools && e.data.tools == "8") {
  4973. U.MD.D.I.openApplication("library")
  4974. } else if (e.data.tools && e.data.tools == "17") {
  4975. U.MD.D.I.openApplication("stuLibrary")
  4976. } else if (e.data.tools && e.data.tools == "18") {
  4977. U.MD.D.I.openApplication("train")
  4978. } else if (e.data.tools && e.data.tools == "21") {
  4979. U.MD.D.I.openApplication("program")
  4980. } else if (e.data.tools && e.data.tools == "22") {
  4981. U.MD.D.I.openApplication("AIprogram2")
  4982. } else if (e.data.tools && e.data.tools == "23") {
  4983. U.MD.D.I.openApplication("Pythonprogram")
  4984. } else if (e.data.tools && e.data.tools == "24") {
  4985. U.MD.D.I.openApplication("AIprogram")
  4986. } else if (e.data.tools && e.data.tools == "25") {
  4987. U.MD.D.I.openApplication("sys")
  4988. } else if (e.data.tools && e.data.tools == "26") {
  4989. // U.MD.D.I.openApplication("courseDesign")
  4990. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4991. } else if (e.data.tools && e.data.tools == "31") {
  4992. U.MD.D.I.openApplication("netWorkPanel")
  4993. } else if (e.data.tools && e.data.tools == "32") {
  4994. U.MD.D.I.openApplication("codeEdit")
  4995. } else if (e.data.tools && e.data.tools == "57") {
  4996. U.MD.D.I.openApplication("CocoPi")
  4997. } else if (e.data.tools && e.data.tools == "63") {
  4998. U.MD.D.I.openApplication("Wood")
  4999. } else if (e.data.tools && e.data.tools == "58") {
  5000. U.MD.D.I.openApplication("car")
  5001. } else if (e.data.tools && e.data.tools == "59") {
  5002. U.MD.D.I.openApplication("lineSearch")
  5003. } else if (e.data.tools && e.data.tools == "60") {
  5004. U.MD.D.I.openApplication("deepLearning")
  5005. } else if (e.data.tools && e.data.tools == "61") {
  5006. U.MD.D.I.openApplication("allHistory")
  5007. } else if (e.data.tools && e.data.tools == "28") {
  5008. U.MD.D.I.openApplication("translation")
  5009. } else if (e.data.tools && e.data.tools == "37") {
  5010. U.MD.D.I.openApplication("mohe")
  5011. } else if (e.data.tools && e.data.tools == "38") {
  5012. U.MD.D.I.openApplication("24game")
  5013. } else if (e.data.tools && e.data.tools == "39") {
  5014. U.MD.D.I.openApplication("GeoGebra")
  5015. } else if (e.data.tools && e.data.tools == "43") {
  5016. U.MD.D.I.openApplication("studentEvaluate")
  5017. } else if (e.data.tools && e.data.tools == "44") {
  5018. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5019. } else if (e.data.tools && e.data.tools == "46") {
  5020. U.MD.D.I.openApplication("project")
  5021. } else if (e.data.tools && e.data.tools == "71") {
  5022. U.MD.D.I.openApplication("aigptCourse")
  5023. } else if (e.data.tools && e.data.tools == "72") {
  5024. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5025. } else if (e.data.tools && e.data.tools == "1s") {
  5026. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5027. } else if (e.data.tools && e.data.tools == "3s") {
  5028. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5029. } else if (e.data.tools && e.data.tools == "6s") {
  5030. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5031. } else if (e.data.tools && e.data.tools == "1studio") {
  5032. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5033. } else if (e.data.tools && e.data.tools == "3studio") {
  5034. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5035. } else if (e.data.tools && e.data.tools == "6studio") {
  5036. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5037. } else if (e.data.tools && e.data.tools == "3y") {
  5038. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5039. } else if (e.data.tools && e.data.tools == "1y") {
  5040. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5041. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5042. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5043. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5044. U.MD.D.I.openApplication("AIAnalyse")
  5045. } else if (e.data.tools && e.data.tools == "1teacher") {
  5046. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5047. } else if (e.data.tools && e.data.tools == "3teacher") {
  5048. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5049. } else if (e.data.tools && e.data.tools == "7teacher") {
  5050. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5051. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5052. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5053. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5054. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5055. } else if (e.data.tools && e.data.tools == "1E") {
  5056. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5057. } else if (e.data.tools && e.data.tools == "3E") {
  5058. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5059. } else if (e.data.tools && e.data.tools == "57y") {
  5060. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5061. } else if (e.data.tools && e.data.tools == "57u") {
  5062. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5063. } else if (e.data.tools && e.data.tools == "57teacher") {
  5064. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5065. } else if (e.data.tools && e.data.tools == "64") {
  5066. U.MD.D.I.openApplication("AIChat")
  5067. } else if (e.data.tools && e.data.tools == "66") {
  5068. U.MD.D.I.openApplication("formulaEdi")
  5069. } else if (e.data.tools && e.data.tools == "67") {
  5070. U.MD.D.I.openApplication("molStr")
  5071. } else if (e.data.tools && e.data.tools == "68") {
  5072. U.MD.D.I.openApplication("timeAxis")
  5073. } else if (e.data.tools && e.data.tools == "openCourse") {
  5074. let _data = {
  5075. typea: e.data.typea || '',
  5076. typeb: e.data.typeb || '',
  5077. typed: e.data.typed || '',
  5078. }
  5079. U.MD.D.I.openInApplication("index", _data)
  5080. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5081. let _data = {
  5082. classid: e.data.classid || '',
  5083. }
  5084. U.MD.D.I.openInApplication("dataClass", _data)
  5085. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5086. let _data = {
  5087. cid: e.data.cid || '',
  5088. gid: e.data.gid || '',
  5089. }
  5090. U.MD.D.I.openInApplication("opencCscl", _data)
  5091. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5092. U.MD.D.I.openApplication("dataBoardTest")
  5093. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5094. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5095. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5096. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5097. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5098. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5099. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5100. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5101. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5102. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5103. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5104. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5105. }else if (e.data.tools && e.data.tools == "loginSz") {
  5106. U.MD.D.I.openInApplication("loginSz")
  5107. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5108. if($('#classroom_observation_board')[0]){
  5109. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5110. }
  5111. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5112. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5113. if($('#classroom_observation_ob_comment')[0]){
  5114. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5115. }
  5116. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5117. }else if (e.data.tools && e.data.tools == "logout"){
  5118. U.MD.U.LO.logoutSystem()
  5119. }else if (e.data.tools && e.data.tools == "getLogin"){
  5120. let _iframe = $('#UI_Login')[0];
  5121. if (_iframe) {
  5122. var userInfo = US.userInfo;
  5123. var type = 2
  5124. if(userInfo && userInfo.userid){
  5125. type = 1
  5126. }
  5127. _contentWindow = _iframe.contentWindow;
  5128. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5129. }
  5130. }
  5131. });
  5132. U.MD.D.I.selectUser = function () {
  5133. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5134. if (res.value[0].length > 0) {
  5135. US.userInfo = res.value[0][0];
  5136. $(".userName")[0].innerHTML = US.userInfo.username;
  5137. }
  5138. }, [], { "type": "GET", "withCredentials": true });
  5139. }
  5140. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5141. var _userinfo = US.userInfo, //登录用户信息
  5142. _userid = US.userInfo.userid, //登录用户id
  5143. _oid = _userinfo.organizeid,
  5144. _type = US.userInfo.type,
  5145. _org = US.userInfo.org,
  5146. _role = US.userInfo.role,
  5147. _classId = US.userInfo.classid;
  5148. if (_type == 4) {
  5149. tType = 4
  5150. }
  5151. switch (str) {
  5152. case "studyDetailNT": //无终端模式
  5153. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5154. setTimeout(() => {
  5155. U.MD.U.L.login();
  5156. }, 2000);
  5157. } else {
  5158. _formdiv = new U.UF.UI.form(
  5159. "课程详情",
  5160. $$("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 }), {
  5161. "id": "studyDetailNT",
  5162. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5163. "onresize": function () { }
  5164. }, {
  5165. closecallback: function () { }
  5166. }, { "style": { "height": "36px" } }).form; //创建窗体
  5167. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5168. break;
  5169. }
  5170. case "studyDetail":
  5171. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5172. setTimeout(() => {
  5173. U.MD.U.L.login();
  5174. }, 2000);
  5175. } else {
  5176. _formdiv = new U.UF.UI.form(
  5177. "课程详情",
  5178. $$("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 }), {
  5179. "id": "studyDetail",
  5180. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5181. "onresize": function () { }
  5182. }, {
  5183. closecallback: function () { }
  5184. }, { "style": { "height": "36px" } }).form; //创建窗体
  5185. _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); } }
  5186. break;
  5187. }
  5188. case "studyDetailTrain":
  5189. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5190. setTimeout(() => {
  5191. U.MD.U.L.login();
  5192. }, 2000);
  5193. } else {
  5194. _formdiv = new U.UF.UI.form(
  5195. "培训详情",
  5196. $$("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 }), {
  5197. "id": "studyDetailTrain",
  5198. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5199. "onresize": function () { }
  5200. }, {
  5201. closecallback: function () { }
  5202. }, { "style": { "height": "36px" } }).form; //创建窗体
  5203. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5204. break;
  5205. }
  5206. case "studyDetailS":
  5207. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5208. setTimeout(() => {
  5209. U.MD.U.L.login();
  5210. }, 2000);
  5211. } else {
  5212. _formdiv = new U.UF.UI.form(
  5213. "项目详情",
  5214. $$("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 }), {
  5215. "id": "studyDetailS",
  5216. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5217. "onresize": function () { }
  5218. }, {
  5219. closecallback: function () { }
  5220. }, { "style": { "height": "36px" } }).form; //创建窗体
  5221. _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); } }
  5222. break;
  5223. }
  5224. case "studyDetailStudio":
  5225. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5226. setTimeout(() => {
  5227. U.MD.U.L.login();
  5228. }, 2000);
  5229. } else {
  5230. _formdiv = new U.UF.UI.form(
  5231. "工作详情",
  5232. $$("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 }), {
  5233. "id": "studyDetailStudio",
  5234. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5235. "onresize": function () { }
  5236. }, {
  5237. closecallback: function () { }
  5238. }, { "style": { "height": "36px" } }).form; //创建窗体
  5239. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5240. break;
  5241. }
  5242. case "studyDetailS5":
  5243. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5244. setTimeout(() => {
  5245. U.MD.U.L.login();
  5246. }, 2000);
  5247. } else {
  5248. _formdiv = new U.UF.UI.form(
  5249. "项目详情",
  5250. $$("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 }), {
  5251. "id": "studyDetailS",
  5252. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5253. "onresize": function () { }
  5254. }, {
  5255. closecallback: function () { }
  5256. }, { "style": { "height": "36px" } }).form; //创建窗体
  5257. _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); } }
  5258. break;
  5259. }
  5260. case "studyDetailGM":
  5261. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5262. setTimeout(() => {
  5263. U.MD.U.L.login();
  5264. }, 2000);
  5265. } else {
  5266. _formdiv = new U.UF.UI.form(
  5267. "课程详情",
  5268. $$("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 }), {
  5269. "id": "studyDetail",
  5270. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5271. "onresize": function () { }
  5272. }, {
  5273. closecallback: function () { }
  5274. }, { "style": { "height": "36px" } }).form; //创建窗体
  5275. _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); } }
  5276. break;
  5277. }
  5278. case "hanUrl":
  5279. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5280. setTimeout(() => {
  5281. U.MD.U.L.login();
  5282. }, 2000);
  5283. } else {
  5284. _formdiv = new U.UF.UI.form(
  5285. "汉字宫",
  5286. $$("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" }), {
  5287. "id": "hanUrl",
  5288. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5289. "onresize": function () { }
  5290. }, {
  5291. closecallback: function () { }
  5292. }, { "style": { "height": "36px" } }).form; //创建窗体
  5293. _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); } }
  5294. break;
  5295. }
  5296. case "index":
  5297. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5298. setTimeout(() => {
  5299. U.MD.U.L.login();
  5300. }, 2000);
  5301. } else {
  5302. _formdiv = new U.UF.UI.form(
  5303. "课程中心",
  5304. $$("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 }), {
  5305. "id": "study",
  5306. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5307. "onresize": function () { }
  5308. }, {
  5309. closecallback: function () { }
  5310. }, { "style": { "height": "36px" } }).form; //创建窗体
  5311. _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); } }
  5312. break;
  5313. }
  5314. case "dataClass":
  5315. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5316. setTimeout(() => {
  5317. U.MD.U.L.login();
  5318. }, 2000);
  5319. } else {
  5320. _formdiv = new U.UF.UI.form(
  5321. "数据报告",
  5322. $$("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 }), {
  5323. "id": "dataClass",
  5324. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5325. "onresize": function () { }
  5326. }, {
  5327. closecallback: function () { }
  5328. }, { "style": { "height": "36px" } }).form; //创建窗体
  5329. _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); } }
  5330. break;
  5331. }
  5332. case "opencCscl":
  5333. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5334. setTimeout(() => {
  5335. U.MD.U.L.login();
  5336. }, 2000);
  5337. } else {
  5338. _formdiv = new U.UF.UI.form(
  5339. "协同建构",
  5340. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  5341. "id": "futureClass",
  5342. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5343. "onresize": function () { }
  5344. }, {
  5345. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5346. }, { "style": { "height": "36px" } }).form; //创建窗体
  5347. _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); } }
  5348. break;
  5349. }
  5350. case "openCourseUpdate":
  5351. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5352. setTimeout(() => {
  5353. U.MD.U.L.login();
  5354. }, 2000);
  5355. } else {
  5356. _formdiv = new U.UF.UI.form(
  5357. "课程管理",
  5358. $$("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 }), {
  5359. "id": "openCourseUpdate",
  5360. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5361. "onresize": function () { }
  5362. }, {
  5363. closecallback: function () { }
  5364. }, { "style": { "height": "36px" } }).form; //创建窗体
  5365. break;
  5366. }
  5367. case "openNewCourseUpdate":
  5368. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5369. setTimeout(() => {
  5370. U.MD.U.L.login();
  5371. }, 2000);
  5372. } else {
  5373. _formdiv = new U.UF.UI.form(
  5374. "课程管理",
  5375. $$("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 }), {
  5376. "id": "openCourseUpdate",
  5377. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5378. "onresize": function () { }
  5379. }, {
  5380. closecallback: function () { }
  5381. }, { "style": { "height": "36px" } }).form; //创建窗体
  5382. break;
  5383. }
  5384. case "openCourseEUpdate":
  5385. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5386. setTimeout(() => {
  5387. U.MD.U.L.login();
  5388. }, 2000);
  5389. } else {
  5390. _formdiv = new U.UF.UI.form(
  5391. "课程管理",
  5392. $$("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 }), {
  5393. "id": "openCourseUpdate",
  5394. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5395. "onresize": function () { }
  5396. }, {
  5397. closecallback: function () { }
  5398. }, { "style": { "height": "36px" } }).form; //创建窗体
  5399. break;
  5400. }
  5401. case "openCourseAiUpdate":
  5402. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5403. setTimeout(() => {
  5404. U.MD.U.L.login();
  5405. }, 2000);
  5406. } else {
  5407. _formdiv = new U.UF.UI.form(
  5408. "课程管理",
  5409. $$("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 }), {
  5410. "id": "openCourseUpdate",
  5411. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5412. "onresize": function () { }
  5413. }, {
  5414. closecallback: function () { }
  5415. }, { "style": { "height": "36px" } }).form; //创建窗体
  5416. break;
  5417. }
  5418. case "openCourseAiUpdate2":
  5419. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5420. setTimeout(() => {
  5421. U.MD.U.L.login();
  5422. }, 2000);
  5423. } else {
  5424. _formdiv = new U.UF.UI.form(
  5425. "课程管理",
  5426. $$("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 }), {
  5427. "id": "openCourseUpdate",
  5428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5429. "onresize": function () { }
  5430. }, {
  5431. closecallback: function () { }
  5432. }, { "style": { "height": "36px" } }).form; //创建窗体
  5433. break;
  5434. }
  5435. case "openCourseNewUpdate":
  5436. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5437. setTimeout(() => {
  5438. U.MD.U.L.login();
  5439. }, 2000);
  5440. } else {
  5441. _formdiv = new U.UF.UI.form(
  5442. "课程管理",
  5443. $$("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 }), {
  5444. "id": "openCourseUpdate",
  5445. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5446. "onresize": function () { }
  5447. }, {
  5448. closecallback: function () { }
  5449. }, { "style": { "height": "36px" } }).form; //创建窗体
  5450. break;
  5451. }
  5452. case "inviteLoginSz":
  5453. _formdiv = new U.UF.UI.form(
  5454. "随机码登录",
  5455. $$("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://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5456. "id": "loginSz",
  5457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5458. "onresize": function () { }
  5459. }, {
  5460. closecallback: function () { }
  5461. }, { "style": { "height": "36px" } }).form; //创建窗体
  5462. break;
  5463. case "loginSz":
  5464. _formdiv = new U.UF.UI.form(
  5465. "教师登录",
  5466. $$("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" }), {
  5467. "id": "loginSz",
  5468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5469. "onresize": function () { }
  5470. }, {
  5471. closecallback: function () { }
  5472. }, { "style": { "height": "36px" } }).form; //创建窗体
  5473. break;
  5474. case "teacher":
  5475. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5476. setTimeout(() => {
  5477. U.MD.U.L.login();
  5478. }, 2000);
  5479. } else {
  5480. _formdiv = new U.UF.UI.form(
  5481. "教师管理",
  5482. $$("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 }), {
  5483. "id": "teacher",
  5484. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5485. "onresize": function () { }
  5486. }, {
  5487. closecallback: function () { }
  5488. }, { "style": { "height": "36px" } }).form; //创建窗体
  5489. break;
  5490. }
  5491. case "dataBoardSZArea":
  5492. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5493. setTimeout(() => {
  5494. U.MD.U.L.login();
  5495. }, 2000);
  5496. } else {
  5497. _formdiv = new U.UF.UI.form(
  5498. "综合数据看板",
  5499. $$("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 }), {
  5500. "id": "dataBoardSZArea",
  5501. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5502. "onresize": function () { }
  5503. }, {
  5504. closecallback: function () { }
  5505. }, { "style": { "height": "36px" } }).form; //创建窗体
  5506. break;
  5507. }
  5508. case "dataBoardSZCity":
  5509. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5510. setTimeout(() => {
  5511. U.MD.U.L.login();
  5512. }, 2000);
  5513. } else {
  5514. _formdiv = new U.UF.UI.form(
  5515. "综合数据看板",
  5516. $$("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 }), {
  5517. "id": "dataBoardSZCity",
  5518. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5519. "onresize": function () { }
  5520. }, {
  5521. closecallback: function () { }
  5522. }, { "style": { "height": "36px" } }).form; //创建窗体
  5523. break;
  5524. }
  5525. case "classroom_observation_board":
  5526. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5527. setTimeout(() => {
  5528. U.MD.U.L.login();
  5529. }, 2000);
  5530. } else {
  5531. _formdiv = new U.UF.UI.form(
  5532. "课堂观察",
  5533. $$("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 }), {
  5534. "id": "classroom_observation_board",
  5535. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5536. "onresize": function () { }
  5537. }, {
  5538. closecallback: function () { }
  5539. }, { "style": { "height": "36px" } }).form; //创建窗体
  5540. break;
  5541. }
  5542. case "classroom_observation_ob_comment":
  5543. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5544. setTimeout(() => {
  5545. U.MD.U.L.login();
  5546. }, 2000);
  5547. } else {
  5548. _formdiv = new U.UF.UI.form(
  5549. "课堂审核",
  5550. $$("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 }), {
  5551. "id": "classroom_observation_ob_comment",
  5552. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5553. "onresize": function () { }
  5554. }, {
  5555. closecallback: function () { }
  5556. }, { "style": { "height": "36px" } }).form; //创建窗体
  5557. break;
  5558. }
  5559. case "gptConfig":
  5560. _formdiv = new U.UF.UI.form(
  5561. data.name ? data.name : "应用中心",
  5562. $$("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": data.url }), {
  5563. "id": "gptConfig" + data.id,
  5564. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5565. "onresize": function () { }
  5566. }, {
  5567. closecallback: function () { }
  5568. }, { "style": { "height": "36px" } }).form; //创建窗体
  5569. break;
  5570. }
  5571. }
  5572. U.MD.D.I.openApplication = function (str, obj, info) {
  5573. obj = obj || {};
  5574. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5575. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5576. _userinfo = US.userInfo, //登录用户信息
  5577. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5578. _oid = obj.organizeid || _userinfo.organizeid,
  5579. _type = US.userInfo.type,
  5580. _org = obj.org || US.userInfo.org,
  5581. _role = US.userInfo.role,
  5582. _classId = US.userInfo.classid,
  5583. _TscreenType = 1
  5584. _screenType = 2,
  5585. _SscreenType = 3;
  5586. let iframeBool = true
  5587. if(U.UF.UI.form.allForm[str]){
  5588. iframeBool = false
  5589. }
  5590. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5591. return;
  5592. }
  5593. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5594. switch (str) {
  5595. case "studnetProject": //好友打开
  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-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5599. "id": "studnetProject",
  5600. "style": { "width": "70%", "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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5606. break;
  5607. case "studentEvaluate": //好友打开
  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-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5611. "id": "studentEvaluate",
  5612. "style": { "width": "70%", "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/evaluation.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 "program":
  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": "https://x.cocorobo.cn" }), {
  5635. "id": "program",
  5636. "style": { "width": "70%", "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/myMessage.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" }), { //"/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 "studentStudy":
  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=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5735. "id": "studentStudy",
  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 "train": //好友打开
  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": "https://xunlian.cocorobo.cn/" }), {
  5747. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5754. break;
  5755. case "mindNetwork": //好友打开
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5766. break;
  5767. case "studentClassRoom": //好友打开
  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-student-table/dist/#/liveRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5771. "id": "studentClassRoom",
  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 == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5784. switch (str) {
  5785. case "studnetProject": //好友打开
  5786. _formdiv = new U.UF.UI.form(
  5787. "我的项目",
  5788. $$("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 }), {
  5789. "id": "studnetProject",
  5790. "style": { "width": "70%", "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 "studentEvaluate": //好友打开
  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-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5801. "id": "studentEvaluate",
  5802. "style": { "width": "70%", "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 "my":
  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/#/data?userid=" + _userid + "&org=" + _org }), {
  5813. "id": "my",
  5814. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5820. break;
  5821. case "program":
  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": "https://x.cocorobo.cn" }), {
  5825. "id": "program",
  5826. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5832. break;
  5833. case "library":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5837. "id": "library",
  5838. "style": { "width": "90%", "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/library.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 "note":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5873. "id": "note",
  5874. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5880. break;
  5881. // case "score":
  5882. // _formdiv = new U.UF.UI.form(
  5883. // "量规评分",
  5884. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5885. // "id": "score",
  5886. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5887. // "onresize": function() {}
  5888. // }, {
  5889. // closecallback: function() {}
  5890. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5891. // _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); } }
  5892. // break;
  5893. case "mind":
  5894. _formdiv = new U.UF.UI.form(
  5895. "思维导图",
  5896. $$("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"
  5897. "id": "mind",
  5898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5899. "onresize": function () { }
  5900. }, {
  5901. closecallback: function () { }
  5902. }, { "style": { "height": "36px" } }).form; //创建窗体
  5903. _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); } }
  5904. break;
  5905. case "doc":
  5906. // U.MD.D.I.isRoom();
  5907. _formdiv = new U.UF.UI.form(
  5908. "协同文档",
  5909. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5910. "id": "doc",
  5911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5912. "onresize": function () { }
  5913. }, {
  5914. closecallback: function () { }
  5915. }, { "style": { "height": "36px" } }).form; //创建窗体
  5916. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5917. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5918. })
  5919. _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); } }
  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 "studentStudy":
  5934. _formdiv = new U.UF.UI.form(
  5935. "课程中心",
  5936. $$("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
  5937. "id": "studentStudy",
  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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5944. break;
  5945. case "mindNetwork": //好友打开
  5946. _formdiv = new U.UF.UI.form(
  5947. "思维网格",
  5948. $$("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 }), {
  5949. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5956. break;
  5957. case "studentClassRoom": //好友打开
  5958. _formdiv = new U.UF.UI.form(
  5959. "实时课堂",
  5960. $$("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 }), {
  5961. "id": "studentClassRoom",
  5962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5963. "onresize": function () { }
  5964. }, {
  5965. closecallback: function () { }
  5966. }, { "style": { "height": "36px" } }).form; //创建窗体
  5967. _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); } }
  5968. setTimeout(() => {
  5969. U.UF.F.windowZooming(_formdiv)
  5970. }, 0);
  5971. break;
  5972. }
  5973. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5974. //选择应用处理
  5975. switch (str) {
  5976. case "project": //好友打开
  5977. _formdiv = new U.UF.UI.form(
  5978. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5979. $$("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 }), {
  5980. "id": "project",
  5981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5982. "onresize": function () { }
  5983. }, {
  5984. closecallback: function () { }
  5985. }, { "style": { "height": "36px" } }).form; //创建窗体
  5986. _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); } }
  5987. break;
  5988. case "student":
  5989. _formdiv = new U.UF.UI.form(
  5990. "学生管理",
  5991. $$("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 }), {
  5992. "id": "student",
  5993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5994. "onresize": function () { }
  5995. }, {
  5996. closecallback: function () { }
  5997. }, { "style": { "height": "36px" } }).form; //创建窗体
  5998. _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); } }
  5999. break;
  6000. case "evaluate":
  6001. _formdiv = new U.UF.UI.form(
  6002. "学生评价",
  6003. $$("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 }), {
  6004. "id": "evaluate",
  6005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6006. "onresize": function () { }
  6007. }, {
  6008. closecallback: function () { }
  6009. }, { "style": { "height": "36px" } }).form; //创建窗体
  6010. _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); } }
  6011. break;
  6012. case "sys":
  6013. _formdiv = new U.UF.UI.form(
  6014. "目标管理",
  6015. $$("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 }), {
  6016. "id": "sys",
  6017. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6018. "onresize": function () { }
  6019. }, {
  6020. closecallback: function () { }
  6021. }, { "style": { "height": "36px" } }).form; //创建窗体
  6022. _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); } }
  6023. break;
  6024. case "courseDesign":
  6025. _formdiv = new U.UF.UI.form(
  6026. "项目设计",
  6027. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6028. "id": "courseDesign",
  6029. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6030. "onresize": function () { }
  6031. }, {
  6032. closecallback: function () { }
  6033. }, { "style": { "height": "36px" } }).form; //创建窗体
  6034. _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); } }
  6035. break;
  6036. case "program":
  6037. _formdiv = new U.UF.UI.form(
  6038. "编程平台",
  6039. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6040. "id": "program",
  6041. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6042. "onresize": function () { }
  6043. }, {
  6044. closecallback: function () { }
  6045. }, { "style": { "height": "36px" } }).form; //创建窗体
  6046. _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); } }
  6047. break;
  6048. case "class":
  6049. _formdiv = new U.UF.UI.form(
  6050. "班级管理",
  6051. $$("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 }), {
  6052. "id": "class",
  6053. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6054. "onresize": function () { }
  6055. }, {
  6056. closecallback: function () { }
  6057. }, { "style": { "height": "36px" } }).form; //创建窗体
  6058. _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); } }
  6059. break;
  6060. case "Grade":
  6061. _formdiv = new U.UF.UI.form(
  6062. "年级管理",
  6063. $$("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 }), {
  6064. "id": "Grade",
  6065. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6066. "onresize": function () { }
  6067. }, {
  6068. closecallback: function () { }
  6069. }, { "style": { "height": "36px" } }).form; //创建窗体
  6070. _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); } }
  6071. break;
  6072. case "teacherOffice":
  6073. _formdiv = new U.UF.UI.form(
  6074. "教研室",
  6075. $$("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 }), {
  6076. "id": "teacherOffice",
  6077. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6078. "onresize": function () { }
  6079. }, {
  6080. closecallback: function () { }
  6081. }, { "style": { "height": "36px" } }).form; //创建窗体
  6082. _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); } }
  6083. break;
  6084. case "my":
  6085. _formdiv = new U.UF.UI.form(
  6086. "我的资料",
  6087. $$("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 }), {
  6088. "id": "my",
  6089. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6090. "onresize": function () { }
  6091. }, {
  6092. closecallback: function () { }
  6093. }, { "style": { "height": "36px" } }).form; //创建窗体
  6094. _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); } }
  6095. break;
  6096. case "notice":
  6097. _formdiv = new U.UF.UI.form(
  6098. "通知公告",
  6099. $$("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 }), {
  6100. "id": "notice",
  6101. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6102. "onresize": function () { }
  6103. }, {
  6104. closecallback: function () { }
  6105. }, { "style": { "height": "36px" } }).form; //创建窗体
  6106. _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); } }
  6107. break;
  6108. case "library":
  6109. _formdiv = new U.UF.UI.form(
  6110. "素材库",
  6111. $$("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 }), {
  6112. "id": "library",
  6113. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6114. "onresize": function () { }
  6115. }, {
  6116. closecallback: function () { }
  6117. }, { "style": { "height": "36px" } }).form; //创建窗体
  6118. _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); } }
  6119. break;
  6120. case "whiteboard":
  6121. _formdiv = new U.UF.UI.form(
  6122. "电子白板",
  6123. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6124. "id": "whiteboard",
  6125. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6126. "onresize": function () { }
  6127. }, {
  6128. closecallback: function () { }
  6129. }, { "style": { "height": "36px" } }).form; //创建窗体
  6130. _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); } }
  6131. break;
  6132. case "investigation":
  6133. _formdiv = new U.UF.UI.form(
  6134. "问卷调查",
  6135. $$("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 }), {
  6136. "id": "investigation",
  6137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6138. "onresize": function () { }
  6139. }, {
  6140. closecallback: function () { }
  6141. }, { "style": { "height": "36px" } }).form; //创建窗体
  6142. _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); } }
  6143. break;
  6144. case "note":
  6145. _formdiv = new U.UF.UI.form(
  6146. "便签分类",
  6147. $$("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 }), {
  6148. "id": "note",
  6149. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6150. "onresize": function () { }
  6151. }, {
  6152. closecallback: function () { }
  6153. }, { "style": { "height": "36px" } }).form; //创建窗体
  6154. _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); } }
  6155. break;
  6156. // case "score":
  6157. // _formdiv = new U.UF.UI.form(
  6158. // "量规评分",
  6159. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6160. // "id": "score",
  6161. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6162. // "onresize": function() {}
  6163. // }, {
  6164. // closecallback: function() {}
  6165. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6166. // _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); } }
  6167. // break;
  6168. case "mind":
  6169. _formdiv = new U.UF.UI.form(
  6170. "思维导图",
  6171. $$("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"
  6172. "id": "mind",
  6173. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6174. "onresize": function () { }
  6175. }, {
  6176. closecallback: function () { }
  6177. }, { "style": { "height": "36px" } }).form; //创建窗体
  6178. _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); } }
  6179. break;
  6180. case "doc":
  6181. // U.MD.D.I.isRoom();
  6182. _formdiv = new U.UF.UI.form(
  6183. "协同文档",
  6184. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6185. "id": "doc",
  6186. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6187. "onresize": function () { }
  6188. }, {
  6189. closecallback: function () { }
  6190. }, { "style": { "height": "36px" } }).form; //创建窗体
  6191. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6192. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6193. })
  6194. _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); } }
  6195. break;
  6196. case "study":
  6197. _formdiv = new U.UF.UI.form(
  6198. "课程中心",
  6199. $$("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
  6200. "id": "study",
  6201. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6202. "onresize": function () { }
  6203. }, {
  6204. closecallback: function () { }
  6205. }, { "style": { "height": "36px" } }).form; //创建窗体
  6206. _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); } }
  6207. break;
  6208. case "mindNetwork": //好友打开
  6209. _formdiv = new U.UF.UI.form(
  6210. "思维网格",
  6211. $$("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 }), {
  6212. "id": "mindNetwork",
  6213. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6214. "onresize": function () { }
  6215. }, {
  6216. closecallback: function () { }
  6217. }, { "style": { "height": "36px" } }).form; //创建窗体
  6218. _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); } }
  6219. break;
  6220. case "train": //好友打开
  6221. _formdiv = new U.UF.UI.form(
  6222. "训练平台",
  6223. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6224. "id": "mindNetwork",
  6225. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6226. "onresize": function () { }
  6227. }, {
  6228. closecallback: function () { }
  6229. }, { "style": { "height": "36px" } }).form; //创建窗体
  6230. _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); } }
  6231. break;
  6232. case "teacherClassRoom": //好友打开
  6233. _formdiv = new U.UF.UI.form(
  6234. "实时课堂",
  6235. $$("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 }), {
  6236. "id": "teacherClassRoom",
  6237. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6238. "onresize": function () { }
  6239. }, {
  6240. closecallback: function () { }
  6241. }, { "style": { "height": "36px" } }).form; //创建窗体
  6242. _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); } }
  6243. setTimeout(() => {
  6244. U.UF.F.windowZooming(_formdiv)
  6245. }, 0);
  6246. break;
  6247. }
  6248. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6249. switch (str) {
  6250. case "project": //好友打开
  6251. _formdiv = new U.UF.UI.form(
  6252. "课程管理",
  6253. $$("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 }), {
  6254. "id": "project",
  6255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6256. "onresize": function () { }
  6257. }, {
  6258. closecallback: function () { }
  6259. }, { "style": { "height": "36px" } }).form; //创建窗体
  6260. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6261. break;
  6262. case "evaluate":
  6263. _formdiv = new U.UF.UI.form(
  6264. "学生评价",
  6265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6266. "id": "evaluate",
  6267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6268. "onresize": function () { }
  6269. }, {
  6270. closecallback: function () { }
  6271. }, { "style": { "height": "36px" } }).form; //创建窗体
  6272. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6273. break;
  6274. case "notice":
  6275. _formdiv = new U.UF.UI.form(
  6276. "通知公告",
  6277. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  6278. "id": "notice",
  6279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6280. "onresize": function () { }
  6281. }, {
  6282. closecallback: function () { }
  6283. }, { "style": { "height": "36px" } }).form; //创建窗体
  6284. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6285. break;
  6286. case "stuLibrary":
  6287. _formdiv = new U.UF.UI.form(
  6288. "学习资料",
  6289. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  6290. "id": "stuLibrary",
  6291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //创建窗体
  6296. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6297. break;
  6298. case "program":
  6299. _formdiv = new U.UF.UI.form(
  6300. "编程平台",
  6301. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6302. "id": "program",
  6303. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6304. "onresize": function () { }
  6305. }, {
  6306. closecallback: function () { }
  6307. }, { "style": { "height": "36px" } }).form; //创建窗体
  6308. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6309. break;
  6310. case "whiteboard":
  6311. _formdiv = new U.UF.UI.form(
  6312. "电子白板",
  6313. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6314. "id": "whiteboard",
  6315. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6316. "onresize": function () { }
  6317. }, {
  6318. closecallback: function () { }
  6319. }, { "style": { "height": "36px" } }).form; //创建窗体
  6320. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6321. break;
  6322. case "investigation":
  6323. _formdiv = new U.UF.UI.form(
  6324. "问卷调查",
  6325. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6326. "id": "investigation",
  6327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6328. "onresize": function () { }
  6329. }, {
  6330. closecallback: function () { }
  6331. }, { "style": { "height": "36px" } }).form; //创建窗体
  6332. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6333. break;
  6334. case "mind":
  6335. _formdiv = new U.UF.UI.form(
  6336. "思维导图",
  6337. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6338. "id": "mind",
  6339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6340. "onresize": function () { }
  6341. }, {
  6342. closecallback: function () { }
  6343. }, { "style": { "height": "36px" } }).form; //创建窗体
  6344. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6345. break;
  6346. case "doc":
  6347. // U.MD.D.I.isRoom();
  6348. _formdiv = new U.UF.UI.form(
  6349. "协同文档",
  6350. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6351. "id": "doc",
  6352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6353. "onresize": function () { }
  6354. }, {
  6355. closecallback: function () { }
  6356. }, { "style": { "height": "36px" } }).form; //创建窗体
  6357. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6358. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6359. })
  6360. _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); } }
  6361. break;
  6362. case "study":
  6363. _formdiv = new U.UF.UI.form(
  6364. "课程中心",
  6365. $$("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
  6366. "id": "study",
  6367. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6368. "onresize": function () { }
  6369. }, {
  6370. closecallback: function () { }
  6371. }, { "style": { "height": "36px" } }).form; //创建窗体
  6372. _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); } }
  6373. break;
  6374. case "mindNetwork": //好友打开
  6375. _formdiv = new U.UF.UI.form(
  6376. "思维网格",
  6377. $$("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 }), {
  6378. "id": "mindNetwork",
  6379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6380. "onresize": function () { }
  6381. }, {
  6382. closecallback: function () { }
  6383. }, { "style": { "height": "36px" } }).form; //创建窗体
  6384. _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); } }
  6385. break;
  6386. case "train": //好友打开
  6387. _formdiv = new U.UF.UI.form(
  6388. "训练平台",
  6389. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6390. "id": "train",
  6391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6392. "onresize": function () { }
  6393. }, {
  6394. closecallback: function () { }
  6395. }, { "style": { "height": "36px" } }).form; //创建窗体
  6396. _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); } }
  6397. break;
  6398. case "sys":
  6399. _formdiv = new U.UF.UI.form(
  6400. "目标管理",
  6401. $$("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 }), {
  6402. "id": "sys",
  6403. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6404. "onresize": function () { }
  6405. }, {
  6406. closecallback: function () { }
  6407. }, { "style": { "height": "36px" } }).form; //创建窗体
  6408. _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); } }
  6409. break;
  6410. case "courseDesign":
  6411. _formdiv = new U.UF.UI.form(
  6412. "项目设计",
  6413. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6414. "id": "courseDesign",
  6415. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6416. "onresize": function () { }
  6417. }, {
  6418. closecallback: function () { }
  6419. }, { "style": { "height": "36px" } }).form; //创建窗体
  6420. _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); } }
  6421. break;
  6422. }
  6423. } else if (!_type) {
  6424. switch (str) {
  6425. case "my":
  6426. _formdiv = new U.UF.UI.form(
  6427. "我的资料",
  6428. $$("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 }), {
  6429. "id": "my",
  6430. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6431. "onresize": function () { }
  6432. }, {
  6433. closecallback: function () { }
  6434. }, { "style": { "height": "36px" } }).form; //创建窗体
  6435. _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); } }
  6436. break;
  6437. }
  6438. }
  6439. switch (str) {
  6440. // AIprogram2 AI体验 aihub.cocorobo.cn
  6441. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6442. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6443. case "formulaEdi": //公式编辑
  6444. _formdiv = new U.UF.UI.form(
  6445. "公式编辑",
  6446. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6447. "id": "formulaEdi",
  6448. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6449. "onresize": function () { }
  6450. }, {
  6451. closecallback: function () { }
  6452. }, { "style": { "height": "36px" } }).form; //创建窗体
  6453. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6454. break;
  6455. case "molStr": //分子结构
  6456. _formdiv = new U.UF.UI.form(
  6457. "分子结构",
  6458. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6459. "id": "molStr",
  6460. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6461. "onresize": function () { }
  6462. }, {
  6463. closecallback: function () { }
  6464. }, { "style": { "height": "36px" } }).form; //创建窗体
  6465. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6466. break;
  6467. case "timeAxis": //时间轴
  6468. _formdiv = new U.UF.UI.form(
  6469. "时间轴",
  6470. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6471. "id": "timeAxis",
  6472. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6473. "onresize": function () { }
  6474. }, {
  6475. closecallback: function () { }
  6476. }, { "style": { "height": "36px" } }).form; //创建窗体
  6477. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6478. break;
  6479. case "AIprogram2": //AI体验
  6480. _formdiv = new U.UF.UI.form(
  6481. "AI体验",
  6482. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6483. "id": "AIprogram2",
  6484. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6485. "onresize": function () { }
  6486. }, {
  6487. closecallback: function () { }
  6488. }, { "style": { "height": "36px" } }).form; //创建窗体
  6489. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6490. break;
  6491. case "Pythonprogram": //python编程
  6492. _formdiv = new U.UF.UI.form(
  6493. "Python编程",
  6494. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6495. "id": "Pythonprogram",
  6496. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6497. "onresize": function () { }
  6498. }, {
  6499. closecallback: function () { }
  6500. }, { "style": { "height": "36px" } }).form; //创建窗体
  6501. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6502. break;
  6503. case "AIprogram": //ai编程
  6504. _formdiv = new U.UF.UI.form(
  6505. "AI编程平台",
  6506. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6507. "id": "AIprogram",
  6508. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6509. "onresize": function () { }
  6510. }, {
  6511. closecallback: function () { }
  6512. }, { "style": { "height": "36px" } }).form; //创建窗体
  6513. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6514. break;
  6515. case "CocoPi": //CocoPi
  6516. _formdiv = new U.UF.UI.form(
  6517. "CocoPi",
  6518. $$("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" }), {
  6519. "id": "CocoPi",
  6520. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6521. "onresize": function () { }
  6522. }, {
  6523. closecallback: function () { }
  6524. }, { "style": { "height": "36px" } }).form; //创建窗体
  6525. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6526. break;
  6527. case "Wood": //Wood
  6528. _formdiv = new U.UF.UI.form(
  6529. "海龟编程",
  6530. $$("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/" }), {
  6531. "id": "Wood",
  6532. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6533. "onresize": function () { }
  6534. }, {
  6535. closecallback: function () { }
  6536. }, { "style": { "height": "36px" } }).form; //创建窗体
  6537. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6538. break;
  6539. case "car": //模拟驾驶
  6540. _formdiv = new U.UF.UI.form(
  6541. "模拟驾驶",
  6542. $$("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/" }), {
  6543. "id": "car",
  6544. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6545. "onresize": function () { }
  6546. }, {
  6547. closecallback: function () { }
  6548. }, { "style": { "height": "36px" } }).form; //创建窗体
  6549. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6550. break;
  6551. case "lineSearch": //路径搜索
  6552. _formdiv = new U.UF.UI.form(
  6553. "路径搜索",
  6554. $$("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/" }), {
  6555. "id": "lineSearch",
  6556. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6557. "onresize": function () { }
  6558. }, {
  6559. closecallback: function () { }
  6560. }, { "style": { "height": "36px" } }).form; //创建窗体
  6561. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6562. break;
  6563. case "deepLearning": //深度学习
  6564. _formdiv = new U.UF.UI.form(
  6565. "深度学习",
  6566. $$("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/#" }), {
  6567. "id": "deepLearning",
  6568. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6569. "onresize": function () { }
  6570. }, {
  6571. closecallback: function () { }
  6572. }, { "style": { "height": "36px" } }).form; //创建窗体
  6573. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6574. break;
  6575. case "allHistory": //深度学习
  6576. _formdiv = new U.UF.UI.form(
  6577. "全历史",
  6578. $$("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/" }), {
  6579. "id": "allHistory",
  6580. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6581. "onresize": function () { }
  6582. }, {
  6583. closecallback: function () { }
  6584. }, { "style": { "height": "36px" } }).form; //创建窗体
  6585. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6586. break;
  6587. case "chatPDF": //ai编程
  6588. _formdiv = new U.UF.UI.form(
  6589. "chatPDF",
  6590. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6591. "id": "chatPDF",
  6592. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6593. "onresize": function () { }
  6594. }, {
  6595. closecallback: function () { }
  6596. }, { "style": { "height": "36px" } }).form; //创建窗体
  6597. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6598. break;
  6599. case "resources": //国家教育
  6600. _formdiv = new U.UF.UI.form(
  6601. "国家教育",
  6602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6603. "id": "resources",
  6604. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6605. "onresize": function () { }
  6606. }, {
  6607. closecallback: function () { }
  6608. }, { "style": { "height": "36px" } }).form; //创建窗体
  6609. _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); } }
  6610. break;
  6611. case "codeEdit": //源码编辑
  6612. _formdiv = new U.UF.UI.form(
  6613. "源码编辑",
  6614. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6615. "id": "codeEdit",
  6616. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6617. "onresize": function () { }
  6618. }, {
  6619. closecallback: function () { }
  6620. }, { "style": { "height": "36px" } }).form; //创建窗体
  6621. _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); } }
  6622. break; //
  6623. case "MindMap": //MindMap
  6624. _formdiv = new U.UF.UI.form(
  6625. "MindMap",
  6626. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6627. "id": "MindMap",
  6628. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6629. "onresize": function () { }
  6630. }, {
  6631. closecallback: function () { }
  6632. }, { "style": { "height": "36px" } }).form; //创建窗体
  6633. _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); } }
  6634. break;
  6635. case "netWorkPanel": //netWorkPanel
  6636. _formdiv = new U.UF.UI.form(
  6637. "netWorkPanel",
  6638. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6639. "id": "netWorkPanel",
  6640. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6641. "onresize": function () { }
  6642. }, {
  6643. closecallback: function () { }
  6644. }, { "style": { "height": "36px" } }).form; //创建窗体
  6645. _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); } }
  6646. break;
  6647. case "GeoGebra": //GeoGebra
  6648. _formdiv = new U.UF.UI.form(
  6649. "GeoGebra",
  6650. $$("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" }), {
  6651. "id": "GeoGebra",
  6652. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6653. "onresize": function () { }
  6654. }, {
  6655. closecallback: function () { }
  6656. }, { "style": { "height": "36px" } }).form; //创建窗体
  6657. _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); } }
  6658. break;
  6659. case "translation": //翻译
  6660. _formdiv = new U.UF.UI.form(
  6661. "翻译",
  6662. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6663. "id": "translation",
  6664. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6665. "onresize": function () { }
  6666. }, {
  6667. closecallback: function () { }
  6668. }, { "style": { "height": "36px" } }).form; //创建窗体
  6669. _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); } }
  6670. break;
  6671. case "mohe": //魔盒
  6672. _formdiv = new U.UF.UI.form(
  6673. "魔盒识字",
  6674. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6675. "id": "mohe",
  6676. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6677. "onresize": function () { }
  6678. }, {
  6679. closecallback: function () { }
  6680. }, { "style": { "height": "36px" } }).form; //创建窗体
  6681. _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); } }
  6682. break;
  6683. case "24game": //24点
  6684. _formdiv = new U.UF.UI.form(
  6685. "24点",
  6686. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6687. "id": "24game",
  6688. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6689. "onresize": function () { }
  6690. }, {
  6691. closecallback: function () { }
  6692. }, { "style": { "height": "36px" } }).form; //创建窗体
  6693. _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); } }
  6694. break;
  6695. case "case":
  6696. _formdiv = new U.UF.UI.form(
  6697. "课程进展",
  6698. $$("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 }), {
  6699. "id": "case",
  6700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //创建窗体
  6705. _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); } }
  6706. break;
  6707. case "snf":
  6708. _formdiv = new U.UF.UI.form(
  6709. "赛诺梵",
  6710. $$("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" }), {
  6711. "id": "snf",
  6712. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6713. "onresize": function () { }
  6714. }, {
  6715. closecallback: function () { }
  6716. }, { "style": { "height": "36px" } }).form; //创建窗体
  6717. _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); } }
  6718. break;
  6719. case "hanFamily":
  6720. _formdiv = new U.UF.UI.form(
  6721. "汉字家族",
  6722. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6723. "id": "hanFamily",
  6724. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6725. "onresize": function () { }
  6726. }, {
  6727. closecallback: function () { }
  6728. }, { "style": { "height": "36px" } }).form; //创建窗体
  6729. _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); } }
  6730. break;
  6731. case "hanClassics":
  6732. _formdiv = new U.UF.UI.form(
  6733. "国学经典",
  6734. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6735. "id": "hanClassics",
  6736. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6737. "onresize": function () { }
  6738. }, {
  6739. closecallback: function () { }
  6740. }, { "style": { "height": "36px" } }).form; //创建窗体
  6741. _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); } }
  6742. break;
  6743. case "hanTraining":
  6744. _formdiv = new U.UF.UI.form(
  6745. "笔画训练",
  6746. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6747. "id": "hanTraining",
  6748. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6749. "onresize": function () { }
  6750. }, {
  6751. closecallback: function () { }
  6752. }, { "style": { "height": "36px" } }).form; //创建窗体
  6753. _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); } }
  6754. break;
  6755. case "hanClass":
  6756. _formdiv = new U.UF.UI.form(
  6757. "书法课堂",
  6758. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6759. "id": "hanClass",
  6760. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6761. "onresize": function () { }
  6762. }, {
  6763. closecallback: function () { }
  6764. }, { "style": { "height": "36px" } }).form; //创建窗体
  6765. _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); } }
  6766. break;
  6767. case "han":
  6768. _formdiv = new U.UF.UI.form(
  6769. "汉字宫",
  6770. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6771. "id": "han",
  6772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6773. "onresize": function () { }
  6774. }, {
  6775. closecallback: function () { }
  6776. }, { "style": { "height": "36px" } }).form; //创建窗体
  6777. _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); } }
  6778. break;
  6779. case "projectGM": //课程管理
  6780. _formdiv = new U.UF.UI.form(
  6781. "课程管理",
  6782. $$("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 }), {
  6783. "id": "projectGM",
  6784. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6785. "onresize": function () { }
  6786. }, {
  6787. closecallback: function () { }
  6788. }, { "style": { "height": "36px" } }).form; //创建窗体
  6789. _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); } }
  6790. break;
  6791. case "studyGM": //课程中心
  6792. _formdiv = new U.UF.UI.form(
  6793. "课程中心",
  6794. $$("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
  6795. "id": "study",
  6796. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6797. "onresize": function () { }
  6798. }, {
  6799. closecallback: function () { }
  6800. }, { "style": { "height": "36px" } }).form; //创建窗体
  6801. _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); } }
  6802. break;
  6803. // studentGM
  6804. case "studentGM": //学生管理
  6805. _formdiv = new U.UF.UI.form(
  6806. "学生管理",
  6807. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6808. "id": "studentGM",
  6809. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6810. "onresize": function () { }
  6811. }, {
  6812. closecallback: function () { }
  6813. }, { "style": { "height": "36px" } }).form; //创建窗体
  6814. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6815. break;
  6816. case "evaluateGM": //学生评价
  6817. _formdiv = new U.UF.UI.form(
  6818. "学生评价",
  6819. $$("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 }), {
  6820. "id": "evaluateGM",
  6821. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6822. "onresize": function () { }
  6823. }, {
  6824. closecallback: function () { }
  6825. }, { "style": { "height": "36px" } }).form; //创建窗体
  6826. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6827. break;
  6828. // classGM
  6829. case "classGM": //班级管理
  6830. _formdiv = new U.UF.UI.form(
  6831. "班级管理",
  6832. $$("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 }), {
  6833. "id": "classGM",
  6834. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6835. "onresize": function () { }
  6836. }, {
  6837. closecallback: function () { }
  6838. }, { "style": { "height": "36px" } }).form; //创建窗体
  6839. _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); } }
  6840. break;
  6841. // dataGM
  6842. case "dataGM":
  6843. _formdiv = new U.UF.UI.form(
  6844. "我的资料",
  6845. $$("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 }), {
  6846. "id": "dataGM",
  6847. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6848. "onresize": function () { }
  6849. }, {
  6850. closecallback: function () { }
  6851. }, { "style": { "height": "36px" } }).form; //创建窗体
  6852. _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); } }
  6853. break;
  6854. // caseGM
  6855. case "caseGM": //课程进展
  6856. _formdiv = new U.UF.UI.form(
  6857. "课程进展",
  6858. $$("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 }), {
  6859. "id": "caseGM",
  6860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6861. "onresize": function () { }
  6862. }, {
  6863. closecallback: function () { }
  6864. }, { "style": { "height": "36px" } }).form; //创建窗体
  6865. _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); } }
  6866. break;
  6867. // meterialGM
  6868. case "meterialGM": //素材库
  6869. _formdiv = new U.UF.UI.form(
  6870. "素材库",
  6871. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  6872. "id": "meterialGM",
  6873. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6874. "onresize": function () { }
  6875. }, {
  6876. closecallback: function () { }
  6877. }, { "style": { "height": "36px" } }).form; //创建窗体
  6878. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6879. break;
  6880. // evaluateSGM
  6881. case "evaluateSGM": //我的评价
  6882. _formdiv = new U.UF.UI.form(
  6883. "我的评价",
  6884. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6885. "id": "evaluateSGM",
  6886. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6887. "onresize": function () { }
  6888. }, {
  6889. closecallback: function () { }
  6890. }, { "style": { "height": "36px" } }).form; //创建窗体
  6891. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6892. break;
  6893. case "jupyter": //jupyter
  6894. _formdiv = new U.UF.UI.form(
  6895. "jupyter",
  6896. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6897. "id": "jupyter",
  6898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6899. "onresize": function () { }
  6900. }, {
  6901. closecallback: function () { }
  6902. }, { "style": { "height": "36px" } }).form; //创建窗体
  6903. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6904. break;
  6905. case "number": //数字实验室
  6906. _formdiv = new U.UF.UI.form(
  6907. "数字实验室",
  6908. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6909. "id": "number",
  6910. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6911. "onresize": function () { }
  6912. }, {
  6913. closecallback: function () { }
  6914. }, { "style": { "height": "36px" } }).form; //创建窗体
  6915. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6916. break;
  6917. case "studentCourse": //项目管理 学生
  6918. _formdiv = new U.UF.UI.form(
  6919. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6920. $$("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 }), {
  6921. "id": "studentCourse",
  6922. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6923. "onresize": function () { }
  6924. }, {
  6925. closecallback: function () { }
  6926. }, { "style": { "height": "36px" } }).form; //创建窗体
  6927. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6928. break;
  6929. case "studentCourseS": //项目管理 老师
  6930. _formdiv = new U.UF.UI.form(
  6931. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6932. $$("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 }), {
  6933. "id": "studentCourseS",
  6934. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6935. "onresize": function () { }
  6936. }, {
  6937. closecallback: function () { }
  6938. }, { "style": { "height": "36px" } }).form; //创建窗体
  6939. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6940. break;
  6941. case "studentIndex": //项目中心
  6942. _formdiv = new U.UF.UI.form(
  6943. "项目中心",
  6944. $$("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 }), {
  6945. "id": "studentIndex",
  6946. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6947. "onresize": function () { }
  6948. }, {
  6949. closecallback: function () { }
  6950. }, { "style": { "height": "36px" } }).form; //创建窗体
  6951. _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); } }
  6952. break;
  6953. case "CaseDesignS":
  6954. _formdiv = new U.UF.UI.form(
  6955. "项目进展",
  6956. $$("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 }), {
  6957. "id": "case",
  6958. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6959. "onresize": function () { }
  6960. }, {
  6961. closecallback: function () { }
  6962. }, { "style": { "height": "36px" } }).form; //创建窗体
  6963. _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); } }
  6964. break;
  6965. case "tcStudent": //腾讯学生管理
  6966. _formdiv = new U.UF.UI.form(
  6967. "学生管理",
  6968. $$("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 }), {
  6969. "id": "tcStudent",
  6970. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6971. "onresize": function () { }
  6972. }, {
  6973. closecallback: function () { }
  6974. }, { "style": { "height": "36px" } }).form; //创建窗体
  6975. _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); } }
  6976. break;
  6977. case "tcSchool": //腾讯学校管理
  6978. _formdiv = new U.UF.UI.form(
  6979. "学校管理",
  6980. $$("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 }), {
  6981. "id": "tcSchool",
  6982. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6983. "onresize": function () { }
  6984. }, {
  6985. closecallback: function () { }
  6986. }, { "style": { "height": "36px" } }).form; //创建窗体
  6987. _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); } }
  6988. break;
  6989. case "tcTeacher": //腾讯学校管理
  6990. _formdiv = new U.UF.UI.form(
  6991. "教师管理",
  6992. $$("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 }), {
  6993. "id": "tcTeacher",
  6994. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6995. "onresize": function () { }
  6996. }, {
  6997. closecallback: function () { }
  6998. }, { "style": { "height": "36px" } }).form; //创建窗体
  6999. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7000. break;
  7001. case "teacher":
  7002. _formdiv = new U.UF.UI.form(
  7003. "教师管理",
  7004. $$("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 }), {
  7005. "id": "teacher",
  7006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7007. "onresize": function () { }
  7008. }, {
  7009. closecallback: function () { }
  7010. }, { "style": { "height": "36px" } }).form; //创建窗体
  7011. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7012. break;
  7013. case "tcData": //腾讯我的资料
  7014. _formdiv = new U.UF.UI.form(
  7015. "我的资料",
  7016. $$("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 }), {
  7017. "id": "tcData",
  7018. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7019. "onresize": function () { }
  7020. }, {
  7021. closecallback: function () { }
  7022. }, { "style": { "height": "36px" } }).form; //创建窗体
  7023. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7024. break;
  7025. case "tcNotice": //腾讯消息通知
  7026. _formdiv = new U.UF.UI.form(
  7027. "消息通知",
  7028. $$("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 }), {
  7029. "id": "tcNotice",
  7030. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7031. "onresize": function () { }
  7032. }, {
  7033. closecallback: function () { }
  7034. }, { "style": { "height": "36px" } }).form; //创建窗体
  7035. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7036. break;
  7037. case "myReport": //好友打开
  7038. _formdiv = new U.UF.UI.form(
  7039. "我的评价",
  7040. $$("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 }), {
  7041. "id": "myReport",
  7042. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7043. "onresize": function () { }
  7044. }, {
  7045. closecallback: function () { }
  7046. }, { "style": { "height": "36px" } }).form; //创建窗体
  7047. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7048. break;
  7049. case "learnAna": //好友打开
  7050. _formdiv = new U.UF.UI.form(
  7051. "学习分析",
  7052. $$("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 }), {
  7053. "id": "learnAna",
  7054. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7055. "onresize": function () { }
  7056. }, {
  7057. closecallback: function () { }
  7058. }, { "style": { "height": "36px" } }).form; //创建窗体
  7059. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7060. break;
  7061. case "AIChat": //AI共创
  7062. _formdiv = new U.UF.UI.form(
  7063. "AI共创",
  7064. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7065. "id": "AIChat",
  7066. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7067. "onresize": function () { }
  7068. }, {
  7069. istop: true,
  7070. closecallback: function () { $("#aichat_icon").remove(); },
  7071. narrowcallback: function () {
  7072. if (!$("#aichat_icon")[0]) {
  7073. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7074. }
  7075. },
  7076. }, { "style": { "height": "36px" } }).form; //创建窗体
  7077. _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); } }
  7078. break;
  7079. case "ainew": //AI共创
  7080. _formdiv = new U.UF.UI.form(
  7081. "AI协同",
  7082. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7083. "id": "ainew",
  7084. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7085. "onresize": function () { }
  7086. }, {
  7087. closecallback: function () { }
  7088. }, { "style": { "height": "36px" } }).form; //创建窗体
  7089. _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); } }
  7090. break;
  7091. case "gpt4": //gpt4
  7092. _formdiv = new U.UF.UI.form(
  7093. "AI助手",
  7094. $$("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 }), {
  7095. "id": "gpt4",
  7096. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7097. "onresize": function () { }
  7098. }, {
  7099. closecallback: function () { }
  7100. }, { "style": { "height": "36px" } }).form; //创建窗体
  7101. _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); } }
  7102. break;
  7103. case "aigpt": //gpt4
  7104. _formdiv = new U.UF.UI.form(
  7105. "AI助手+",
  7106. $$("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 }), {
  7107. "id": "aigpt",
  7108. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7109. "onresize": function () { }
  7110. }, {
  7111. closecallback: function () {
  7112. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7113. }
  7114. }, { "style": { "height": "36px" } }).form; //创建窗体
  7115. _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); } }
  7116. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7117. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7118. })
  7119. break;
  7120. case "aiKnowledge": //aiKnowledge
  7121. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7122. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7123. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7124. }
  7125. _formdiv = new U.UF.UI.form(
  7126. "知识建构",
  7127. $$("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": _url }), {
  7128. "id": "aiKnowledge",
  7129. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7130. "onresize": function () { }
  7131. }, {
  7132. closecallback: function () { }
  7133. }, { "style": { "height": "36px" } }).form; //创建窗体
  7134. _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); } }
  7135. break;
  7136. case "futureClass": //AI共创
  7137. _formdiv = new U.UF.UI.form(
  7138. "协同建构",
  7139. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  7140. "id": "synergyCourse",
  7141. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7142. "onresize": function () { }
  7143. }, {
  7144. closecallback: function () {
  7145. $("iframe", _formdiv)[0].contentWindow.loginout();
  7146. }
  7147. }, { "style": { "height": "36px" } }).form; //创建窗体
  7148. _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); } }
  7149. break;
  7150. case "aiagent": //ai agent
  7151. _formdiv = new U.UF.UI.form(
  7152. "AI Agent",
  7153. $$("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" }), {
  7154. "id": "AIAgent",
  7155. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7156. "onresize": function () { }
  7157. }, {
  7158. closecallback: function () { }
  7159. }, { "style": { "height": "36px" } }).form; //创建窗体
  7160. _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); } }
  7161. break;
  7162. case "dataBoard": //数据看板
  7163. _formdiv = new U.UF.UI.form(
  7164. "数据看板",
  7165. $$("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 }), {
  7166. "id": "dataBoard",
  7167. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7168. "onresize": function () { }
  7169. }, {
  7170. closecallback: function () { }
  7171. }, { "style": { "height": "36px" } }).form; //创建窗体
  7172. _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); } }
  7173. break;
  7174. case "dataBoardSies": //数据融合
  7175. _formdiv = new U.UF.UI.form(
  7176. "数据融合",
  7177. $$("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 }), {
  7178. "id": "dataBoardSies",
  7179. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7180. "onresize": function () { }
  7181. }, {
  7182. closecallback: function () { }
  7183. }, { "style": { "height": "36px" } }).form; //创建窗体
  7184. _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); } }
  7185. break;
  7186. case "dataBoardNew": //数据看板
  7187. _formdiv = new U.UF.UI.form(
  7188. "综合看板",
  7189. $$("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 }), {
  7190. "id": "dataBoardNew",
  7191. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7192. "onresize": function () { }
  7193. }, {
  7194. closecallback: function () { }
  7195. }, { "style": { "height": "36px" } }).form; //创建窗体
  7196. _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); } }
  7197. break;
  7198. case "dataBoardTest": //数据看板
  7199. _formdiv = new U.UF.UI.form(
  7200. "评测看板",
  7201. $$("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 }), {
  7202. "id": "dataBoardTest",
  7203. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7204. "onresize": function () { }
  7205. }, {
  7206. closecallback: function () { }
  7207. }, { "style": { "height": "36px" } }).form; //创建窗体
  7208. _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); } }
  7209. break;
  7210. case "AIAnalyse": //AI共创
  7211. _formdiv = new U.UF.UI.form(
  7212. "AI分析",
  7213. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7214. "id": "AIAnalyse",
  7215. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7216. "onresize": function () { }
  7217. }, {
  7218. closecallback: function () { }
  7219. }, { "style": { "height": "36px" } }).form; //创建窗体
  7220. _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); } }
  7221. break;
  7222. case "studioCourse": //AI共创
  7223. _formdiv = new U.UF.UI.form(
  7224. "工作管理",
  7225. $$("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 }), {
  7226. "id": "studioCourse",
  7227. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7228. "onresize": function () { }
  7229. }, {
  7230. closecallback: function () { }
  7231. }, { "style": { "height": "36px" } }).form; //创建窗体
  7232. _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); } }
  7233. break;
  7234. case "studioIndex": //AI共创
  7235. _formdiv = new U.UF.UI.form(
  7236. "工作中心",
  7237. $$("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 }), {
  7238. "id": "studioIndex",
  7239. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7240. "onresize": function () { }
  7241. }, {
  7242. closecallback: function () { }
  7243. }, { "style": { "height": "36px" } }).form; //创建窗体
  7244. _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); } }
  7245. break;
  7246. case "source":
  7247. _formdiv = new U.UF.UI.form(
  7248. "教学资源",
  7249. $$("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 }), {
  7250. "id": "source",
  7251. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7252. "onresize": function () { }
  7253. }, {
  7254. closecallback: function () { }
  7255. }, { "style": { "height": "36px" } }).form; //创建窗体
  7256. _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); } }
  7257. break;
  7258. case "testTeacher":
  7259. _formdiv = new U.UF.UI.form(
  7260. "智能表单",
  7261. $$("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 }), {
  7262. "id": "testTeacher",
  7263. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7264. "onresize": function () { }
  7265. }, {
  7266. closecallback: function () { }
  7267. }, { "style": { "height": "36px" } }).form; //创建窗体
  7268. _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); } }
  7269. break;
  7270. case "testStudent":
  7271. _formdiv = new U.UF.UI.form(
  7272. "教师中心",
  7273. $$("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 }), {
  7274. "id": "testStudent",
  7275. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7276. "onresize": function () { }
  7277. }, {
  7278. closecallback: function () { }
  7279. }, { "style": { "height": "36px" } }).form; //创建窗体
  7280. _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); } }
  7281. break;
  7282. case "testTeacherSies":
  7283. _formdiv = new U.UF.UI.form(
  7284. "教师管理",
  7285. $$("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 }), {
  7286. "id": "testTeacherSies",
  7287. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7288. "onresize": function () { }
  7289. }, {
  7290. closecallback: function () { }
  7291. }, { "style": { "height": "36px" } }).form; //创建窗体
  7292. _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); } }
  7293. break;
  7294. case "testStudentSies":
  7295. _formdiv = new U.UF.UI.form(
  7296. "教师中心",
  7297. $$("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 }), {
  7298. "id": "testStudentSies",
  7299. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7300. "onresize": function () { }
  7301. }, {
  7302. closecallback: function () { }
  7303. }, { "style": { "height": "36px" } }).form; //创建窗体
  7304. _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); } }
  7305. break;
  7306. case "ytpbl": //消息通知
  7307. _formdiv = new U.UF.UI.form(
  7308. "案例征集",
  7309. $$("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 }), {
  7310. "id": "ytpbl",
  7311. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7312. "onresize": function () { }
  7313. }, {
  7314. closecallback: function () { }
  7315. }, { "style": { "height": "36px" } }).form; //创建窗体
  7316. _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); } }
  7317. // 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");
  7318. break;
  7319. case "aiCourseResource": //人工智能窗体
  7320. _formdiv = new U.UF.UI.form(
  7321. false,
  7322. $$("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 }), {
  7323. "id": "aiCourseResource",
  7324. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7325. "onresize": function () { },
  7326. "isdrag": false,
  7327. }, {
  7328. closecallback: function () { }
  7329. }, { "style": { "height": "36px" } }).form; //创建窗体
  7330. _taskbar = ''
  7331. break;
  7332. case "szdjgCocooroboX": //图形化编程
  7333. _formdiv = new U.UF.UI.form(
  7334. "图形化编程",
  7335. $$("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" }), {
  7336. "id": "szdjgCocooroboX",
  7337. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7338. "onresize": function () { }
  7339. }, {
  7340. closecallback: function () { }
  7341. }, { "style": { "height": "36px" } }).form; //创建窗体
  7342. _taskbar = ''
  7343. break;
  7344. case "szdjgPython": //python编程
  7345. _formdiv = new U.UF.UI.form(
  7346. "Python编程",
  7347. $$("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" }), {
  7348. "id": "szdjgPython",
  7349. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7350. "onresize": function () { }
  7351. }, {
  7352. closecallback: function () { }
  7353. }, { "style": { "height": "36px" } }).form; //创建窗体
  7354. _taskbar = ''
  7355. break;
  7356. case "Record":
  7357. _formdiv = new U.UF.UI.form(
  7358. "观察记录",
  7359. $$("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 }), {
  7360. "id": "Record",
  7361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7362. "onresize": function () { }
  7363. }, {
  7364. closecallback: function () { }
  7365. }, { "style": { "height": "36px" } }).form; //创建窗体
  7366. _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); } }
  7367. break;
  7368. case "aigptCourse":
  7369. _formdiv = new U.UF.UI.form(
  7370. "AI智能体",
  7371. $$("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' }), {
  7372. "id": "aigptCourse",
  7373. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7374. "onresize": function () { }
  7375. }, {
  7376. closecallback: function () { }
  7377. }, { "style": { "height": "36px" } }).form; //创建窗体
  7378. _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); } }
  7379. break;
  7380. case "classroomObservation":
  7381. _formdiv = new U.UF.UI.form(
  7382. "课堂观察",
  7383. $$("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 }), {
  7384. "id": "classroomObservation",
  7385. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7386. "onresize": function () { }
  7387. }, {
  7388. closecallback: function () { }
  7389. }, { "style": { "height": "36px" } }).form; //创建窗体
  7390. _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); } }
  7391. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7392. break;
  7393. case "pblCourse":
  7394. _formdiv = new U.UF.UI.form(
  7395. "学生PBL",
  7396. $$("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 }), {
  7397. "id": "pblCourse",
  7398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7399. "onresize": function () { }
  7400. }, {
  7401. closecallback: function () { }
  7402. }, { "style": { "height": "36px" } }).form; //创建窗体
  7403. _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); } }
  7404. break;
  7405. case "appStore":
  7406. U.MD.D.addOp('','cocoflowOpen','')
  7407. _formdiv = new U.UF.UI.form(
  7408. "CocoFlow",
  7409. $$("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.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7410. "id": "appStore",
  7411. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7412. "onresize": function () { }
  7413. }, {
  7414. closecallback: function () { }
  7415. }, { "style": { "height": "36px" } }).form; //创建窗体
  7416. _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); } }
  7417. break;
  7418. case "sassPlatform":
  7419. _formdiv = new U.UF.UI.form(
  7420. "Sass通用后台管理",
  7421. $$("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/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7422. "id": "sassPlatform",
  7423. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7424. "onresize": function () { }
  7425. }, {
  7426. closecallback: function () { }
  7427. }, { "style": { "height": "36px" } }).form; //创建窗体
  7428. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7429. break;
  7430. case "EDU":
  7431. _formdiv = new U.UF.UI.form(
  7432. "EDU",
  7433. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7434. "id": "EDU",
  7435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7436. "onresize": function () { }
  7437. }, {
  7438. closecallback: function () { }
  7439. }, { "style": { "height": "36px" } }).form; //创建窗体
  7440. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7441. break;
  7442. case "knowledge":
  7443. _formdiv = new U.UF.UI.form(
  7444. "知识库",
  7445. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7446. "id": "knowledge",
  7447. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7448. "onresize": function () { }
  7449. }, {
  7450. closecallback: function () { }
  7451. }, { "style": { "height": "36px" } }).form; //创建窗体
  7452. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7453. break;
  7454. case "userExamine":
  7455. _formdiv = new U.UF.UI.form(
  7456. "账号申请",
  7457. $$("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" }), {
  7458. "id": "userExamine",
  7459. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7460. "onresize": function () { }
  7461. }, {
  7462. closecallback: function () { }
  7463. }, { "style": { "height": "36px" } }).form; //创建窗体
  7464. break;
  7465. case "cocoflowDeskTop": //cocoflowDeskTop
  7466. _formdiv = new U.UF.UI.form(
  7467. false,
  7468. $$("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": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7469. "id": "cocoflowDeskTop",
  7470. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7471. "onresize": function () { },
  7472. }, {
  7473. closecallback: function () { },
  7474. "isdrag": false,
  7475. }, { "style": { "height": "36px" } }).form; //创建窗体
  7476. _taskbar = ''
  7477. break;
  7478. case "liyuanLogin": //liyuanLogin
  7479. _formdiv = new U.UF.UI.form(
  7480. false,
  7481. $$("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": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7482. "id": "liyuanLogin",
  7483. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7484. "onresize": function () { },
  7485. }, {
  7486. closecallback: function () { },
  7487. isdrag: false,
  7488. isstretching: false,
  7489. isenlarge: false,
  7490. isnarrow: false
  7491. }, { "style": { "height": "36px" } }).form; //创建窗体
  7492. _taskbar = ''
  7493. break;
  7494. case "updatePaDialog":
  7495. _formdiv = new U.UF.UI.form(
  7496. "密码修改",
  7497. $$("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://invitelogin.cocorobo.cn/#/changePswd?userid=" + _userid }), {
  7498. "id": "updatePaDialog",
  7499. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7500. "onresize": function () { },
  7501. }, {
  7502. closecallback: function () { },
  7503. isclose: false,
  7504. isdrag: false,
  7505. isstretching: false,
  7506. isenlarge: false,
  7507. isnarrow: false
  7508. }, { "style": { "height": "36px" } }).form; //创建窗体
  7509. break;
  7510. }
  7511. //U.MD.D.I.openClick(str);
  7512. //如果有任务栏信息
  7513. if (_taskbar) {
  7514. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7515. }
  7516. if(iframeBool){
  7517. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7518. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7519. // console.log("iframe进入");
  7520. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7521. // };
  7522. setTimeout(() => {
  7523. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7524. }, 2000);
  7525. }
  7526. }
  7527. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7528. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7529. _userinfo = US.userInfo, //登录用户信息
  7530. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7531. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7532. let iframeBool = true;
  7533. let queryString = ''
  7534. if(array && array.length){
  7535. const paramsMap = {
  7536. userid: _userid,
  7537. org: _org,
  7538. oid: _oid,
  7539. type: _type,
  7540. role: _role,
  7541. classId: _classId,
  7542. TscreenType: _TscreenType,
  7543. SscreenType: _SscreenType
  7544. };
  7545. const canshu = array
  7546. .filter(param => paramsMap[param] !== undefined)
  7547. .map(param => `${param}=${paramsMap[param]}`);
  7548. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7549. }
  7550. let _url = url + queryString
  7551. if(U.UF.UI.form.allForm[id]){
  7552. iframeBool = false
  7553. }
  7554. _formdiv = new U.UF.UI.form(
  7555. false,
  7556. $$("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": _url }),
  7557. {
  7558. "id": id,
  7559. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7560. "onresize": function () { },
  7561. },
  7562. {
  7563. closecallback: function () { },
  7564. isdrag: false,
  7565. isstretching: false,
  7566. isenlarge: false,
  7567. isnarrow: false
  7568. },
  7569. { "style": { "height": "36px" } },
  7570. undefined,
  7571. undefined,
  7572. dom
  7573. ).form
  7574. }
  7575. // U.MD.D.I.openClick = function(str){
  7576. // var click = '';
  7577. // switch(str){
  7578. // case 'friend':
  7579. // click = '我的好友';
  7580. // break;
  7581. // case 'domain':
  7582. // click = '域名管理';
  7583. // break;
  7584. // case 'disk':
  7585. // click = '我的云盘';
  7586. // break;
  7587. // case 'word':
  7588. // click = 'Word';
  7589. // break;
  7590. // case 'excel':
  7591. // click = 'Execl';
  7592. // break;
  7593. // case 'txt':
  7594. // click = '文本文件';
  7595. // break;
  7596. // case 'lookupFriend':
  7597. // click = '查找好友';
  7598. // break;
  7599. // case 'ftp':
  7600. // click = 'FTP';
  7601. // break;
  7602. // case 'group':
  7603. // click = '群组';
  7604. // break;
  7605. // case 'set':
  7606. // click = '我的设置';
  7607. // break;
  7608. // case 'systemSet':
  7609. // click = '系统设置';
  7610. // break;
  7611. // case 'boomYun':
  7612. // click = '互联办公';
  7613. // break;
  7614. // case 'xz':
  7615. // click = '云端下载';
  7616. // break;
  7617. // case 'client':
  7618. // click = '有思浏览器';
  7619. // break;
  7620. // case 'backEndProgramming':
  7621. // click = '在线后台编程';
  7622. // break;
  7623. // case 'frontEndProgramming':
  7624. // click = '在线前端编程';
  7625. // break;
  7626. // default: break;
  7627. // }
  7628. // if(U.MD.D.I.Ip && click){
  7629. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7630. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7631. // })
  7632. // }
  7633. // }
  7634. /**
  7635. *函数作用:ajax简易函数,使用post格式
  7636. *@param url {data} 后台地址
  7637. *@param data {data} 参数json
  7638. *@param fn {data} 回调函数
  7639. *
  7640. */
  7641. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7642. // var xhr = new XMLHttpRequest();
  7643. // xhr.open("GET",url,true);
  7644. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7645. // xhr.onreadystatechange = function(){
  7646. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7647. // fn.call(this,xhr.responseText);
  7648. // }
  7649. // };
  7650. // xhr.send();
  7651. // }
  7652. /*判断是否是内网IP*/
  7653. // U.MD.D.I.isInnerIPFn = function(str){
  7654. // var curPageUrl = str;
  7655. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7656. // curPageUrl =curPageUrl.replace(reg1,'');
  7657. // // console.log('curPageUrl-1 '+curPageUrl);
  7658. // var reg2 = /\:+/g;//替换冒号为一点
  7659. // curPageUrl =curPageUrl.replace(reg2,'.');
  7660. // // console.log('curPageUrl-2 '+curPageUrl);
  7661. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7662. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7663. // if(curPageUrl[2] != '16'){
  7664. // return ipAddress;
  7665. // }else{
  7666. // return false;
  7667. // }
  7668. // }
  7669. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7670. // //compatibility for firefox and chrome
  7671. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7672. // var pc = new myPeerConnection({
  7673. // iceServers: []
  7674. // }),
  7675. // noop = function() {},
  7676. // localIPs = {},
  7677. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7678. // key;
  7679. // function iterateIP(ip) {
  7680. // if (!localIPs[ip]) onNewIP(ip);
  7681. // localIPs[ip] = true;
  7682. // }
  7683. // //create a bogus data channel
  7684. // pc.createDataChannel("");
  7685. // // create offer and set local description
  7686. // pc.createOffer().then(function(sdp) {
  7687. // sdp.sdp.split('\n').forEach(function(line) {
  7688. // if (line.indexOf('candidate') < 0) return;
  7689. // line.match(ipRegex).forEach(iterateIP);
  7690. // });
  7691. // pc.setLocalDescription(sdp, noop, noop);
  7692. // }).catch(function(reason) {
  7693. // // An error occurred, so handle the failure to connect
  7694. // });
  7695. // //sten for candidate events
  7696. // pc.onicecandidate = function(ice) {
  7697. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7698. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7699. // };
  7700. // }
  7701. // U.MD.D.I.getUserIpBool = function(callback){
  7702. // U.MD.D.I.getUserIP(function(ip){
  7703. // alert("Got IP! :" + ip);
  7704. // });
  7705. //}
  7706. //#endregion
  7707. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7708. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7709. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7710. _userinfo = US.userInfo, //登录用户信息
  7711. _userid = US.userInfo.userid //登录用户id
  7712. let _iframe;
  7713. let _cid = cid,
  7714. _stage = stage,
  7715. _task = task,
  7716. _tool = tool;
  7717. var _jie = $$("div", {
  7718. "style": {
  7719. "position": "absolute",
  7720. "bottom": "50px",
  7721. "right": "50px",
  7722. "zIndex": "9999",
  7723. "backgroundColor": "#2268bc",
  7724. "color": "#fff",
  7725. "padding": "12px 20px",
  7726. "cursor": "pointer",
  7727. "borderRadius": "4px",
  7728. },
  7729. "innerHTML": "提交作业"
  7730. })
  7731. let aTool = ''
  7732. let _loading = document.createElement('div')
  7733. _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;"
  7734. // _loading.id = "";
  7735. let _lchild = document.createElement('div')
  7736. let _limg = document.createElement('img')
  7737. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7738. _limg.style = "width: 26px;margin-right: 10px;"
  7739. _lchild.appendChild(_limg)
  7740. let _lspan = document.createElement('span')
  7741. _lspan.innerHTML = "上传中..."
  7742. _lchild.appendChild(_lspan)
  7743. _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%);"
  7744. _loading.appendChild(_lchild)
  7745. var _box = $$('div', {
  7746. "style": {
  7747. "position": "relative",
  7748. "width": "100%",
  7749. "height": "100%",
  7750. },
  7751. })
  7752. _box.appendChild(_loading)
  7753. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7754. switch (str) {
  7755. case "whiteboard":
  7756. aTool = 1;
  7757. _iframe = $$("iframe", {
  7758. "frameborder": "no",
  7759. "border": "0",
  7760. "scrolling ": "no",
  7761. "style": {
  7762. "cssText": "border:0;width:100%;height:100%"
  7763. },
  7764. "src": "https://beta.iwb.cocorobo.cn/"
  7765. })
  7766. _box.appendChild(_iframe);
  7767. _box.appendChild(_jie);
  7768. _formdiv = new U.UF.UI.form(
  7769. "电子白板",
  7770. _box, {
  7771. "id": "whiteboard" + cid + stage + task + tool,
  7772. "style": {
  7773. "width": "90%",
  7774. "height": "90%",
  7775. "overflow": 'hidden'
  7776. },
  7777. "onresize": function () { }
  7778. }, {
  7779. closecallback: function () { }
  7780. }, {
  7781. "style": {
  7782. "height": "36px"
  7783. }
  7784. }).form; //创建窗体
  7785. _taskbar = {
  7786. "id": str + _formdiv.id,
  7787. "style": {
  7788. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7789. },
  7790. "name": "电子白板",
  7791. "forms": _formdiv,
  7792. "click": function () {
  7793. U.MD.D.I.openApplication(str, obj, info);
  7794. }
  7795. }
  7796. break;
  7797. case "mind":
  7798. aTool = 3;
  7799. _iframe = $$("iframe", {
  7800. "frameborder": "no",
  7801. "border": "0",
  7802. "scrolling ": "no",
  7803. "style": {
  7804. "cssText": "border:0;width:100%;height:100%"
  7805. },
  7806. "src": "/kityminder-editor/dist/index.html"
  7807. })
  7808. _box.appendChild(_iframe);
  7809. _box.appendChild(_jie);
  7810. _formdiv = new U.UF.UI.form(
  7811. "思维导图",
  7812. _box, { //"/jsmind/example/demo.html"
  7813. "id": "mind" + cid + stage + task + tool,
  7814. "style": {
  7815. "width": "90%",
  7816. "height": "90%",
  7817. "overflow": 'hidden'
  7818. },
  7819. "onresize": function () { }
  7820. }, {
  7821. closecallback: function () { }
  7822. }, {
  7823. "style": {
  7824. "height": "36px"
  7825. }
  7826. }).form; //创建窗体
  7827. _taskbar = {
  7828. "id": str + _formdiv.id,
  7829. "style": {
  7830. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7831. },
  7832. "name": "思维导图",
  7833. "forms": _formdiv,
  7834. "click": function () {
  7835. U.MD.D.I.openApplication(str, obj, info);
  7836. }
  7837. }
  7838. break;
  7839. case "MindMap":
  7840. aTool = 3;
  7841. _iframe = $$("iframe", {
  7842. "frameborder": "no",
  7843. "border": "0",
  7844. "scrolling ": "no",
  7845. "style": {
  7846. "cssText": "border:0;width:100%;height:100%"
  7847. },
  7848. "src": "//cloud.cocorobo.cn/mind/"
  7849. })
  7850. _box.appendChild(_iframe);
  7851. _box.appendChild(_jie);
  7852. _formdiv = new U.UF.UI.form(
  7853. "思维导图",
  7854. _box, { //"/jsmind/example/demo.html"
  7855. "id": "mind" + cid + stage + task + tool,
  7856. "style": {
  7857. "width": "90%",
  7858. "height": "90%",
  7859. "overflow": 'hidden'
  7860. },
  7861. "onresize": function () { }
  7862. }, {
  7863. closecallback: function () { }
  7864. }, {
  7865. "style": {
  7866. "height": "36px"
  7867. }
  7868. }).form; //创建窗体
  7869. _taskbar = {
  7870. "id": str + _formdiv.id,
  7871. "style": {
  7872. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7873. },
  7874. "name": "思维导图",
  7875. "forms": _formdiv,
  7876. "click": function () {
  7877. U.MD.D.I.openApplication(str, obj, info);
  7878. }
  7879. }
  7880. break;
  7881. case "doc":
  7882. aTool = 6;
  7883. _iframe = $$("iframe", {
  7884. "frameborder": "no",
  7885. "border": "0",
  7886. "scrolling ": "no",
  7887. "style": {
  7888. "cssText": "border:0;width:100%;height:100%"
  7889. },
  7890. "src": "/Office/Word/WordEditArea.htm"
  7891. })
  7892. _box.appendChild(_iframe);
  7893. _box.appendChild(_jie);
  7894. _formdiv = new U.UF.UI.form(
  7895. "协同文档",
  7896. _box, {
  7897. "id": "doc" + cid + stage + task + tool,
  7898. "style": {
  7899. "width": "90%",
  7900. "height": "90%",
  7901. "overflow": 'hidden'
  7902. },
  7903. "onresize": function () { }
  7904. }, {
  7905. closecallback: function () { }
  7906. }, {
  7907. "style": {
  7908. "height": "36px"
  7909. }
  7910. }).form; //创建窗体
  7911. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7912. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7913. })
  7914. _taskbar = {
  7915. "id": str + _formdiv.id,
  7916. "style": {
  7917. "backgroundImage": "url(/img/icon/doc.png)"
  7918. },
  7919. "name": "协同文档",
  7920. "forms": _formdiv,
  7921. "click": function () {
  7922. U.MD.D.I.openApplication(str, obj, info);
  7923. }
  7924. }
  7925. break;
  7926. case "mindNetwork": //好友打开
  7927. aTool = 7;
  7928. _iframe = $$("iframe", {
  7929. "webkitallowfullscreen": "",
  7930. "mozallowfullscreen": "",
  7931. "allowfullscreen": "",
  7932. "frameborder": "no",
  7933. "border": "0",
  7934. "scrolling ": "no",
  7935. "style": {
  7936. "cssText": "border:0; width:100%; height:100%;"
  7937. },
  7938. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7939. })
  7940. _box.appendChild(_iframe);
  7941. _box.appendChild(_jie);
  7942. _formdiv = new U.UF.UI.form(
  7943. "思维网格",
  7944. _box, {
  7945. "id": "mindNetwork" + cid + stage + task + tool,
  7946. "style": {
  7947. "width": "90%",
  7948. "height": "90%",
  7949. "overflow": 'hidden'
  7950. },
  7951. "onresize": function () { }
  7952. }, {
  7953. closecallback: function () { }
  7954. }, {
  7955. "style": {
  7956. "height": "36px"
  7957. }
  7958. }).form; //创建窗体
  7959. _taskbar = {
  7960. "id": str + _formdiv.id,
  7961. "style": {
  7962. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7963. },
  7964. "name": "思维网格",
  7965. "forms": _formdiv,
  7966. "click": function () {
  7967. U.MD.D.I.openApplication(str, obj, info);
  7968. }
  7969. }
  7970. break;
  7971. case "courseDesign":
  7972. _iframe = $$("iframe", {
  7973. "webkitallowfullscreen": "",
  7974. "mozallowfullscreen": "",
  7975. "allowfullscreen": "",
  7976. "frameborder": "no",
  7977. "border": "0",
  7978. "scrolling ": "no",
  7979. "style": {
  7980. "cssText": "border:0; width:100%; height:100%;"
  7981. },
  7982. "src": "/course-design-vue"
  7983. })
  7984. _box.appendChild(_iframe);
  7985. _box.appendChild(_jie);
  7986. _formdiv = new U.UF.UI.form(
  7987. "项目设计",
  7988. _box, {
  7989. "id": "courseDesign" + cid + stage + task + tool,
  7990. "style": {
  7991. "width": "90%",
  7992. "height": "90%",
  7993. "overflow": 'hidden'
  7994. },
  7995. "onresize": function () { }
  7996. }, {
  7997. closecallback: function () { }
  7998. }, {
  7999. "style": {
  8000. "height": "36px"
  8001. }
  8002. }).form; //创建窗体
  8003. _taskbar = {
  8004. "id": str + _formdiv.id,
  8005. "style": {
  8006. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8007. },
  8008. "name": "项目设计",
  8009. "forms": _formdiv,
  8010. "click": function () {
  8011. U.MD.D.I.openApplication(str, obj, info);
  8012. }
  8013. }
  8014. break;
  8015. }
  8016. const script1 = document.createElement("script");
  8017. script1.type = "text/javascript";
  8018. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8019. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8020. const script2 = document.createElement("script");
  8021. script2.type = "text/javascript";
  8022. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8023. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8024. const script3 = document.createElement("script");
  8025. script3.type = "text/javascript";
  8026. script3.charset = "UTF-8";
  8027. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8028. const script4 = document.createElement("script");
  8029. script4.type = "text/javascript";
  8030. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8031. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8032. if (_iframe) {
  8033. if (str == 'doc') {
  8034. _iframe = _formdiv.querySelector('iframe')
  8035. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8036. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8037. _iframe.contentWindow.document.body.appendChild(script1);
  8038. _iframe.contentWindow.document.body.appendChild(script2);
  8039. // _iframe.contentWindow.document.body.appendChild(script3);
  8040. _iframe.contentWindow.document.body.appendChild(script4);
  8041. })
  8042. if (onloadListener) {
  8043. _iframe.contentDocument.location.reload()
  8044. } else {
  8045. _iframe.contentDocument.location.reload()
  8046. }
  8047. } else if (str == 'courseDesign') {
  8048. U.UF.DL.iframeLoad(_iframe, function () {
  8049. // _iframe.contentWindow.U.MD.O.W.load();
  8050. // _iframe.contentWindow.document.body.appendChild(script1);
  8051. _iframe.contentWindow.document.body.appendChild(script2);
  8052. _iframe.contentWindow.document.body.appendChild(script4);
  8053. })
  8054. } else if (str == 'mind') {
  8055. _iframe = _formdiv.querySelector('iframe')
  8056. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8057. //
  8058. _iframe.contentWindow.document.body.appendChild(script1);
  8059. _iframe.contentWindow.document.body.appendChild(script2);
  8060. _iframe.contentWindow.document.body.appendChild(script4);
  8061. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8062. })
  8063. if (onloadListener) {
  8064. _iframe.contentDocument.location.reload()
  8065. } else {
  8066. _iframe.contentDocument.location.reload()
  8067. }
  8068. } else if (str == 'whiteboard') {
  8069. _iframe = _formdiv.querySelector('iframe')
  8070. let onloadListener = _iframe.onload = () => {
  8071. _iframe.contentWindow.document.body.appendChild(script1);
  8072. _iframe.contentWindow.document.body.appendChild(script2);
  8073. _iframe.contentWindow.document.body.appendChild(script4);
  8074. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8075. };
  8076. // if (onloadListener) {
  8077. // try {
  8078. // _iframe.src += "?cocorobo="+new Date().getTime()
  8079. // _iframe.contentWindow.document.location.reload()
  8080. // } catch (error) {
  8081. // }
  8082. // } else {
  8083. // _iframe.contentDocument.location.reload()
  8084. // }
  8085. } else {
  8086. _iframe.onload = () => {
  8087. _iframe.contentWindow.document.body.appendChild(script1);
  8088. _iframe.contentWindow.document.body.appendChild(script2);
  8089. // _iframe.contentWindow.document.body.appendChild(script3);
  8090. _iframe.contentWindow.document.body.appendChild(script4);
  8091. };
  8092. }
  8093. _jie.onclick = async () => {
  8094. let text = ''
  8095. if (aTool == 1) {
  8096. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8097. } else if (aTool == 6) {
  8098. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8099. } else if (aTool == 3) {
  8100. text = await U.MD.D.I.getEditorContent(_iframe);
  8101. }
  8102. _loading.style.display = 'flex'
  8103. console.log(_loading);
  8104. var _ajs = _iframe.contentWindow.document.createElement("script");
  8105. _ajs.type = "text/javascript";
  8106. _ajs.innerHTML =
  8107. // 'console.log(' + _loading + ');\n' +
  8108. 'var _js = document.createElement("script");\n' +
  8109. '_js.type="text/javascript";\n' +
  8110. '_js.charset="UTF-8";\n' +
  8111. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8112. "_js.onload = function(){\n" +
  8113. ' var a = document.getElementsByTagName("img")\n' +
  8114. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8115. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8116. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8117. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8118. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8119. "beforeUpload_shishi(file," +
  8120. "'" +
  8121. _userid +
  8122. "'" +
  8123. ", " +
  8124. "'" +
  8125. _cid +
  8126. "'" +
  8127. ", " +
  8128. "'" +
  8129. _stage +
  8130. "'" +
  8131. ", " +
  8132. "'" +
  8133. _task +
  8134. "'" +
  8135. ", " +
  8136. "'" +
  8137. _tool +
  8138. "'" +
  8139. ", " +
  8140. "'" +
  8141. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8142. "'" +
  8143. ", " +
  8144. "'" +
  8145. aTool +
  8146. "'" +
  8147. ", " +
  8148. "`" +
  8149. text +
  8150. "`" +
  8151. ")\n" +
  8152. " });\n" +
  8153. "}\n" +
  8154. "document.head.appendChild(_js);\n";
  8155. _iframe.contentWindow.document.head.appendChild(_ajs);
  8156. }
  8157. }
  8158. //U.MD.D.I.openClick(str);
  8159. //如果有任务栏信息
  8160. // if (_taskbar) {
  8161. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8162. // }
  8163. }
  8164. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8165. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8166. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8167. _userinfo = US.userInfo, //登录用户信息
  8168. _userid = US.userInfo.userid //登录用户id
  8169. let _iframe;
  8170. let _cid = cid,
  8171. _stage = stage,
  8172. _task = task,
  8173. _tool = tool;
  8174. var _jie = $$("div", {
  8175. "style": {
  8176. "position": "absolute",
  8177. "bottom": "50px",
  8178. "right": "50px",
  8179. "zIndex": "9999",
  8180. "backgroundColor": "#2268bc",
  8181. "color": "#fff",
  8182. "padding": "12px 20px",
  8183. "cursor": "pointer",
  8184. "borderRadius": "4px",
  8185. },
  8186. "innerHTML": "提交作业"
  8187. })
  8188. let aTool = ''
  8189. let _loading = document.createElement('div')
  8190. _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;"
  8191. // _loading.id = "";
  8192. let _lchild = document.createElement('div')
  8193. let _limg = document.createElement('img')
  8194. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8195. _limg.style = "width: 26px;margin-right: 10px;"
  8196. _lchild.appendChild(_limg)
  8197. let _lspan = document.createElement('span')
  8198. _lspan.innerHTML = "上传中..."
  8199. _lchild.appendChild(_lspan)
  8200. _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%);"
  8201. _loading.appendChild(_lchild)
  8202. let _box = $$('div', {
  8203. "style": {
  8204. "position": "relative",
  8205. "width": "100%",
  8206. "height": "100%",
  8207. },
  8208. })
  8209. _box.appendChild(_loading)
  8210. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8211. switch (str) {
  8212. case "whiteboard":
  8213. aTool = 1;
  8214. _iframe = $$("iframe", {
  8215. "frameborder": "no",
  8216. "border": "0",
  8217. "scrolling ": "no",
  8218. "style": {
  8219. "cssText": "border:0;width:100%;height:100%"
  8220. },
  8221. "src": "https://beta.iwb.cocorobo.cn/"
  8222. })
  8223. _box.appendChild(_iframe);
  8224. _box.appendChild(_jie);
  8225. _formdiv = new U.UF.UI.form(
  8226. "电子白板",
  8227. _box, {
  8228. "id": "whiteboard" + cid + stage + task + tool,
  8229. "style": {
  8230. "width": "90%",
  8231. "height": "90%",
  8232. "overflow": 'hidden'
  8233. },
  8234. "onresize": function () { }
  8235. }, {
  8236. closecallback: function () { }
  8237. }, {
  8238. "style": {
  8239. "height": "36px"
  8240. }
  8241. }).form; //创建窗体
  8242. _taskbar = {
  8243. "id": str + _formdiv.id,
  8244. "style": {
  8245. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8246. },
  8247. "name": "电子白板",
  8248. "forms": _formdiv,
  8249. "click": function () {
  8250. U.MD.D.I.openApplication(str, obj, info);
  8251. }
  8252. }
  8253. break;
  8254. case "mind":
  8255. aTool = 3;
  8256. _iframe = $$("iframe", {
  8257. "frameborder": "no",
  8258. "border": "0",
  8259. "scrolling ": "no",
  8260. "style": {
  8261. "cssText": "border:0;width:100%;height:100%"
  8262. },
  8263. "src": "/kityminder-editor/dist/index.html"
  8264. })
  8265. _box.appendChild(_iframe);
  8266. _box.appendChild(_jie);
  8267. _formdiv = new U.UF.UI.form(
  8268. "思维导图",
  8269. _box, { //"/jsmind/example/demo.html"
  8270. "id": "mind" + cid + stage + task + tool,
  8271. "style": {
  8272. "width": "90%",
  8273. "height": "90%",
  8274. "overflow": 'hidden'
  8275. },
  8276. "onresize": function () { }
  8277. }, {
  8278. closecallback: function () { }
  8279. }, {
  8280. "style": {
  8281. "height": "36px"
  8282. }
  8283. }).form; //创建窗体
  8284. _taskbar = {
  8285. "id": str + _formdiv.id,
  8286. "style": {
  8287. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8288. },
  8289. "name": "思维导图",
  8290. "forms": _formdiv,
  8291. "click": function () {
  8292. U.MD.D.I.openApplication(str, obj, info);
  8293. }
  8294. }
  8295. break;
  8296. case "MindMap":
  8297. aTool = 3;
  8298. _iframe = $$("iframe", {
  8299. "frameborder": "no",
  8300. "border": "0",
  8301. "scrolling ": "no",
  8302. "style": {
  8303. "cssText": "border:0;width:100%;height:100%"
  8304. },
  8305. "src": "//cloud.cocorobo.cn/mind/"
  8306. })
  8307. _box.appendChild(_iframe);
  8308. _box.appendChild(_jie);
  8309. _formdiv = new U.UF.UI.form(
  8310. "思维导图",
  8311. _box, { //"/jsmind/example/demo.html"
  8312. "id": "mind" + cid + stage + task + tool,
  8313. "style": {
  8314. "width": "90%",
  8315. "height": "90%",
  8316. "overflow": 'hidden'
  8317. },
  8318. "onresize": function () { }
  8319. }, {
  8320. closecallback: function () { }
  8321. }, {
  8322. "style": {
  8323. "height": "36px"
  8324. }
  8325. }).form; //创建窗体
  8326. _taskbar = {
  8327. "id": str + _formdiv.id,
  8328. "style": {
  8329. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8330. },
  8331. "name": "思维导图",
  8332. "forms": _formdiv,
  8333. "click": function () {
  8334. U.MD.D.I.openApplication(str, obj, info);
  8335. }
  8336. }
  8337. break;
  8338. case "doc":
  8339. aTool = 6;
  8340. _iframe = $$("iframe", {
  8341. "frameborder": "no",
  8342. "border": "0",
  8343. "scrolling ": "no",
  8344. "style": {
  8345. "cssText": "border:0;width:100%;height:100%"
  8346. },
  8347. "src": "/Office/Word/WordEditArea.htm"
  8348. })
  8349. _box.appendChild(_iframe);
  8350. _box.appendChild(_jie);
  8351. _formdiv = new U.UF.UI.form(
  8352. "协同文档",
  8353. _box, {
  8354. "id": "doc" + cid + stage + task + tool,
  8355. "style": {
  8356. "width": "90%",
  8357. "height": "90%",
  8358. "overflow": 'hidden'
  8359. },
  8360. "onresize": function () { }
  8361. }, {
  8362. closecallback: function () { }
  8363. }, {
  8364. "style": {
  8365. "height": "36px"
  8366. }
  8367. }).form; //创建窗体
  8368. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8369. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8370. })
  8371. _taskbar = {
  8372. "id": str + _formdiv.id,
  8373. "style": {
  8374. "backgroundImage": "url(/img/icon/doc.png)"
  8375. },
  8376. "name": "协同文档",
  8377. "forms": _formdiv,
  8378. "click": function () {
  8379. U.MD.D.I.openApplication(str, obj, info);
  8380. }
  8381. }
  8382. break;
  8383. case "mindNetwork": //好友打开
  8384. aTool = 7;
  8385. _iframe = $$("iframe", {
  8386. "webkitallowfullscreen": "",
  8387. "mozallowfullscreen": "",
  8388. "allowfullscreen": "",
  8389. "frameborder": "no",
  8390. "border": "0",
  8391. "scrolling ": "no",
  8392. "style": {
  8393. "cssText": "border:0; width:100%; height:100%;"
  8394. },
  8395. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8396. })
  8397. _box.appendChild(_iframe);
  8398. _box.appendChild(_jie);
  8399. _formdiv = new U.UF.UI.form(
  8400. "思维网格",
  8401. _box, {
  8402. "id": "mindNetwork" + cid + stage + task + tool,
  8403. "style": {
  8404. "width": "90%",
  8405. "height": "90%",
  8406. "overflow": 'hidden'
  8407. },
  8408. "onresize": function () { }
  8409. }, {
  8410. closecallback: function () { }
  8411. }, {
  8412. "style": {
  8413. "height": "36px"
  8414. }
  8415. }).form; //创建窗体
  8416. _taskbar = {
  8417. "id": str + _formdiv.id,
  8418. "style": {
  8419. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8420. },
  8421. "name": "思维网格",
  8422. "forms": _formdiv,
  8423. "click": function () {
  8424. U.MD.D.I.openApplication(str, obj, info);
  8425. }
  8426. }
  8427. break;
  8428. case "courseDesign":
  8429. _iframe = $$("iframe", {
  8430. "webkitallowfullscreen": "",
  8431. "mozallowfullscreen": "",
  8432. "allowfullscreen": "",
  8433. "frameborder": "no",
  8434. "border": "0",
  8435. "scrolling ": "no",
  8436. "style": {
  8437. "cssText": "border:0; width:100%; height:100%;"
  8438. },
  8439. "src": "/course-design-vue"
  8440. })
  8441. _box.appendChild(_iframe);
  8442. _box.appendChild(_jie);
  8443. _formdiv = new U.UF.UI.form(
  8444. "项目设计",
  8445. _box, {
  8446. "id": "courseDesign" + cid + stage + task + tool,
  8447. "style": {
  8448. "width": "90%",
  8449. "height": "90%",
  8450. "overflow": 'hidden'
  8451. },
  8452. "onresize": function () { }
  8453. }, {
  8454. closecallback: function () { }
  8455. }, {
  8456. "style": {
  8457. "height": "36px"
  8458. }
  8459. }).form; //创建窗体
  8460. _taskbar = {
  8461. "id": str + _formdiv.id,
  8462. "style": {
  8463. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8464. },
  8465. "name": "项目设计",
  8466. "forms": _formdiv,
  8467. "click": function () {
  8468. U.MD.D.I.openApplication(str, obj, info);
  8469. }
  8470. }
  8471. break;
  8472. }
  8473. const script1 = document.createElement("script");
  8474. script1.type = "text/javascript";
  8475. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8476. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8477. const script2 = document.createElement("script");
  8478. script2.type = "text/javascript";
  8479. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8480. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8481. const script3 = document.createElement("script");
  8482. script3.type = "text/javascript";
  8483. script3.charset = "UTF-8";
  8484. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8485. const script4 = document.createElement("script");
  8486. script4.type = "text/javascript";
  8487. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8488. script4.src = window.origin + "/js/Common/jietu2E.js";
  8489. if (_iframe) {
  8490. if (str == 'doc') {
  8491. _iframe = _formdiv.querySelector('iframe')
  8492. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8493. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8494. _iframe.contentWindow.document.body.appendChild(script1);
  8495. _iframe.contentWindow.document.body.appendChild(script2);
  8496. // _iframe.contentWindow.document.body.appendChild(script3);
  8497. _iframe.contentWindow.document.body.appendChild(script4);
  8498. })
  8499. if (onloadListener) {
  8500. _iframe.contentDocument.location.reload()
  8501. } else {
  8502. _iframe.contentDocument.location.reload()
  8503. }
  8504. } else if (str == 'courseDesign') {
  8505. U.UF.DL.iframeLoad(_iframe, function () {
  8506. // _iframe.contentWindow.U.MD.O.W.load();
  8507. // _iframe.contentWindow.document.body.appendChild(script1);
  8508. _iframe.contentWindow.document.body.appendChild(script2);
  8509. _iframe.contentWindow.document.body.appendChild(script4);
  8510. })
  8511. } else if (str == 'mind') {
  8512. _iframe = _formdiv.querySelector('iframe')
  8513. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8514. //
  8515. _iframe.contentWindow.document.body.appendChild(script1);
  8516. _iframe.contentWindow.document.body.appendChild(script2);
  8517. _iframe.contentWindow.document.body.appendChild(script4);
  8518. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8519. })
  8520. if (onloadListener) {
  8521. _iframe.contentDocument.location.reload()
  8522. } else {
  8523. _iframe.contentDocument.location.reload()
  8524. }
  8525. } else if (str == 'whiteboard') {
  8526. _iframe = _formdiv.querySelector('iframe')
  8527. let onloadListener = _iframe.onload = () => {
  8528. _iframe.contentWindow.document.body.appendChild(script1);
  8529. _iframe.contentWindow.document.body.appendChild(script2);
  8530. _iframe.contentWindow.document.body.appendChild(script4);
  8531. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8532. };
  8533. // if (onloadListener) {
  8534. // try {
  8535. // _iframe.src += "?cocorobo="+new Date().getTime()
  8536. // _iframe.contentWindow.document.location.reload()
  8537. // } catch (error) {
  8538. // }
  8539. // } else {
  8540. // _iframe.contentDocument.location.reload()
  8541. // }
  8542. } else {
  8543. _iframe.onload = () => {
  8544. _iframe.contentWindow.document.body.appendChild(script1);
  8545. _iframe.contentWindow.document.body.appendChild(script2);
  8546. // _iframe.contentWindow.document.body.appendChild(script3);
  8547. _iframe.contentWindow.document.body.appendChild(script4);
  8548. };
  8549. }
  8550. _jie.onclick = async () => {
  8551. let text = ''
  8552. if (aTool == 1) {
  8553. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8554. } else if (aTool == 6) {
  8555. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8556. } else if (aTool == 3) {
  8557. text = await U.MD.D.I.getEditorContent(_iframe);
  8558. }
  8559. _loading.style.display = 'flex'
  8560. console.log(_loading);
  8561. var _ajs = _iframe.contentWindow.document.createElement("script");
  8562. _ajs.type = "text/javascript";
  8563. _ajs.innerHTML =
  8564. // 'console.log(' + _loading + ');\n' +
  8565. 'var _js = document.createElement("script");\n' +
  8566. '_js.type="text/javascript";\n' +
  8567. '_js.charset="UTF-8";\n' +
  8568. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8569. "_js.onload = function(){\n" +
  8570. ' var a = document.getElementsByTagName("img")\n' +
  8571. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8572. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8573. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8574. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8575. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8576. "beforeUpload_shishi(file," +
  8577. "'" +
  8578. _userid +
  8579. "'" +
  8580. ", " +
  8581. "'" +
  8582. _cid +
  8583. "'" +
  8584. ", " +
  8585. "'" +
  8586. _stage +
  8587. "'" +
  8588. ", " +
  8589. "'" +
  8590. _task +
  8591. "'" +
  8592. ", " +
  8593. "'" +
  8594. _tool +
  8595. "'" +
  8596. ", " +
  8597. "'" +
  8598. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8599. "'" +
  8600. ", " +
  8601. "'" +
  8602. aTool +
  8603. "'" +
  8604. ", " +
  8605. "`" +
  8606. text +
  8607. "`" +
  8608. ")\n" +
  8609. " });\n" +
  8610. "}\n" +
  8611. "document.head.appendChild(_js);\n";
  8612. _iframe.contentWindow.document.head.appendChild(_ajs);
  8613. }
  8614. }
  8615. //U.MD.D.I.openClick(str);
  8616. //如果有任务栏信息
  8617. // if (_taskbar) {
  8618. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8619. // }
  8620. }
  8621. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8622. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8623. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8624. _userid = student.userid, //登录用户id
  8625. _username = student.student //用户名字
  8626. let _iframe;
  8627. let _cid = cid,
  8628. _stage = stage,
  8629. _task = task,
  8630. _tool = tool;
  8631. var _jie = $$("div", {
  8632. "style": {
  8633. "position": "absolute",
  8634. "bottom": "50px",
  8635. "right": "50px",
  8636. "zIndex": "9999",
  8637. "backgroundColor": "#2268bc",
  8638. "color": "#fff",
  8639. "padding": "12px 20px",
  8640. "cursor": "pointer",
  8641. "borderRadius": "4px",
  8642. },
  8643. "innerHTML": "提交作业"
  8644. })
  8645. let aTool = ''
  8646. let _loading = document.createElement('div')
  8647. _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;"
  8648. // _loading.id = "";
  8649. let _lchild = document.createElement('div')
  8650. let _limg = document.createElement('img')
  8651. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8652. _limg.style = "width: 26px;margin-right: 10px;"
  8653. _lchild.appendChild(_limg)
  8654. let _lspan = document.createElement('span')
  8655. _lspan.innerHTML = "上传中..."
  8656. _lchild.appendChild(_lspan)
  8657. _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%);"
  8658. _loading.appendChild(_lchild)
  8659. var _box = $$('div', {
  8660. "style": {
  8661. "position": "relative",
  8662. "width": "100%",
  8663. "height": "100%",
  8664. },
  8665. })
  8666. _box.appendChild(_loading)
  8667. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8668. switch (str) {
  8669. case "whiteboard":
  8670. aTool = 1;
  8671. _iframe = $$("iframe", {
  8672. "frameborder": "no",
  8673. "border": "0",
  8674. "scrolling ": "no",
  8675. "style": {
  8676. "cssText": "border:0;width:100%;height:100%"
  8677. },
  8678. "src": "https://beta.iwb.cocorobo.cn/"
  8679. })
  8680. _box.appendChild(_iframe);
  8681. _box.appendChild(_jie);
  8682. _formdiv = new U.UF.UI.form(
  8683. "电子白板-" + _username,
  8684. _box, {
  8685. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8686. "style": {
  8687. "width": "90%",
  8688. "height": "90%",
  8689. "overflow": 'hidden'
  8690. },
  8691. "onresize": function () { }
  8692. }, {
  8693. closecallback: function () { }
  8694. }, {
  8695. "style": {
  8696. "height": "36px"
  8697. }
  8698. }).form; //创建窗体
  8699. _taskbar = {
  8700. "id": str + _formdiv.id,
  8701. "style": {
  8702. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8703. },
  8704. "name": "电子白板",
  8705. "forms": _formdiv,
  8706. "click": function () {
  8707. U.MD.D.I.openApplication(str, obj, info);
  8708. }
  8709. }
  8710. break;
  8711. case "mind":
  8712. aTool = 3;
  8713. _iframe = $$("iframe", {
  8714. "frameborder": "no",
  8715. "border": "0",
  8716. "scrolling ": "no",
  8717. "style": {
  8718. "cssText": "border:0;width:100%;height:100%"
  8719. },
  8720. "src": "/kityminder-editor/dist/index.html"
  8721. })
  8722. _box.appendChild(_iframe);
  8723. _box.appendChild(_jie);
  8724. _formdiv = new U.UF.UI.form(
  8725. "思维导图-" + _username,
  8726. _box, { //"/jsmind/example/demo.html"
  8727. "id": "mind" + cid + stage + task + tool + _userid,
  8728. "style": {
  8729. "width": "90%",
  8730. "height": "90%",
  8731. "overflow": 'hidden'
  8732. },
  8733. "onresize": function () { }
  8734. }, {
  8735. closecallback: function () { }
  8736. }, {
  8737. "style": {
  8738. "height": "36px"
  8739. }
  8740. }).form; //创建窗体
  8741. _taskbar = {
  8742. "id": str + _formdiv.id,
  8743. "style": {
  8744. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8745. },
  8746. "name": "思维导图",
  8747. "forms": _formdiv,
  8748. "click": function () {
  8749. U.MD.D.I.openApplication(str, obj, info);
  8750. }
  8751. }
  8752. break;
  8753. case "MindMap":
  8754. aTool = 3;
  8755. _iframe = $$("iframe", {
  8756. "frameborder": "no",
  8757. "border": "0",
  8758. "scrolling ": "no",
  8759. "style": {
  8760. "cssText": "border:0;width:100%;height:100%"
  8761. },
  8762. "src": "//cloud.cocorobo.cn/mind/"
  8763. })
  8764. _box.appendChild(_iframe);
  8765. _box.appendChild(_jie);
  8766. _formdiv = new U.UF.UI.form(
  8767. "思维导图-" + _username,
  8768. _box, { //"/jsmind/example/demo.html"
  8769. "id": "mind" + cid + stage + task + tool + _userid,
  8770. "style": {
  8771. "width": "90%",
  8772. "height": "90%",
  8773. "overflow": 'hidden'
  8774. },
  8775. "onresize": function () { }
  8776. }, {
  8777. closecallback: function () { }
  8778. }, {
  8779. "style": {
  8780. "height": "36px"
  8781. }
  8782. }).form; //创建窗体
  8783. _taskbar = {
  8784. "id": str + _formdiv.id,
  8785. "style": {
  8786. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8787. },
  8788. "name": "思维导图",
  8789. "forms": _formdiv,
  8790. "click": function () {
  8791. U.MD.D.I.openApplication(str, obj, info);
  8792. }
  8793. }
  8794. break;
  8795. case "doc":
  8796. aTool = 6;
  8797. _iframe = $$("iframe", {
  8798. "frameborder": "no",
  8799. "border": "0",
  8800. "scrolling ": "no",
  8801. "style": {
  8802. "cssText": "border:0;width:100%;height:100%"
  8803. },
  8804. "src": "/Office/Word/WordEditArea.htm"
  8805. })
  8806. _box.appendChild(_iframe);
  8807. _box.appendChild(_jie);
  8808. _formdiv = new U.UF.UI.form(
  8809. "协同文档-" + _username,
  8810. _box, {
  8811. "id": "doc" + cid + stage + task + tool + _userid,
  8812. "style": {
  8813. "width": "90%",
  8814. "height": "90%",
  8815. "overflow": 'hidden'
  8816. },
  8817. "onresize": function () { }
  8818. }, {
  8819. closecallback: function () { }
  8820. }, {
  8821. "style": {
  8822. "height": "36px"
  8823. }
  8824. }).form; //创建窗体
  8825. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8826. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8827. })
  8828. _taskbar = {
  8829. "id": str + _formdiv.id,
  8830. "style": {
  8831. "backgroundImage": "url(/img/icon/doc.png)"
  8832. },
  8833. "name": "协同文档",
  8834. "forms": _formdiv,
  8835. "click": function () {
  8836. U.MD.D.I.openApplication(str, obj, info);
  8837. }
  8838. }
  8839. break;
  8840. case "mindNetwork": //好友打开
  8841. aTool = 7;
  8842. _iframe = $$("iframe", {
  8843. "webkitallowfullscreen": "",
  8844. "mozallowfullscreen": "",
  8845. "allowfullscreen": "",
  8846. "frameborder": "no",
  8847. "border": "0",
  8848. "scrolling ": "no",
  8849. "style": {
  8850. "cssText": "border:0; width:100%; height:100%;"
  8851. },
  8852. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8853. })
  8854. _box.appendChild(_iframe);
  8855. _box.appendChild(_jie);
  8856. _formdiv = new U.UF.UI.form(
  8857. "思维网格-" + _username,
  8858. _box, {
  8859. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8860. "style": {
  8861. "width": "90%",
  8862. "height": "90%",
  8863. "overflow": 'hidden'
  8864. },
  8865. "onresize": function () { }
  8866. }, {
  8867. closecallback: function () { }
  8868. }, {
  8869. "style": {
  8870. "height": "36px"
  8871. }
  8872. }).form; //创建窗体
  8873. _taskbar = {
  8874. "id": str + _formdiv.id,
  8875. "style": {
  8876. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8877. },
  8878. "name": "思维网格",
  8879. "forms": _formdiv,
  8880. "click": function () {
  8881. U.MD.D.I.openApplication(str, obj, info);
  8882. }
  8883. }
  8884. break;
  8885. case "courseDesign":
  8886. _iframe = $$("iframe", {
  8887. "webkitallowfullscreen": "",
  8888. "mozallowfullscreen": "",
  8889. "allowfullscreen": "",
  8890. "frameborder": "no",
  8891. "border": "0",
  8892. "scrolling ": "no",
  8893. "style": {
  8894. "cssText": "border:0; width:100%; height:100%;"
  8895. },
  8896. "src": "/course-design-vue"
  8897. })
  8898. _box.appendChild(_iframe);
  8899. _box.appendChild(_jie);
  8900. _formdiv = new U.UF.UI.form(
  8901. "项目设计-" + _username,
  8902. _box, {
  8903. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8904. "style": {
  8905. "width": "90%",
  8906. "height": "90%",
  8907. "overflow": 'hidden'
  8908. },
  8909. "onresize": function () { }
  8910. }, {
  8911. closecallback: function () { }
  8912. }, {
  8913. "style": {
  8914. "height": "36px"
  8915. }
  8916. }).form; //创建窗体
  8917. _taskbar = {
  8918. "id": str + _formdiv.id,
  8919. "style": {
  8920. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8921. },
  8922. "name": "项目设计",
  8923. "forms": _formdiv,
  8924. "click": function () {
  8925. U.MD.D.I.openApplication(str, obj, info);
  8926. }
  8927. }
  8928. break;
  8929. }
  8930. const script1 = document.createElement("script");
  8931. script1.type = "text/javascript";
  8932. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8933. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8934. const script2 = document.createElement("script");
  8935. script2.type = "text/javascript";
  8936. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8937. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8938. const script3 = document.createElement("script");
  8939. script3.type = "text/javascript";
  8940. script3.charset = "UTF-8";
  8941. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8942. const script4 = document.createElement("script");
  8943. script4.type = "text/javascript";
  8944. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8945. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8946. if (_iframe) {
  8947. if (str == 'doc') {
  8948. _iframe = _formdiv.querySelector('iframe')
  8949. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8950. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8951. _iframe.contentWindow.document.body.appendChild(script1);
  8952. _iframe.contentWindow.document.body.appendChild(script2);
  8953. // _iframe.contentWindow.document.body.appendChild(script3);
  8954. _iframe.contentWindow.document.body.appendChild(script4);
  8955. })
  8956. if (onloadListener) {
  8957. _iframe.contentDocument.location.reload()
  8958. } else {
  8959. _iframe.contentDocument.location.reload()
  8960. }
  8961. } else if (str == 'courseDesign') {
  8962. U.UF.DL.iframeLoad(_iframe, function () {
  8963. // _iframe.contentWindow.U.MD.O.W.load();
  8964. // _iframe.contentWindow.document.body.appendChild(script1);
  8965. _iframe.contentWindow.document.body.appendChild(script2);
  8966. _iframe.contentWindow.document.body.appendChild(script4);
  8967. })
  8968. } else if (str == 'mind') {
  8969. _iframe = _formdiv.querySelector('iframe')
  8970. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8971. //
  8972. _iframe.contentWindow.document.body.appendChild(script1);
  8973. _iframe.contentWindow.document.body.appendChild(script2);
  8974. _iframe.contentWindow.document.body.appendChild(script4);
  8975. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8976. })
  8977. if (onloadListener) {
  8978. _iframe.contentDocument.location.reload()
  8979. } else {
  8980. _iframe.contentDocument.location.reload()
  8981. }
  8982. } else if (str == 'whiteboard') {
  8983. _iframe = _formdiv.querySelector('iframe')
  8984. let onloadListener = _iframe.onload = () => {
  8985. _iframe.contentWindow.document.body.appendChild(script1);
  8986. _iframe.contentWindow.document.body.appendChild(script2);
  8987. _iframe.contentWindow.document.body.appendChild(script4);
  8988. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8989. };
  8990. // if (onloadListener) {
  8991. // try {
  8992. // _iframe.src += "?cocorobo="+new Date().getTime()
  8993. // _iframe.contentWindow.document.location.reload()
  8994. // } catch (error) {
  8995. // }
  8996. // } else {
  8997. // _iframe.contentDocument.location.reload()
  8998. // }
  8999. } else {
  9000. _iframe.onload = () => {
  9001. _iframe.contentWindow.document.body.appendChild(script1);
  9002. _iframe.contentWindow.document.body.appendChild(script2);
  9003. // _iframe.contentWindow.document.body.appendChild(script3);
  9004. _iframe.contentWindow.document.body.appendChild(script4);
  9005. };
  9006. }
  9007. _jie.onclick = async () => {
  9008. let text = ''
  9009. if (aTool == 1) {
  9010. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9011. } else if (aTool == 6) {
  9012. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9013. } else if (aTool == 3) {
  9014. text = await U.MD.D.I.getEditorContent(_iframe);
  9015. }
  9016. _loading.style.display = 'flex'
  9017. console.log(_loading);
  9018. var _ajs = _iframe.contentWindow.document.createElement("script");
  9019. _ajs.type = "text/javascript";
  9020. _ajs.innerHTML =
  9021. // 'console.log(' + _loading + ');\n' +
  9022. 'var _js = document.createElement("script");\n' +
  9023. '_js.type="text/javascript";\n' +
  9024. '_js.charset="UTF-8";\n' +
  9025. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9026. "_js.onload = function(){\n" +
  9027. ' var a = document.getElementsByTagName("img")\n' +
  9028. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9029. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9030. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9031. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9032. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9033. "beforeUpload_shishi(file," +
  9034. "'" +
  9035. _userid +
  9036. "'" +
  9037. ", " +
  9038. "'" +
  9039. _cid +
  9040. "'" +
  9041. ", " +
  9042. "'" +
  9043. _stage +
  9044. "'" +
  9045. ", " +
  9046. "'" +
  9047. _task +
  9048. "'" +
  9049. ", " +
  9050. "'" +
  9051. _tool +
  9052. "'" +
  9053. ", " +
  9054. "'" +
  9055. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9056. "'" +
  9057. ", " +
  9058. "'" +
  9059. aTool +
  9060. "'" +
  9061. ", " +
  9062. "`" +
  9063. text +
  9064. "`" +
  9065. ")\n" +
  9066. " });\n" +
  9067. "}\n" +
  9068. "document.head.appendChild(_js);\n";
  9069. _iframe.contentWindow.document.head.appendChild(_ajs);
  9070. }
  9071. }
  9072. }
  9073. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9074. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9075. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9076. _userid = student.userid, //登录用户id
  9077. _username = student.student //用户名字
  9078. let _iframe;
  9079. let _cid = cid,
  9080. _stage = stage,
  9081. _task = task,
  9082. _tool = tool;
  9083. var _jie = $$("div", {
  9084. "style": {
  9085. "position": "absolute",
  9086. "bottom": "50px",
  9087. "right": "50px",
  9088. "zIndex": "9999",
  9089. "backgroundColor": "#2268bc",
  9090. "color": "#fff",
  9091. "padding": "12px 20px",
  9092. "cursor": "pointer",
  9093. "borderRadius": "4px",
  9094. },
  9095. "innerHTML": "提交作业"
  9096. })
  9097. let aTool = ''
  9098. let _loading = document.createElement('div')
  9099. _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;"
  9100. // _loading.id = "";
  9101. let _lchild = document.createElement('div')
  9102. let _limg = document.createElement('img')
  9103. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9104. _limg.style = "width: 26px;margin-right: 10px;"
  9105. _lchild.appendChild(_limg)
  9106. let _lspan = document.createElement('span')
  9107. _lspan.innerHTML = "上传中..."
  9108. _lchild.appendChild(_lspan)
  9109. _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%);"
  9110. _loading.appendChild(_lchild)
  9111. var _box = $$('div', {
  9112. "style": {
  9113. "position": "relative",
  9114. "width": "100%",
  9115. "height": "100%",
  9116. },
  9117. })
  9118. _box.appendChild(_loading)
  9119. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9120. switch (str) {
  9121. case "whiteboard":
  9122. aTool = 1;
  9123. _iframe = $$("iframe", {
  9124. "frameborder": "no",
  9125. "border": "0",
  9126. "scrolling ": "no",
  9127. "style": {
  9128. "cssText": "border:0;width:100%;height:100%"
  9129. },
  9130. "src": "https://beta.iwb.cocorobo.cn/"
  9131. })
  9132. _box.appendChild(_iframe);
  9133. _box.appendChild(_jie);
  9134. _formdiv = new U.UF.UI.form(
  9135. "电子白板-" + _username,
  9136. _box, {
  9137. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9138. "style": {
  9139. "width": "90%",
  9140. "height": "90%",
  9141. "overflow": 'hidden'
  9142. },
  9143. "onresize": function () { }
  9144. }, {
  9145. closecallback: function () { }
  9146. }, {
  9147. "style": {
  9148. "height": "36px"
  9149. }
  9150. }).form; //创建窗体
  9151. _taskbar = {
  9152. "id": str + _formdiv.id,
  9153. "style": {
  9154. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9155. },
  9156. "name": "电子白板",
  9157. "forms": _formdiv,
  9158. "click": function () {
  9159. U.MD.D.I.openApplication(str, obj, info);
  9160. }
  9161. }
  9162. break;
  9163. case "mind":
  9164. aTool = 3;
  9165. _iframe = $$("iframe", {
  9166. "frameborder": "no",
  9167. "border": "0",
  9168. "scrolling ": "no",
  9169. "style": {
  9170. "cssText": "border:0;width:100%;height:100%"
  9171. },
  9172. "src": "/kityminder-editor/dist/index.html"
  9173. })
  9174. _box.appendChild(_iframe);
  9175. _box.appendChild(_jie);
  9176. _formdiv = new U.UF.UI.form(
  9177. "思维导图-" + _username,
  9178. _box, { //"/jsmind/example/demo.html"
  9179. "id": "mind" + cid + stage + task + tool + _userid,
  9180. "style": {
  9181. "width": "90%",
  9182. "height": "90%",
  9183. "overflow": 'hidden'
  9184. },
  9185. "onresize": function () { }
  9186. }, {
  9187. closecallback: function () { }
  9188. }, {
  9189. "style": {
  9190. "height": "36px"
  9191. }
  9192. }).form; //创建窗体
  9193. _taskbar = {
  9194. "id": str + _formdiv.id,
  9195. "style": {
  9196. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9197. },
  9198. "name": "思维导图",
  9199. "forms": _formdiv,
  9200. "click": function () {
  9201. U.MD.D.I.openApplication(str, obj, info);
  9202. }
  9203. }
  9204. break;
  9205. case "MindMap":
  9206. aTool = 3;
  9207. _iframe = $$("iframe", {
  9208. "frameborder": "no",
  9209. "border": "0",
  9210. "scrolling ": "no",
  9211. "style": {
  9212. "cssText": "border:0;width:100%;height:100%"
  9213. },
  9214. "src": "//cloud.cocorobo.cn/mind/"
  9215. })
  9216. _box.appendChild(_iframe);
  9217. _box.appendChild(_jie);
  9218. _formdiv = new U.UF.UI.form(
  9219. "思维导图-" + _username,
  9220. _box, { //"/jsmind/example/demo.html"
  9221. "id": "mind" + cid + stage + task + tool + _userid,
  9222. "style": {
  9223. "width": "90%",
  9224. "height": "90%",
  9225. "overflow": 'hidden'
  9226. },
  9227. "onresize": function () { }
  9228. }, {
  9229. closecallback: function () { }
  9230. }, {
  9231. "style": {
  9232. "height": "36px"
  9233. }
  9234. }).form; //创建窗体
  9235. _taskbar = {
  9236. "id": str + _formdiv.id,
  9237. "style": {
  9238. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9239. },
  9240. "name": "思维导图",
  9241. "forms": _formdiv,
  9242. "click": function () {
  9243. U.MD.D.I.openApplication(str, obj, info);
  9244. }
  9245. }
  9246. break;
  9247. case "doc":
  9248. aTool = 6;
  9249. _iframe = $$("iframe", {
  9250. "frameborder": "no",
  9251. "border": "0",
  9252. "scrolling ": "no",
  9253. "style": {
  9254. "cssText": "border:0;width:100%;height:100%"
  9255. },
  9256. "src": "/Office/Word/WordEditArea.htm"
  9257. })
  9258. _box.appendChild(_iframe);
  9259. _box.appendChild(_jie);
  9260. _formdiv = new U.UF.UI.form(
  9261. "协同文档-" + _username,
  9262. _box, {
  9263. "id": "doc" + cid + stage + task + tool + _userid,
  9264. "style": {
  9265. "width": "90%",
  9266. "height": "90%",
  9267. "overflow": 'hidden'
  9268. },
  9269. "onresize": function () { }
  9270. }, {
  9271. closecallback: function () { }
  9272. }, {
  9273. "style": {
  9274. "height": "36px"
  9275. }
  9276. }).form; //创建窗体
  9277. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9278. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9279. })
  9280. _taskbar = {
  9281. "id": str + _formdiv.id,
  9282. "style": {
  9283. "backgroundImage": "url(/img/icon/doc.png)"
  9284. },
  9285. "name": "协同文档",
  9286. "forms": _formdiv,
  9287. "click": function () {
  9288. U.MD.D.I.openApplication(str, obj, info);
  9289. }
  9290. }
  9291. break;
  9292. case "mindNetwork": //好友打开
  9293. aTool = 7;
  9294. _iframe = $$("iframe", {
  9295. "webkitallowfullscreen": "",
  9296. "mozallowfullscreen": "",
  9297. "allowfullscreen": "",
  9298. "frameborder": "no",
  9299. "border": "0",
  9300. "scrolling ": "no",
  9301. "style": {
  9302. "cssText": "border:0; width:100%; height:100%;"
  9303. },
  9304. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9305. })
  9306. _box.appendChild(_iframe);
  9307. _box.appendChild(_jie);
  9308. _formdiv = new U.UF.UI.form(
  9309. "思维网格-" + _username,
  9310. _box, {
  9311. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9312. "style": {
  9313. "width": "90%",
  9314. "height": "90%",
  9315. "overflow": 'hidden'
  9316. },
  9317. "onresize": function () { }
  9318. }, {
  9319. closecallback: function () { }
  9320. }, {
  9321. "style": {
  9322. "height": "36px"
  9323. }
  9324. }).form; //创建窗体
  9325. _taskbar = {
  9326. "id": str + _formdiv.id,
  9327. "style": {
  9328. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9329. },
  9330. "name": "思维网格",
  9331. "forms": _formdiv,
  9332. "click": function () {
  9333. U.MD.D.I.openApplication(str, obj, info);
  9334. }
  9335. }
  9336. break;
  9337. case "courseDesign":
  9338. _iframe = $$("iframe", {
  9339. "webkitallowfullscreen": "",
  9340. "mozallowfullscreen": "",
  9341. "allowfullscreen": "",
  9342. "frameborder": "no",
  9343. "border": "0",
  9344. "scrolling ": "no",
  9345. "style": {
  9346. "cssText": "border:0; width:100%; height:100%;"
  9347. },
  9348. "src": "/course-design-vue"
  9349. })
  9350. _box.appendChild(_iframe);
  9351. _box.appendChild(_jie);
  9352. _formdiv = new U.UF.UI.form(
  9353. "项目设计-" + _username,
  9354. _box, {
  9355. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9356. "style": {
  9357. "width": "90%",
  9358. "height": "90%",
  9359. "overflow": 'hidden'
  9360. },
  9361. "onresize": function () { }
  9362. }, {
  9363. closecallback: function () { }
  9364. }, {
  9365. "style": {
  9366. "height": "36px"
  9367. }
  9368. }).form; //创建窗体
  9369. _taskbar = {
  9370. "id": str + _formdiv.id,
  9371. "style": {
  9372. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9373. },
  9374. "name": "项目设计",
  9375. "forms": _formdiv,
  9376. "click": function () {
  9377. U.MD.D.I.openApplication(str, obj, info);
  9378. }
  9379. }
  9380. break;
  9381. }
  9382. const script1 = document.createElement("script");
  9383. script1.type = "text/javascript";
  9384. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9385. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9386. const script2 = document.createElement("script");
  9387. script2.type = "text/javascript";
  9388. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9389. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9390. const script3 = document.createElement("script");
  9391. script3.type = "text/javascript";
  9392. script3.charset = "UTF-8";
  9393. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9394. const script4 = document.createElement("script");
  9395. script4.type = "text/javascript";
  9396. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9397. script4.src = window.origin + "/js/Common/jietu2E.js";
  9398. if (_iframe) {
  9399. if (str == 'doc') {
  9400. _iframe = _formdiv.querySelector('iframe')
  9401. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9402. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9403. _iframe.contentWindow.document.body.appendChild(script1);
  9404. _iframe.contentWindow.document.body.appendChild(script2);
  9405. // _iframe.contentWindow.document.body.appendChild(script3);
  9406. _iframe.contentWindow.document.body.appendChild(script4);
  9407. })
  9408. if (onloadListener) {
  9409. _iframe.contentDocument.location.reload()
  9410. } else {
  9411. _iframe.contentDocument.location.reload()
  9412. }
  9413. } else if (str == 'courseDesign') {
  9414. U.UF.DL.iframeLoad(_iframe, function () {
  9415. // _iframe.contentWindow.U.MD.O.W.load();
  9416. // _iframe.contentWindow.document.body.appendChild(script1);
  9417. _iframe.contentWindow.document.body.appendChild(script2);
  9418. _iframe.contentWindow.document.body.appendChild(script4);
  9419. })
  9420. } else if (str == 'mind') {
  9421. _iframe = _formdiv.querySelector('iframe')
  9422. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9423. //
  9424. _iframe.contentWindow.document.body.appendChild(script1);
  9425. _iframe.contentWindow.document.body.appendChild(script2);
  9426. _iframe.contentWindow.document.body.appendChild(script4);
  9427. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9428. })
  9429. if (onloadListener) {
  9430. _iframe.contentDocument.location.reload()
  9431. } else {
  9432. _iframe.contentDocument.location.reload()
  9433. }
  9434. } else if (str == 'whiteboard') {
  9435. _iframe = _formdiv.querySelector('iframe')
  9436. let onloadListener = _iframe.onload = () => {
  9437. _iframe.contentWindow.document.body.appendChild(script1);
  9438. _iframe.contentWindow.document.body.appendChild(script2);
  9439. _iframe.contentWindow.document.body.appendChild(script4);
  9440. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9441. };
  9442. // if (onloadListener) {
  9443. // try {
  9444. // _iframe.src += "?cocorobo="+new Date().getTime()
  9445. // _iframe.contentWindow.document.location.reload()
  9446. // } catch (error) {
  9447. // }
  9448. // } else {
  9449. // _iframe.contentDocument.location.reload()
  9450. // }
  9451. } else {
  9452. _iframe.onload = () => {
  9453. _iframe.contentWindow.document.body.appendChild(script1);
  9454. _iframe.contentWindow.document.body.appendChild(script2);
  9455. // _iframe.contentWindow.document.body.appendChild(script3);
  9456. _iframe.contentWindow.document.body.appendChild(script4);
  9457. };
  9458. }
  9459. _jie.onclick = async () => {
  9460. let text = ''
  9461. if (aTool == 1) {
  9462. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9463. } else if (aTool == 6) {
  9464. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9465. } else if (aTool == 3) {
  9466. text = await U.MD.D.I.getEditorContent(_iframe);
  9467. }
  9468. _loading.style.display = 'flex'
  9469. console.log(_loading);
  9470. var _ajs = _iframe.contentWindow.document.createElement("script");
  9471. _ajs.type = "text/javascript";
  9472. _ajs.innerHTML =
  9473. // 'console.log(' + _loading + ');\n' +
  9474. 'var _js = document.createElement("script");\n' +
  9475. '_js.type="text/javascript";\n' +
  9476. '_js.charset="UTF-8";\n' +
  9477. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9478. "_js.onload = function(){\n" +
  9479. ' var a = document.getElementsByTagName("img")\n' +
  9480. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9481. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9482. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9483. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9484. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9485. "beforeUpload_shishi(file," +
  9486. "'" +
  9487. _userid +
  9488. "'" +
  9489. ", " +
  9490. "'" +
  9491. _cid +
  9492. "'" +
  9493. ", " +
  9494. "'" +
  9495. _stage +
  9496. "'" +
  9497. ", " +
  9498. "'" +
  9499. _task +
  9500. "'" +
  9501. ", " +
  9502. "'" +
  9503. _tool +
  9504. "'" +
  9505. ", " +
  9506. "'" +
  9507. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9508. "'" +
  9509. ", " +
  9510. "'" +
  9511. aTool +
  9512. "'" +
  9513. ", " +
  9514. "`" +
  9515. text +
  9516. "`" +
  9517. ")\n" +
  9518. " });\n" +
  9519. "}\n" +
  9520. "document.head.appendChild(_js);\n";
  9521. _iframe.contentWindow.document.head.appendChild(_ajs);
  9522. }
  9523. }
  9524. }
  9525. U.MD.D.I.getEditorContent = function (iframe) {
  9526. return new Promise((resolve, reject) => {
  9527. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9528. console.log(content);
  9529. resolve(content)
  9530. });
  9531. });
  9532. }
  9533. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9534. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9535. // if (res.value[0].length > 0) {
  9536. // // resolve(res.value[0][0].text);
  9537. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9538. // $(fileInput).val('');
  9539. // });
  9540. // }
  9541. // }, [], { "type": "GET", "withCredentials": true });
  9542. var xmlhttp;
  9543. var Mac, Sn, DeviceId
  9544. if (window.XMLHttpRequest) {
  9545. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9546. xmlhttp = new XMLHttpRequest();
  9547. } else {
  9548. // IE6, IE5 浏览器执行代码
  9549. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9550. }
  9551. xmlhttp.onreadystatechange = function () {
  9552. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9553. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9554. // resolve(res.value[0][0].text);
  9555. if (type == '2') {
  9556. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9557. } else if (type == '3') {
  9558. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9559. }
  9560. } else {
  9561. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9562. }
  9563. }
  9564. }
  9565. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9566. xmlhttp.send();
  9567. }
  9568. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9569. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9570. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9571. _userinfo = US.userInfo, //登录用户信息
  9572. _userid = US.userInfo.userid //登录用户id
  9573. let _iframe;
  9574. let _cid = cid,
  9575. _stage = stage,
  9576. _task = task,
  9577. _tool = tool;
  9578. var _jie = $$("div", {
  9579. "style": {
  9580. "position": "absolute",
  9581. "bottom": "50px",
  9582. "right": "50px",
  9583. "zIndex": "9999",
  9584. "backgroundColor": "#2268bc",
  9585. "color": "#fff",
  9586. "padding": "12px 20px",
  9587. "cursor": "pointer",
  9588. "borderRadius": "4px",
  9589. },
  9590. "innerHTML": "确认并提交"
  9591. })
  9592. let aTool = ''
  9593. let _loading = document.createElement('div')
  9594. _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;"
  9595. // _loading.id = "";
  9596. let _lchild = document.createElement('div')
  9597. let _limg = document.createElement('img')
  9598. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9599. _limg.style = "width: 26px;margin-right: 10px;"
  9600. _lchild.appendChild(_limg)
  9601. let _lspan = document.createElement('span')
  9602. _lspan.innerHTML = "上传中..."
  9603. _lchild.appendChild(_lspan)
  9604. _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%);"
  9605. _loading.appendChild(_lchild)
  9606. var _box = $$('div', {
  9607. "style": {
  9608. "position": "relative",
  9609. "width": "100%",
  9610. "height": "100%",
  9611. },
  9612. })
  9613. _box.appendChild(_loading)
  9614. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9615. switch (str) {
  9616. case "whiteboard":
  9617. aTool = 1;
  9618. _iframe = $$("iframe", {
  9619. "frameborder": "no",
  9620. "border": "0",
  9621. "scrolling ": "no",
  9622. "style": {
  9623. "cssText": "border:0;width:100%;height:100%"
  9624. },
  9625. "src": "https://beta.iwb.cocorobo.cn/"
  9626. })
  9627. _box.appendChild(_iframe);
  9628. _box.appendChild(_jie);
  9629. _formdiv = new U.UF.UI.form(
  9630. "电子白板",
  9631. _box, {
  9632. "id": "whiteboards" + cid + stage + task + tool,
  9633. "style": {
  9634. "width": "90%",
  9635. "height": "90%",
  9636. "overflow": 'hidden'
  9637. },
  9638. "onresize": function () { }
  9639. }, {
  9640. closecallback: function () { }
  9641. }, {
  9642. "style": {
  9643. "height": "36px"
  9644. }
  9645. }).form; //创建窗体
  9646. _taskbar = {
  9647. "id": str + _formdiv.id,
  9648. "style": {
  9649. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9650. },
  9651. "name": "电子白板",
  9652. "forms": _formdiv,
  9653. "click": function () {
  9654. U.MD.D.I.openApplication(str, obj, info);
  9655. }
  9656. }
  9657. break;
  9658. case "mind":
  9659. aTool = 3;
  9660. _iframe = $$("iframe", {
  9661. "frameborder": "no",
  9662. "border": "0",
  9663. "scrolling ": "no",
  9664. "style": {
  9665. "cssText": "border:0;width:100%;height:100%"
  9666. },
  9667. "src": "/kityminder-editor/dist/index.html"
  9668. });
  9669. _box.appendChild(_iframe);
  9670. _box.appendChild(_jie);
  9671. _formdiv = new U.UF.UI.form(
  9672. "思维导图",
  9673. _box, { //"/jsmind/example/demo.html"
  9674. "id": "minds" + cid + stage + task + tool,
  9675. "style": {
  9676. "width": "90%",
  9677. "height": "90%",
  9678. "overflow": 'hidden'
  9679. },
  9680. "onresize": function () { }
  9681. }, {
  9682. closecallback: function () { }
  9683. }, {
  9684. "style": {
  9685. "height": "36px"
  9686. }
  9687. }).form; //创建窗体
  9688. _taskbar = {
  9689. "id": str + _formdiv.id,
  9690. "style": {
  9691. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9692. },
  9693. "name": "思维导图",
  9694. "forms": _formdiv,
  9695. "click": function () {
  9696. U.MD.D.I.openApplication(str, obj, info);
  9697. }
  9698. }
  9699. break;
  9700. case "doc":
  9701. aTool = 6;
  9702. _iframe = $$("iframe", {
  9703. "frameborder": "no",
  9704. "border": "0",
  9705. "scrolling ": "no",
  9706. "style": {
  9707. "cssText": "border:0;width:100%;height:100%"
  9708. },
  9709. "src": "/Office/Word/WordEditArea.htm"
  9710. })
  9711. _box.appendChild(_iframe);
  9712. _box.appendChild(_jie);
  9713. _formdiv = new U.UF.UI.form(
  9714. "协同文档",
  9715. _box, {
  9716. "id": "docs" + cid + stage + task + tool,
  9717. "style": {
  9718. "width": "90%",
  9719. "height": "90%",
  9720. "overflow": 'hidden'
  9721. },
  9722. "onresize": function () { }
  9723. }, {
  9724. closecallback: function () { }
  9725. }, {
  9726. "style": {
  9727. "height": "36px"
  9728. }
  9729. }).form; //创建窗体
  9730. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9731. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9732. })
  9733. _taskbar = {
  9734. "id": str + _formdiv.id,
  9735. "style": {
  9736. "backgroundImage": "url(/img/icon/doc.png)"
  9737. },
  9738. "name": "协同文档",
  9739. "forms": _formdiv,
  9740. "click": function () {
  9741. U.MD.D.I.openApplication(str, obj, info);
  9742. }
  9743. }
  9744. break;
  9745. }
  9746. const script1 = document.createElement("script");
  9747. script1.type = "text/javascript";
  9748. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9749. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9750. const script2 = document.createElement("script");
  9751. script2.type = "text/javascript";
  9752. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9753. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9754. const script3 = document.createElement("script");
  9755. script3.type = "text/javascript";
  9756. script3.charset = "UTF-8";
  9757. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9758. const script4 = document.createElement("script");
  9759. script4.type = "text/javascript";
  9760. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9761. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9762. if (_iframe) {
  9763. if (str == 'doc') {
  9764. _iframe = _formdiv.querySelector('iframe')
  9765. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9766. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9767. _iframe.contentWindow.document.body.appendChild(script1);
  9768. _iframe.contentWindow.document.body.appendChild(script2);
  9769. // _iframe.contentWindow.document.body.appendChild(script3);
  9770. _iframe.contentWindow.document.body.appendChild(script4);
  9771. })
  9772. if (onloadListener) {
  9773. _iframe.contentDocument.location.reload()
  9774. } else {
  9775. _iframe.contentDocument.location.reload()
  9776. }
  9777. } else if (str == 'mind') {
  9778. _iframe = _formdiv.querySelector('iframe')
  9779. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9780. _iframe.contentWindow.document.body.appendChild(script1);
  9781. _iframe.contentWindow.document.body.appendChild(script2);
  9782. _iframe.contentWindow.document.body.appendChild(script4);
  9783. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9784. })
  9785. if (onloadListener) {
  9786. _iframe.contentDocument.location.reload()
  9787. } else {
  9788. _iframe.contentDocument.location.reload()
  9789. }
  9790. } else {
  9791. _iframe.onload = () => {
  9792. _iframe.contentWindow.document.body.appendChild(script1);
  9793. _iframe.contentWindow.document.body.appendChild(script2);
  9794. // _iframe.contentWindow.document.body.appendChild(script3);
  9795. _iframe.contentWindow.document.body.appendChild(script4);
  9796. };
  9797. }
  9798. _jie.onclick = async () => {
  9799. let text = ''
  9800. if (aTool == 6) {
  9801. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9802. } else if (aTool == 3) {
  9803. text = await U.MD.D.I.getEditorContent(_iframe);
  9804. }
  9805. _loading.style.display = 'flex'
  9806. console.log(_loading);
  9807. var _ajs = _iframe.contentWindow.document.createElement("script");
  9808. _ajs.type = "text/javascript";
  9809. _ajs.innerHTML =
  9810. // 'console.log(' + _loading + ');\n' +
  9811. 'var _js = document.createElement("script");\n' +
  9812. '_js.type="text/javascript";\n' +
  9813. '_js.charset="UTF-8";\n' +
  9814. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9815. "_js.onload = function(){\n" +
  9816. ' var a = document.getElementsByTagName("img")\n' +
  9817. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9818. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9819. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9820. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9821. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9822. "beforeUpload_shishi(file," +
  9823. "'" +
  9824. _userid +
  9825. "'" +
  9826. ", " +
  9827. "'" +
  9828. _cid +
  9829. "'" +
  9830. ", " +
  9831. "'" +
  9832. _stage +
  9833. "'" +
  9834. ", " +
  9835. "'" +
  9836. _task +
  9837. "'" +
  9838. ", " +
  9839. "'" +
  9840. _tool +
  9841. "'" +
  9842. ", " +
  9843. "'" +
  9844. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9845. "'" +
  9846. ", " +
  9847. "'" +
  9848. aTool +
  9849. "'" +
  9850. ", " +
  9851. "`" +
  9852. text +
  9853. "`" +
  9854. ")\n" +
  9855. " });\n" +
  9856. "}\n" +
  9857. "document.head.appendChild(_js);\n";
  9858. _iframe.contentWindow.document.head.appendChild(_ajs);
  9859. }
  9860. }
  9861. //U.MD.D.I.openClick(str);
  9862. //如果有任务栏信息
  9863. // if (_taskbar) {
  9864. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9865. // }
  9866. }
  9867. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9868. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9869. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9870. _userinfo = US.userInfo, //登录用户信息
  9871. _userid = US.userInfo.userid //登录用户id
  9872. let _iframe;
  9873. let _cid = cid,
  9874. _stage = stage,
  9875. _task = task,
  9876. _tool = tool;
  9877. var _jie = $$("div", {
  9878. "style": {
  9879. "position": "absolute",
  9880. "bottom": "50px",
  9881. "right": "50px",
  9882. "zIndex": "9999",
  9883. "backgroundColor": "#2268bc",
  9884. "color": "#fff",
  9885. "padding": "12px 20px",
  9886. "cursor": "pointer",
  9887. "borderRadius": "4px",
  9888. },
  9889. "innerHTML": "确认并提交"
  9890. })
  9891. let aTool = ''
  9892. let _loading = document.createElement('div')
  9893. _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;"
  9894. // _loading.id = "";
  9895. let _lchild = document.createElement('div')
  9896. let _limg = document.createElement('img')
  9897. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9898. _limg.style = "width: 26px;margin-right: 10px;"
  9899. _lchild.appendChild(_limg)
  9900. let _lspan = document.createElement('span')
  9901. _lspan.innerHTML = "上传中..."
  9902. _lchild.appendChild(_lspan)
  9903. _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%);"
  9904. _loading.appendChild(_lchild)
  9905. var _box = $$('div', {
  9906. "style": {
  9907. "position": "relative",
  9908. "width": "100%",
  9909. "height": "100%",
  9910. },
  9911. })
  9912. _box.appendChild(_loading)
  9913. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9914. switch (str) {
  9915. case "whiteboard":
  9916. aTool = 1;
  9917. _iframe = $$("iframe", {
  9918. "frameborder": "no",
  9919. "border": "0",
  9920. "scrolling ": "no",
  9921. "style": {
  9922. "cssText": "border:0;width:100%;height:100%"
  9923. },
  9924. "src": "https://beta.iwb.cocorobo.cn/"
  9925. })
  9926. _box.appendChild(_iframe);
  9927. _box.appendChild(_jie);
  9928. _formdiv = new U.UF.UI.form(
  9929. "电子白板",
  9930. _box, {
  9931. "id": "whiteboards" + cid + stage + task + tool,
  9932. "style": {
  9933. "width": "90%",
  9934. "height": "90%",
  9935. "overflow": 'hidden'
  9936. },
  9937. "onresize": function () { }
  9938. }, {
  9939. closecallback: function () { }
  9940. }, {
  9941. "style": {
  9942. "height": "36px"
  9943. }
  9944. }).form; //创建窗体
  9945. _taskbar = {
  9946. "id": str + _formdiv.id,
  9947. "style": {
  9948. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9949. },
  9950. "name": "电子白板",
  9951. "forms": _formdiv,
  9952. "click": function () {
  9953. U.MD.D.I.openApplication(str, obj, info);
  9954. }
  9955. }
  9956. break;
  9957. case "mind":
  9958. aTool = 3;
  9959. _iframe = $$("iframe", {
  9960. "frameborder": "no",
  9961. "border": "0",
  9962. "scrolling ": "no",
  9963. "style": {
  9964. "cssText": "border:0;width:100%;height:100%"
  9965. },
  9966. "src": "/kityminder-editor/dist/index.html"
  9967. });
  9968. _box.appendChild(_iframe);
  9969. _box.appendChild(_jie);
  9970. _formdiv = new U.UF.UI.form(
  9971. "思维导图",
  9972. _box, { //"/jsmind/example/demo.html"
  9973. "id": "minds" + cid + stage + task + tool,
  9974. "style": {
  9975. "width": "90%",
  9976. "height": "90%",
  9977. "overflow": 'hidden'
  9978. },
  9979. "onresize": function () { }
  9980. }, {
  9981. closecallback: function () { }
  9982. }, {
  9983. "style": {
  9984. "height": "36px"
  9985. }
  9986. }).form; //创建窗体
  9987. _taskbar = {
  9988. "id": str + _formdiv.id,
  9989. "style": {
  9990. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9991. },
  9992. "name": "思维导图",
  9993. "forms": _formdiv,
  9994. "click": function () {
  9995. U.MD.D.I.openApplication(str, obj, info);
  9996. }
  9997. }
  9998. break;
  9999. case "doc":
  10000. aTool = 6;
  10001. _iframe = $$("iframe", {
  10002. "frameborder": "no",
  10003. "border": "0",
  10004. "scrolling ": "no",
  10005. "style": {
  10006. "cssText": "border:0;width:100%;height:100%"
  10007. },
  10008. "src": "/Office/Word/WordEditArea.htm"
  10009. })
  10010. _box.appendChild(_iframe);
  10011. _box.appendChild(_jie);
  10012. _formdiv = new U.UF.UI.form(
  10013. "协同文档",
  10014. _box, {
  10015. "id": "docs" + cid + stage + task + tool,
  10016. "style": {
  10017. "width": "90%",
  10018. "height": "90%",
  10019. "overflow": 'hidden'
  10020. },
  10021. "onresize": function () { }
  10022. }, {
  10023. closecallback: function () { }
  10024. }, {
  10025. "style": {
  10026. "height": "36px"
  10027. }
  10028. }).form; //创建窗体
  10029. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10030. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10031. })
  10032. _taskbar = {
  10033. "id": str + _formdiv.id,
  10034. "style": {
  10035. "backgroundImage": "url(/img/icon/doc.png)"
  10036. },
  10037. "name": "协同文档",
  10038. "forms": _formdiv,
  10039. "click": function () {
  10040. U.MD.D.I.openApplication(str, obj, info);
  10041. }
  10042. }
  10043. break;
  10044. }
  10045. const script1 = document.createElement("script");
  10046. script1.type = "text/javascript";
  10047. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10048. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10049. const script2 = document.createElement("script");
  10050. script2.type = "text/javascript";
  10051. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10052. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10053. const script3 = document.createElement("script");
  10054. script3.type = "text/javascript";
  10055. script3.charset = "UTF-8";
  10056. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10057. const script4 = document.createElement("script");
  10058. script4.type = "text/javascript";
  10059. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10060. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10061. if (_iframe) {
  10062. if (str == 'doc') {
  10063. _iframe = _formdiv.querySelector('iframe')
  10064. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10065. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10066. _iframe.contentWindow.document.body.appendChild(script1);
  10067. _iframe.contentWindow.document.body.appendChild(script2);
  10068. // _iframe.contentWindow.document.body.appendChild(script3);
  10069. _iframe.contentWindow.document.body.appendChild(script4);
  10070. })
  10071. if (onloadListener) {
  10072. _iframe.contentDocument.location.reload()
  10073. } else {
  10074. _iframe.contentDocument.location.reload()
  10075. }
  10076. } else if (str == 'mind') {
  10077. _iframe = _formdiv.querySelector('iframe')
  10078. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10079. _iframe.contentWindow.document.body.appendChild(script1);
  10080. _iframe.contentWindow.document.body.appendChild(script2);
  10081. _iframe.contentWindow.document.body.appendChild(script4);
  10082. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10083. })
  10084. if (onloadListener) {
  10085. _iframe.contentDocument.location.reload()
  10086. } else {
  10087. _iframe.contentDocument.location.reload()
  10088. }
  10089. } else {
  10090. _iframe.onload = () => {
  10091. _iframe.contentWindow.document.body.appendChild(script1);
  10092. _iframe.contentWindow.document.body.appendChild(script2);
  10093. // _iframe.contentWindow.document.body.appendChild(script3);
  10094. _iframe.contentWindow.document.body.appendChild(script4);
  10095. };
  10096. }
  10097. _jie.onclick = async () => {
  10098. let text = ''
  10099. if (aTool == 6) {
  10100. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10101. } else if (aTool == 3) {
  10102. text = await U.MD.D.I.getEditorContent(_iframe);
  10103. }
  10104. _loading.style.display = 'flex'
  10105. console.log(_loading);
  10106. var _ajs = _iframe.contentWindow.document.createElement("script");
  10107. _ajs.type = "text/javascript";
  10108. _ajs.innerHTML =
  10109. // 'console.log(' + _loading + ');\n' +
  10110. 'var _js = document.createElement("script");\n' +
  10111. '_js.type="text/javascript";\n' +
  10112. '_js.charset="UTF-8";\n' +
  10113. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10114. "_js.onload = function(){\n" +
  10115. ' var a = document.getElementsByTagName("img")\n' +
  10116. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10117. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10118. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10119. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10120. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10121. "beforeUpload_shishi(file," +
  10122. "'" +
  10123. _userid +
  10124. "'" +
  10125. ", " +
  10126. "'" +
  10127. _cid +
  10128. "'" +
  10129. ", " +
  10130. "'" +
  10131. _stage +
  10132. "'" +
  10133. ", " +
  10134. "'" +
  10135. _task +
  10136. "'" +
  10137. ", " +
  10138. "'" +
  10139. _tool +
  10140. "'" +
  10141. ", " +
  10142. "'" +
  10143. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10144. "'" +
  10145. ", " +
  10146. "'" +
  10147. aTool +
  10148. "'" +
  10149. ", " +
  10150. "`" +
  10151. text +
  10152. "`" +
  10153. ")\n" +
  10154. " });\n" +
  10155. "}\n" +
  10156. "document.head.appendChild(_js);\n";
  10157. _iframe.contentWindow.document.head.appendChild(_ajs);
  10158. }
  10159. }
  10160. //U.MD.D.I.openClick(str);
  10161. //如果有任务栏信息
  10162. // if (_taskbar) {
  10163. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10164. // }
  10165. }
  10166. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10167. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10168. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10169. _userinfo = US.userInfo, //登录用户信息
  10170. _userid = US.userInfo.userid //登录用户id
  10171. let _iframe;
  10172. let _cid = cid,
  10173. _stage = stage,
  10174. _task = task,
  10175. _tool = tool;
  10176. var _jie = $$("div", {
  10177. "style": {
  10178. "position": "absolute",
  10179. "bottom": "50px",
  10180. "right": "50px",
  10181. "zIndex": "9999",
  10182. "backgroundColor": "#2268bc",
  10183. "color": "#fff",
  10184. "padding": "12px 20px",
  10185. "cursor": "pointer",
  10186. "borderRadius": "4px",
  10187. },
  10188. "innerHTML": "上传模板"
  10189. })
  10190. let aTool = ''
  10191. let _loading = document.createElement('div')
  10192. _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;"
  10193. // _loading.id = "";
  10194. let _lchild = document.createElement('div')
  10195. let _limg = document.createElement('img')
  10196. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10197. _limg.style = "width: 26px;margin-right: 10px;"
  10198. _lchild.appendChild(_limg)
  10199. let _lspan = document.createElement('span')
  10200. _lspan.innerHTML = "上传中..."
  10201. _lchild.appendChild(_lspan)
  10202. _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%);"
  10203. _loading.appendChild(_lchild)
  10204. var _box = $$('div', {
  10205. "style": {
  10206. "position": "relative",
  10207. "width": "100%",
  10208. "height": "100%",
  10209. },
  10210. })
  10211. _box.appendChild(_loading)
  10212. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10213. switch (str) {
  10214. case "whiteboard":
  10215. aTool = 1;
  10216. _iframe = $$("iframe", {
  10217. "frameborder": "no",
  10218. "border": "0",
  10219. "scrolling ": "no",
  10220. "style": {
  10221. "cssText": "border:0;width:100%;height:100%"
  10222. },
  10223. "src": "https://beta.iwb.cocorobo.cn/"
  10224. })
  10225. _box.appendChild(_iframe);
  10226. _box.appendChild(_jie);
  10227. _formdiv = new U.UF.UI.form(
  10228. "电子白板",
  10229. _box, {
  10230. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10231. "style": {
  10232. "width": "90%",
  10233. "height": "90%",
  10234. "overflow": 'hidden'
  10235. },
  10236. "onresize": function () { }
  10237. }, {
  10238. closecallback: function () { }
  10239. }, {
  10240. "style": {
  10241. "height": "36px"
  10242. }
  10243. }).form; //创建窗体
  10244. _taskbar = {
  10245. "id": str + _formdiv.id,
  10246. "style": {
  10247. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10248. },
  10249. "name": "电子白板",
  10250. "forms": _formdiv,
  10251. "click": function () {
  10252. U.MD.D.I.openApplication(str, obj, info);
  10253. }
  10254. }
  10255. break;
  10256. case "mind":
  10257. aTool = 3;
  10258. _iframe = $$("iframe", {
  10259. "frameborder": "no",
  10260. "border": "0",
  10261. "scrolling ": "no",
  10262. "style": {
  10263. "cssText": "border:0;width:100%;height:100%"
  10264. },
  10265. "src": "/kityminder-editor/dist/index.html"
  10266. });
  10267. _box.appendChild(_iframe);
  10268. _box.appendChild(_jie);
  10269. _formdiv = new U.UF.UI.form(
  10270. "思维导图",
  10271. _box, { //"/jsmind/example/demo.html"
  10272. "id": "minds_Yu" + cid + stage + task + tool,
  10273. "style": {
  10274. "width": "90%",
  10275. "height": "90%",
  10276. "overflow": 'hidden'
  10277. },
  10278. "onresize": function () { }
  10279. }, {
  10280. closecallback: function () { }
  10281. }, {
  10282. "style": {
  10283. "height": "36px"
  10284. }
  10285. }).form; //创建窗体
  10286. _taskbar = {
  10287. "id": str + _formdiv.id,
  10288. "style": {
  10289. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10290. },
  10291. "name": "思维导图",
  10292. "forms": _formdiv,
  10293. "click": function () {
  10294. U.MD.D.I.openApplication(str, obj, info);
  10295. }
  10296. }
  10297. break;
  10298. case "doc":
  10299. aTool = 6;
  10300. _iframe = $$("iframe", {
  10301. "frameborder": "no",
  10302. "border": "0",
  10303. "scrolling ": "no",
  10304. "style": {
  10305. "cssText": "border:0;width:100%;height:100%"
  10306. },
  10307. "src": "/Office/Word/WordEditArea.htm"
  10308. })
  10309. _box.appendChild(_iframe);
  10310. _box.appendChild(_jie);
  10311. _formdiv = new U.UF.UI.form(
  10312. "协同文档",
  10313. _box, {
  10314. "id": "docs_Yu" + cid + stage + task + tool,
  10315. "style": {
  10316. "width": "90%",
  10317. "height": "90%",
  10318. "overflow": 'hidden'
  10319. },
  10320. "onresize": function () { }
  10321. }, {
  10322. closecallback: function () { }
  10323. }, {
  10324. "style": {
  10325. "height": "36px"
  10326. }
  10327. }).form; //创建窗体
  10328. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10329. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10330. })
  10331. _taskbar = {
  10332. "id": str + _formdiv.id,
  10333. "style": {
  10334. "backgroundImage": "url(/img/icon/doc.png)"
  10335. },
  10336. "name": "协同文档",
  10337. "forms": _formdiv,
  10338. "click": function () {
  10339. U.MD.D.I.openApplication(str, obj, info);
  10340. }
  10341. }
  10342. break;
  10343. case "CocoPi":
  10344. aTool = 57;
  10345. _iframe = $$("iframe", {
  10346. "allowpaymentrequest": "allowpaymentrequest",
  10347. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10348. "webkitallowfullscreen": "",
  10349. "mozallowfullscreen": "",
  10350. "frameborder": "no",
  10351. "border": "0",
  10352. "scrolling ": "no",
  10353. "style": {
  10354. "cssText": "border:0;width:100%;height:100%"
  10355. },
  10356. "src": "https://pi.cocorobo.cn/"
  10357. })
  10358. _box.appendChild(_iframe);
  10359. _box.appendChild(_jie);
  10360. _formdiv = new U.UF.UI.form(
  10361. "CocoPi",
  10362. _box, {
  10363. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10364. "style": {
  10365. "width": "90%",
  10366. "height": "90%",
  10367. "overflow": 'hidden'
  10368. },
  10369. "onresize": function () { }
  10370. }, {
  10371. closecallback: function () { }
  10372. }, {
  10373. "style": {
  10374. "height": "36px"
  10375. }
  10376. }).form; //创建窗体
  10377. _taskbar = {
  10378. "id": str + _formdiv.id,
  10379. "style": {
  10380. "backgroundImage": "url(/img/icon/cocopi.png)"
  10381. },
  10382. "name": "CocoPi",
  10383. "forms": _formdiv,
  10384. "click": function () {
  10385. U.MD.D.I.openApplication(str, obj, info);
  10386. }
  10387. }
  10388. break;
  10389. }
  10390. if (_iframe) {
  10391. if (str == 'doc') {
  10392. _iframe = _formdiv.querySelector('iframe')
  10393. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10394. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10395. })
  10396. if (onloadListener) {
  10397. _iframe.contentDocument.location.reload()
  10398. } else {
  10399. _iframe.contentDocument.location.reload()
  10400. }
  10401. } else if (str == 'mind') {
  10402. _iframe = _formdiv.querySelector('iframe')
  10403. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10404. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10405. })
  10406. if (onloadListener) {
  10407. _iframe.contentDocument.location.reload()
  10408. } else {
  10409. _iframe.contentDocument.location.reload()
  10410. }
  10411. } else if (str == 'whiteboard') {
  10412. _iframe = _formdiv.querySelector('iframe')
  10413. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10414. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10415. })
  10416. // if (onloadListener) {
  10417. // try {
  10418. // _iframe.src += "?cocorobo="+new Date().getTime()
  10419. // _iframe.contentWindow.document.location.reload()
  10420. // } catch (error) {
  10421. // }
  10422. // } else {
  10423. // _iframe.contentDocument.location.reload()
  10424. // }
  10425. } else if (str == 'CocoPi') {
  10426. _iframe = _formdiv.querySelector('iframe')
  10427. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10428. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10429. })
  10430. if (onloadListener) {
  10431. _iframe.contentDocument.location.reload()
  10432. } else {
  10433. _iframe.contentDocument.location.reload()
  10434. }
  10435. } else {
  10436. _iframe.onload = () => { };
  10437. }
  10438. _jie.onclick = async () => {
  10439. let text = ''
  10440. let type = '2'
  10441. if (aTool == 1) {
  10442. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10443. type = '3'
  10444. } else if (aTool == 6) {
  10445. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10446. type = '1'
  10447. } else if (aTool == 3) {
  10448. text = await U.MD.D.I.getEditorContent(_iframe);
  10449. type = '2'
  10450. } else if (aTool == 57) {
  10451. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10452. type = '4'
  10453. }
  10454. _loading.style.display = 'flex'
  10455. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10456. }
  10457. }
  10458. //U.MD.D.I.openClick(str);
  10459. //如果有任务栏信息
  10460. // if (_taskbar) {
  10461. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10462. // }
  10463. }
  10464. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10465. var xmlhttp;
  10466. var Mac, Sn, DeviceId
  10467. if (window.XMLHttpRequest) {
  10468. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10469. xmlhttp = new XMLHttpRequest();
  10470. } else {
  10471. // IE6, IE5 浏览器执行代码
  10472. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10473. }
  10474. xmlhttp.onreadystatechange = function () {
  10475. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10476. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10477. // resolve(res.value[0][0].text);
  10478. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10479. }
  10480. }
  10481. }
  10482. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10483. xmlhttp.send();
  10484. }
  10485. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10486. var xmlhttp;
  10487. var Mac, Sn, DeviceId
  10488. if (window.XMLHttpRequest) {
  10489. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10490. xmlhttp = new XMLHttpRequest();
  10491. } else {
  10492. // IE6, IE5 浏览器执行代码
  10493. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10494. }
  10495. xmlhttp.onreadystatechange = function () {
  10496. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10497. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10498. // resolve(res.value[0][0].text);
  10499. if (type == '2') {
  10500. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10501. } else if (type == '3') {
  10502. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10503. } else if (type == '4') {
  10504. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10505. }
  10506. } else {
  10507. if (type == '2') {
  10508. iframe.contentWindow.editor.minder.importData('json', '')
  10509. } else if (type == '3') {
  10510. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10511. } else if (type == '4') {
  10512. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10513. }
  10514. }
  10515. }
  10516. }
  10517. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10518. xmlhttp.send();
  10519. }
  10520. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10521. var xmlhttp;
  10522. var Mac, Sn, DeviceId
  10523. if (window.XMLHttpRequest) {
  10524. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10525. xmlhttp = new XMLHttpRequest();
  10526. } else {
  10527. // IE6, IE5 浏览器执行代码
  10528. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10529. }
  10530. xmlhttp.onreadystatechange = function () {
  10531. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10532. if (xmlhttp.response) {
  10533. // resolve(res.value[0][0].text);
  10534. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10535. // $(fileInput).val('');
  10536. // });
  10537. span.innerHTML = '上传成功'
  10538. setTimeout(() => {
  10539. loading.style.display = 'none'
  10540. }, 1000);
  10541. }
  10542. }
  10543. }
  10544. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10545. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10546. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10547. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10548. // 设置请求头,表示请求体的编码格式
  10549. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10550. // 设置请求体,使用url-encoded格式的数据
  10551. }
  10552. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10553. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10554. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10555. _userinfo = US.userInfo, //登录用户信息
  10556. _userid = US.userInfo.userid //登录用户id
  10557. let _iframe;
  10558. let _cid = cid,
  10559. _stage = stage,
  10560. _task = task,
  10561. _tool = tool;
  10562. var _jie = $$("div", {
  10563. "style": {
  10564. "position": "absolute",
  10565. "bottom": "50px",
  10566. "right": "50px",
  10567. "zIndex": "9999",
  10568. "backgroundColor": "#2268bc",
  10569. "color": "#fff",
  10570. "padding": "12px 20px",
  10571. "cursor": "pointer",
  10572. "borderRadius": "4px",
  10573. },
  10574. "innerHTML": "提交作业"
  10575. })
  10576. let aTool = ''
  10577. let _loading = document.createElement('div')
  10578. _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;"
  10579. // _loading.id = "";
  10580. let _lchild = document.createElement('div')
  10581. let _limg = document.createElement('img')
  10582. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10583. _limg.style = "width: 26px;margin-right: 10px;"
  10584. _lchild.appendChild(_limg)
  10585. let _lspan = document.createElement('span')
  10586. _lspan.innerHTML = "上传中..."
  10587. _lchild.appendChild(_lspan)
  10588. _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%);"
  10589. _loading.appendChild(_lchild)
  10590. var _box = $$('div', {
  10591. "style": {
  10592. "position": "relative",
  10593. "width": "100%",
  10594. "height": "100%",
  10595. },
  10596. })
  10597. _box.appendChild(_loading)
  10598. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10599. switch (str) {
  10600. case "CocoPi":
  10601. aTool = 57;
  10602. _iframe = $$("iframe", {
  10603. "allowpaymentrequest": "allowpaymentrequest",
  10604. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10605. "webkitallowfullscreen": "",
  10606. "mozallowfullscreen": "",
  10607. "frameborder": "no",
  10608. "border": "0",
  10609. "scrolling ": "no",
  10610. "style": {
  10611. "cssText": "border:0;width:100%;height:100%"
  10612. },
  10613. "src": "https://pi.cocorobo.cn/"
  10614. })
  10615. _box.appendChild(_iframe);
  10616. _box.appendChild(_jie);
  10617. _formdiv = new U.UF.UI.form(
  10618. "CocoPi",
  10619. _box, {
  10620. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10621. "style": {
  10622. "width": "90%",
  10623. "height": "90%",
  10624. "overflow": 'hidden'
  10625. },
  10626. "onresize": function () { }
  10627. }, {
  10628. closecallback: function () { }
  10629. }, {
  10630. "style": {
  10631. "height": "36px"
  10632. }
  10633. }).form; //创建窗体
  10634. _taskbar = {
  10635. "id": str + _formdiv.id,
  10636. "style": {
  10637. "backgroundImage": "url(/img/icon/cocopi.png)"
  10638. },
  10639. "name": "CocoPi",
  10640. "forms": _formdiv,
  10641. "click": function () {
  10642. U.MD.D.I.openApplication(str, obj, info);
  10643. }
  10644. }
  10645. break;
  10646. }
  10647. if (_iframe) {
  10648. if (str == 'CocoPi') {
  10649. _iframe = _formdiv.querySelector('iframe')
  10650. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10651. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10652. })
  10653. if (onloadListener) {
  10654. _iframe.contentDocument.location.reload()
  10655. } else {
  10656. _iframe.contentDocument.location.reload()
  10657. }
  10658. }
  10659. _jie.onclick = async () => {
  10660. let text = ''
  10661. if (aTool == 57) {
  10662. text = _iframe.contentWindow.getLoadXmlStr()
  10663. }
  10664. _loading.style.display = 'flex'
  10665. console.log(_loading);
  10666. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10667. _loading.style.display = 'none'
  10668. let _div = document.createElement('div')
  10669. _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;"
  10670. let _inner = document.createElement('div')
  10671. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10672. _inner.innerHTML = "上传成功"
  10673. _div.appendChild(_inner)
  10674. _iframe.contentWindow.window.document.body.appendChild(_div)
  10675. _div.onclick = () => {
  10676. _iframe.contentWindow.window.document.body.removeChild(_div)
  10677. }
  10678. setTimeout(() => {
  10679. _iframe.contentWindow.window.document.body.removeChild(_div)
  10680. }, 1000);
  10681. }, [], { "type": "POST", "withCredentials": true });
  10682. }
  10683. }
  10684. }
  10685. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10686. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10687. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10688. _userid = student.userid, //登录用户id
  10689. _username = student.student //用户名字
  10690. let _iframe;
  10691. let _cid = cid,
  10692. _stage = stage,
  10693. _task = task,
  10694. _tool = tool;
  10695. var _jie = $$("div", {
  10696. "style": {
  10697. "position": "absolute",
  10698. "bottom": "50px",
  10699. "right": "50px",
  10700. "zIndex": "9999",
  10701. "backgroundColor": "#2268bc",
  10702. "color": "#fff",
  10703. "padding": "12px 20px",
  10704. "cursor": "pointer",
  10705. "borderRadius": "4px",
  10706. },
  10707. "innerHTML": "提交作业"
  10708. })
  10709. let aTool = ''
  10710. let _loading = document.createElement('div')
  10711. _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;"
  10712. // _loading.id = "";
  10713. let _lchild = document.createElement('div')
  10714. let _limg = document.createElement('img')
  10715. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10716. _limg.style = "width: 26px;margin-right: 10px;"
  10717. _lchild.appendChild(_limg)
  10718. let _lspan = document.createElement('span')
  10719. _lspan.innerHTML = "上传中..."
  10720. _lchild.appendChild(_lspan)
  10721. _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%);"
  10722. _loading.appendChild(_lchild)
  10723. var _box = $$('div', {
  10724. "style": {
  10725. "position": "relative",
  10726. "width": "100%",
  10727. "height": "100%",
  10728. },
  10729. })
  10730. _box.appendChild(_loading)
  10731. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10732. switch (str) {
  10733. case "CocoPi":
  10734. aTool = 57;
  10735. _iframe = $$("iframe", {
  10736. "allowpaymentrequest": "allowpaymentrequest",
  10737. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10738. "webkitallowfullscreen": "",
  10739. "mozallowfullscreen": "",
  10740. "frameborder": "no",
  10741. "border": "0",
  10742. "scrolling ": "no",
  10743. "style": {
  10744. "cssText": "border:0;width:100%;height:100%"
  10745. },
  10746. "src": "https://pi.cocorobo.cn/"
  10747. })
  10748. _box.appendChild(_iframe);
  10749. _box.appendChild(_jie);
  10750. _formdiv = new U.UF.UI.form(
  10751. "CocoPi-" + _username,
  10752. _box, {
  10753. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10754. "style": {
  10755. "width": "90%",
  10756. "height": "90%",
  10757. "overflow": 'hidden'
  10758. },
  10759. "onresize": function () { }
  10760. }, {
  10761. closecallback: function () { }
  10762. }, {
  10763. "style": {
  10764. "height": "36px"
  10765. }
  10766. }).form; //创建窗体
  10767. _taskbar = {
  10768. "id": str + _formdiv.id,
  10769. "style": {
  10770. "backgroundImage": "url(/img/icon/cocopi.png)"
  10771. },
  10772. "name": "CocoPi",
  10773. "forms": _formdiv,
  10774. "click": function () {
  10775. U.MD.D.I.openApplication(str, obj, info);
  10776. }
  10777. }
  10778. break;
  10779. }
  10780. if (_iframe) {
  10781. if (str == 'CocoPi') {
  10782. _iframe = _formdiv.querySelector('iframe')
  10783. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10784. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10785. })
  10786. if (onloadListener) {
  10787. _iframe.contentDocument.location.reload()
  10788. } else {
  10789. _iframe.contentDocument.location.reload()
  10790. }
  10791. }
  10792. _jie.onclick = async () => {
  10793. let text = ''
  10794. if (aTool == 57) {
  10795. text = _iframe.contentWindow.getLoadXmlStr()
  10796. }
  10797. _loading.style.display = 'flex'
  10798. console.log(_loading);
  10799. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10800. _loading.style.display = 'none'
  10801. let _div = document.createElement('div')
  10802. _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;"
  10803. let _inner = document.createElement('div')
  10804. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10805. _inner.innerHTML = "上传成功"
  10806. _div.appendChild(_inner)
  10807. _iframe.contentWindow.window.document.body.appendChild(_div)
  10808. _div.onclick = () => {
  10809. _iframe.contentWindow.window.document.body.removeChild(_div)
  10810. }
  10811. setTimeout(() => {
  10812. _iframe.contentWindow.window.document.body.removeChild(_div)
  10813. }, 1000);
  10814. }, [], { "type": "POST", "withCredentials": true });
  10815. }
  10816. }
  10817. }
  10818. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10819. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10820. if (res.value[0].length > 0) {
  10821. if (atool == 57) {
  10822. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10823. }
  10824. } else {
  10825. if (atool == 57) {
  10826. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10827. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10828. }
  10829. }
  10830. }, [], { "type": "POST", "withCredentials": true });
  10831. }
  10832. U.MD.D.addOp = function(text,type,time){
  10833. var userInfo = US.userInfo;
  10834. if(Object.keys(userInfo).length !== 0){
  10835. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10836. }, [], { "type": "POST", "withCredentials": true });
  10837. }
  10838. }