DeskTop.js 707 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2185. )
  2186. }
  2187. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2188. _nsfxTeacherDeskIconInfo.push(
  2189. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2190. )
  2191. }
  2192. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2193. // _teacherDesktopIconInfo.push(
  2194. // )
  2195. // }
  2196. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2197. _teacherDesktopIconInfo.push(
  2198. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2199. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2200. )
  2201. }
  2202. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2203. _teacherDesktopIconInfo.push(
  2204. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2205. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2206. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2207. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2208. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2209. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2210. )
  2211. _studentDesktopIconInfo.push(
  2212. )
  2213. }
  2214. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2215. _teacherDesktopIconInfo.push(
  2216. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2217. )
  2218. _studentDesktopIconInfo.push(
  2219. )
  2220. }
  2221. //010606 组织
  2222. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2223. _teacherDesktopIconInfo.push(
  2224. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2225. )
  2226. _studentDesktopIconInfo.push(
  2227. )
  2228. }
  2229. //麒麟二中 和 民新小学
  2230. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2231. _teacherDesktopIconInfo.push(
  2232. )
  2233. }
  2234. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2235. _teacherDesktopIconInfo.push(
  2236. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2237. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2238. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2239. )
  2240. }
  2241. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2242. _hkTeacherDeskIconInfo.push(
  2243. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2244. )
  2245. }
  2246. //北师大附中(010601)
  2247. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2248. // _teacherDesktopIconInfo.push(
  2249. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2250. // )
  2251. // _studentDesktopIconInfo.push(
  2252. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2253. // )
  2254. // }
  2255. //樂善堂余近卿中學
  2256. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2257. _teacherDesktopIconInfo.push(
  2258. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2259. )
  2260. }
  2261. // Education Artificial Intelligence
  2262. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2263. _teacherDesktopIconInfo.push(
  2264. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2265. )
  2266. }
  2267. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2268. _teacherDesktopIconInfo.push(
  2269. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2270. )
  2271. }
  2272. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2273. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2274. _teacherDesktopIconInfo.push(
  2275. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2276. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2277. )
  2278. }
  2279. //麒麟二中
  2280. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2281. _studentDesktopIconInfo.push(
  2282. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2283. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2284. )
  2285. }
  2286. //万科双语
  2287. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2288. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2289. if (el.Name == '项目管理') {
  2290. el.Name = 'PBL项目'
  2291. }
  2292. return el
  2293. })
  2294. _studentDesktopIconInfo3.push(
  2295. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2296. )
  2297. }
  2298. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2299. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2300. return el.Name != '魔盒识字' && el.Name != '24点'
  2301. })
  2302. }
  2303. 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) {
  2304. _studentDesktopIconInfo.push(
  2305. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2306. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2307. )
  2308. }
  2309. //循环创建桌面图标
  2310. if (type == 1) {
  2311. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2312. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2313. _content = $$("div", {
  2314. className: "U_MD_D_KO",
  2315. "onmousedown": U.UF.C.closure(function (obj) {
  2316. //防止拖动图标即打开了桌面应用
  2317. U.MD.D.click(this, obj);
  2318. }, [_studentDesktopIconInfo[i]]),
  2319. "onclick": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_studentDesktopIconInfo[i]])
  2323. }, _frag); //
  2324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2327. }
  2328. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2329. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2330. _content = $$("div", {
  2331. className: "U_MD_D_KO",
  2332. "onmousedown": U.UF.C.closure(function (obj) {
  2333. //防止拖动图标即打开了桌面应用
  2334. U.MD.D.click(this, obj);
  2335. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2336. "onclick": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_hkZJLSStudentDeskIconInfo[i]])
  2340. }, _frag); //
  2341. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2342. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2343. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2344. } //
  2345. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2346. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2347. _content = $$("div", {
  2348. className: "U_MD_D_KO",
  2349. "onmousedown": U.UF.C.closure(function (obj) {
  2350. //防止拖动图标即打开了桌面应用
  2351. U.MD.D.click(this, obj);
  2352. }, [_ytyStudentDeskIconInfo[i]]),
  2353. "onclick": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_ytyStudentDeskIconInfo[i]])
  2357. }, _frag); //
  2358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2361. } //
  2362. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2363. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2364. _content = $$("div", {
  2365. className: "U_MD_D_KO",
  2366. "onmousedown": U.UF.C.closure(function (obj) {
  2367. //防止拖动图标即打开了桌面应用
  2368. U.MD.D.click(this, obj);
  2369. }, [_jccssylStudentDeskIconInfo[i]]),
  2370. "onclick": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_jccssylStudentDeskIconInfo[i]])
  2374. }, _frag); //
  2375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2378. }
  2379. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2380. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2381. _content = $$("div", {
  2382. className: "U_MD_D_KO",
  2383. "onmousedown": U.UF.C.closure(function (obj) {
  2384. //防止拖动图标即打开了桌面应用
  2385. U.MD.D.click(this, obj);
  2386. }, [_scnuaiStudentDeskIconInfo[i]]),
  2387. "onclick": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_scnuaiStudentDeskIconInfo[i]])
  2391. }, _frag); //
  2392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2395. }
  2396. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2397. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2398. _content = $$("div", {
  2399. className: "U_MD_D_KO",
  2400. "onmousedown": U.UF.C.closure(function (obj) {
  2401. //防止拖动图标即打开了桌面应用
  2402. U.MD.D.click(this, obj);
  2403. }, [_caleStudentDeskIconInfo[i]]),
  2404. "onclick": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_caleStudentDeskIconInfo[i]])
  2408. }, _frag); //
  2409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2412. }
  2413. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2414. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2415. _content = $$("div", {
  2416. className: "U_MD_D_KO",
  2417. "onmousedown": U.UF.C.closure(function (obj) {
  2418. //防止拖动图标即打开了桌面应用
  2419. U.MD.D.click(this, obj);
  2420. }, [_thuioeStudentDeskIconInfo[i]]),
  2421. "onclick": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_thuioeStudentDeskIconInfo[i]])
  2425. }, _frag); //
  2426. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2427. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2428. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2429. }
  2430. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2431. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2432. _content = $$("div", {
  2433. className: "U_MD_D_KO",
  2434. "onmousedown": U.UF.C.closure(function (obj) {
  2435. //防止拖动图标即打开了桌面应用
  2436. U.MD.D.click(this, obj);
  2437. }, [_tpcStudentDeskIconInfo[i]]),
  2438. "onclick": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_tpcStudentDeskIconInfo[i]])
  2442. }, _frag); //
  2443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2446. } //
  2447. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2448. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2449. _content = $$("div", {
  2450. className: "U_MD_D_KO",
  2451. "onmousedown": U.UF.C.closure(function (obj) {
  2452. //防止拖动图标即打开了桌面应用
  2453. U.MD.D.click(this, obj);
  2454. }, [_chjyjStudentDeskIconInfo[i]]),
  2455. "onclick": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_chjyjStudentDeskIconInfo[i]])
  2459. }, _frag); //
  2460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2463. }
  2464. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2465. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2466. _content = $$("div", {
  2467. className: "U_MD_D_KO",
  2468. "onmousedown": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_szjkyStudentDeskIconInfo[i]]),
  2472. "onclick": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_szjkyStudentDeskIconInfo[i]])
  2476. }, _frag); //
  2477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2480. }
  2481. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2482. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2483. _content = $$("div", {
  2484. className: "U_MD_D_KO",
  2485. "onmousedown": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_x020201StudentDeskIconInfo[i]]),
  2489. "onclick": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_x020201StudentDeskIconInfo[i]])
  2493. }, _frag); //
  2494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2497. }
  2498. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2499. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2500. _content = $$("div", {
  2501. className: "U_MD_D_KO",
  2502. "onmousedown": U.UF.C.closure(function (obj) {
  2503. //防止拖动图标即打开了桌面应用
  2504. U.MD.D.click(this, obj);
  2505. }, [_SCNUETStudentDeskIconInfo[i]]),
  2506. "onclick": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_SCNUETStudentDeskIconInfo[i]])
  2510. }, _frag); //
  2511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2514. }
  2515. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2516. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2517. _content = $$("div", {
  2518. className: "U_MD_D_KO",
  2519. "onmousedown": U.UF.C.closure(function (obj) {
  2520. //防止拖动图标即打开了桌面应用
  2521. U.MD.D.click(this, obj);
  2522. }, [_dseiStudentDeskIconInfo[i]]),
  2523. "onclick": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_dseiStudentDeskIconInfo[i]])
  2527. }, _frag); //
  2528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2531. }
  2532. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2533. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2534. _content = $$("div", {
  2535. className: "U_MD_D_KO",
  2536. "onmousedown": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2540. "onclick": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2544. }, _frag); //
  2545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2548. }
  2549. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2550. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2551. _content = $$("div", {
  2552. className: "U_MD_D_KO",
  2553. "onmousedown": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_nsfxStudentDeskIconInfo[i]]),
  2557. "onclick": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_nsfxStudentDeskIconInfo[i]])
  2561. }, _frag); //
  2562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2565. }
  2566. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2567. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2568. _content = $$("div", {
  2569. className: "U_MD_D_KO",
  2570. "onmousedown": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_stiaStudentDeskIconInfo[i]]),
  2574. "onclick": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_stiaStudentDeskIconInfo[i]])
  2578. }, _frag); //
  2579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2582. }
  2583. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2584. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2585. _content = $$("div", {
  2586. className: "U_MD_D_KO",
  2587. "onmousedown": U.UF.C.closure(function (obj) {
  2588. //防止拖动图标即打开了桌面应用
  2589. U.MD.D.click(this, obj);
  2590. }, [_szdjgStudentDeskIconInfo[i]]),
  2591. "onclick": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_szdjgStudentDeskIconInfo[i]])
  2595. }, _frag); //
  2596. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2597. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2598. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2599. }
  2600. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2601. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2602. _content = $$("div", {
  2603. className: "U_MD_D_KO",
  2604. "onmousedown": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_x010607StudentDeskIconInfo[i]]),
  2608. "onclick": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_x010607StudentDeskIconInfo[i]])
  2612. }, _frag); //
  2613. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2614. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2615. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2616. }
  2617. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2618. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2619. _content = $$("div", {
  2620. className: "U_MD_D_KO",
  2621. "onmousedown": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_xhlyStudentDeskIconInfo[i]]),
  2625. "onclick": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_xhlyStudentDeskIconInfo[i]])
  2629. }, _frag); //
  2630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2633. }
  2634. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2635. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2636. _content = $$("div", {
  2637. className: "U_MD_D_KO",
  2638. "onmousedown": U.UF.C.closure(function (obj) {
  2639. //防止拖动图标即打开了桌面应用
  2640. U.MD.D.click(this, obj);
  2641. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2642. "onclick": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2646. }, _frag); //
  2647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2650. }
  2651. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2652. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2653. _content = $$("div", {
  2654. className: "U_MD_D_KO",
  2655. "onmousedown": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_x010503StudentDeskIconInfo[i]]),
  2659. "onclick": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_x010503StudentDeskIconInfo[i]])
  2663. }, _frag); //
  2664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2667. }
  2668. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2669. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2670. _content = $$("div", {
  2671. className: "U_MD_D_KO",
  2672. "onmousedown": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_x010504StudentDeskIconInfo[i]]),
  2676. "onclick": U.UF.C.closure(function (obj) {
  2677. //防止拖动图标即打开了桌面应用
  2678. U.MD.D.click(this, obj);
  2679. }, [_x010504StudentDeskIconInfo[i]])
  2680. }, _frag); //
  2681. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2682. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2683. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2684. }
  2685. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2686. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2687. _content = $$("div", {
  2688. className: "U_MD_D_KO",
  2689. "onmousedown": U.UF.C.closure(function (obj) {
  2690. //防止拖动图标即打开了桌面应用
  2691. U.MD.D.click(this, obj);
  2692. }, [_x010505StudentDeskIconInfo[i]]),
  2693. "onclick": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_x010505StudentDeskIconInfo[i]])
  2697. }, _frag); //
  2698. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2699. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2700. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2701. }
  2702. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2703. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2704. _content = $$("div", {
  2705. className: "U_MD_D_KO",
  2706. "onmousedown": U.UF.C.closure(function (obj) {
  2707. //防止拖动图标即打开了桌面应用
  2708. U.MD.D.click(this, obj);
  2709. }, [_x010404StudentDeskIconInfo[i]]),
  2710. "onclick": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_x010404StudentDeskIconInfo[i]])
  2714. }, _frag); //
  2715. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2716. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2717. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2718. }
  2719. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2720. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2721. _content = $$("div", {
  2722. className: "U_MD_D_KO",
  2723. "onmousedown": U.UF.C.closure(function (obj) {
  2724. //防止拖动图标即打开了桌面应用
  2725. U.MD.D.click(this, obj);
  2726. }, [_x010204StudentDeskIconInfo[i]]),
  2727. "onclick": U.UF.C.closure(function (obj) {
  2728. //防止拖动图标即打开了桌面应用
  2729. U.MD.D.click(this, obj);
  2730. }, [_x010204StudentDeskIconInfo[i]])
  2731. }, _frag); //
  2732. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2733. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2734. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2735. }
  2736. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2737. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2738. _content = $$("div", {
  2739. className: "U_MD_D_KO",
  2740. "onmousedown": U.UF.C.closure(function (obj) {
  2741. //防止拖动图标即打开了桌面应用
  2742. U.MD.D.click(this, obj);
  2743. }, [_x320101StudentDeskIconInfo[i]]),
  2744. "onclick": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_x320101StudentDeskIconInfo[i]])
  2748. }, _frag); //
  2749. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2750. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2751. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2752. }
  2753. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2754. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2755. _content = $$("div", {
  2756. className: "U_MD_D_KO",
  2757. "onmousedown": U.UF.C.closure(function (obj) {
  2758. //防止拖动图标即打开了桌面应用
  2759. U.MD.D.click(this, obj);
  2760. }, [_trailStudentDeskIconInfo[i]]),
  2761. "onclick": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_trailStudentDeskIconInfo[i]])
  2765. }, _frag); //
  2766. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2767. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2768. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2769. }
  2770. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2771. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2772. _content = $$("div", {
  2773. className: "U_MD_D_KO",
  2774. "onmousedown": U.UF.C.closure(function (obj) {
  2775. //防止拖动图标即打开了桌面应用
  2776. U.MD.D.click(this, obj);
  2777. }, [_trialStudentDeskIconInfo[i]]),
  2778. "onclick": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_trialStudentDeskIconInfo[i]])
  2782. }, _frag); //
  2783. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2784. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2785. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2786. }
  2787. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2788. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2789. _content = $$("div", {
  2790. className: "U_MD_D_KO",
  2791. "onmousedown": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2795. "onclick": U.UF.C.closure(function (obj) {
  2796. //防止拖动图标即打开了桌面应用
  2797. U.MD.D.click(this, obj);
  2798. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2799. }, _frag); //
  2800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2803. }
  2804. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2805. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2806. _content = $$("div", {
  2807. className: "U_MD_D_KO",
  2808. "onmousedown": U.UF.C.closure(function (obj) {
  2809. //防止拖动图标即打开了桌面应用
  2810. U.MD.D.click(this, obj);
  2811. }, [_szsyStudentDeskIconInfo[i]]),
  2812. "onclick": U.UF.C.closure(function (obj) {
  2813. //防止拖动图标即打开了桌面应用
  2814. U.MD.D.click(this, obj);
  2815. }, [_szsyStudentDeskIconInfo[i]])
  2816. }, _frag); //
  2817. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2820. }
  2821. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2822. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2823. _content = $$("div", {
  2824. className: "U_MD_D_KO",
  2825. "onmousedown": U.UF.C.closure(function (obj) {
  2826. //防止拖动图标即打开了桌面应用
  2827. U.MD.D.click(this, obj);
  2828. }, [_x010608StudentDeskIconInfo[i]]),
  2829. "onclick": U.UF.C.closure(function (obj) {
  2830. //防止拖动图标即打开了桌面应用
  2831. U.MD.D.click(this, obj);
  2832. }, [_x010608StudentDeskIconInfo[i]])
  2833. }, _frag); //
  2834. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2835. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2836. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2837. }
  2838. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2839. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2840. _content = $$("div", {
  2841. className: "U_MD_D_KO",
  2842. "onmousedown": U.UF.C.closure(function (obj) {
  2843. //防止拖动图标即打开了桌面应用
  2844. U.MD.D.click(this, obj);
  2845. }, [_x010611StudentDeskIconInfo[i]]),
  2846. "onclick": U.UF.C.closure(function (obj) {
  2847. //防止拖动图标即打开了桌面应用
  2848. U.MD.D.click(this, obj);
  2849. }, [_x010611StudentDeskIconInfo[i]])
  2850. }, _frag); //
  2851. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2852. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2853. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2854. }
  2855. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2856. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2857. _content = $$("div", {
  2858. className: "U_MD_D_KO",
  2859. "onmousedown": U.UF.C.closure(function (obj) {
  2860. //防止拖动图标即打开了桌面应用
  2861. U.MD.D.click(this, obj);
  2862. }, [_x010612StudentDeskIconInfo[i]]),
  2863. "onclick": U.UF.C.closure(function (obj) {
  2864. //防止拖动图标即打开了桌面应用
  2865. U.MD.D.click(this, obj);
  2866. }, [_x010612StudentDeskIconInfo[i]])
  2867. }, _frag); //
  2868. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2869. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2870. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2871. }
  2872. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2873. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2874. _content = $$("div", {
  2875. className: "U_MD_D_KO",
  2876. "onmousedown": U.UF.C.closure(function (obj) {
  2877. //防止拖动图标即打开了桌面应用
  2878. U.MD.D.click(this, obj);
  2879. }, [_tianyuantudentDeskIconInfo[i]]),
  2880. "onclick": U.UF.C.closure(function (obj) {
  2881. //防止拖动图标即打开了桌面应用
  2882. U.MD.D.click(this, obj);
  2883. }, [_tianyuantudentDeskIconInfo[i]])
  2884. }, _frag); //
  2885. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2886. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2887. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2888. }
  2889. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2890. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2891. _content = $$("div", {
  2892. className: "U_MD_D_KO",
  2893. "onmousedown": U.UF.C.closure(function (obj) {
  2894. //防止拖动图标即打开了桌面应用
  2895. U.MD.D.click(this, obj);
  2896. }, [_siesStudentDeskIconInfo[i]]),
  2897. "onclick": U.UF.C.closure(function (obj) {
  2898. //防止拖动图标即打开了桌面应用
  2899. U.MD.D.click(this, obj);
  2900. }, [_siesStudentDeskIconInfo[i]])
  2901. }, _frag); //
  2902. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2903. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2904. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2905. }
  2906. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2907. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2908. _content = $$("div", {
  2909. className: "U_MD_D_KO",
  2910. "onmousedown": U.UF.C.closure(function (obj) {
  2911. //防止拖动图标即打开了桌面应用
  2912. U.MD.D.click(this, obj);
  2913. }, [_guzmsStudentDeskIconInfo[i]]),
  2914. "onclick": U.UF.C.closure(function (obj) {
  2915. //防止拖动图标即打开了桌面应用
  2916. U.MD.D.click(this, obj);
  2917. }, [_guzmsStudentDeskIconInfo[i]])
  2918. }, _frag); //
  2919. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2920. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2921. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2922. }
  2923. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2924. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2925. _content = $$("div", {
  2926. className: "U_MD_D_KO",
  2927. "onmousedown": U.UF.C.closure(function (obj) {
  2928. //防止拖动图标即打开了桌面应用
  2929. U.MD.D.click(this, obj);
  2930. }, [_hkStudentDeskIconInfo[i]]),
  2931. "onclick": U.UF.C.closure(function (obj) {
  2932. //防止拖动图标即打开了桌面应用
  2933. U.MD.D.click(this, obj);
  2934. }, [_hkStudentDeskIconInfo[i]])
  2935. }, _frag); //
  2936. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2937. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2938. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2939. }
  2940. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2941. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2942. _content = $$("div", {
  2943. className: "U_MD_D_KO",
  2944. "onmousedown": U.UF.C.closure(function (obj) {
  2945. //防止拖动图标即打开了桌面应用
  2946. U.MD.D.click(this, obj);
  2947. }, [_hkaceStudentDeskIconInfo[i]]),
  2948. "onclick": U.UF.C.closure(function (obj) {
  2949. //防止拖动图标即打开了桌面应用
  2950. U.MD.D.click(this, obj);
  2951. }, [_hkaceStudentDeskIconInfo[i]])
  2952. }, _frag); //
  2953. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2954. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2955. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2956. }
  2957. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2958. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2959. _content = $$("div", {
  2960. className: "U_MD_D_KO",
  2961. "onmousedown": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2965. "onclick": U.UF.C.closure(function (obj) {
  2966. //防止拖动图标即打开了桌面应用
  2967. U.MD.D.click(this, obj);
  2968. }, [_BSDNSstudentDesktopIconInfo[i]])
  2969. }, _frag); //
  2970. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2971. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2972. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2973. }
  2974. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2975. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2976. _content = $$("div", {
  2977. className: "U_MD_D_KO",
  2978. "onmousedown": U.UF.C.closure(function (obj) {
  2979. //防止拖动图标即打开了桌面应用
  2980. U.MD.D.click(this, obj);
  2981. }, [_cocobizStudentDeskIconInfo[i]]),
  2982. "onclick": U.UF.C.closure(function (obj) {
  2983. //防止拖动图标即打开了桌面应用
  2984. U.MD.D.click(this, obj);
  2985. }, [_cocobizStudentDeskIconInfo[i]])
  2986. }, _frag); //
  2987. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2988. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2989. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2990. }
  2991. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2992. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2993. _content = $$("div", {
  2994. className: "U_MD_D_KO",
  2995. "onmousedown": U.UF.C.closure(function (obj) {
  2996. //防止拖动图标即打开了桌面应用
  2997. U.MD.D.click(this, obj);
  2998. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2999. "onclick": U.UF.C.closure(function (obj) {
  3000. //防止拖动图标即打开了桌面应用
  3001. U.MD.D.click(this, obj);
  3002. }, [_xxzjkyStudentDeskIconInfo[i]])
  3003. }, _frag); //
  3004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3007. }
  3008. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3009. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3010. _content = $$("div", {
  3011. className: "U_MD_D_KO",
  3012. "onmousedown": U.UF.C.closure(function (obj) {
  3013. //防止拖动图标即打开了桌面应用
  3014. U.MD.D.click(this, obj);
  3015. }, [_studentDesktopIconInfo[i]]),
  3016. "onclick": U.UF.C.closure(function (obj) {
  3017. //防止拖动图标即打开了桌面应用
  3018. U.MD.D.click(this, obj);
  3019. }, [_studentDesktopIconInfo[i]])
  3020. }, _frag); //
  3021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3024. }
  3025. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3026. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3027. _content = $$("div", {
  3028. className: "U_MD_D_KO",
  3029. "onmousedown": U.UF.C.closure(function (obj) {
  3030. //防止拖动图标即打开了桌面应用
  3031. U.MD.D.click(this, obj);
  3032. }, [_tcStudentDeskIconInfo[i]]),
  3033. "onclick": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_tcStudentDeskIconInfo[i]])
  3037. }, _frag); //
  3038. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3039. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3040. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3041. }
  3042. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3043. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3044. _content = $$("div", {
  3045. className: "U_MD_D_KO",
  3046. "onmousedown": U.UF.C.closure(function (obj) {
  3047. //防止拖动图标即打开了桌面应用
  3048. U.MD.D.click(this, obj);
  3049. }, [_szscStudentDeskIconInfo[i]]),
  3050. "onclick": U.UF.C.closure(function (obj) {
  3051. //防止拖动图标即打开了桌面应用
  3052. U.MD.D.click(this, obj);
  3053. }, [_szscStudentDeskIconInfo[i]])
  3054. }, _frag); //
  3055. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3056. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3057. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3058. }
  3059. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3060. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3061. _content = $$("div", {
  3062. className: "U_MD_D_KO",
  3063. "onmousedown": U.UF.C.closure(function (obj) {
  3064. //防止拖动图标即打开了桌面应用
  3065. U.MD.D.click(this, obj);
  3066. }, [_studentDesktopIconInfo3[i]]),
  3067. "onclick": U.UF.C.closure(function (obj) {
  3068. //防止拖动图标即打开了桌面应用
  3069. U.MD.D.click(this, obj);
  3070. }, [_studentDesktopIconInfo3[i]])
  3071. }, _frag); //
  3072. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3073. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3074. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3075. }
  3076. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3077. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3078. _content = $$("div", {
  3079. className: "U_MD_D_KO",
  3080. "onmousedown": U.UF.C.closure(function (obj) {
  3081. //防止拖动图标即打开了桌面应用
  3082. U.MD.D.click(this, obj);
  3083. }, [_studentDesktopIconInfo2[i]]),
  3084. "onclick": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_studentDesktopIconInfo2[i]])
  3088. }, _frag); //
  3089. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3090. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3091. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3092. }
  3093. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3094. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3095. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3096. continue
  3097. }
  3098. _content = $$("div", {
  3099. className: "U_MD_D_KO",
  3100. "onmousedown": U.UF.C.closure(function (obj) {
  3101. //防止拖动图标即打开了桌面应用
  3102. U.MD.D.click(this, obj);
  3103. }, [_wanketeacherDesktopIconInfo[i]]),
  3104. "onclick": U.UF.C.closure(function (obj) {
  3105. //防止拖动图标即打开了桌面应用
  3106. U.MD.D.click(this, obj);
  3107. }, [_wanketeacherDesktopIconInfo[i]])
  3108. }, _frag); //
  3109. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3110. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3111. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3112. }
  3113. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3114. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3115. _content = $$("div", {
  3116. className: "U_MD_D_KO",
  3117. "onmousedown": U.UF.C.closure(function (obj) {
  3118. //防止拖动图标即打开了桌面应用
  3119. U.MD.D.click(this, obj);
  3120. }, [_wankeAdminDesktopIconInfo[i]]),
  3121. "onclick": U.UF.C.closure(function (obj) {
  3122. //防止拖动图标即打开了桌面应用
  3123. U.MD.D.click(this, obj);
  3124. }, [_wankeAdminDesktopIconInfo[i]])
  3125. }, _frag); //
  3126. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3127. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3128. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3129. }
  3130. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3131. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3132. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3133. continue
  3134. }
  3135. _content = $$("div", {
  3136. className: "U_MD_D_KO",
  3137. "onmousedown": U.UF.C.closure(function (obj) {
  3138. //防止拖动图标即打开了桌面应用
  3139. U.MD.D.click(this, obj);
  3140. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3141. "onclick": U.UF.C.closure(function (obj) {
  3142. //防止拖动图标即打开了桌面应用
  3143. U.MD.D.click(this, obj);
  3144. }, [_scnuaiTeacherDeskIconInfo[i]])
  3145. }, _frag); //
  3146. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3147. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3148. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3149. }
  3150. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3151. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3152. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3153. continue
  3154. }
  3155. _content = $$("div", {
  3156. className: "U_MD_D_KO",
  3157. "onmousedown": U.UF.C.closure(function (obj) {
  3158. //防止拖动图标即打开了桌面应用
  3159. U.MD.D.click(this, obj);
  3160. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3161. "onclick": U.UF.C.closure(function (obj) {
  3162. //防止拖动图标即打开了桌面应用
  3163. U.MD.D.click(this, obj);
  3164. }, [_BSDNSteacherDesktopIconInfo[i]])
  3165. }, _frag); //
  3166. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3167. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3168. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3169. }
  3170. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3171. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3172. _content = $$("div", {
  3173. className: "U_MD_D_KO",
  3174. "onmousedown": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_scnuaiAdminDeskIconInfo[i]]),
  3178. "onclick": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_scnuaiAdminDeskIconInfo[i]])
  3182. }, _frag); //
  3183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3186. }
  3187. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3188. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3189. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3190. continue
  3191. }
  3192. _content = $$("div", {
  3193. className: "U_MD_D_KO",
  3194. "onmousedown": U.UF.C.closure(function (obj) {
  3195. //防止拖动图标即打开了桌面应用
  3196. U.MD.D.click(this, obj);
  3197. }, [_jccssylTeacherDeskIconInfo[i]]),
  3198. "onclick": U.UF.C.closure(function (obj) {
  3199. //防止拖动图标即打开了桌面应用
  3200. U.MD.D.click(this, obj);
  3201. }, [_jccssylTeacherDeskIconInfo[i]])
  3202. }, _frag); //
  3203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3206. }
  3207. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3208. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3209. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3210. continue
  3211. }
  3212. _content = $$("div", {
  3213. className: "U_MD_D_KO",
  3214. "onmousedown": U.UF.C.closure(function (obj) {
  3215. //防止拖动图标即打开了桌面应用
  3216. U.MD.D.click(this, obj);
  3217. }, [_caleTeacherDeskIconInfo[i]]),
  3218. "onclick": U.UF.C.closure(function (obj) {
  3219. //防止拖动图标即打开了桌面应用
  3220. U.MD.D.click(this, obj);
  3221. }, [_caleTeacherDeskIconInfo[i]])
  3222. }, _frag); //
  3223. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3224. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3225. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3226. }
  3227. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3228. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3229. _content = $$("div", {
  3230. className: "U_MD_D_KO",
  3231. "onmousedown": U.UF.C.closure(function (obj) {
  3232. //防止拖动图标即打开了桌面应用
  3233. U.MD.D.click(this, obj);
  3234. }, [_tpcOrganizerDeskIconInfo[i]]),
  3235. "onclick": U.UF.C.closure(function (obj) {
  3236. //防止拖动图标即打开了桌面应用
  3237. U.MD.D.click(this, obj);
  3238. }, [_tpcOrganizerDeskIconInfo[i]])
  3239. }, _frag); //
  3240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3243. }
  3244. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3245. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3246. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3247. continue
  3248. }
  3249. _content = $$("div", {
  3250. className: "U_MD_D_KO",
  3251. "onmousedown": U.UF.C.closure(function (obj) {
  3252. //防止拖动图标即打开了桌面应用
  3253. U.MD.D.click(this, obj);
  3254. }, [_tpcTeacherDeskIconInfo[i]]),
  3255. "onclick": U.UF.C.closure(function (obj) {
  3256. //防止拖动图标即打开了桌面应用
  3257. U.MD.D.click(this, obj);
  3258. }, [_tpcTeacherDeskIconInfo[i]])
  3259. }, _frag); //
  3260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3263. }
  3264. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3265. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3266. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3267. continue
  3268. }
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_teacherDesktopIconInfo2[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_teacherDesktopIconInfo2[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3283. }
  3284. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3285. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3286. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3287. continue
  3288. }
  3289. _content = $$("div", {
  3290. className: "U_MD_D_KO",
  3291. "onmousedown": U.UF.C.closure(function (obj) {
  3292. //防止拖动图标即打开了桌面应用
  3293. U.MD.D.click(this, obj);
  3294. }, [_thuioeTeacherDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_thuioeTeacherDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3303. }
  3304. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3305. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3306. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3307. continue
  3308. }
  3309. _content = $$("div", {
  3310. className: "U_MD_D_KO",
  3311. "onmousedown": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_lotechTeacherDeskIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_lotechTeacherDeskIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3323. }//
  3324. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3325. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3326. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3327. continue
  3328. }
  3329. _content = $$("div", {
  3330. className: "U_MD_D_KO",
  3331. "onmousedown": U.UF.C.closure(function (obj) {
  3332. //防止拖动图标即打开了桌面应用
  3333. U.MD.D.click(this, obj);
  3334. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3335. "onclick": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3339. }, _frag); //
  3340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3343. }
  3344. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3345. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3346. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3347. continue
  3348. }
  3349. _content = $$("div", {
  3350. className: "U_MD_D_KO",
  3351. "onmousedown": U.UF.C.closure(function (obj) {
  3352. //防止拖动图标即打开了桌面应用
  3353. U.MD.D.click(this, obj);
  3354. }, [_siesTeacherDeskIconInfo[i]]),
  3355. "onclick": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_siesTeacherDeskIconInfo[i]])
  3359. }, _frag); //
  3360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3363. }
  3364. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3365. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3366. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3367. continue
  3368. }
  3369. _content = $$("div", {
  3370. className: "U_MD_D_KO",
  3371. "onmousedown": U.UF.C.closure(function (obj) {
  3372. //防止拖动图标即打开了桌面应用
  3373. U.MD.D.click(this, obj);
  3374. }, [_guzmsTeacherDeskIconInfo[i]]),
  3375. "onclick": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_guzmsTeacherDeskIconInfo[i]])
  3379. }, _frag); //
  3380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3383. }
  3384. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3385. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3386. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3387. continue
  3388. }
  3389. _content = $$("div", {
  3390. className: "U_MD_D_KO",
  3391. "onmousedown": U.UF.C.closure(function (obj) {
  3392. //防止拖动图标即打开了桌面应用
  3393. U.MD.D.click(this, obj);
  3394. }, [_longhuaTeacherDeskIconInfo[i]]),
  3395. "onclick": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_longhuaTeacherDeskIconInfo[i]])
  3399. }, _frag); //
  3400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3403. }
  3404. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3405. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3406. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3407. continue
  3408. }
  3409. _content = $$("div", {
  3410. className: "U_MD_D_KO",
  3411. "onmousedown": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_ytyTeacherDeskIconInfo[i]]),
  3415. "onclick": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_ytyTeacherDeskIconInfo[i]])
  3419. }, _frag); //
  3420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3423. }
  3424. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3425. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3426. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3427. continue
  3428. }
  3429. _content = $$("div", {
  3430. className: "U_MD_D_KO",
  3431. "onmousedown": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3435. "onclick": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_yunhaiTeacherDeskIconInfo[i]])
  3439. }, _frag); //
  3440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3443. } //_hkStudentDeskIconInfo
  3444. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3445. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3446. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3447. continue
  3448. }
  3449. _content = $$("div", {
  3450. className: "U_MD_D_KO",
  3451. "onmousedown": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3455. "onclick": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3459. }, _frag); //
  3460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3463. }
  3464. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3465. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3466. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3467. continue
  3468. }
  3469. _content = $$("div", {
  3470. className: "U_MD_D_KO",
  3471. "onmousedown": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_ricohTeacherDeskIconInfo[i]]),
  3475. "onclick": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_ricohTeacherDeskIconInfo[i]])
  3479. }, _frag); //
  3480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3483. }
  3484. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3485. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3486. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3487. continue
  3488. }
  3489. _content = $$("div", {
  3490. className: "U_MD_D_KO",
  3491. "onmousedown": U.UF.C.closure(function (obj) {
  3492. //防止拖动图标即打开了桌面应用
  3493. U.MD.D.click(this, obj);
  3494. }, [_hkTeacherDeskIconInfo[i]]),
  3495. "onclick": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_hkTeacherDeskIconInfo[i]])
  3499. }, _frag); //
  3500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3503. }
  3504. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3505. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3506. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3507. continue
  3508. }
  3509. _content = $$("div", {
  3510. className: "U_MD_D_KO",
  3511. "onmousedown": U.UF.C.closure(function (obj) {
  3512. //防止拖动图标即打开了桌面应用
  3513. U.MD.D.click(this, obj);
  3514. }, [_hkaceTeacherDeskIconInfo[i]]),
  3515. "onclick": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_hkaceTeacherDeskIconInfo[i]])
  3519. }, _frag); //
  3520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3523. }
  3524. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3525. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3526. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3527. continue
  3528. }
  3529. _content = $$("div", {
  3530. className: "U_MD_D_KO",
  3531. "onmousedown": U.UF.C.closure(function (obj) {
  3532. //防止拖动图标即打开了桌面应用
  3533. U.MD.D.click(this, obj);
  3534. }, [_cocobizTeacherDeskIconInfo[i]]),
  3535. "onclick": U.UF.C.closure(function (obj) {
  3536. //防止拖动图标即打开了桌面应用
  3537. U.MD.D.click(this, obj);
  3538. }, [_cocobizTeacherDeskIconInfo[i]])
  3539. }, _frag); //
  3540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3543. }
  3544. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3545. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3546. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3547. continue
  3548. }
  3549. _content = $$("div", {
  3550. className: "U_MD_D_KO",
  3551. "onmousedown": U.UF.C.closure(function (obj) {
  3552. //防止拖动图标即打开了桌面应用
  3553. U.MD.D.click(this, obj);
  3554. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3555. "onclick": U.UF.C.closure(function (obj) {
  3556. //防止拖动图标即打开了桌面应用
  3557. U.MD.D.click(this, obj);
  3558. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3559. }, _frag); //
  3560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3563. }
  3564. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3565. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3566. _content = $$("div", {
  3567. className: "U_MD_D_KO",
  3568. "onmousedown": U.UF.C.closure(function (obj) {
  3569. //防止拖动图标即打开了桌面应用
  3570. U.MD.D.click(this, obj);
  3571. }, [_gdjgAdminDeskIconInfo[i]]),
  3572. "onclick": U.UF.C.closure(function (obj) {
  3573. //防止拖动图标即打开了桌面应用
  3574. U.MD.D.click(this, obj);
  3575. }, [_gdjgAdminDeskIconInfo[i]])
  3576. }, _frag); //
  3577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3580. }
  3581. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3582. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3583. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3584. continue
  3585. }
  3586. _content = $$("div", {
  3587. className: "U_MD_D_KO",
  3588. "onmousedown": U.UF.C.closure(function (obj) {
  3589. //防止拖动图标即打开了桌面应用
  3590. U.MD.D.click(this, obj);
  3591. }, [_gdjgTeacherDeskIconInfo[i]]),
  3592. "onclick": U.UF.C.closure(function (obj) {
  3593. //防止拖动图标即打开了桌面应用
  3594. U.MD.D.click(this, obj);
  3595. }, [_gdjgTeacherDeskIconInfo[i]])
  3596. }, _frag); //
  3597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3600. }
  3601. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3602. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3603. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3604. continue
  3605. }
  3606. _content = $$("div", {
  3607. className: "U_MD_D_KO",
  3608. "onmousedown": U.UF.C.closure(function (obj) {
  3609. //防止拖动图标即打开了桌面应用
  3610. U.MD.D.click(this, obj);
  3611. }, [_szherTeacherDeskIconInfo[i]]),
  3612. "onclick": U.UF.C.closure(function (obj) {
  3613. //防止拖动图标即打开了桌面应用
  3614. U.MD.D.click(this, obj);
  3615. }, [_szherTeacherDeskIconInfo[i]])
  3616. }, _frag); //
  3617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3620. }
  3621. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3622. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3623. _content = $$("div", {
  3624. className: "U_MD_D_KO",
  3625. "onmousedown": U.UF.C.closure(function (obj) {
  3626. //防止拖动图标即打开了桌面应用
  3627. U.MD.D.click(this, obj);
  3628. }, [_heyuannAdminDeskIconInfo[i]]),
  3629. "onclick": U.UF.C.closure(function (obj) {
  3630. //防止拖动图标即打开了桌面应用
  3631. U.MD.D.click(this, obj);
  3632. }, [_heyuannAdminDeskIconInfo[i]])
  3633. }, _frag); //
  3634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3637. }
  3638. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3639. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3640. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3641. continue
  3642. }
  3643. _content = $$("div", {
  3644. className: "U_MD_D_KO",
  3645. "onmousedown": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_heyuanTeacherDeskIconInfo[i]]),
  3649. "onclick": U.UF.C.closure(function (obj) {
  3650. //防止拖动图标即打开了桌面应用
  3651. U.MD.D.click(this, obj);
  3652. }, [_heyuanTeacherDeskIconInfo[i]])
  3653. }, _frag); //
  3654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3657. } //
  3658. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3659. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3660. _content = $$("div", {
  3661. className: "U_MD_D_KO",
  3662. "onmousedown": U.UF.C.closure(function (obj) {
  3663. //防止拖动图标即打开了桌面应用
  3664. U.MD.D.click(this, obj);
  3665. }, [_dseiAdminDeskIconInfo[i]]),
  3666. "onclick": U.UF.C.closure(function (obj) {
  3667. //防止拖动图标即打开了桌面应用
  3668. U.MD.D.click(this, obj);
  3669. }, [_dseiAdminDeskIconInfo[i]])
  3670. }, _frag); //
  3671. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3672. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3673. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3674. }
  3675. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3676. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3677. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3678. continue
  3679. }
  3680. _content = $$("div", {
  3681. className: "U_MD_D_KO",
  3682. "onmousedown": U.UF.C.closure(function (obj) {
  3683. //防止拖动图标即打开了桌面应用
  3684. U.MD.D.click(this, obj);
  3685. }, [_dseiTeacherDeskIconInfo[i]]),
  3686. "onclick": U.UF.C.closure(function (obj) {
  3687. //防止拖动图标即打开了桌面应用
  3688. U.MD.D.click(this, obj);
  3689. }, [_dseiTeacherDeskIconInfo[i]])
  3690. }, _frag); //
  3691. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3692. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3693. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3694. } //
  3695. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3696. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3697. _content = $$("div", {
  3698. className: "U_MD_D_KO",
  3699. "onmousedown": U.UF.C.closure(function (obj) {
  3700. //防止拖动图标即打开了桌面应用
  3701. U.MD.D.click(this, obj);
  3702. }, [_chjyjAdminDeskIconInfo[i]]),
  3703. "onclick": U.UF.C.closure(function (obj) {
  3704. //防止拖动图标即打开了桌面应用
  3705. U.MD.D.click(this, obj);
  3706. }, [_chjyjAdminDeskIconInfo[i]])
  3707. }, _frag); //
  3708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3711. }//
  3712. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3713. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3714. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3715. continue
  3716. }
  3717. _content = $$("div", {
  3718. className: "U_MD_D_KO",
  3719. "onmousedown": U.UF.C.closure(function (obj) {
  3720. //防止拖动图标即打开了桌面应用
  3721. U.MD.D.click(this, obj);
  3722. }, [_chjyjTeacherDeskIconInfo[i]]),
  3723. "onclick": U.UF.C.closure(function (obj) {
  3724. //防止拖动图标即打开了桌面应用
  3725. U.MD.D.click(this, obj);
  3726. }, [_chjyjTeacherDeskIconInfo[i]])
  3727. }, _frag); //
  3728. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3729. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3730. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3731. }
  3732. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3733. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3734. _content = $$("div", {
  3735. className: "U_MD_D_KO",
  3736. "onmousedown": U.UF.C.closure(function (obj) {
  3737. //防止拖动图标即打开了桌面应用
  3738. U.MD.D.click(this, obj);
  3739. }, [_szjkyAdminDeskIconInfo[i]]),
  3740. "onclick": U.UF.C.closure(function (obj) {
  3741. //防止拖动图标即打开了桌面应用
  3742. U.MD.D.click(this, obj);
  3743. }, [_szjkyAdminDeskIconInfo[i]])
  3744. }, _frag); //
  3745. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3746. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3747. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3748. }//
  3749. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3750. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3751. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3752. continue
  3753. }
  3754. _content = $$("div", {
  3755. className: "U_MD_D_KO",
  3756. "onmousedown": U.UF.C.closure(function (obj) {
  3757. //防止拖动图标即打开了桌面应用
  3758. U.MD.D.click(this, obj);
  3759. }, [_szjkyTeacherDeskIconInfo[i]]),
  3760. "onclick": U.UF.C.closure(function (obj) {
  3761. //防止拖动图标即打开了桌面应用
  3762. U.MD.D.click(this, obj);
  3763. }, [_szjkyTeacherDeskIconInfo[i]])
  3764. }, _frag); //
  3765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3768. }
  3769. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3770. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3771. _content = $$("div", {
  3772. className: "U_MD_D_KO",
  3773. "onmousedown": U.UF.C.closure(function (obj) {
  3774. //防止拖动图标即打开了桌面应用
  3775. U.MD.D.click(this, obj);
  3776. }, [_x020201AdminDeskIconInfo[i]]),
  3777. "onclick": U.UF.C.closure(function (obj) {
  3778. //防止拖动图标即打开了桌面应用
  3779. U.MD.D.click(this, obj);
  3780. }, [_x020201AdminDeskIconInfo[i]])
  3781. }, _frag); //
  3782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3785. }//
  3786. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3787. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3788. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3789. continue
  3790. }
  3791. _content = $$("div", {
  3792. className: "U_MD_D_KO",
  3793. "onmousedown": U.UF.C.closure(function (obj) {
  3794. //防止拖动图标即打开了桌面应用
  3795. U.MD.D.click(this, obj);
  3796. }, [_x020201TeacherDeskIconInfo[i]]),
  3797. "onclick": U.UF.C.closure(function (obj) {
  3798. //防止拖动图标即打开了桌面应用
  3799. U.MD.D.click(this, obj);
  3800. }, [_x020201TeacherDeskIconInfo[i]])
  3801. }, _frag); //
  3802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3805. }
  3806. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3807. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3808. _content = $$("div", {
  3809. className: "U_MD_D_KO",
  3810. "onmousedown": U.UF.C.closure(function (obj) {
  3811. //防止拖动图标即打开了桌面应用
  3812. U.MD.D.click(this, obj);
  3813. }, [_SCNUETAdminDeskIconInfo[i]]),
  3814. "onclick": U.UF.C.closure(function (obj) {
  3815. //防止拖动图标即打开了桌面应用
  3816. U.MD.D.click(this, obj);
  3817. }, [_SCNUETAdminDeskIconInfo[i]])
  3818. }, _frag); //
  3819. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3820. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3821. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3822. }//
  3823. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3824. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3825. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3826. continue
  3827. }
  3828. _content = $$("div", {
  3829. className: "U_MD_D_KO",
  3830. "onmousedown": U.UF.C.closure(function (obj) {
  3831. //防止拖动图标即打开了桌面应用
  3832. U.MD.D.click(this, obj);
  3833. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3834. "onclick": U.UF.C.closure(function (obj) {
  3835. //防止拖动图标即打开了桌面应用
  3836. U.MD.D.click(this, obj);
  3837. }, [_SCNUETTeacherDeskIconInfo[i]])
  3838. }, _frag); //
  3839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3842. }
  3843. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3844. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3845. _content = $$("div", {
  3846. className: "U_MD_D_KO",
  3847. "onmousedown": U.UF.C.closure(function (obj) {
  3848. //防止拖动图标即打开了桌面应用
  3849. U.MD.D.click(this, obj);
  3850. }, [_futianAdminDeskIconInfo[i]]),
  3851. "onclick": U.UF.C.closure(function (obj) {
  3852. //防止拖动图标即打开了桌面应用
  3853. U.MD.D.click(this, obj);
  3854. }, [_futianAdminDeskIconInfo[i]])
  3855. }, _frag); //
  3856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3859. }
  3860. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3861. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3862. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3863. continue
  3864. }
  3865. _content = $$("div", {
  3866. className: "U_MD_D_KO",
  3867. "onmousedown": U.UF.C.closure(function (obj) {
  3868. //防止拖动图标即打开了桌面应用
  3869. U.MD.D.click(this, obj);
  3870. }, [_futianTeacherDeskIconInfo[i]]),
  3871. "onclick": U.UF.C.closure(function (obj) {
  3872. //防止拖动图标即打开了桌面应用
  3873. U.MD.D.click(this, obj);
  3874. }, [_futianTeacherDeskIconInfo[i]])
  3875. }, _frag); //
  3876. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3879. }
  3880. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3881. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3882. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3883. continue
  3884. }
  3885. _content = $$("div", {
  3886. className: "U_MD_D_KO",
  3887. "onmousedown": U.UF.C.closure(function (obj) {
  3888. //防止拖动图标即打开了桌面应用
  3889. U.MD.D.click(this, obj);
  3890. }, [_MingdeTeacherDeskIcon[i]]),
  3891. "onclick": U.UF.C.closure(function (obj) {
  3892. //防止拖动图标即打开了桌面应用
  3893. U.MD.D.click(this, obj);
  3894. }, [_MingdeTeacherDeskIcon[i]])
  3895. }, _frag); //
  3896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3899. }
  3900. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3901. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3902. _content = $$("div", {
  3903. className: "U_MD_D_KO",
  3904. "onmousedown": U.UF.C.closure(function (obj) {
  3905. //防止拖动图标即打开了桌面应用
  3906. U.MD.D.click(this, obj);
  3907. }, [_lhsAdminDesktopIconInfo[i]]),
  3908. "onclick": U.UF.C.closure(function (obj) {
  3909. //防止拖动图标即打开了桌面应用
  3910. U.MD.D.click(this, obj);
  3911. }, [_lhsAdminDesktopIconInfo[i]])
  3912. }, _frag); //
  3913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3916. }
  3917. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3918. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3919. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3920. continue
  3921. }
  3922. _content = $$("div", {
  3923. className: "U_MD_D_KO",
  3924. "onmousedown": U.UF.C.closure(function (obj) {
  3925. //防止拖动图标即打开了桌面应用
  3926. U.MD.D.click(this, obj);
  3927. }, [_lhsteacherDesktopIconInfo[i]]),
  3928. "onclick": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_lhsteacherDesktopIconInfo[i]])
  3932. }, _frag); //
  3933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3936. }
  3937. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3938. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3939. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3940. continue
  3941. }
  3942. _content = $$("div", {
  3943. className: "U_MD_D_KO",
  3944. "onmousedown": U.UF.C.closure(function (obj) {
  3945. //防止拖动图标即打开了桌面应用
  3946. U.MD.D.click(this, obj);
  3947. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3948. "onclick": U.UF.C.closure(function (obj) {
  3949. //防止拖动图标即打开了桌面应用
  3950. U.MD.D.click(this, obj);
  3951. }, [_zhoujiateacherDesktopIconInfo[i]])
  3952. }, _frag); //
  3953. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3954. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3955. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3956. }
  3957. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3958. for (i = 0; i < _hanDeskIcon.length; i++) {
  3959. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3960. continue
  3961. }
  3962. _content = $$("div", {
  3963. className: "U_MD_D_KO",
  3964. "onmousedown": U.UF.C.closure(function (obj) {
  3965. //防止拖动图标即打开了桌面应用
  3966. U.MD.D.click(this, obj);
  3967. }, [_hanDeskIcon[i]]),
  3968. "onclick": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_hanDeskIcon[i]])
  3972. }, _frag); //
  3973. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3974. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3975. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3976. }
  3977. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3978. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3979. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3980. continue
  3981. }
  3982. _content = $$("div", {
  3983. className: "U_MD_D_KO",
  3984. "onmousedown": U.UF.C.closure(function (obj) {
  3985. //防止拖动图标即打开了桌面应用
  3986. U.MD.D.click(this, obj);
  3987. }, [_orgStemDeskIcon[i]]),
  3988. "onclick": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_orgStemDeskIcon[i]])
  3992. }, _frag); //
  3993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3996. }
  3997. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3998. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3999. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4000. continue
  4001. }
  4002. _content = $$("div", {
  4003. className: "U_MD_D_KO",
  4004. "onmousedown": U.UF.C.closure(function (obj) {
  4005. //防止拖动图标即打开了桌面应用
  4006. U.MD.D.click(this, obj);
  4007. }, [_szulsDeskIcon[i]]),
  4008. "onclick": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_szulsDeskIcon[i]])
  4012. }, _frag); //
  4013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4016. }
  4017. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4018. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4019. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4020. continue
  4021. }
  4022. _content = $$("div", {
  4023. className: "U_MD_D_KO",
  4024. "onmousedown": U.UF.C.closure(function (obj) {
  4025. //防止拖动图标即打开了桌面应用
  4026. U.MD.D.click(this, obj);
  4027. }, [_orgDesktopIconInfo[i]]),
  4028. "onclick": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_orgDesktopIconInfo[i]])
  4032. }, _frag); //
  4033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4036. }
  4037. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4038. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4039. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4040. continue
  4041. }
  4042. _content = $$("div", {
  4043. className: "U_MD_D_KO",
  4044. "onmousedown": U.UF.C.closure(function (obj) {
  4045. //防止拖动图标即打开了桌面应用
  4046. U.MD.D.click(this, obj);
  4047. }, [_schoolDesktopIconInfo[i]]),
  4048. "onclick": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_schoolDesktopIconInfo[i]])
  4052. }, _frag); //
  4053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4056. }
  4057. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4058. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4059. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4060. continue
  4061. }
  4062. _content = $$("div", {
  4063. className: "U_MD_D_KO",
  4064. "onmousedown": U.UF.C.closure(function (obj) {
  4065. //防止拖动图标即打开了桌面应用
  4066. U.MD.D.click(this, obj);
  4067. }, [_GMteacherDesktopIconInfo[i]]),
  4068. "onclick": U.UF.C.closure(function (obj) {
  4069. //防止拖动图标即打开了桌面应用
  4070. U.MD.D.click(this, obj);
  4071. }, [_GMteacherDesktopIconInfo[i]])
  4072. }, _frag); //
  4073. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4074. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4075. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4076. }
  4077. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4078. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4079. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4080. continue
  4081. }
  4082. _content = $$("div", {
  4083. className: "U_MD_D_KO",
  4084. "onmousedown": U.UF.C.closure(function (obj) {
  4085. //防止拖动图标即打开了桌面应用
  4086. U.MD.D.click(this, obj);
  4087. }, [_SONGteacherDesktopIconInfo[i]]),
  4088. "onclick": U.UF.C.closure(function (obj) {
  4089. //防止拖动图标即打开了桌面应用
  4090. U.MD.D.click(this, obj);
  4091. }, [_SONGteacherDesktopIconInfo[i]])
  4092. }, _frag); //
  4093. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4094. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4095. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4096. }
  4097. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4098. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4099. _content = $$("div", {
  4100. className: "U_MD_D_KO",
  4101. "onmousedown": U.UF.C.closure(function (obj) {
  4102. //防止拖动图标即打开了桌面应用
  4103. U.MD.D.click(this, obj);
  4104. }, [_GMstudentDesktopIconInfo[i]]),
  4105. "onclick": U.UF.C.closure(function (obj) {
  4106. //防止拖动图标即打开了桌面应用
  4107. U.MD.D.click(this, obj);
  4108. }, [_GMstudentDesktopIconInfo[i]])
  4109. }, _frag); //
  4110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4113. }
  4114. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4115. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4116. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4117. continue
  4118. }
  4119. _content = $$("div", {
  4120. className: "U_MD_D_KO",
  4121. "onmousedown": U.UF.C.closure(function (obj) {
  4122. //防止拖动图标即打开了桌面应用
  4123. U.MD.D.click(this, obj);
  4124. }, [_tcTeacherDeskIconInfo[i]]),
  4125. "onclick": U.UF.C.closure(function (obj) {
  4126. //防止拖动图标即打开了桌面应用
  4127. U.MD.D.click(this, obj);
  4128. }, [_tcTeacherDeskIconInfo[i]])
  4129. }, _frag); //
  4130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4133. }
  4134. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4135. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4136. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4137. continue
  4138. }
  4139. _content = $$("div", {
  4140. className: "U_MD_D_KO",
  4141. "onmousedown": U.UF.C.closure(function (obj) {
  4142. //防止拖动图标即打开了桌面应用
  4143. U.MD.D.click(this, obj);
  4144. }, [_tcOrganizerDeskIconInfo[i]]),
  4145. "onclick": U.UF.C.closure(function (obj) {
  4146. //防止拖动图标即打开了桌面应用
  4147. U.MD.D.click(this, obj);
  4148. }, [_tcOrganizerDeskIconInfo[i]])
  4149. }, _frag); //
  4150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4153. }
  4154. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4155. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4156. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4157. continue
  4158. }
  4159. _content = $$("div", {
  4160. className: "U_MD_D_KO",
  4161. "onmousedown": U.UF.C.closure(function (obj) {
  4162. //防止拖动图标即打开了桌面应用
  4163. U.MD.D.click(this, obj);
  4164. }, [_szscTeacherDeskIconInfo[i]]),
  4165. "onclick": U.UF.C.closure(function (obj) {
  4166. //防止拖动图标即打开了桌面应用
  4167. U.MD.D.click(this, obj);
  4168. }, [_szscTeacherDeskIconInfo[i]])
  4169. }, _frag); //
  4170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4173. }
  4174. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4175. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4176. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4177. continue
  4178. }
  4179. _content = $$("div", {
  4180. className: "U_MD_D_KO",
  4181. "onmousedown": U.UF.C.closure(function (obj) {
  4182. //防止拖动图标即打开了桌面应用
  4183. U.MD.D.click(this, obj);
  4184. }, [_szscOrganizerDeskIconInfo[i]]),
  4185. "onclick": U.UF.C.closure(function (obj) {
  4186. //防止拖动图标即打开了桌面应用
  4187. U.MD.D.click(this, obj);
  4188. }, [_szscOrganizerDeskIconInfo[i]])
  4189. }, _frag); //
  4190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4193. }
  4194. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4195. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4196. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4197. continue
  4198. }
  4199. _content = $$("div", {
  4200. className: "U_MD_D_KO",
  4201. "onmousedown": U.UF.C.closure(function (obj) {
  4202. //防止拖动图标即打开了桌面应用
  4203. U.MD.D.click(this, obj);
  4204. }, [_nsfxTeacherDeskIconInfo[i]]),
  4205. "onclick": U.UF.C.closure(function (obj) {
  4206. //防止拖动图标即打开了桌面应用
  4207. U.MD.D.click(this, obj);
  4208. }, [_nsfxTeacherDeskIconInfo[i]])
  4209. }, _frag); //
  4210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4213. }
  4214. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4215. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4216. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4217. continue
  4218. }
  4219. _content = $$("div", {
  4220. className: "U_MD_D_KO",
  4221. "onmousedown": U.UF.C.closure(function (obj) {
  4222. //防止拖动图标即打开了桌面应用
  4223. U.MD.D.click(this, obj);
  4224. }, [_stiaTeacherDeskIconInfo[i]]),
  4225. "onclick": U.UF.C.closure(function (obj) {
  4226. //防止拖动图标即打开了桌面应用
  4227. U.MD.D.click(this, obj);
  4228. }, [_stiaTeacherDeskIconInfo[i]])
  4229. }, _frag); //
  4230. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4231. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4232. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4233. }
  4234. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4235. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4236. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4237. continue
  4238. }
  4239. _content = $$("div", {
  4240. className: "U_MD_D_KO",
  4241. "onmousedown": U.UF.C.closure(function (obj) {
  4242. //防止拖动图标即打开了桌面应用
  4243. U.MD.D.click(this, obj);
  4244. }, [_szdjgTeacherDeskIconInfo[i]]),
  4245. "onclick": U.UF.C.closure(function (obj) {
  4246. //防止拖动图标即打开了桌面应用
  4247. U.MD.D.click(this, obj);
  4248. }, [_szdjgTeacherDeskIconInfo[i]])
  4249. }, _frag); //
  4250. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4251. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4252. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4253. }
  4254. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4255. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4256. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4257. continue
  4258. }
  4259. _content = $$("div", {
  4260. className: "U_MD_D_KO",
  4261. "onmousedown": U.UF.C.closure(function (obj) {
  4262. //防止拖动图标即打开了桌面应用
  4263. U.MD.D.click(this, obj);
  4264. }, [_x010607TeacherDeskIconInfo[i]]),
  4265. "onclick": U.UF.C.closure(function (obj) {
  4266. //防止拖动图标即打开了桌面应用
  4267. U.MD.D.click(this, obj);
  4268. }, [_x010607TeacherDeskIconInfo[i]])
  4269. }, _frag); //
  4270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4273. }
  4274. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4275. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4276. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4277. continue
  4278. }
  4279. _content = $$("div", {
  4280. className: "U_MD_D_KO",
  4281. "onmousedown": U.UF.C.closure(function (obj) {
  4282. //防止拖动图标即打开了桌面应用
  4283. U.MD.D.click(this, obj);
  4284. }, [_xhlyTeacherDeskIconInfo[i]]),
  4285. "onclick": U.UF.C.closure(function (obj) {
  4286. //防止拖动图标即打开了桌面应用
  4287. U.MD.D.click(this, obj);
  4288. }, [_xhlyTeacherDeskIconInfo[i]])
  4289. }, _frag); //
  4290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4293. }
  4294. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4295. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4296. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4297. continue
  4298. }
  4299. _content = $$("div", {
  4300. className: "U_MD_D_KO",
  4301. "onmousedown": U.UF.C.closure(function (obj) {
  4302. //防止拖动图标即打开了桌面应用
  4303. U.MD.D.click(this, obj);
  4304. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4305. "onclick": U.UF.C.closure(function (obj) {
  4306. //防止拖动图标即打开了桌面应用
  4307. U.MD.D.click(this, obj);
  4308. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4309. }, _frag); //
  4310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4313. }
  4314. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4315. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4316. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4317. continue
  4318. }
  4319. _content = $$("div", {
  4320. className: "U_MD_D_KO",
  4321. "onmousedown": U.UF.C.closure(function (obj) {
  4322. //防止拖动图标即打开了桌面应用
  4323. U.MD.D.click(this, obj);
  4324. }, [_x010503TeacherDeskIconInfo[i]]),
  4325. "onclick": U.UF.C.closure(function (obj) {
  4326. //防止拖动图标即打开了桌面应用
  4327. U.MD.D.click(this, obj);
  4328. }, [_x010503TeacherDeskIconInfo[i]])
  4329. }, _frag); //
  4330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4333. }
  4334. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4335. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4336. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4337. continue
  4338. }
  4339. _content = $$("div", {
  4340. className: "U_MD_D_KO",
  4341. "onmousedown": U.UF.C.closure(function (obj) {
  4342. //防止拖动图标即打开了桌面应用
  4343. U.MD.D.click(this, obj);
  4344. }, [_x010504TeacherDeskIconInfo[i]]),
  4345. "onclick": U.UF.C.closure(function (obj) {
  4346. //防止拖动图标即打开了桌面应用
  4347. U.MD.D.click(this, obj);
  4348. }, [_x010504TeacherDeskIconInfo[i]])
  4349. }, _frag); //
  4350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4353. }
  4354. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4355. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4356. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4357. continue
  4358. }
  4359. _content = $$("div", {
  4360. className: "U_MD_D_KO",
  4361. "onmousedown": U.UF.C.closure(function (obj) {
  4362. //防止拖动图标即打开了桌面应用
  4363. U.MD.D.click(this, obj);
  4364. }, [_x010505TeacherDeskIconInfo[i]]),
  4365. "onclick": U.UF.C.closure(function (obj) {
  4366. //防止拖动图标即打开了桌面应用
  4367. U.MD.D.click(this, obj);
  4368. }, [_x010505TeacherDeskIconInfo[i]])
  4369. }, _frag); //
  4370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4373. }
  4374. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4375. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4376. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4377. continue
  4378. }
  4379. _content = $$("div", {
  4380. className: "U_MD_D_KO",
  4381. "onmousedown": U.UF.C.closure(function (obj) {
  4382. //防止拖动图标即打开了桌面应用
  4383. U.MD.D.click(this, obj);
  4384. }, [_x010404TeacherDeskIconInfo[i]]),
  4385. "onclick": U.UF.C.closure(function (obj) {
  4386. //防止拖动图标即打开了桌面应用
  4387. U.MD.D.click(this, obj);
  4388. }, [_x010404TeacherDeskIconInfo[i]])
  4389. }, _frag); //
  4390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4393. }
  4394. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4395. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4396. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4397. continue
  4398. }
  4399. _content = $$("div", {
  4400. className: "U_MD_D_KO",
  4401. "onmousedown": U.UF.C.closure(function (obj) {
  4402. //防止拖动图标即打开了桌面应用
  4403. U.MD.D.click(this, obj);
  4404. }, [_x010204TeacherDeskIconInfo[i]]),
  4405. "onclick": U.UF.C.closure(function (obj) {
  4406. //防止拖动图标即打开了桌面应用
  4407. U.MD.D.click(this, obj);
  4408. }, [_x010204TeacherDeskIconInfo[i]])
  4409. }, _frag); //
  4410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4413. }
  4414. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4415. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4416. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4417. continue
  4418. }
  4419. _content = $$("div", {
  4420. className: "U_MD_D_KO",
  4421. "onmousedown": U.UF.C.closure(function (obj) {
  4422. //防止拖动图标即打开了桌面应用
  4423. U.MD.D.click(this, obj);
  4424. }, [_x320101TeacherDeskIconInfo[i]]),
  4425. "onclick": U.UF.C.closure(function (obj) {
  4426. //防止拖动图标即打开了桌面应用
  4427. U.MD.D.click(this, obj);
  4428. }, [_x320101TeacherDeskIconInfo[i]])
  4429. }, _frag); //
  4430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4433. }
  4434. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4435. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4436. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4437. continue
  4438. }
  4439. _content = $$("div", {
  4440. className: "U_MD_D_KO",
  4441. "onmousedown": U.UF.C.closure(function (obj) {
  4442. //防止拖动图标即打开了桌面应用
  4443. U.MD.D.click(this, obj);
  4444. }, [_trailTeacherDeskIconInfo[i]]),
  4445. "onclick": U.UF.C.closure(function (obj) {
  4446. //防止拖动图标即打开了桌面应用
  4447. U.MD.D.click(this, obj);
  4448. }, [_trailTeacherDeskIconInfo[i]])
  4449. }, _frag); //
  4450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4453. }
  4454. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4455. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4456. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4457. continue
  4458. }
  4459. _content = $$("div", {
  4460. className: "U_MD_D_KO",
  4461. "onmousedown": U.UF.C.closure(function (obj) {
  4462. //防止拖动图标即打开了桌面应用
  4463. U.MD.D.click(this, obj);
  4464. }, [_trialTeacherDeskIconInfo[i]]),
  4465. "onclick": U.UF.C.closure(function (obj) {
  4466. //防止拖动图标即打开了桌面应用
  4467. U.MD.D.click(this, obj);
  4468. }, [_trialTeacherDeskIconInfo[i]])
  4469. }, _frag); //
  4470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4473. }
  4474. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4475. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4476. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4477. continue
  4478. }
  4479. _content = $$("div", {
  4480. className: "U_MD_D_KO",
  4481. "onmousedown": U.UF.C.closure(function (obj) {
  4482. //防止拖动图标即打开了桌面应用
  4483. U.MD.D.click(this, obj);
  4484. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4485. "onclick": U.UF.C.closure(function (obj) {
  4486. //防止拖动图标即打开了桌面应用
  4487. U.MD.D.click(this, obj);
  4488. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4489. }, _frag); //
  4490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4493. }
  4494. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4495. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4496. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4497. continue
  4498. }
  4499. _content = $$("div", {
  4500. className: "U_MD_D_KO",
  4501. "onmousedown": U.UF.C.closure(function (obj) {
  4502. //防止拖动图标即打开了桌面应用
  4503. U.MD.D.click(this, obj);
  4504. }, [_szsyTeacherDeskIconInfo[i]]),
  4505. "onclick": U.UF.C.closure(function (obj) {
  4506. //防止拖动图标即打开了桌面应用
  4507. U.MD.D.click(this, obj);
  4508. }, [_szsyTeacherDeskIconInfo[i]])
  4509. }, _frag); //
  4510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4513. }
  4514. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4515. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4516. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4517. continue
  4518. }
  4519. _content = $$("div", {
  4520. className: "U_MD_D_KO",
  4521. "onmousedown": U.UF.C.closure(function (obj) {
  4522. //防止拖动图标即打开了桌面应用
  4523. U.MD.D.click(this, obj);
  4524. }, [_x010608TeacherDeskIconInfo[i]]),
  4525. "onclick": U.UF.C.closure(function (obj) {
  4526. //防止拖动图标即打开了桌面应用
  4527. U.MD.D.click(this, obj);
  4528. }, [_x010608TeacherDeskIconInfo[i]])
  4529. }, _frag); //
  4530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4533. }
  4534. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4535. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4536. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4537. continue
  4538. }
  4539. _content = $$("div", {
  4540. className: "U_MD_D_KO",
  4541. "onmousedown": U.UF.C.closure(function (obj) {
  4542. //防止拖动图标即打开了桌面应用
  4543. U.MD.D.click(this, obj);
  4544. }, [_x010611TeacherDeskIconInfo[i]]),
  4545. "onclick": U.UF.C.closure(function (obj) {
  4546. //防止拖动图标即打开了桌面应用
  4547. U.MD.D.click(this, obj);
  4548. }, [_x010611TeacherDeskIconInfo[i]])
  4549. }, _frag); //
  4550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4553. }
  4554. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4555. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4556. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4557. continue
  4558. }
  4559. _content = $$("div", {
  4560. className: "U_MD_D_KO",
  4561. "onmousedown": U.UF.C.closure(function (obj) {
  4562. //防止拖动图标即打开了桌面应用
  4563. U.MD.D.click(this, obj);
  4564. }, [_x010612TeacherDeskIconInfo[i]]),
  4565. "onclick": U.UF.C.closure(function (obj) {
  4566. //防止拖动图标即打开了桌面应用
  4567. U.MD.D.click(this, obj);
  4568. }, [_x010612TeacherDeskIconInfo[i]])
  4569. }, _frag); //
  4570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4573. }
  4574. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4575. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4576. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4577. continue
  4578. }
  4579. _content = $$("div", {
  4580. className: "U_MD_D_KO",
  4581. "onmousedown": U.UF.C.closure(function (obj) {
  4582. //防止拖动图标即打开了桌面应用
  4583. U.MD.D.click(this, obj);
  4584. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4585. "onclick": U.UF.C.closure(function (obj) {
  4586. //防止拖动图标即打开了桌面应用
  4587. U.MD.D.click(this, obj);
  4588. }, [_tianyuanTeacherDeskIconInfo[i]])
  4589. }, _frag); //
  4590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4593. }
  4594. } else {
  4595. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4596. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4597. continue
  4598. }
  4599. _content = $$("div", {
  4600. className: "U_MD_D_KO",
  4601. "onmousedown": U.UF.C.closure(function (obj) {
  4602. //防止拖动图标即打开了桌面应用
  4603. U.MD.D.click(this, obj);
  4604. }, [_teacherDesktopIconInfo[i]]),
  4605. "onclick": U.UF.C.closure(function (obj) {
  4606. //防止拖动图标即打开了桌面应用
  4607. U.MD.D.click(this, obj);
  4608. }, [_teacherDesktopIconInfo[i]])
  4609. }, _frag); //
  4610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4613. }
  4614. }
  4615. } else {
  4616. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4617. _content = $$("div", {
  4618. className: "U_MD_D_KO",
  4619. style: { 'width': '124px', 'height': '145px' },
  4620. "onmousedown": U.UF.C.closure(function (obj) {
  4621. //防止拖动图标即打开了桌面应用
  4622. U.MD.D.click(this, obj);
  4623. }, [_easyDesktopIconInfo[i]]),
  4624. "onclick": U.UF.C.closure(function (obj) {
  4625. //防止拖动图标即打开了桌面应用
  4626. U.MD.D.click(this, obj);
  4627. }, [_easyDesktopIconInfo[i]])
  4628. }, _frag); //
  4629. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4632. }
  4633. }
  4634. if (type == 1) {
  4635. //加载好后给图标定位
  4636. U.MD.D.iconPostion($(_frag).Child());
  4637. } else {
  4638. //加载好后给图标定位
  4639. U.MD.D.iconPostion2($(_frag).Child());
  4640. }
  4641. //把图标加载到页面
  4642. el.appendChild(_frag);
  4643. }
  4644. /**
  4645. * 显示任务栏
  4646. *
  4647. * @param {element} 桌面元素
  4648. */
  4649. U.MD.D.I.displayTaskbar = function (el) {
  4650. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4651. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4652. //任务栏位置变化
  4653. U.selectEl(el).css({ "bottom": "0px" });
  4654. //桌面位置变话
  4655. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4656. }
  4657. }
  4658. //#region 桌面图标拖动逻辑
  4659. /**
  4660. * 桌面排列图标
  4661. *
  4662. * @param {element} 桌面元素
  4663. * @param {object} 上下相距的距离
  4664. * @param {object} 左右相距的距离
  4665. * @return {object} 命名空间
  4666. */
  4667. U.MD.D.iconPostion = function (childs, top, left) {
  4668. var i; //用于循环处理
  4669. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4670. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4671. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4672. for (i = 0; i < childs.length; i++) {
  4673. //如果竖排top超过了范围处理
  4674. if (top + 95 > US.height - 10) {
  4675. //left超过了页面范围处理,则向上重叠打印处理
  4676. if ((left + 180) > US.width) {
  4677. top -= 110;
  4678. left -= 90;
  4679. }
  4680. //没有超过范围,那么left+90添加到下一个竖排打印
  4681. else {
  4682. left += 90;
  4683. top = 15;
  4684. };
  4685. }
  4686. //给图标的位置赋值
  4687. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4688. if (i < childs.length - 1) {
  4689. //页面图标每次向下加95
  4690. top += 95;
  4691. }
  4692. }
  4693. //返回最后调用的图标的位置
  4694. return [top, left];
  4695. }
  4696. /**
  4697. * 桌面排列图标
  4698. *
  4699. * @param {element} 桌面元素
  4700. * @param {object} 上下相距的距离
  4701. * @param {object} 左右相距的距离
  4702. * @return {object} 命名空间
  4703. */
  4704. U.MD.D.iconPostion2 = function (childs, top, left) {
  4705. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4706. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4707. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4708. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4709. for (i = 0; i < childs.length; i++) {
  4710. //如果竖排top超过了范围处理
  4711. if (left + 150 > US.width - 10) {
  4712. //left超过了页面范围处理,则向上重叠打印处理
  4713. if ((top + 180) > US.Height) {
  4714. top -= 150;
  4715. left -= 150;
  4716. }
  4717. //没有超过范围,那么left+90添加到下一个竖排打印
  4718. else {
  4719. top += 150;
  4720. left = ol;
  4721. };
  4722. }
  4723. //给图标的位置赋值
  4724. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4725. if (i < childs.length - 1) {
  4726. //页面图标每次向下加95
  4727. left += 150;
  4728. }
  4729. }
  4730. //返回最后调用的图标的位置
  4731. return [top, left];
  4732. }
  4733. /**
  4734. * 桌面点击事件逻辑
  4735. *
  4736. * @param {element} 桌面元素
  4737. * @param {object} 上下相距的距离
  4738. * @param {object} 左右相距的距离
  4739. * @return {object} 命名空间
  4740. */
  4741. U.MD.D.click = function (el, obj) {
  4742. var _buttonnumber = event.button; //点击的按钮的事件值
  4743. var _userinfo = US.userInfo;
  4744. U.UF.EV.stopBubble(); //阻止向上冒泡
  4745. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4746. if (_buttonnumber < 2) {
  4747. //如果是click事件的处理
  4748. if (event.type == "click") {
  4749. //如果元素在mousemove事件中没有移动则出发click事件
  4750. if (!U.MD.D.I.IsDrag) {
  4751. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4752. U.alert("请先登录您的账号!");
  4753. setTimeout(() => {
  4754. U.MD.U.L.login();
  4755. }, 2000);
  4756. } else {
  4757. //打开应用处理
  4758. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4759. }
  4760. }
  4761. }
  4762. //如果是mouse事件的处理
  4763. else {
  4764. if (US.Config.type == '1') {
  4765. //拖动处理,添加拖动和拖动结束事件
  4766. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4767. }
  4768. }
  4769. U.MD.D.I.IsDrag = false;
  4770. }
  4771. }
  4772. /**
  4773. * 拖动的处理
  4774. *
  4775. */
  4776. U.MD.D.iconMove = function () {
  4777. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4778. U.MD.D.I.IsDrag = true;
  4779. }
  4780. /**
  4781. * 拖动结束后,这里是定位处理,以网状的形式定位
  4782. *
  4783. * @param {element} 拖动的元素
  4784. * @return {object} 命名空间
  4785. */
  4786. U.MD.D.iconUp = function (el) {
  4787. var _top = 15,
  4788. _left = 20,
  4789. _margin,
  4790. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4791. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4792. if (_positioninfo["OT"] > 15) {
  4793. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4794. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4795. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4796. }
  4797. if (_positioninfo["OL"] > 20) {
  4798. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4799. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4800. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4801. }
  4802. //while循环判断么一个重叠的元素
  4803. do {
  4804. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4805. _top = _positioninfo[0] + 95; //得到定位后的top
  4806. _left = _positioninfo[1]; //得到定位后的left
  4807. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4808. }
  4809. /**
  4810. * 判断拖动后图标是否重叠
  4811. *
  4812. * @param {element} 拖动的元素
  4813. * @param {element} 桌面所有的元素
  4814. * @param {array} 拖动元素的位置
  4815. ----------[0] 上 top
  4816. ----------[1] 左 left
  4817. * @return {object} 命名空间
  4818. */
  4819. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4820. //循环所有的图标
  4821. for (var i = 0; i < childs.length; i++) {
  4822. //判断有没有和该图标诶子重叠的元素
  4823. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4824. return childs[i]; //如果有返回
  4825. }
  4826. }
  4827. }
  4828. //#endregion
  4829. //#endregion
  4830. //#region 桌面应用
  4831. /**
  4832. * 打开应用
  4833. *
  4834. * @param {string} 类型
  4835. -----------------Disk 网盘系统
  4836. -----------------PDisk 学习系统网盘
  4837. -----------------Poto 图片
  4838. -----------------Video 视频
  4839. -----------------Music 音乐
  4840. -----------------Word word
  4841. -----------------Excel excel
  4842. -----------------Txt 记事本
  4843. -----------------PB 学习系统
  4844. -----------------Blog 朋友圈系统
  4845. -----------------FTP ftp系统
  4846. -----------------Group 好友群
  4847. -----------------SY 首页系统
  4848. -----------------Set 个人设置
  4849. -----------------XSet 系统设置
  4850. -----------------App 我们所有的app
  4851. -----------------BC c.1473.cn 平台
  4852. -----------------CWeb d.1473.cn 变成平台
  4853. -----------------其他的外联系统 我们统一用iframe打开
  4854. * @param {array} 类型
  4855. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4856. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4857. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4858. 如果第一个参数为其他,则无第二个参数
  4859. * @returns {array}
  4860. */
  4861. window.addEventListener('message', function (e) { // 监听 message 事件
  4862. // alert(e.data.type);
  4863. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4864. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4865. //3是展示全部阶段 2学生 1老师 4专家
  4866. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4867. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4868. //3是展示全部阶段 2学生 1老师 4专家
  4869. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4870. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4871. //3是展示全部阶段 2学生 1老师 4专家
  4872. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4873. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4874. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4875. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4876. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4877. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4878. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4879. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4880. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4881. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4882. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4883. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4884. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4885. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4886. //3是展示全部阶段 2学生 1老师 4专家
  4887. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4888. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4889. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4890. U.MD.D.I.selectUser();
  4891. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4892. var _formel = document.getElementById("study");
  4893. U.UF.F.windowZooming(_formel);
  4894. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4895. var _formel = document.getElementById("studyDetail");
  4896. U.UF.F.windowZooming(_formel);
  4897. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4898. var _formel = document.getElementById("studyDetail");
  4899. U.UF.F.windowZooming(_formel);
  4900. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4901. var _formel = document.getElementById("studentStudy");
  4902. U.UF.F.windowZooming(_formel);
  4903. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4904. // var _formel = document.getElementById("study");
  4905. //如果最大化了,那么就把他缩小
  4906. // if (_formel.ismaximize) {
  4907. // return;
  4908. // }
  4909. // U.UF.F.windowZooming(_formel);
  4910. // U.UF.F.topWindow(_formel);
  4911. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4912. // var _formel = document.getElementById("studyDetail");
  4913. //如果最大化了,那么就把他缩小
  4914. // if (_formel.ismaximize) {
  4915. // return;
  4916. // }
  4917. // U.UF.F.windowZooming(_formel);
  4918. // U.UF.F.topWindow(_formel);
  4919. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4920. // var _formel = document.getElementById("studentStudy");
  4921. // if (_formel.ismaximize) {
  4922. // return;
  4923. // }
  4924. // U.UF.F.windowZooming(_formel);
  4925. // U.UF.F.topWindow(_formel);
  4926. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4927. var _formel = document.getElementById("study");
  4928. // if (_formel.ismaximize) {
  4929. // return;
  4930. // }
  4931. // U.UF.F.windowZooming(_formel);
  4932. U.UF.F.topWindow(_formel);
  4933. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4934. var _formel = document.getElementById("studentIndex");
  4935. U.UF.F.windowZooming(_formel);
  4936. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4937. var _formel = document.getElementById("studyDetailS");
  4938. U.UF.F.windowZooming(_formel);
  4939. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4940. var _formel = document.getElementById("studioIndex");
  4941. U.UF.F.windowZooming(_formel);
  4942. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4943. var _formel = document.getElementById("studyDetailStudio");
  4944. U.UF.F.windowZooming(_formel);
  4945. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4946. var _formel = document.getElementById("studyDetailStudio");
  4947. U.UF.F.windowZooming(_formel);
  4948. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4949. var _formel = document.getElementById("studyDetailNT");
  4950. U.UF.F.windowZooming(_formel);
  4951. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4952. var _formel = document.getElementById("studyDetailS");
  4953. U.UF.F.windowZooming(_formel);
  4954. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4955. var _formel = document.getElementById("studyDetailS");
  4956. U.UF.F.topWindow(_formel);
  4957. } else if (e.data.tools && e.data.tools == "1") {
  4958. // U.MD.D.I.openApplication("whiteboard")
  4959. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4960. } else if (e.data.tools && e.data.tools == "2") {
  4961. U.MD.D.I.openApplication("note")
  4962. } else if (e.data.tools && e.data.tools == "3") {
  4963. // U.MD.D.I.openApplication("mind")
  4964. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4965. } else if (e.data.tools && e.data.tools == "4") {
  4966. U.MD.D.I.openApplication("investigation")
  4967. } else if (e.data.tools && e.data.tools == "6") {
  4968. // U.MD.D.I.openApplication("doc")
  4969. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4970. } else if (e.data.tools && e.data.tools == "7") {
  4971. // U.MD.D.I.openApplication("mindNetwork")
  4972. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4973. } else if (e.data.tools && e.data.tools == "8") {
  4974. U.MD.D.I.openApplication("library")
  4975. } else if (e.data.tools && e.data.tools == "17") {
  4976. U.MD.D.I.openApplication("stuLibrary")
  4977. } else if (e.data.tools && e.data.tools == "18") {
  4978. U.MD.D.I.openApplication("train")
  4979. } else if (e.data.tools && e.data.tools == "21") {
  4980. U.MD.D.I.openApplication("program")
  4981. } else if (e.data.tools && e.data.tools == "22") {
  4982. U.MD.D.I.openApplication("AIprogram2")
  4983. } else if (e.data.tools && e.data.tools == "23") {
  4984. U.MD.D.I.openApplication("Pythonprogram")
  4985. } else if (e.data.tools && e.data.tools == "24") {
  4986. U.MD.D.I.openApplication("AIprogram")
  4987. } else if (e.data.tools && e.data.tools == "25") {
  4988. U.MD.D.I.openApplication("sys")
  4989. } else if (e.data.tools && e.data.tools == "26") {
  4990. // U.MD.D.I.openApplication("courseDesign")
  4991. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4992. } else if (e.data.tools && e.data.tools == "31") {
  4993. U.MD.D.I.openApplication("netWorkPanel")
  4994. } else if (e.data.tools && e.data.tools == "32") {
  4995. U.MD.D.I.openApplication("codeEdit")
  4996. } else if (e.data.tools && e.data.tools == "57") {
  4997. U.MD.D.I.openApplication("CocoPi")
  4998. } else if (e.data.tools && e.data.tools == "63") {
  4999. U.MD.D.I.openApplication("Wood")
  5000. } else if (e.data.tools && e.data.tools == "58") {
  5001. U.MD.D.I.openApplication("car")
  5002. } else if (e.data.tools && e.data.tools == "59") {
  5003. U.MD.D.I.openApplication("lineSearch")
  5004. } else if (e.data.tools && e.data.tools == "60") {
  5005. U.MD.D.I.openApplication("deepLearning")
  5006. } else if (e.data.tools && e.data.tools == "61") {
  5007. U.MD.D.I.openApplication("allHistory")
  5008. } else if (e.data.tools && e.data.tools == "28") {
  5009. U.MD.D.I.openApplication("translation")
  5010. } else if (e.data.tools && e.data.tools == "37") {
  5011. U.MD.D.I.openApplication("mohe")
  5012. } else if (e.data.tools && e.data.tools == "38") {
  5013. U.MD.D.I.openApplication("24game")
  5014. } else if (e.data.tools && e.data.tools == "39") {
  5015. U.MD.D.I.openApplication("GeoGebra")
  5016. } else if (e.data.tools && e.data.tools == "43") {
  5017. U.MD.D.I.openApplication("studentEvaluate")
  5018. } else if (e.data.tools && e.data.tools == "44") {
  5019. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5020. } else if (e.data.tools && e.data.tools == "46") {
  5021. U.MD.D.I.openApplication("project")
  5022. } else if (e.data.tools && e.data.tools == "71") {
  5023. U.MD.D.I.openApplication("aigptCourse")
  5024. } else if (e.data.tools && e.data.tools == "72") {
  5025. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5026. } else if (e.data.tools && e.data.tools == "1s") {
  5027. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5028. } else if (e.data.tools && e.data.tools == "3s") {
  5029. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5030. } else if (e.data.tools && e.data.tools == "6s") {
  5031. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5032. } else if (e.data.tools && e.data.tools == "1studio") {
  5033. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5034. } else if (e.data.tools && e.data.tools == "3studio") {
  5035. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5036. } else if (e.data.tools && e.data.tools == "6studio") {
  5037. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5038. } else if (e.data.tools && e.data.tools == "3y") {
  5039. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5040. } else if (e.data.tools && e.data.tools == "1y") {
  5041. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5042. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5043. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5044. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5045. U.MD.D.I.openApplication("AIAnalyse")
  5046. } else if (e.data.tools && e.data.tools == "1teacher") {
  5047. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5048. } else if (e.data.tools && e.data.tools == "3teacher") {
  5049. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5050. } else if (e.data.tools && e.data.tools == "7teacher") {
  5051. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5052. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5053. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5054. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5055. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5056. } else if (e.data.tools && e.data.tools == "1E") {
  5057. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5058. } else if (e.data.tools && e.data.tools == "3E") {
  5059. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5060. } else if (e.data.tools && e.data.tools == "57y") {
  5061. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5062. } else if (e.data.tools && e.data.tools == "57u") {
  5063. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5064. } else if (e.data.tools && e.data.tools == "57teacher") {
  5065. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5066. } else if (e.data.tools && e.data.tools == "64") {
  5067. U.MD.D.I.openApplication("AIChat")
  5068. } else if (e.data.tools && e.data.tools == "66") {
  5069. U.MD.D.I.openApplication("formulaEdi")
  5070. } else if (e.data.tools && e.data.tools == "67") {
  5071. U.MD.D.I.openApplication("molStr")
  5072. } else if (e.data.tools && e.data.tools == "68") {
  5073. U.MD.D.I.openApplication("timeAxis")
  5074. } else if (e.data.tools && e.data.tools == "openCourse") {
  5075. let _data = {
  5076. typea: e.data.typea || '',
  5077. typeb: e.data.typeb || '',
  5078. typed: e.data.typed || '',
  5079. }
  5080. U.MD.D.I.openInApplication("index", _data)
  5081. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5082. let _data = {
  5083. classid: e.data.classid || '',
  5084. }
  5085. U.MD.D.I.openInApplication("dataClass", _data)
  5086. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5087. let _data = {
  5088. cid: e.data.cid || '',
  5089. gid: e.data.gid || '',
  5090. }
  5091. U.MD.D.I.openInApplication("opencCscl", _data)
  5092. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5093. U.MD.D.I.openApplication("dataBoardTest")
  5094. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5095. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5096. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5097. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5098. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5099. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5100. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5101. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5102. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5103. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5104. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5105. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5106. }else if (e.data.tools && e.data.tools == "loginSz") {
  5107. U.MD.D.I.openInApplication("loginSz")
  5108. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5109. if($('#classroom_observation_board')[0]){
  5110. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5111. }
  5112. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5113. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5114. if($('#classroom_observation_ob_comment')[0]){
  5115. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5116. }
  5117. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5118. }else if (e.data.tools && e.data.tools == "logout"){
  5119. U.MD.U.LO.logoutSystem()
  5120. }else if (e.data.tools && e.data.tools == "getLogin"){
  5121. let _iframe = $('#UI_Login')[0];
  5122. if (_iframe) {
  5123. var userInfo = US.userInfo;
  5124. var type = 2
  5125. if(userInfo && userInfo.userid){
  5126. type = 1
  5127. }
  5128. _contentWindow = _iframe.contentWindow;
  5129. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5130. }
  5131. }
  5132. });
  5133. U.MD.D.I.selectUser = function () {
  5134. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5135. if (res.value[0].length > 0) {
  5136. US.userInfo = res.value[0][0];
  5137. $(".userName")[0].innerHTML = US.userInfo.username;
  5138. }
  5139. }, [], { "type": "GET", "withCredentials": true });
  5140. }
  5141. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5142. var _userinfo = US.userInfo, //登录用户信息
  5143. _userid = US.userInfo.userid, //登录用户id
  5144. _oid = _userinfo.organizeid,
  5145. _type = US.userInfo.type,
  5146. _org = US.userInfo.org,
  5147. _role = US.userInfo.role,
  5148. _classId = US.userInfo.classid;
  5149. if (_type == 4) {
  5150. tType = 4
  5151. }
  5152. switch (str) {
  5153. case "studyDetailNT": //无终端模式
  5154. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5155. setTimeout(() => {
  5156. U.MD.U.L.login();
  5157. }, 2000);
  5158. } else {
  5159. _formdiv = new U.UF.UI.form(
  5160. "课程详情",
  5161. $$("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 }), {
  5162. "id": "studyDetailNT",
  5163. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5164. "onresize": function () { }
  5165. }, {
  5166. closecallback: function () { }
  5167. }, { "style": { "height": "36px" } }).form; //创建窗体
  5168. _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); } }
  5169. break;
  5170. }
  5171. case "studyDetail":
  5172. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5173. setTimeout(() => {
  5174. U.MD.U.L.login();
  5175. }, 2000);
  5176. } else {
  5177. _formdiv = new U.UF.UI.form(
  5178. "课程详情",
  5179. $$("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 }), {
  5180. "id": "studyDetail",
  5181. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5182. "onresize": function () { }
  5183. }, {
  5184. closecallback: function () { }
  5185. }, { "style": { "height": "36px" } }).form; //创建窗体
  5186. _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); } }
  5187. break;
  5188. }
  5189. case "studyDetailTrain":
  5190. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5191. setTimeout(() => {
  5192. U.MD.U.L.login();
  5193. }, 2000);
  5194. } else {
  5195. _formdiv = new U.UF.UI.form(
  5196. "培训详情",
  5197. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5198. "id": "studyDetailTrain",
  5199. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5200. "onresize": function () { }
  5201. }, {
  5202. closecallback: function () { }
  5203. }, { "style": { "height": "36px" } }).form; //创建窗体
  5204. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5205. break;
  5206. }
  5207. case "studyDetailS":
  5208. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5209. setTimeout(() => {
  5210. U.MD.U.L.login();
  5211. }, 2000);
  5212. } else {
  5213. _formdiv = new U.UF.UI.form(
  5214. "项目详情",
  5215. $$("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 }), {
  5216. "id": "studyDetailS",
  5217. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5218. "onresize": function () { }
  5219. }, {
  5220. closecallback: function () { }
  5221. }, { "style": { "height": "36px" } }).form; //创建窗体
  5222. _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); } }
  5223. break;
  5224. }
  5225. case "studyDetailStudio":
  5226. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5227. setTimeout(() => {
  5228. U.MD.U.L.login();
  5229. }, 2000);
  5230. } else {
  5231. _formdiv = new U.UF.UI.form(
  5232. "工作详情",
  5233. $$("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 }), {
  5234. "id": "studyDetailStudio",
  5235. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5236. "onresize": function () { }
  5237. }, {
  5238. closecallback: function () { }
  5239. }, { "style": { "height": "36px" } }).form; //创建窗体
  5240. _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); } }
  5241. break;
  5242. }
  5243. case "studyDetailS5":
  5244. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5245. setTimeout(() => {
  5246. U.MD.U.L.login();
  5247. }, 2000);
  5248. } else {
  5249. _formdiv = new U.UF.UI.form(
  5250. "项目详情",
  5251. $$("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 }), {
  5252. "id": "studyDetailS",
  5253. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5254. "onresize": function () { }
  5255. }, {
  5256. closecallback: function () { }
  5257. }, { "style": { "height": "36px" } }).form; //创建窗体
  5258. _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); } }
  5259. break;
  5260. }
  5261. case "studyDetailGM":
  5262. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5263. setTimeout(() => {
  5264. U.MD.U.L.login();
  5265. }, 2000);
  5266. } else {
  5267. _formdiv = new U.UF.UI.form(
  5268. "课程详情",
  5269. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5270. "id": "studyDetail",
  5271. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5272. "onresize": function () { }
  5273. }, {
  5274. closecallback: function () { }
  5275. }, { "style": { "height": "36px" } }).form; //创建窗体
  5276. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5277. break;
  5278. }
  5279. case "hanUrl":
  5280. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5281. setTimeout(() => {
  5282. U.MD.U.L.login();
  5283. }, 2000);
  5284. } else {
  5285. _formdiv = new U.UF.UI.form(
  5286. "汉字宫",
  5287. $$("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" }), {
  5288. "id": "hanUrl",
  5289. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5290. "onresize": function () { }
  5291. }, {
  5292. closecallback: function () { }
  5293. }, { "style": { "height": "36px" } }).form; //创建窗体
  5294. _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); } }
  5295. break;
  5296. }
  5297. case "index":
  5298. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5299. setTimeout(() => {
  5300. U.MD.U.L.login();
  5301. }, 2000);
  5302. } else {
  5303. _formdiv = new U.UF.UI.form(
  5304. "课程中心",
  5305. $$("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 }), {
  5306. "id": "study",
  5307. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5308. "onresize": function () { }
  5309. }, {
  5310. closecallback: function () { }
  5311. }, { "style": { "height": "36px" } }).form; //创建窗体
  5312. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5313. break;
  5314. }
  5315. case "dataClass":
  5316. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5317. setTimeout(() => {
  5318. U.MD.U.L.login();
  5319. }, 2000);
  5320. } else {
  5321. _formdiv = new U.UF.UI.form(
  5322. "数据报告",
  5323. $$("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 }), {
  5324. "id": "dataClass",
  5325. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5326. "onresize": function () { }
  5327. }, {
  5328. closecallback: function () { }
  5329. }, { "style": { "height": "36px" } }).form; //创建窗体
  5330. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5331. break;
  5332. }
  5333. case "opencCscl":
  5334. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5335. setTimeout(() => {
  5336. U.MD.U.L.login();
  5337. }, 2000);
  5338. } else {
  5339. _formdiv = new U.UF.UI.form(
  5340. "协同建构",
  5341. $$("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 }), {
  5342. "id": "futureClass",
  5343. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5344. "onresize": function () { }
  5345. }, {
  5346. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5347. }, { "style": { "height": "36px" } }).form; //创建窗体
  5348. _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); } }
  5349. break;
  5350. }
  5351. case "openCourseUpdate":
  5352. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5353. setTimeout(() => {
  5354. U.MD.U.L.login();
  5355. }, 2000);
  5356. } else {
  5357. _formdiv = new U.UF.UI.form(
  5358. "课程管理",
  5359. $$("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 }), {
  5360. "id": "openCourseUpdate",
  5361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5362. "onresize": function () { }
  5363. }, {
  5364. closecallback: function () { }
  5365. }, { "style": { "height": "36px" } }).form; //创建窗体
  5366. break;
  5367. }
  5368. case "openNewCourseUpdate":
  5369. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5370. setTimeout(() => {
  5371. U.MD.U.L.login();
  5372. }, 2000);
  5373. } else {
  5374. _formdiv = new U.UF.UI.form(
  5375. "课程管理",
  5376. $$("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 }), {
  5377. "id": "openCourseUpdate",
  5378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5379. "onresize": function () { }
  5380. }, {
  5381. closecallback: function () { }
  5382. }, { "style": { "height": "36px" } }).form; //创建窗体
  5383. break;
  5384. }
  5385. case "openCourseEUpdate":
  5386. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5387. setTimeout(() => {
  5388. U.MD.U.L.login();
  5389. }, 2000);
  5390. } else {
  5391. _formdiv = new U.UF.UI.form(
  5392. "课程管理",
  5393. $$("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 }), {
  5394. "id": "openCourseUpdate",
  5395. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5396. "onresize": function () { }
  5397. }, {
  5398. closecallback: function () { }
  5399. }, { "style": { "height": "36px" } }).form; //创建窗体
  5400. break;
  5401. }
  5402. case "openCourseAiUpdate":
  5403. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5404. setTimeout(() => {
  5405. U.MD.U.L.login();
  5406. }, 2000);
  5407. } else {
  5408. _formdiv = new U.UF.UI.form(
  5409. "课程管理",
  5410. $$("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 }), {
  5411. "id": "openCourseUpdate",
  5412. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5413. "onresize": function () { }
  5414. }, {
  5415. closecallback: function () { }
  5416. }, { "style": { "height": "36px" } }).form; //创建窗体
  5417. break;
  5418. }
  5419. case "openCourseAiUpdate2":
  5420. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5421. setTimeout(() => {
  5422. U.MD.U.L.login();
  5423. }, 2000);
  5424. } else {
  5425. _formdiv = new U.UF.UI.form(
  5426. "课程管理",
  5427. $$("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 }), {
  5428. "id": "openCourseUpdate",
  5429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //创建窗体
  5434. break;
  5435. }
  5436. case "openCourseNewUpdate":
  5437. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5438. setTimeout(() => {
  5439. U.MD.U.L.login();
  5440. }, 2000);
  5441. } else {
  5442. _formdiv = new U.UF.UI.form(
  5443. "课程管理",
  5444. $$("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 }), {
  5445. "id": "openCourseUpdate",
  5446. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5447. "onresize": function () { }
  5448. }, {
  5449. closecallback: function () { }
  5450. }, { "style": { "height": "36px" } }).form; //创建窗体
  5451. break;
  5452. }
  5453. case "inviteLoginSz":
  5454. _formdiv = new U.UF.UI.form(
  5455. "随机码登录",
  5456. $$("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 }), {
  5457. "id": "loginSz",
  5458. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5459. "onresize": function () { }
  5460. }, {
  5461. closecallback: function () { }
  5462. }, { "style": { "height": "36px" } }).form; //创建窗体
  5463. break;
  5464. case "loginSz":
  5465. _formdiv = new U.UF.UI.form(
  5466. "教师登录",
  5467. $$("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" }), {
  5468. "id": "loginSz",
  5469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5470. "onresize": function () { }
  5471. }, {
  5472. closecallback: function () { }
  5473. }, { "style": { "height": "36px" } }).form; //创建窗体
  5474. break;
  5475. case "teacher":
  5476. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5477. setTimeout(() => {
  5478. U.MD.U.L.login();
  5479. }, 2000);
  5480. } else {
  5481. _formdiv = new U.UF.UI.form(
  5482. "教师管理",
  5483. $$("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 }), {
  5484. "id": "teacher",
  5485. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5486. "onresize": function () { }
  5487. }, {
  5488. closecallback: function () { }
  5489. }, { "style": { "height": "36px" } }).form; //创建窗体
  5490. break;
  5491. }
  5492. case "dataBoardSZArea":
  5493. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5494. setTimeout(() => {
  5495. U.MD.U.L.login();
  5496. }, 2000);
  5497. } else {
  5498. _formdiv = new U.UF.UI.form(
  5499. "综合数据看板",
  5500. $$("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 }), {
  5501. "id": "dataBoardSZArea",
  5502. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5503. "onresize": function () { }
  5504. }, {
  5505. closecallback: function () { }
  5506. }, { "style": { "height": "36px" } }).form; //创建窗体
  5507. break;
  5508. }
  5509. case "dataBoardSZCity":
  5510. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5511. setTimeout(() => {
  5512. U.MD.U.L.login();
  5513. }, 2000);
  5514. } else {
  5515. _formdiv = new U.UF.UI.form(
  5516. "综合数据看板",
  5517. $$("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 }), {
  5518. "id": "dataBoardSZCity",
  5519. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5520. "onresize": function () { }
  5521. }, {
  5522. closecallback: function () { }
  5523. }, { "style": { "height": "36px" } }).form; //创建窗体
  5524. break;
  5525. }
  5526. case "classroom_observation_board":
  5527. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5528. setTimeout(() => {
  5529. U.MD.U.L.login();
  5530. }, 2000);
  5531. } else {
  5532. _formdiv = new U.UF.UI.form(
  5533. "课堂观察",
  5534. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5535. "id": "classroom_observation_board",
  5536. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5537. "onresize": function () { }
  5538. }, {
  5539. closecallback: function () { }
  5540. }, { "style": { "height": "36px" } }).form; //创建窗体
  5541. break;
  5542. }
  5543. case "classroom_observation_ob_comment":
  5544. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5545. setTimeout(() => {
  5546. U.MD.U.L.login();
  5547. }, 2000);
  5548. } else {
  5549. _formdiv = new U.UF.UI.form(
  5550. "课堂审核",
  5551. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5552. "id": "classroom_observation_ob_comment",
  5553. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5554. "onresize": function () { }
  5555. }, {
  5556. closecallback: function () { }
  5557. }, { "style": { "height": "36px" } }).form; //创建窗体
  5558. break;
  5559. }
  5560. case "gptConfig":
  5561. _formdiv = new U.UF.UI.form(
  5562. data.name ? data.name : "应用中心",
  5563. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  5564. "id": "gptConfig" + data.id,
  5565. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //创建窗体
  5570. break;
  5571. }
  5572. }
  5573. U.MD.D.I.openApplication = function (str, obj, info) {
  5574. obj = obj || {};
  5575. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5576. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5577. _userinfo = US.userInfo, //登录用户信息
  5578. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5579. _oid = obj.organizeid || _userinfo.organizeid,
  5580. _type = US.userInfo.type,
  5581. _org = obj.org || US.userInfo.org,
  5582. _role = US.userInfo.role,
  5583. _classId = US.userInfo.classid,
  5584. _TscreenType = 1
  5585. _screenType = 2,
  5586. _SscreenType = 3;
  5587. let iframeBool = true
  5588. if(U.UF.UI.form.allForm[str]){
  5589. iframeBool = false
  5590. }
  5591. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5592. return;
  5593. }
  5594. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student"]
  5595. if(opArray.includes(str)){
  5596. let _str = str
  5597. if(str == 'appStore'){
  5598. _str = "cocoFlow"
  5599. }else if(str == "futureClass"){
  5600. _str = "cocoNote"
  5601. }
  5602. try {
  5603. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5604. } catch (error) {
  5605. console.log(error);
  5606. }
  5607. }
  5608. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5609. switch (str) {
  5610. case "studnetProject": //好友打开
  5611. _formdiv = new U.UF.UI.form(
  5612. "我的项目",
  5613. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5614. "id": "studnetProject",
  5615. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5616. "onresize": function () { }
  5617. }, {
  5618. closecallback: function () { }
  5619. }, { "style": { "height": "36px" } }).form; //创建窗体
  5620. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5621. break;
  5622. case "studentEvaluate": //好友打开
  5623. _formdiv = new U.UF.UI.form(
  5624. "我的评价",
  5625. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5626. "id": "studentEvaluate",
  5627. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5628. "onresize": function () { }
  5629. }, {
  5630. closecallback: function () { }
  5631. }, { "style": { "height": "36px" } }).form; //创建窗体
  5632. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5633. break;
  5634. case "my":
  5635. _formdiv = new U.UF.UI.form(
  5636. "我的资料",
  5637. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5638. "id": "my",
  5639. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5640. "onresize": function () { }
  5641. }, {
  5642. closecallback: function () { }
  5643. }, { "style": { "height": "36px" } }).form; //创建窗体
  5644. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5645. break;
  5646. case "program":
  5647. _formdiv = new U.UF.UI.form(
  5648. "编程平台",
  5649. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5650. "id": "program",
  5651. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5652. "onresize": function () { }
  5653. }, {
  5654. closecallback: function () { }
  5655. }, { "style": { "height": "36px" } }).form; //创建窗体
  5656. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5657. break;
  5658. case "library":
  5659. _formdiv = new U.UF.UI.form(
  5660. "素材库",
  5661. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5662. "id": "library",
  5663. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5664. "onresize": function () { }
  5665. }, {
  5666. closecallback: function () { }
  5667. }, { "style": { "height": "36px" } }).form; //创建窗体
  5668. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5669. break;
  5670. case "whiteboard":
  5671. _formdiv = new U.UF.UI.form(
  5672. "电子白板",
  5673. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5674. "id": "whiteboard",
  5675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5676. "onresize": function () { }
  5677. }, {
  5678. closecallback: function () { }
  5679. }, { "style": { "height": "36px" } }).form; //创建窗体
  5680. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5681. break;
  5682. case "investigation":
  5683. _formdiv = new U.UF.UI.form(
  5684. "问卷调查",
  5685. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5686. "id": "investigation",
  5687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5688. "onresize": function () { }
  5689. }, {
  5690. closecallback: function () { }
  5691. }, { "style": { "height": "36px" } }).form; //创建窗体
  5692. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5693. break;
  5694. case "note":
  5695. _formdiv = new U.UF.UI.form(
  5696. "便签分类",
  5697. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5698. "id": "note",
  5699. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5700. "onresize": function () { }
  5701. }, {
  5702. closecallback: function () { }
  5703. }, { "style": { "height": "36px" } }).form; //创建窗体
  5704. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5705. break;
  5706. // case "score":
  5707. // _formdiv = new U.UF.UI.form(
  5708. // "量规评分",
  5709. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5710. // "id": "score",
  5711. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5712. // "onresize": function() {}
  5713. // }, {
  5714. // closecallback: function() {}
  5715. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5716. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5717. // break;
  5718. case "mind":
  5719. _formdiv = new U.UF.UI.form(
  5720. "思维导图",
  5721. $$("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"
  5722. "id": "mind",
  5723. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5724. "onresize": function () { }
  5725. }, {
  5726. closecallback: function () { }
  5727. }, { "style": { "height": "36px" } }).form; //创建窗体
  5728. _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); } }
  5729. break;
  5730. case "doc":
  5731. // U.MD.D.I.isRoom();
  5732. _formdiv = new U.UF.UI.form(
  5733. "协同文档",
  5734. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5735. "id": "doc",
  5736. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5737. "onresize": function () { }
  5738. }, {
  5739. closecallback: function () { }
  5740. }, { "style": { "height": "36px" } }).form; //创建窗体
  5741. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5742. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5743. // })
  5744. _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); } }
  5745. break;
  5746. case "studentStudy":
  5747. _formdiv = new U.UF.UI.form(
  5748. "课程中心",
  5749. $$("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
  5750. "id": "studentStudy",
  5751. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5752. "onresize": function () { }
  5753. }, {
  5754. closecallback: function () { }
  5755. }, { "style": { "height": "36px" } }).form; //创建窗体
  5756. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5757. break;
  5758. case "train": //好友打开
  5759. _formdiv = new U.UF.UI.form(
  5760. "训练平台",
  5761. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5762. "id": "train",
  5763. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5764. "onresize": function () { }
  5765. }, {
  5766. closecallback: function () { }
  5767. }, { "style": { "height": "36px" } }).form; //创建窗体
  5768. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5769. break;
  5770. case "mindNetwork": //好友打开
  5771. _formdiv = new U.UF.UI.form(
  5772. "思维网格",
  5773. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  5774. "id": "mindNetwork",
  5775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5776. "onresize": function () { }
  5777. }, {
  5778. closecallback: function () { }
  5779. }, { "style": { "height": "36px" } }).form; //创建窗体
  5780. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5781. break;
  5782. case "studentClassRoom": //好友打开
  5783. _formdiv = new U.UF.UI.form(
  5784. "实时课堂",
  5785. $$("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 }), {
  5786. "id": "studentClassRoom",
  5787. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5788. "onresize": function () { }
  5789. }, {
  5790. closecallback: function () { }
  5791. }, { "style": { "height": "36px" } }).form; //创建窗体
  5792. _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); } }
  5793. setTimeout(() => {
  5794. U.UF.F.windowZooming(_formdiv)
  5795. }, 0);
  5796. break;
  5797. }
  5798. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5799. switch (str) {
  5800. case "studnetProject": //好友打开
  5801. _formdiv = new U.UF.UI.form(
  5802. "我的项目",
  5803. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5804. "id": "studnetProject",
  5805. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5806. "onresize": function () { }
  5807. }, {
  5808. closecallback: function () { }
  5809. }, { "style": { "height": "36px" } }).form; //创建窗体
  5810. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5811. break;
  5812. case "studentEvaluate": //好友打开
  5813. _formdiv = new U.UF.UI.form(
  5814. "我的评价",
  5815. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5816. "id": "studentEvaluate",
  5817. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5818. "onresize": function () { }
  5819. }, {
  5820. closecallback: function () { }
  5821. }, { "style": { "height": "36px" } }).form; //创建窗体
  5822. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5823. break;
  5824. case "my":
  5825. _formdiv = new U.UF.UI.form(
  5826. "我的资料",
  5827. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5828. "id": "my",
  5829. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5830. "onresize": function () { }
  5831. }, {
  5832. closecallback: function () { }
  5833. }, { "style": { "height": "36px" } }).form; //创建窗体
  5834. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5835. break;
  5836. case "program":
  5837. _formdiv = new U.UF.UI.form(
  5838. "编程平台",
  5839. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5840. "id": "program",
  5841. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5842. "onresize": function () { }
  5843. }, {
  5844. closecallback: function () { }
  5845. }, { "style": { "height": "36px" } }).form; //创建窗体
  5846. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5847. break;
  5848. case "library":
  5849. _formdiv = new U.UF.UI.form(
  5850. "素材库",
  5851. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5852. "id": "library",
  5853. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5854. "onresize": function () { }
  5855. }, {
  5856. closecallback: function () { }
  5857. }, { "style": { "height": "36px" } }).form; //创建窗体
  5858. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5859. break;
  5860. case "whiteboard":
  5861. _formdiv = new U.UF.UI.form(
  5862. "电子白板",
  5863. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5864. "id": "whiteboard",
  5865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5866. "onresize": function () { }
  5867. }, {
  5868. closecallback: function () { }
  5869. }, { "style": { "height": "36px" } }).form; //创建窗体
  5870. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5871. break;
  5872. case "investigation":
  5873. _formdiv = new U.UF.UI.form(
  5874. "问卷调查",
  5875. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5876. "id": "investigation",
  5877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5878. "onresize": function () { }
  5879. }, {
  5880. closecallback: function () { }
  5881. }, { "style": { "height": "36px" } }).form; //创建窗体
  5882. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5883. break;
  5884. case "note":
  5885. _formdiv = new U.UF.UI.form(
  5886. "便签分类",
  5887. $$("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 }), {
  5888. "id": "note",
  5889. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5890. "onresize": function () { }
  5891. }, {
  5892. closecallback: function () { }
  5893. }, { "style": { "height": "36px" } }).form; //创建窗体
  5894. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5895. break;
  5896. // case "score":
  5897. // _formdiv = new U.UF.UI.form(
  5898. // "量规评分",
  5899. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5900. // "id": "score",
  5901. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5902. // "onresize": function() {}
  5903. // }, {
  5904. // closecallback: function() {}
  5905. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5906. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5907. // break;
  5908. case "mind":
  5909. _formdiv = new U.UF.UI.form(
  5910. "思维导图",
  5911. $$("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"
  5912. "id": "mind",
  5913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5914. "onresize": function () { }
  5915. }, {
  5916. closecallback: function () { }
  5917. }, { "style": { "height": "36px" } }).form; //创建窗体
  5918. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5919. break;
  5920. case "doc":
  5921. // U.MD.D.I.isRoom();
  5922. _formdiv = new U.UF.UI.form(
  5923. "协同文档",
  5924. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5925. "id": "doc",
  5926. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5927. "onresize": function () { }
  5928. }, {
  5929. closecallback: function () { }
  5930. }, { "style": { "height": "36px" } }).form; //创建窗体
  5931. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5932. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5933. })
  5934. _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); } }
  5935. break;
  5936. case "train": //好友打开
  5937. _formdiv = new U.UF.UI.form(
  5938. "训练平台",
  5939. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5940. "id": "train",
  5941. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5942. "onresize": function () { }
  5943. }, {
  5944. closecallback: function () { }
  5945. }, { "style": { "height": "36px" } }).form; //创建窗体
  5946. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5947. break;
  5948. case "studentStudy":
  5949. _formdiv = new U.UF.UI.form(
  5950. "课程中心",
  5951. $$("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
  5952. "id": "studentStudy",
  5953. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5954. "onresize": function () { }
  5955. }, {
  5956. closecallback: function () { }
  5957. }, { "style": { "height": "36px" } }).form; //创建窗体
  5958. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5959. break;
  5960. case "mindNetwork": //好友打开
  5961. _formdiv = new U.UF.UI.form(
  5962. "思维网格",
  5963. $$("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 }), {
  5964. "id": "mindNetwork",
  5965. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5966. "onresize": function () { }
  5967. }, {
  5968. closecallback: function () { }
  5969. }, { "style": { "height": "36px" } }).form; //创建窗体
  5970. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5971. break;
  5972. case "studentClassRoom": //好友打开
  5973. _formdiv = new U.UF.UI.form(
  5974. "实时课堂",
  5975. $$("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 }), {
  5976. "id": "studentClassRoom",
  5977. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5978. "onresize": function () { }
  5979. }, {
  5980. closecallback: function () { }
  5981. }, { "style": { "height": "36px" } }).form; //创建窗体
  5982. _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); } }
  5983. setTimeout(() => {
  5984. U.UF.F.windowZooming(_formdiv)
  5985. }, 0);
  5986. break;
  5987. }
  5988. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5989. //选择应用处理
  5990. switch (str) {
  5991. case "project": //好友打开
  5992. _formdiv = new U.UF.UI.form(
  5993. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5994. $$("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 }), {
  5995. "id": "project",
  5996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5997. "onresize": function () { }
  5998. }, {
  5999. closecallback: function () { }
  6000. }, { "style": { "height": "36px" } }).form; //创建窗体
  6001. _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); } }
  6002. break;
  6003. case "student":
  6004. _formdiv = new U.UF.UI.form(
  6005. "学生管理",
  6006. $$("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 }), {
  6007. "id": "student",
  6008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6009. "onresize": function () { }
  6010. }, {
  6011. closecallback: function () { }
  6012. }, { "style": { "height": "36px" } }).form; //创建窗体
  6013. _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); } }
  6014. break;
  6015. case "evaluate":
  6016. _formdiv = new U.UF.UI.form(
  6017. "学生评价",
  6018. $$("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 }), {
  6019. "id": "evaluate",
  6020. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6021. "onresize": function () { }
  6022. }, {
  6023. closecallback: function () { }
  6024. }, { "style": { "height": "36px" } }).form; //创建窗体
  6025. _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); } }
  6026. break;
  6027. case "sys":
  6028. _formdiv = new U.UF.UI.form(
  6029. "目标管理",
  6030. $$("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 }), {
  6031. "id": "sys",
  6032. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6033. "onresize": function () { }
  6034. }, {
  6035. closecallback: function () { }
  6036. }, { "style": { "height": "36px" } }).form; //创建窗体
  6037. _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); } }
  6038. break;
  6039. case "courseDesign":
  6040. _formdiv = new U.UF.UI.form(
  6041. "项目设计",
  6042. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6043. "id": "courseDesign",
  6044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6045. "onresize": function () { }
  6046. }, {
  6047. closecallback: function () { }
  6048. }, { "style": { "height": "36px" } }).form; //创建窗体
  6049. _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); } }
  6050. break;
  6051. case "program":
  6052. _formdiv = new U.UF.UI.form(
  6053. "编程平台",
  6054. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6055. "id": "program",
  6056. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6057. "onresize": function () { }
  6058. }, {
  6059. closecallback: function () { }
  6060. }, { "style": { "height": "36px" } }).form; //创建窗体
  6061. _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); } }
  6062. break;
  6063. case "class":
  6064. _formdiv = new U.UF.UI.form(
  6065. "班级管理",
  6066. $$("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 }), {
  6067. "id": "class",
  6068. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6069. "onresize": function () { }
  6070. }, {
  6071. closecallback: function () { }
  6072. }, { "style": { "height": "36px" } }).form; //创建窗体
  6073. _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); } }
  6074. break;
  6075. case "Grade":
  6076. _formdiv = new U.UF.UI.form(
  6077. "年级管理",
  6078. $$("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 }), {
  6079. "id": "Grade",
  6080. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6081. "onresize": function () { }
  6082. }, {
  6083. closecallback: function () { }
  6084. }, { "style": { "height": "36px" } }).form; //创建窗体
  6085. _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); } }
  6086. break;
  6087. case "teacherOffice":
  6088. _formdiv = new U.UF.UI.form(
  6089. "教研室",
  6090. $$("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 }), {
  6091. "id": "teacherOffice",
  6092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6093. "onresize": function () { }
  6094. }, {
  6095. closecallback: function () { }
  6096. }, { "style": { "height": "36px" } }).form; //创建窗体
  6097. _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); } }
  6098. break;
  6099. case "my":
  6100. _formdiv = new U.UF.UI.form(
  6101. "我的资料",
  6102. $$("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 }), {
  6103. "id": "my",
  6104. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6105. "onresize": function () { }
  6106. }, {
  6107. closecallback: function () { }
  6108. }, { "style": { "height": "36px" } }).form; //创建窗体
  6109. _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); } }
  6110. break;
  6111. case "notice":
  6112. _formdiv = new U.UF.UI.form(
  6113. "通知公告",
  6114. $$("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 }), {
  6115. "id": "notice",
  6116. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6117. "onresize": function () { }
  6118. }, {
  6119. closecallback: function () { }
  6120. }, { "style": { "height": "36px" } }).form; //创建窗体
  6121. _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); } }
  6122. break;
  6123. case "library":
  6124. _formdiv = new U.UF.UI.form(
  6125. "素材库",
  6126. $$("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 }), {
  6127. "id": "library",
  6128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6129. "onresize": function () { }
  6130. }, {
  6131. closecallback: function () { }
  6132. }, { "style": { "height": "36px" } }).form; //创建窗体
  6133. _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); } }
  6134. break;
  6135. case "whiteboard":
  6136. _formdiv = new U.UF.UI.form(
  6137. "电子白板",
  6138. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6139. "id": "whiteboard",
  6140. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6141. "onresize": function () { }
  6142. }, {
  6143. closecallback: function () { }
  6144. }, { "style": { "height": "36px" } }).form; //创建窗体
  6145. _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); } }
  6146. break;
  6147. case "investigation":
  6148. _formdiv = new U.UF.UI.form(
  6149. "问卷调查",
  6150. $$("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 }), {
  6151. "id": "investigation",
  6152. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6153. "onresize": function () { }
  6154. }, {
  6155. closecallback: function () { }
  6156. }, { "style": { "height": "36px" } }).form; //创建窗体
  6157. _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); } }
  6158. break;
  6159. case "note":
  6160. _formdiv = new U.UF.UI.form(
  6161. "便签分类",
  6162. $$("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 }), {
  6163. "id": "note",
  6164. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6165. "onresize": function () { }
  6166. }, {
  6167. closecallback: function () { }
  6168. }, { "style": { "height": "36px" } }).form; //创建窗体
  6169. _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); } }
  6170. break;
  6171. // case "score":
  6172. // _formdiv = new U.UF.UI.form(
  6173. // "量规评分",
  6174. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6175. // "id": "score",
  6176. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6177. // "onresize": function() {}
  6178. // }, {
  6179. // closecallback: function() {}
  6180. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6181. // _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); } }
  6182. // break;
  6183. case "mind":
  6184. _formdiv = new U.UF.UI.form(
  6185. "思维导图",
  6186. $$("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"
  6187. "id": "mind",
  6188. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6189. "onresize": function () { }
  6190. }, {
  6191. closecallback: function () { }
  6192. }, { "style": { "height": "36px" } }).form; //创建窗体
  6193. _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); } }
  6194. break;
  6195. case "doc":
  6196. // U.MD.D.I.isRoom();
  6197. _formdiv = new U.UF.UI.form(
  6198. "协同文档",
  6199. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6200. "id": "doc",
  6201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6202. "onresize": function () { }
  6203. }, {
  6204. closecallback: function () { }
  6205. }, { "style": { "height": "36px" } }).form; //创建窗体
  6206. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6207. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6208. })
  6209. _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); } }
  6210. break;
  6211. case "study":
  6212. _formdiv = new U.UF.UI.form(
  6213. "课程中心",
  6214. $$("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
  6215. "id": "study",
  6216. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6217. "onresize": function () { }
  6218. }, {
  6219. closecallback: function () { }
  6220. }, { "style": { "height": "36px" } }).form; //创建窗体
  6221. _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); } }
  6222. break;
  6223. case "mindNetwork": //好友打开
  6224. _formdiv = new U.UF.UI.form(
  6225. "思维网格",
  6226. $$("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 }), {
  6227. "id": "mindNetwork",
  6228. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6229. "onresize": function () { }
  6230. }, {
  6231. closecallback: function () { }
  6232. }, { "style": { "height": "36px" } }).form; //创建窗体
  6233. _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); } }
  6234. break;
  6235. case "train": //好友打开
  6236. _formdiv = new U.UF.UI.form(
  6237. "训练平台",
  6238. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6239. "id": "mindNetwork",
  6240. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6241. "onresize": function () { }
  6242. }, {
  6243. closecallback: function () { }
  6244. }, { "style": { "height": "36px" } }).form; //创建窗体
  6245. _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); } }
  6246. break;
  6247. case "teacherClassRoom": //好友打开
  6248. _formdiv = new U.UF.UI.form(
  6249. "实时课堂",
  6250. $$("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 }), {
  6251. "id": "teacherClassRoom",
  6252. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6253. "onresize": function () { }
  6254. }, {
  6255. closecallback: function () { }
  6256. }, { "style": { "height": "36px" } }).form; //创建窗体
  6257. _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); } }
  6258. setTimeout(() => {
  6259. U.UF.F.windowZooming(_formdiv)
  6260. }, 0);
  6261. break;
  6262. }
  6263. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6264. switch (str) {
  6265. case "project": //好友打开
  6266. _formdiv = new U.UF.UI.form(
  6267. "课程管理",
  6268. $$("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 }), {
  6269. "id": "project",
  6270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6271. "onresize": function () { }
  6272. }, {
  6273. closecallback: function () { }
  6274. }, { "style": { "height": "36px" } }).form; //创建窗体
  6275. _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); } }
  6276. break;
  6277. case "evaluate":
  6278. _formdiv = new U.UF.UI.form(
  6279. "学生评价",
  6280. $$("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 }), {
  6281. "id": "evaluate",
  6282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6283. "onresize": function () { }
  6284. }, {
  6285. closecallback: function () { }
  6286. }, { "style": { "height": "36px" } }).form; //创建窗体
  6287. _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); } }
  6288. break;
  6289. case "notice":
  6290. _formdiv = new U.UF.UI.form(
  6291. "通知公告",
  6292. $$("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 }), {
  6293. "id": "notice",
  6294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6295. "onresize": function () { }
  6296. }, {
  6297. closecallback: function () { }
  6298. }, { "style": { "height": "36px" } }).form; //创建窗体
  6299. _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); } }
  6300. break;
  6301. case "stuLibrary":
  6302. _formdiv = new U.UF.UI.form(
  6303. "学习资料",
  6304. $$("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 }), {
  6305. "id": "stuLibrary",
  6306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6307. "onresize": function () { }
  6308. }, {
  6309. closecallback: function () { }
  6310. }, { "style": { "height": "36px" } }).form; //创建窗体
  6311. _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); } }
  6312. break;
  6313. case "program":
  6314. _formdiv = new U.UF.UI.form(
  6315. "编程平台",
  6316. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6317. "id": "program",
  6318. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6319. "onresize": function () { }
  6320. }, {
  6321. closecallback: function () { }
  6322. }, { "style": { "height": "36px" } }).form; //创建窗体
  6323. _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); } }
  6324. break;
  6325. case "whiteboard":
  6326. _formdiv = new U.UF.UI.form(
  6327. "电子白板",
  6328. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6329. "id": "whiteboard",
  6330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6331. "onresize": function () { }
  6332. }, {
  6333. closecallback: function () { }
  6334. }, { "style": { "height": "36px" } }).form; //创建窗体
  6335. _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); } }
  6336. break;
  6337. case "investigation":
  6338. _formdiv = new U.UF.UI.form(
  6339. "问卷调查",
  6340. $$("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 }), {
  6341. "id": "investigation",
  6342. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6343. "onresize": function () { }
  6344. }, {
  6345. closecallback: function () { }
  6346. }, { "style": { "height": "36px" } }).form; //创建窗体
  6347. _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); } }
  6348. break;
  6349. case "mind":
  6350. _formdiv = new U.UF.UI.form(
  6351. "思维导图",
  6352. $$("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"
  6353. "id": "mind",
  6354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6355. "onresize": function () { }
  6356. }, {
  6357. closecallback: function () { }
  6358. }, { "style": { "height": "36px" } }).form; //创建窗体
  6359. _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); } }
  6360. break;
  6361. case "doc":
  6362. // U.MD.D.I.isRoom();
  6363. _formdiv = new U.UF.UI.form(
  6364. "协同文档",
  6365. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6366. "id": "doc",
  6367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6368. "onresize": function () { }
  6369. }, {
  6370. closecallback: function () { }
  6371. }, { "style": { "height": "36px" } }).form; //创建窗体
  6372. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6373. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6374. })
  6375. _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); } }
  6376. break;
  6377. case "study":
  6378. _formdiv = new U.UF.UI.form(
  6379. "课程中心",
  6380. $$("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
  6381. "id": "study",
  6382. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //创建窗体
  6387. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6388. break;
  6389. case "mindNetwork": //好友打开
  6390. _formdiv = new U.UF.UI.form(
  6391. "思维网格",
  6392. $$("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 }), {
  6393. "id": "mindNetwork",
  6394. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6395. "onresize": function () { }
  6396. }, {
  6397. closecallback: function () { }
  6398. }, { "style": { "height": "36px" } }).form; //创建窗体
  6399. _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); } }
  6400. break;
  6401. case "train": //好友打开
  6402. _formdiv = new U.UF.UI.form(
  6403. "训练平台",
  6404. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6405. "id": "train",
  6406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6407. "onresize": function () { }
  6408. }, {
  6409. closecallback: function () { }
  6410. }, { "style": { "height": "36px" } }).form; //创建窗体
  6411. _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); } }
  6412. break;
  6413. case "sys":
  6414. _formdiv = new U.UF.UI.form(
  6415. "目标管理",
  6416. $$("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 }), {
  6417. "id": "sys",
  6418. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6419. "onresize": function () { }
  6420. }, {
  6421. closecallback: function () { }
  6422. }, { "style": { "height": "36px" } }).form; //创建窗体
  6423. _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); } }
  6424. break;
  6425. case "courseDesign":
  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": "/course-design-vue" }), {
  6429. "id": "courseDesign",
  6430. "style": { "width": "90%", "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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6436. break;
  6437. }
  6438. } else if (!_type) {
  6439. switch (str) {
  6440. case "my":
  6441. _formdiv = new U.UF.UI.form(
  6442. "我的资料",
  6443. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6444. "id": "my",
  6445. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6446. "onresize": function () { }
  6447. }, {
  6448. closecallback: function () { }
  6449. }, { "style": { "height": "36px" } }).form; //创建窗体
  6450. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6451. break;
  6452. }
  6453. }
  6454. switch (str) {
  6455. // AIprogram2 AI体验 aihub.cocorobo.cn
  6456. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6457. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6458. case "formulaEdi": //公式编辑
  6459. _formdiv = new U.UF.UI.form(
  6460. "公式编辑",
  6461. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6462. "id": "formulaEdi",
  6463. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6464. "onresize": function () { }
  6465. }, {
  6466. closecallback: function () { }
  6467. }, { "style": { "height": "36px" } }).form; //创建窗体
  6468. _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); } }
  6469. break;
  6470. case "molStr": //分子结构
  6471. _formdiv = new U.UF.UI.form(
  6472. "分子结构",
  6473. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6474. "id": "molStr",
  6475. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6476. "onresize": function () { }
  6477. }, {
  6478. closecallback: function () { }
  6479. }, { "style": { "height": "36px" } }).form; //创建窗体
  6480. _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); } }
  6481. break;
  6482. case "timeAxis": //时间轴
  6483. _formdiv = new U.UF.UI.form(
  6484. "时间轴",
  6485. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6486. "id": "timeAxis",
  6487. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6488. "onresize": function () { }
  6489. }, {
  6490. closecallback: function () { }
  6491. }, { "style": { "height": "36px" } }).form; //创建窗体
  6492. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6493. break;
  6494. case "AIprogram2": //AI体验
  6495. _formdiv = new U.UF.UI.form(
  6496. "AI体验",
  6497. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6498. "id": "AIprogram2",
  6499. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6500. "onresize": function () { }
  6501. }, {
  6502. closecallback: function () { }
  6503. }, { "style": { "height": "36px" } }).form; //创建窗体
  6504. _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); } }
  6505. break;
  6506. case "Pythonprogram": //python编程
  6507. _formdiv = new U.UF.UI.form(
  6508. "Python编程",
  6509. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6510. "id": "Pythonprogram",
  6511. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6512. "onresize": function () { }
  6513. }, {
  6514. closecallback: function () { }
  6515. }, { "style": { "height": "36px" } }).form; //创建窗体
  6516. _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); } }
  6517. break;
  6518. case "AIprogram": //ai编程
  6519. _formdiv = new U.UF.UI.form(
  6520. "AI编程平台",
  6521. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6522. "id": "AIprogram",
  6523. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6524. "onresize": function () { }
  6525. }, {
  6526. closecallback: function () { }
  6527. }, { "style": { "height": "36px" } }).form; //创建窗体
  6528. _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); } }
  6529. break;
  6530. case "CocoPi": //CocoPi
  6531. _formdiv = new U.UF.UI.form(
  6532. "CocoPi",
  6533. $$("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" }), {
  6534. "id": "CocoPi",
  6535. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6536. "onresize": function () { }
  6537. }, {
  6538. closecallback: function () { }
  6539. }, { "style": { "height": "36px" } }).form; //创建窗体
  6540. _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); } }
  6541. break;
  6542. case "Wood": //Wood
  6543. _formdiv = new U.UF.UI.form(
  6544. "海龟编程",
  6545. $$("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/" }), {
  6546. "id": "Wood",
  6547. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6548. "onresize": function () { }
  6549. }, {
  6550. closecallback: function () { }
  6551. }, { "style": { "height": "36px" } }).form; //创建窗体
  6552. _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); } }
  6553. break;
  6554. case "car": //模拟驾驶
  6555. _formdiv = new U.UF.UI.form(
  6556. "模拟驾驶",
  6557. $$("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/" }), {
  6558. "id": "car",
  6559. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6560. "onresize": function () { }
  6561. }, {
  6562. closecallback: function () { }
  6563. }, { "style": { "height": "36px" } }).form; //创建窗体
  6564. _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); } }
  6565. break;
  6566. case "lineSearch": //路径搜索
  6567. _formdiv = new U.UF.UI.form(
  6568. "路径搜索",
  6569. $$("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/" }), {
  6570. "id": "lineSearch",
  6571. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6572. "onresize": function () { }
  6573. }, {
  6574. closecallback: function () { }
  6575. }, { "style": { "height": "36px" } }).form; //创建窗体
  6576. _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); } }
  6577. break;
  6578. case "deepLearning": //深度学习
  6579. _formdiv = new U.UF.UI.form(
  6580. "深度学习",
  6581. $$("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/#" }), {
  6582. "id": "deepLearning",
  6583. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6584. "onresize": function () { }
  6585. }, {
  6586. closecallback: function () { }
  6587. }, { "style": { "height": "36px" } }).form; //创建窗体
  6588. _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); } }
  6589. break;
  6590. case "allHistory": //深度学习
  6591. _formdiv = new U.UF.UI.form(
  6592. "全历史",
  6593. $$("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/" }), {
  6594. "id": "allHistory",
  6595. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6596. "onresize": function () { }
  6597. }, {
  6598. closecallback: function () { }
  6599. }, { "style": { "height": "36px" } }).form; //创建窗体
  6600. _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); } }
  6601. break;
  6602. case "chatPDF": //ai编程
  6603. _formdiv = new U.UF.UI.form(
  6604. "chatPDF",
  6605. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6606. "id": "chatPDF",
  6607. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6608. "onresize": function () { }
  6609. }, {
  6610. closecallback: function () { }
  6611. }, { "style": { "height": "36px" } }).form; //创建窗体
  6612. _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); } }
  6613. break;
  6614. case "resources": //国家教育
  6615. _formdiv = new U.UF.UI.form(
  6616. "国家教育",
  6617. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6618. "id": "resources",
  6619. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6620. "onresize": function () { }
  6621. }, {
  6622. closecallback: function () { }
  6623. }, { "style": { "height": "36px" } }).form; //创建窗体
  6624. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6625. break;
  6626. case "codeEdit": //源码编辑
  6627. _formdiv = new U.UF.UI.form(
  6628. "源码编辑",
  6629. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6630. "id": "codeEdit",
  6631. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6632. "onresize": function () { }
  6633. }, {
  6634. closecallback: function () { }
  6635. }, { "style": { "height": "36px" } }).form; //创建窗体
  6636. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6637. break; //
  6638. case "MindMap": //MindMap
  6639. _formdiv = new U.UF.UI.form(
  6640. "MindMap",
  6641. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6642. "id": "MindMap",
  6643. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6644. "onresize": function () { }
  6645. }, {
  6646. closecallback: function () { }
  6647. }, { "style": { "height": "36px" } }).form; //创建窗体
  6648. _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); } }
  6649. break;
  6650. case "netWorkPanel": //netWorkPanel
  6651. _formdiv = new U.UF.UI.form(
  6652. "netWorkPanel",
  6653. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6654. "id": "netWorkPanel",
  6655. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6656. "onresize": function () { }
  6657. }, {
  6658. closecallback: function () { }
  6659. }, { "style": { "height": "36px" } }).form; //创建窗体
  6660. _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); } }
  6661. break;
  6662. case "GeoGebra": //GeoGebra
  6663. _formdiv = new U.UF.UI.form(
  6664. "GeoGebra",
  6665. $$("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" }), {
  6666. "id": "GeoGebra",
  6667. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6668. "onresize": function () { }
  6669. }, {
  6670. closecallback: function () { }
  6671. }, { "style": { "height": "36px" } }).form; //创建窗体
  6672. _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); } }
  6673. break;
  6674. case "translation": //翻译
  6675. _formdiv = new U.UF.UI.form(
  6676. "翻译",
  6677. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6678. "id": "translation",
  6679. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6680. "onresize": function () { }
  6681. }, {
  6682. closecallback: function () { }
  6683. }, { "style": { "height": "36px" } }).form; //创建窗体
  6684. _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); } }
  6685. break;
  6686. case "mohe": //魔盒
  6687. _formdiv = new U.UF.UI.form(
  6688. "魔盒识字",
  6689. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6690. "id": "mohe",
  6691. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6692. "onresize": function () { }
  6693. }, {
  6694. closecallback: function () { }
  6695. }, { "style": { "height": "36px" } }).form; //创建窗体
  6696. _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); } }
  6697. break;
  6698. case "24game": //24点
  6699. _formdiv = new U.UF.UI.form(
  6700. "24点",
  6701. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6702. "id": "24game",
  6703. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6704. "onresize": function () { }
  6705. }, {
  6706. closecallback: function () { }
  6707. }, { "style": { "height": "36px" } }).form; //创建窗体
  6708. _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); } }
  6709. break;
  6710. case "case":
  6711. _formdiv = new U.UF.UI.form(
  6712. "课程进展",
  6713. $$("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 }), {
  6714. "id": "case",
  6715. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6716. "onresize": function () { }
  6717. }, {
  6718. closecallback: function () { }
  6719. }, { "style": { "height": "36px" } }).form; //创建窗体
  6720. _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); } }
  6721. break;
  6722. case "snf":
  6723. _formdiv = new U.UF.UI.form(
  6724. "赛诺梵",
  6725. $$("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" }), {
  6726. "id": "snf",
  6727. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6728. "onresize": function () { }
  6729. }, {
  6730. closecallback: function () { }
  6731. }, { "style": { "height": "36px" } }).form; //创建窗体
  6732. _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); } }
  6733. break;
  6734. case "hanFamily":
  6735. _formdiv = new U.UF.UI.form(
  6736. "汉字家族",
  6737. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6738. "id": "hanFamily",
  6739. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6740. "onresize": function () { }
  6741. }, {
  6742. closecallback: function () { }
  6743. }, { "style": { "height": "36px" } }).form; //创建窗体
  6744. _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); } }
  6745. break;
  6746. case "hanClassics":
  6747. _formdiv = new U.UF.UI.form(
  6748. "国学经典",
  6749. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6750. "id": "hanClassics",
  6751. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6752. "onresize": function () { }
  6753. }, {
  6754. closecallback: function () { }
  6755. }, { "style": { "height": "36px" } }).form; //创建窗体
  6756. _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); } }
  6757. break;
  6758. case "hanTraining":
  6759. _formdiv = new U.UF.UI.form(
  6760. "笔画训练",
  6761. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6762. "id": "hanTraining",
  6763. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6764. "onresize": function () { }
  6765. }, {
  6766. closecallback: function () { }
  6767. }, { "style": { "height": "36px" } }).form; //创建窗体
  6768. _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); } }
  6769. break;
  6770. case "hanClass":
  6771. _formdiv = new U.UF.UI.form(
  6772. "书法课堂",
  6773. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6774. "id": "hanClass",
  6775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6776. "onresize": function () { }
  6777. }, {
  6778. closecallback: function () { }
  6779. }, { "style": { "height": "36px" } }).form; //创建窗体
  6780. _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); } }
  6781. break;
  6782. case "han":
  6783. _formdiv = new U.UF.UI.form(
  6784. "汉字宫",
  6785. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6786. "id": "han",
  6787. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6788. "onresize": function () { }
  6789. }, {
  6790. closecallback: function () { }
  6791. }, { "style": { "height": "36px" } }).form; //创建窗体
  6792. _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); } }
  6793. break;
  6794. case "projectGM": //课程管理
  6795. _formdiv = new U.UF.UI.form(
  6796. "课程管理",
  6797. $$("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 }), {
  6798. "id": "projectGM",
  6799. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6800. "onresize": function () { }
  6801. }, {
  6802. closecallback: function () { }
  6803. }, { "style": { "height": "36px" } }).form; //创建窗体
  6804. _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); } }
  6805. break;
  6806. case "studyGM": //课程中心
  6807. _formdiv = new U.UF.UI.form(
  6808. "课程中心",
  6809. $$("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
  6810. "id": "study",
  6811. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6812. "onresize": function () { }
  6813. }, {
  6814. closecallback: function () { }
  6815. }, { "style": { "height": "36px" } }).form; //创建窗体
  6816. _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); } }
  6817. break;
  6818. // studentGM
  6819. case "studentGM": //学生管理
  6820. _formdiv = new U.UF.UI.form(
  6821. "学生管理",
  6822. $$("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 }), {
  6823. "id": "studentGM",
  6824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6825. "onresize": function () { }
  6826. }, {
  6827. closecallback: function () { }
  6828. }, { "style": { "height": "36px" } }).form; //创建窗体
  6829. _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); } }
  6830. break;
  6831. case "evaluateGM": //学生评价
  6832. _formdiv = new U.UF.UI.form(
  6833. "学生评价",
  6834. $$("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 }), {
  6835. "id": "evaluateGM",
  6836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6837. "onresize": function () { }
  6838. }, {
  6839. closecallback: function () { }
  6840. }, { "style": { "height": "36px" } }).form; //创建窗体
  6841. _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); } }
  6842. break;
  6843. // classGM
  6844. case "classGM": //班级管理
  6845. _formdiv = new U.UF.UI.form(
  6846. "班级管理",
  6847. $$("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 }), {
  6848. "id": "classGM",
  6849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6850. "onresize": function () { }
  6851. }, {
  6852. closecallback: function () { }
  6853. }, { "style": { "height": "36px" } }).form; //创建窗体
  6854. _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); } }
  6855. break;
  6856. // dataGM
  6857. case "dataGM":
  6858. _formdiv = new U.UF.UI.form(
  6859. "我的资料",
  6860. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  6861. "id": "dataGM",
  6862. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6863. "onresize": function () { }
  6864. }, {
  6865. closecallback: function () { }
  6866. }, { "style": { "height": "36px" } }).form; //创建窗体
  6867. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6868. break;
  6869. // caseGM
  6870. case "caseGM": //课程进展
  6871. _formdiv = new U.UF.UI.form(
  6872. "课程进展",
  6873. $$("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 }), {
  6874. "id": "caseGM",
  6875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6876. "onresize": function () { }
  6877. }, {
  6878. closecallback: function () { }
  6879. }, { "style": { "height": "36px" } }).form; //创建窗体
  6880. _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); } }
  6881. break;
  6882. // meterialGM
  6883. case "meterialGM": //素材库
  6884. _formdiv = new U.UF.UI.form(
  6885. "素材库",
  6886. $$("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 }), {
  6887. "id": "meterialGM",
  6888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6889. "onresize": function () { }
  6890. }, {
  6891. closecallback: function () { }
  6892. }, { "style": { "height": "36px" } }).form; //创建窗体
  6893. _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); } }
  6894. break;
  6895. // evaluateSGM
  6896. case "evaluateSGM": //我的评价
  6897. _formdiv = new U.UF.UI.form(
  6898. "我的评价",
  6899. $$("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 }), {
  6900. "id": "evaluateSGM",
  6901. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6902. "onresize": function () { }
  6903. }, {
  6904. closecallback: function () { }
  6905. }, { "style": { "height": "36px" } }).form; //创建窗体
  6906. _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); } }
  6907. break;
  6908. case "jupyter": //jupyter
  6909. _formdiv = new U.UF.UI.form(
  6910. "jupyter",
  6911. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6912. "id": "jupyter",
  6913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6914. "onresize": function () { }
  6915. }, {
  6916. closecallback: function () { }
  6917. }, { "style": { "height": "36px" } }).form; //创建窗体
  6918. _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); } }
  6919. break;
  6920. case "number": //数字实验室
  6921. _formdiv = new U.UF.UI.form(
  6922. "数字实验室",
  6923. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6924. "id": "number",
  6925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6926. "onresize": function () { }
  6927. }, {
  6928. closecallback: function () { }
  6929. }, { "style": { "height": "36px" } }).form; //创建窗体
  6930. _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); } }
  6931. break;
  6932. case "studentCourse": //项目管理 学生
  6933. _formdiv = new U.UF.UI.form(
  6934. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6935. $$("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 }), {
  6936. "id": "studentCourse",
  6937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6938. "onresize": function () { }
  6939. }, {
  6940. closecallback: function () { }
  6941. }, { "style": { "height": "36px" } }).form; //创建窗体
  6942. _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); } }
  6943. break;
  6944. case "studentCourseS": //项目管理 老师
  6945. _formdiv = new U.UF.UI.form(
  6946. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6947. $$("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 }), {
  6948. "id": "studentCourseS",
  6949. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6950. "onresize": function () { }
  6951. }, {
  6952. closecallback: function () { }
  6953. }, { "style": { "height": "36px" } }).form; //创建窗体
  6954. _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); } }
  6955. break;
  6956. case "studentIndex": //项目中心
  6957. _formdiv = new U.UF.UI.form(
  6958. "项目中心",
  6959. $$("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 }), {
  6960. "id": "studentIndex",
  6961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6962. "onresize": function () { }
  6963. }, {
  6964. closecallback: function () { }
  6965. }, { "style": { "height": "36px" } }).form; //创建窗体
  6966. _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); } }
  6967. break;
  6968. case "CaseDesignS":
  6969. _formdiv = new U.UF.UI.form(
  6970. "项目进展",
  6971. $$("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 }), {
  6972. "id": "case",
  6973. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6974. "onresize": function () { }
  6975. }, {
  6976. closecallback: function () { }
  6977. }, { "style": { "height": "36px" } }).form; //创建窗体
  6978. _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); } }
  6979. break;
  6980. case "tcStudent": //腾讯学生管理
  6981. _formdiv = new U.UF.UI.form(
  6982. "学生管理",
  6983. $$("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 }), {
  6984. "id": "tcStudent",
  6985. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6986. "onresize": function () { }
  6987. }, {
  6988. closecallback: function () { }
  6989. }, { "style": { "height": "36px" } }).form; //创建窗体
  6990. _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); } }
  6991. break;
  6992. case "tcSchool": //腾讯学校管理
  6993. _formdiv = new U.UF.UI.form(
  6994. "学校管理",
  6995. $$("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 }), {
  6996. "id": "tcSchool",
  6997. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6998. "onresize": function () { }
  6999. }, {
  7000. closecallback: function () { }
  7001. }, { "style": { "height": "36px" } }).form; //创建窗体
  7002. _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); } }
  7003. break;
  7004. case "tcTeacher": //腾讯学校管理
  7005. _formdiv = new U.UF.UI.form(
  7006. "教师管理",
  7007. $$("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 }), {
  7008. "id": "tcTeacher",
  7009. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7010. "onresize": function () { }
  7011. }, {
  7012. closecallback: function () { }
  7013. }, { "style": { "height": "36px" } }).form; //创建窗体
  7014. _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); } }
  7015. break;
  7016. case "teacher":
  7017. _formdiv = new U.UF.UI.form(
  7018. "教师管理",
  7019. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7020. "id": "teacher",
  7021. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7022. "onresize": function () { }
  7023. }, {
  7024. closecallback: function () { }
  7025. }, { "style": { "height": "36px" } }).form; //创建窗体
  7026. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7027. break;
  7028. case "tcData": //腾讯我的资料
  7029. _formdiv = new U.UF.UI.form(
  7030. "我的资料",
  7031. $$("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 }), {
  7032. "id": "tcData",
  7033. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7034. "onresize": function () { }
  7035. }, {
  7036. closecallback: function () { }
  7037. }, { "style": { "height": "36px" } }).form; //创建窗体
  7038. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7039. break;
  7040. case "tcNotice": //腾讯消息通知
  7041. _formdiv = new U.UF.UI.form(
  7042. "消息通知",
  7043. $$("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 }), {
  7044. "id": "tcNotice",
  7045. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7046. "onresize": function () { }
  7047. }, {
  7048. closecallback: function () { }
  7049. }, { "style": { "height": "36px" } }).form; //创建窗体
  7050. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7051. break;
  7052. case "myReport": //好友打开
  7053. _formdiv = new U.UF.UI.form(
  7054. "我的评价",
  7055. $$("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 }), {
  7056. "id": "myReport",
  7057. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7058. "onresize": function () { }
  7059. }, {
  7060. closecallback: function () { }
  7061. }, { "style": { "height": "36px" } }).form; //创建窗体
  7062. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7063. break;
  7064. case "learnAna": //好友打开
  7065. _formdiv = new U.UF.UI.form(
  7066. "学习分析",
  7067. $$("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 }), {
  7068. "id": "learnAna",
  7069. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7070. "onresize": function () { }
  7071. }, {
  7072. closecallback: function () { }
  7073. }, { "style": { "height": "36px" } }).form; //创建窗体
  7074. _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); } }
  7075. break;
  7076. case "AIChat": //AI共创
  7077. _formdiv = new U.UF.UI.form(
  7078. "AI共创",
  7079. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7080. "id": "AIChat",
  7081. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7082. "onresize": function () { }
  7083. }, {
  7084. istop: true,
  7085. closecallback: function () { $("#aichat_icon").remove(); },
  7086. narrowcallback: function () {
  7087. if (!$("#aichat_icon")[0]) {
  7088. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7089. }
  7090. },
  7091. }, { "style": { "height": "36px" } }).form; //创建窗体
  7092. _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); } }
  7093. break;
  7094. case "ainew": //AI共创
  7095. _formdiv = new U.UF.UI.form(
  7096. "AI协同",
  7097. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7098. "id": "ainew",
  7099. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7100. "onresize": function () { }
  7101. }, {
  7102. closecallback: function () { }
  7103. }, { "style": { "height": "36px" } }).form; //创建窗体
  7104. _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); } }
  7105. break;
  7106. case "gpt4": //gpt4
  7107. _formdiv = new U.UF.UI.form(
  7108. "AI助手",
  7109. $$("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 }), {
  7110. "id": "gpt4",
  7111. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7112. "onresize": function () { }
  7113. }, {
  7114. closecallback: function () { }
  7115. }, { "style": { "height": "36px" } }).form; //创建窗体
  7116. _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); } }
  7117. break;
  7118. case "aigpt": //gpt4
  7119. _formdiv = new U.UF.UI.form(
  7120. "AI助手+",
  7121. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7122. "id": "aigpt",
  7123. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7124. "onresize": function () { }
  7125. }, {
  7126. closecallback: function () {
  7127. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7128. }
  7129. }, { "style": { "height": "36px" } }).form; //创建窗体
  7130. _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); } }
  7131. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7132. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7133. })
  7134. break;
  7135. case "aiKnowledge": //aiKnowledge
  7136. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7137. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7138. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7139. }
  7140. _formdiv = new U.UF.UI.form(
  7141. "知识建构",
  7142. $$("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 }), {
  7143. "id": "aiKnowledge",
  7144. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7145. "onresize": function () { }
  7146. }, {
  7147. closecallback: function () { }
  7148. }, { "style": { "height": "36px" } }).form; //创建窗体
  7149. _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); } }
  7150. break;
  7151. case "futureClass": //AI共创
  7152. _formdiv = new U.UF.UI.form(
  7153. "协同建构",
  7154. $$("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
  7155. "id": "synergyCourse",
  7156. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7157. "onresize": function () { }
  7158. }, {
  7159. closecallback: function () {
  7160. $("iframe", _formdiv)[0].contentWindow.loginout();
  7161. }
  7162. }, { "style": { "height": "36px" } }).form; //创建窗体
  7163. _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); } }
  7164. break;
  7165. case "aiagent": //ai agent
  7166. _formdiv = new U.UF.UI.form(
  7167. "AI Agent",
  7168. $$("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" }), {
  7169. "id": "AIAgent",
  7170. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7171. "onresize": function () { }
  7172. }, {
  7173. closecallback: function () { }
  7174. }, { "style": { "height": "36px" } }).form; //创建窗体
  7175. _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); } }
  7176. break;
  7177. case "dataBoard": //数据看板
  7178. _formdiv = new U.UF.UI.form(
  7179. "数据看板",
  7180. $$("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 }), {
  7181. "id": "dataBoard",
  7182. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7183. "onresize": function () { }
  7184. }, {
  7185. closecallback: function () { }
  7186. }, { "style": { "height": "36px" } }).form; //创建窗体
  7187. _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); } }
  7188. break;
  7189. case "dataBoardSies": //数据融合
  7190. _formdiv = new U.UF.UI.form(
  7191. "数据融合",
  7192. $$("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 }), {
  7193. "id": "dataBoardSies",
  7194. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7195. "onresize": function () { }
  7196. }, {
  7197. closecallback: function () { }
  7198. }, { "style": { "height": "36px" } }).form; //创建窗体
  7199. _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); } }
  7200. break;
  7201. case "dataBoardNew": //数据看板
  7202. _formdiv = new U.UF.UI.form(
  7203. "综合看板",
  7204. $$("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 }), {
  7205. "id": "dataBoardNew",
  7206. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7207. "onresize": function () { }
  7208. }, {
  7209. closecallback: function () { }
  7210. }, { "style": { "height": "36px" } }).form; //创建窗体
  7211. _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); } }
  7212. break;
  7213. case "dataBoardTest": //数据看板
  7214. _formdiv = new U.UF.UI.form(
  7215. "评测看板",
  7216. $$("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 }), {
  7217. "id": "dataBoardTest",
  7218. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7219. "onresize": function () { }
  7220. }, {
  7221. closecallback: function () { }
  7222. }, { "style": { "height": "36px" } }).form; //创建窗体
  7223. _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); } }
  7224. break;
  7225. case "AIAnalyse": //AI共创
  7226. _formdiv = new U.UF.UI.form(
  7227. "AI分析",
  7228. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7229. "id": "AIAnalyse",
  7230. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7231. "onresize": function () { }
  7232. }, {
  7233. closecallback: function () { }
  7234. }, { "style": { "height": "36px" } }).form; //创建窗体
  7235. _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); } }
  7236. break;
  7237. case "studioCourse": //AI共创
  7238. _formdiv = new U.UF.UI.form(
  7239. "工作管理",
  7240. $$("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 }), {
  7241. "id": "studioCourse",
  7242. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7243. "onresize": function () { }
  7244. }, {
  7245. closecallback: function () { }
  7246. }, { "style": { "height": "36px" } }).form; //创建窗体
  7247. _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); } }
  7248. break;
  7249. case "studioIndex": //AI共创
  7250. _formdiv = new U.UF.UI.form(
  7251. "工作中心",
  7252. $$("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 }), {
  7253. "id": "studioIndex",
  7254. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7255. "onresize": function () { }
  7256. }, {
  7257. closecallback: function () { }
  7258. }, { "style": { "height": "36px" } }).form; //创建窗体
  7259. _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); } }
  7260. break;
  7261. case "source":
  7262. _formdiv = new U.UF.UI.form(
  7263. "教学资源",
  7264. $$("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 }), {
  7265. "id": "source",
  7266. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7267. "onresize": function () { }
  7268. }, {
  7269. closecallback: function () { }
  7270. }, { "style": { "height": "36px" } }).form; //创建窗体
  7271. _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); } }
  7272. break;
  7273. case "testTeacher":
  7274. _formdiv = new U.UF.UI.form(
  7275. "智能表单",
  7276. $$("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 }), {
  7277. "id": "testTeacher",
  7278. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7279. "onresize": function () { }
  7280. }, {
  7281. closecallback: function () { }
  7282. }, { "style": { "height": "36px" } }).form; //创建窗体
  7283. _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); } }
  7284. break;
  7285. case "testStudent":
  7286. _formdiv = new U.UF.UI.form(
  7287. "教师中心",
  7288. $$("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 }), {
  7289. "id": "testStudent",
  7290. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7291. "onresize": function () { }
  7292. }, {
  7293. closecallback: function () { }
  7294. }, { "style": { "height": "36px" } }).form; //创建窗体
  7295. _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); } }
  7296. break;
  7297. case "testTeacherSies":
  7298. _formdiv = new U.UF.UI.form(
  7299. "教师管理",
  7300. $$("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 }), {
  7301. "id": "testTeacherSies",
  7302. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7303. "onresize": function () { }
  7304. }, {
  7305. closecallback: function () { }
  7306. }, { "style": { "height": "36px" } }).form; //创建窗体
  7307. _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); } }
  7308. break;
  7309. case "testStudentSies":
  7310. _formdiv = new U.UF.UI.form(
  7311. "教师中心",
  7312. $$("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 }), {
  7313. "id": "testStudentSies",
  7314. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7315. "onresize": function () { }
  7316. }, {
  7317. closecallback: function () { }
  7318. }, { "style": { "height": "36px" } }).form; //创建窗体
  7319. _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); } }
  7320. break;
  7321. case "ytpbl": //消息通知
  7322. _formdiv = new U.UF.UI.form(
  7323. "案例征集",
  7324. $$("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 }), {
  7325. "id": "ytpbl",
  7326. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7327. "onresize": function () { }
  7328. }, {
  7329. closecallback: function () { }
  7330. }, { "style": { "height": "36px" } }).form; //创建窗体
  7331. _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); } }
  7332. // 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");
  7333. break;
  7334. case "aiCourseResource": //人工智能窗体
  7335. _formdiv = new U.UF.UI.form(
  7336. false,
  7337. $$("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 }), {
  7338. "id": "aiCourseResource",
  7339. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7340. "onresize": function () { },
  7341. "isdrag": false,
  7342. }, {
  7343. closecallback: function () { }
  7344. }, { "style": { "height": "36px" } }).form; //创建窗体
  7345. _taskbar = ''
  7346. break;
  7347. case "szdjgCocooroboX": //图形化编程
  7348. _formdiv = new U.UF.UI.form(
  7349. "图形化编程",
  7350. $$("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" }), {
  7351. "id": "szdjgCocooroboX",
  7352. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7353. "onresize": function () { }
  7354. }, {
  7355. closecallback: function () { }
  7356. }, { "style": { "height": "36px" } }).form; //创建窗体
  7357. _taskbar = ''
  7358. break;
  7359. case "szdjgPython": //python编程
  7360. _formdiv = new U.UF.UI.form(
  7361. "Python编程",
  7362. $$("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" }), {
  7363. "id": "szdjgPython",
  7364. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7365. "onresize": function () { }
  7366. }, {
  7367. closecallback: function () { }
  7368. }, { "style": { "height": "36px" } }).form; //创建窗体
  7369. _taskbar = ''
  7370. break;
  7371. case "Record":
  7372. _formdiv = new U.UF.UI.form(
  7373. "观察记录",
  7374. $$("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 }), {
  7375. "id": "Record",
  7376. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7377. "onresize": function () { }
  7378. }, {
  7379. closecallback: function () { }
  7380. }, { "style": { "height": "36px" } }).form; //创建窗体
  7381. _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); } }
  7382. break;
  7383. case "aigptCourse":
  7384. _formdiv = new U.UF.UI.form(
  7385. "AI智能体",
  7386. $$("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' }), {
  7387. "id": "aigptCourse",
  7388. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7389. "onresize": function () { }
  7390. }, {
  7391. closecallback: function () { }
  7392. }, { "style": { "height": "36px" } }).form; //创建窗体
  7393. _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); } }
  7394. break;
  7395. case "classroomObservation":
  7396. _formdiv = new U.UF.UI.form(
  7397. "课堂观察",
  7398. $$("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 }), {
  7399. "id": "classroomObservation",
  7400. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7401. "onresize": function () { }
  7402. }, {
  7403. closecallback: function () { }
  7404. }, { "style": { "height": "36px" } }).form; //创建窗体
  7405. _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); } }
  7406. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7407. break;
  7408. case "pblCourse":
  7409. _formdiv = new U.UF.UI.form(
  7410. "学生PBL",
  7411. $$("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 }), {
  7412. "id": "pblCourse",
  7413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7414. "onresize": function () { }
  7415. }, {
  7416. closecallback: function () { }
  7417. }, { "style": { "height": "36px" } }).form; //创建窗体
  7418. _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); } }
  7419. break;
  7420. case "appStore":
  7421. U.MD.D.addOp('','cocoflowOpen','')
  7422. _formdiv = new U.UF.UI.form(
  7423. "CocoFlow",
  7424. $$("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 }), {
  7425. "id": "appStore",
  7426. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7427. "onresize": function () { }
  7428. }, {
  7429. closecallback: function () { }
  7430. }, { "style": { "height": "36px" } }).form; //创建窗体
  7431. _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); } }
  7432. break;
  7433. case "sassPlatform":
  7434. _formdiv = new U.UF.UI.form(
  7435. "Sass通用后台管理",
  7436. $$("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 }), {
  7437. "id": "sassPlatform",
  7438. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7439. "onresize": function () { }
  7440. }, {
  7441. closecallback: function () { }
  7442. }, { "style": { "height": "36px" } }).form; //创建窗体
  7443. _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); } }
  7444. break;
  7445. case "EDU":
  7446. _formdiv = new U.UF.UI.form(
  7447. "EDU",
  7448. $$("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" }), {
  7449. "id": "EDU",
  7450. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7451. "onresize": function () { }
  7452. }, {
  7453. closecallback: function () { }
  7454. }, { "style": { "height": "36px" } }).form; //创建窗体
  7455. _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); } }
  7456. break;
  7457. case "knowledge":
  7458. _formdiv = new U.UF.UI.form(
  7459. "知识库",
  7460. $$("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 }), {
  7461. "id": "knowledge",
  7462. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7463. "onresize": function () { }
  7464. }, {
  7465. closecallback: function () { }
  7466. }, { "style": { "height": "36px" } }).form; //创建窗体
  7467. _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); } }
  7468. break;
  7469. case "userExamine":
  7470. _formdiv = new U.UF.UI.form(
  7471. "账号申请",
  7472. $$("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" }), {
  7473. "id": "userExamine",
  7474. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7475. "onresize": function () { }
  7476. }, {
  7477. closecallback: function () { }
  7478. }, { "style": { "height": "36px" } }).form; //创建窗体
  7479. break;
  7480. case "cocoflowDeskTop": //cocoflowDeskTop
  7481. _formdiv = new U.UF.UI.form(
  7482. false,
  7483. $$("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 }), {
  7484. "id": "cocoflowDeskTop",
  7485. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7486. "onresize": function () { },
  7487. }, {
  7488. closecallback: function () { },
  7489. "isdrag": false,
  7490. }, { "style": { "height": "36px" } }).form; //创建窗体
  7491. _taskbar = ''
  7492. break;
  7493. case "liyuanLogin": //liyuanLogin
  7494. _formdiv = new U.UF.UI.form(
  7495. false,
  7496. $$("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 }), {
  7497. "id": "liyuanLogin",
  7498. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7499. "onresize": function () { },
  7500. }, {
  7501. closecallback: function () { },
  7502. isdrag: false,
  7503. isstretching: false,
  7504. isenlarge: false,
  7505. isnarrow: false
  7506. }, { "style": { "height": "36px" } }).form; //创建窗体
  7507. _taskbar = ''
  7508. break;
  7509. case "updatePaDialog":
  7510. _formdiv = new U.UF.UI.form(
  7511. "密码修改",
  7512. $$("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 }), {
  7513. "id": "updatePaDialog",
  7514. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7515. "onresize": function () { },
  7516. }, {
  7517. closecallback: function () { },
  7518. isclose: false,
  7519. isdrag: false,
  7520. isstretching: false,
  7521. isenlarge: false,
  7522. isnarrow: false
  7523. }, { "style": { "height": "36px" } }).form; //创建窗体
  7524. break;
  7525. }
  7526. //U.MD.D.I.openClick(str);
  7527. //如果有任务栏信息
  7528. if (_taskbar) {
  7529. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7530. }
  7531. if(iframeBool){
  7532. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7533. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7534. // console.log("iframe进入");
  7535. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7536. // };
  7537. setTimeout(() => {
  7538. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7539. }, 2000);
  7540. }
  7541. }
  7542. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7543. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7544. _userinfo = US.userInfo, //登录用户信息
  7545. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7546. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7547. let iframeBool = true;
  7548. let queryString = ''
  7549. if(array && array.length){
  7550. const paramsMap = {
  7551. userid: _userid,
  7552. org: _org,
  7553. oid: _oid,
  7554. type: _type,
  7555. role: _role,
  7556. classId: _classId,
  7557. TscreenType: _TscreenType,
  7558. SscreenType: _SscreenType
  7559. };
  7560. const canshu = array
  7561. .filter(param => paramsMap[param] !== undefined)
  7562. .map(param => `${param}=${paramsMap[param]}`);
  7563. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7564. }
  7565. let _url = url + queryString
  7566. if(U.UF.UI.form.allForm[id]){
  7567. iframeBool = false
  7568. }
  7569. _formdiv = new U.UF.UI.form(
  7570. false,
  7571. $$("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 }),
  7572. {
  7573. "id": id,
  7574. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7575. "onresize": function () { },
  7576. },
  7577. {
  7578. closecallback: function () { },
  7579. isdrag: false,
  7580. isstretching: false,
  7581. isenlarge: false,
  7582. isnarrow: false
  7583. },
  7584. { "style": { "height": "36px" } },
  7585. undefined,
  7586. undefined,
  7587. dom
  7588. ).form
  7589. }
  7590. // U.MD.D.I.openClick = function(str){
  7591. // var click = '';
  7592. // switch(str){
  7593. // case 'friend':
  7594. // click = '我的好友';
  7595. // break;
  7596. // case 'domain':
  7597. // click = '域名管理';
  7598. // break;
  7599. // case 'disk':
  7600. // click = '我的云盘';
  7601. // break;
  7602. // case 'word':
  7603. // click = 'Word';
  7604. // break;
  7605. // case 'excel':
  7606. // click = 'Execl';
  7607. // break;
  7608. // case 'txt':
  7609. // click = '文本文件';
  7610. // break;
  7611. // case 'lookupFriend':
  7612. // click = '查找好友';
  7613. // break;
  7614. // case 'ftp':
  7615. // click = 'FTP';
  7616. // break;
  7617. // case 'group':
  7618. // click = '群组';
  7619. // break;
  7620. // case 'set':
  7621. // click = '我的设置';
  7622. // break;
  7623. // case 'systemSet':
  7624. // click = '系统设置';
  7625. // break;
  7626. // case 'boomYun':
  7627. // click = '互联办公';
  7628. // break;
  7629. // case 'xz':
  7630. // click = '云端下载';
  7631. // break;
  7632. // case 'client':
  7633. // click = '有思浏览器';
  7634. // break;
  7635. // case 'backEndProgramming':
  7636. // click = '在线后台编程';
  7637. // break;
  7638. // case 'frontEndProgramming':
  7639. // click = '在线前端编程';
  7640. // break;
  7641. // default: break;
  7642. // }
  7643. // if(U.MD.D.I.Ip && click){
  7644. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7645. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7646. // })
  7647. // }
  7648. // }
  7649. /**
  7650. *函数作用:ajax简易函数,使用post格式
  7651. *@param url {data} 后台地址
  7652. *@param data {data} 参数json
  7653. *@param fn {data} 回调函数
  7654. *
  7655. */
  7656. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7657. // var xhr = new XMLHttpRequest();
  7658. // xhr.open("GET",url,true);
  7659. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7660. // xhr.onreadystatechange = function(){
  7661. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7662. // fn.call(this,xhr.responseText);
  7663. // }
  7664. // };
  7665. // xhr.send();
  7666. // }
  7667. /*判断是否是内网IP*/
  7668. // U.MD.D.I.isInnerIPFn = function(str){
  7669. // var curPageUrl = str;
  7670. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7671. // curPageUrl =curPageUrl.replace(reg1,'');
  7672. // // console.log('curPageUrl-1 '+curPageUrl);
  7673. // var reg2 = /\:+/g;//替换冒号为一点
  7674. // curPageUrl =curPageUrl.replace(reg2,'.');
  7675. // // console.log('curPageUrl-2 '+curPageUrl);
  7676. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7677. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7678. // if(curPageUrl[2] != '16'){
  7679. // return ipAddress;
  7680. // }else{
  7681. // return false;
  7682. // }
  7683. // }
  7684. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7685. // //compatibility for firefox and chrome
  7686. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7687. // var pc = new myPeerConnection({
  7688. // iceServers: []
  7689. // }),
  7690. // noop = function() {},
  7691. // localIPs = {},
  7692. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7693. // key;
  7694. // function iterateIP(ip) {
  7695. // if (!localIPs[ip]) onNewIP(ip);
  7696. // localIPs[ip] = true;
  7697. // }
  7698. // //create a bogus data channel
  7699. // pc.createDataChannel("");
  7700. // // create offer and set local description
  7701. // pc.createOffer().then(function(sdp) {
  7702. // sdp.sdp.split('\n').forEach(function(line) {
  7703. // if (line.indexOf('candidate') < 0) return;
  7704. // line.match(ipRegex).forEach(iterateIP);
  7705. // });
  7706. // pc.setLocalDescription(sdp, noop, noop);
  7707. // }).catch(function(reason) {
  7708. // // An error occurred, so handle the failure to connect
  7709. // });
  7710. // //sten for candidate events
  7711. // pc.onicecandidate = function(ice) {
  7712. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7713. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7714. // };
  7715. // }
  7716. // U.MD.D.I.getUserIpBool = function(callback){
  7717. // U.MD.D.I.getUserIP(function(ip){
  7718. // alert("Got IP! :" + ip);
  7719. // });
  7720. //}
  7721. //#endregion
  7722. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7723. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7724. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7725. _userinfo = US.userInfo, //登录用户信息
  7726. _userid = US.userInfo.userid //登录用户id
  7727. let _iframe;
  7728. let _cid = cid,
  7729. _stage = stage,
  7730. _task = task,
  7731. _tool = tool;
  7732. var _jie = $$("div", {
  7733. "style": {
  7734. "position": "absolute",
  7735. "bottom": "50px",
  7736. "right": "50px",
  7737. "zIndex": "9999",
  7738. "backgroundColor": "#2268bc",
  7739. "color": "#fff",
  7740. "padding": "12px 20px",
  7741. "cursor": "pointer",
  7742. "borderRadius": "4px",
  7743. },
  7744. "innerHTML": "提交作业"
  7745. })
  7746. let aTool = ''
  7747. let _loading = document.createElement('div')
  7748. _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;"
  7749. // _loading.id = "";
  7750. let _lchild = document.createElement('div')
  7751. let _limg = document.createElement('img')
  7752. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7753. _limg.style = "width: 26px;margin-right: 10px;"
  7754. _lchild.appendChild(_limg)
  7755. let _lspan = document.createElement('span')
  7756. _lspan.innerHTML = "上传中..."
  7757. _lchild.appendChild(_lspan)
  7758. _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%);"
  7759. _loading.appendChild(_lchild)
  7760. var _box = $$('div', {
  7761. "style": {
  7762. "position": "relative",
  7763. "width": "100%",
  7764. "height": "100%",
  7765. },
  7766. })
  7767. _box.appendChild(_loading)
  7768. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7769. switch (str) {
  7770. case "whiteboard":
  7771. aTool = 1;
  7772. _iframe = $$("iframe", {
  7773. "frameborder": "no",
  7774. "border": "0",
  7775. "scrolling ": "no",
  7776. "style": {
  7777. "cssText": "border:0;width:100%;height:100%"
  7778. },
  7779. "src": "https://beta.iwb.cocorobo.cn/"
  7780. })
  7781. _box.appendChild(_iframe);
  7782. _box.appendChild(_jie);
  7783. _formdiv = new U.UF.UI.form(
  7784. "电子白板",
  7785. _box, {
  7786. "id": "whiteboard" + cid + stage + task + tool,
  7787. "style": {
  7788. "width": "90%",
  7789. "height": "90%",
  7790. "overflow": 'hidden'
  7791. },
  7792. "onresize": function () { }
  7793. }, {
  7794. closecallback: function () { }
  7795. }, {
  7796. "style": {
  7797. "height": "36px"
  7798. }
  7799. }).form; //创建窗体
  7800. _taskbar = {
  7801. "id": str + _formdiv.id,
  7802. "style": {
  7803. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7804. },
  7805. "name": "电子白板",
  7806. "forms": _formdiv,
  7807. "click": function () {
  7808. U.MD.D.I.openApplication(str, obj, info);
  7809. }
  7810. }
  7811. break;
  7812. case "mind":
  7813. aTool = 3;
  7814. _iframe = $$("iframe", {
  7815. "frameborder": "no",
  7816. "border": "0",
  7817. "scrolling ": "no",
  7818. "style": {
  7819. "cssText": "border:0;width:100%;height:100%"
  7820. },
  7821. "src": "/kityminder-editor/dist/index.html"
  7822. })
  7823. _box.appendChild(_iframe);
  7824. _box.appendChild(_jie);
  7825. _formdiv = new U.UF.UI.form(
  7826. "思维导图",
  7827. _box, { //"/jsmind/example/demo.html"
  7828. "id": "mind" + cid + stage + task + tool,
  7829. "style": {
  7830. "width": "90%",
  7831. "height": "90%",
  7832. "overflow": 'hidden'
  7833. },
  7834. "onresize": function () { }
  7835. }, {
  7836. closecallback: function () { }
  7837. }, {
  7838. "style": {
  7839. "height": "36px"
  7840. }
  7841. }).form; //创建窗体
  7842. _taskbar = {
  7843. "id": str + _formdiv.id,
  7844. "style": {
  7845. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7846. },
  7847. "name": "思维导图",
  7848. "forms": _formdiv,
  7849. "click": function () {
  7850. U.MD.D.I.openApplication(str, obj, info);
  7851. }
  7852. }
  7853. break;
  7854. case "MindMap":
  7855. aTool = 3;
  7856. _iframe = $$("iframe", {
  7857. "frameborder": "no",
  7858. "border": "0",
  7859. "scrolling ": "no",
  7860. "style": {
  7861. "cssText": "border:0;width:100%;height:100%"
  7862. },
  7863. "src": "//cloud.cocorobo.cn/mind/"
  7864. })
  7865. _box.appendChild(_iframe);
  7866. _box.appendChild(_jie);
  7867. _formdiv = new U.UF.UI.form(
  7868. "思维导图",
  7869. _box, { //"/jsmind/example/demo.html"
  7870. "id": "mind" + cid + stage + task + tool,
  7871. "style": {
  7872. "width": "90%",
  7873. "height": "90%",
  7874. "overflow": 'hidden'
  7875. },
  7876. "onresize": function () { }
  7877. }, {
  7878. closecallback: function () { }
  7879. }, {
  7880. "style": {
  7881. "height": "36px"
  7882. }
  7883. }).form; //创建窗体
  7884. _taskbar = {
  7885. "id": str + _formdiv.id,
  7886. "style": {
  7887. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7888. },
  7889. "name": "思维导图",
  7890. "forms": _formdiv,
  7891. "click": function () {
  7892. U.MD.D.I.openApplication(str, obj, info);
  7893. }
  7894. }
  7895. break;
  7896. case "doc":
  7897. aTool = 6;
  7898. _iframe = $$("iframe", {
  7899. "frameborder": "no",
  7900. "border": "0",
  7901. "scrolling ": "no",
  7902. "style": {
  7903. "cssText": "border:0;width:100%;height:100%"
  7904. },
  7905. "src": "/Office/Word/WordEditArea.htm"
  7906. })
  7907. _box.appendChild(_iframe);
  7908. _box.appendChild(_jie);
  7909. _formdiv = new U.UF.UI.form(
  7910. "协同文档",
  7911. _box, {
  7912. "id": "doc" + cid + stage + task + tool,
  7913. "style": {
  7914. "width": "90%",
  7915. "height": "90%",
  7916. "overflow": 'hidden'
  7917. },
  7918. "onresize": function () { }
  7919. }, {
  7920. closecallback: function () { }
  7921. }, {
  7922. "style": {
  7923. "height": "36px"
  7924. }
  7925. }).form; //创建窗体
  7926. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7927. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7928. })
  7929. _taskbar = {
  7930. "id": str + _formdiv.id,
  7931. "style": {
  7932. "backgroundImage": "url(/img/icon/doc.png)"
  7933. },
  7934. "name": "协同文档",
  7935. "forms": _formdiv,
  7936. "click": function () {
  7937. U.MD.D.I.openApplication(str, obj, info);
  7938. }
  7939. }
  7940. break;
  7941. case "mindNetwork": //好友打开
  7942. aTool = 7;
  7943. _iframe = $$("iframe", {
  7944. "webkitallowfullscreen": "",
  7945. "mozallowfullscreen": "",
  7946. "allowfullscreen": "",
  7947. "frameborder": "no",
  7948. "border": "0",
  7949. "scrolling ": "no",
  7950. "style": {
  7951. "cssText": "border:0; width:100%; height:100%;"
  7952. },
  7953. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7954. })
  7955. _box.appendChild(_iframe);
  7956. _box.appendChild(_jie);
  7957. _formdiv = new U.UF.UI.form(
  7958. "思维网格",
  7959. _box, {
  7960. "id": "mindNetwork" + cid + stage + task + tool,
  7961. "style": {
  7962. "width": "90%",
  7963. "height": "90%",
  7964. "overflow": 'hidden'
  7965. },
  7966. "onresize": function () { }
  7967. }, {
  7968. closecallback: function () { }
  7969. }, {
  7970. "style": {
  7971. "height": "36px"
  7972. }
  7973. }).form; //创建窗体
  7974. _taskbar = {
  7975. "id": str + _formdiv.id,
  7976. "style": {
  7977. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7978. },
  7979. "name": "思维网格",
  7980. "forms": _formdiv,
  7981. "click": function () {
  7982. U.MD.D.I.openApplication(str, obj, info);
  7983. }
  7984. }
  7985. break;
  7986. case "courseDesign":
  7987. _iframe = $$("iframe", {
  7988. "webkitallowfullscreen": "",
  7989. "mozallowfullscreen": "",
  7990. "allowfullscreen": "",
  7991. "frameborder": "no",
  7992. "border": "0",
  7993. "scrolling ": "no",
  7994. "style": {
  7995. "cssText": "border:0; width:100%; height:100%;"
  7996. },
  7997. "src": "/course-design-vue"
  7998. })
  7999. _box.appendChild(_iframe);
  8000. _box.appendChild(_jie);
  8001. _formdiv = new U.UF.UI.form(
  8002. "项目设计",
  8003. _box, {
  8004. "id": "courseDesign" + cid + stage + task + tool,
  8005. "style": {
  8006. "width": "90%",
  8007. "height": "90%",
  8008. "overflow": 'hidden'
  8009. },
  8010. "onresize": function () { }
  8011. }, {
  8012. closecallback: function () { }
  8013. }, {
  8014. "style": {
  8015. "height": "36px"
  8016. }
  8017. }).form; //创建窗体
  8018. _taskbar = {
  8019. "id": str + _formdiv.id,
  8020. "style": {
  8021. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8022. },
  8023. "name": "项目设计",
  8024. "forms": _formdiv,
  8025. "click": function () {
  8026. U.MD.D.I.openApplication(str, obj, info);
  8027. }
  8028. }
  8029. break;
  8030. }
  8031. const script1 = document.createElement("script");
  8032. script1.type = "text/javascript";
  8033. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8034. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8035. const script2 = document.createElement("script");
  8036. script2.type = "text/javascript";
  8037. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8038. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8039. const script3 = document.createElement("script");
  8040. script3.type = "text/javascript";
  8041. script3.charset = "UTF-8";
  8042. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8043. const script4 = document.createElement("script");
  8044. script4.type = "text/javascript";
  8045. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8046. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8047. if (_iframe) {
  8048. if (str == 'doc') {
  8049. _iframe = _formdiv.querySelector('iframe')
  8050. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8051. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8052. _iframe.contentWindow.document.body.appendChild(script1);
  8053. _iframe.contentWindow.document.body.appendChild(script2);
  8054. // _iframe.contentWindow.document.body.appendChild(script3);
  8055. _iframe.contentWindow.document.body.appendChild(script4);
  8056. })
  8057. if (onloadListener) {
  8058. _iframe.contentDocument.location.reload()
  8059. } else {
  8060. _iframe.contentDocument.location.reload()
  8061. }
  8062. } else if (str == 'courseDesign') {
  8063. U.UF.DL.iframeLoad(_iframe, function () {
  8064. // _iframe.contentWindow.U.MD.O.W.load();
  8065. // _iframe.contentWindow.document.body.appendChild(script1);
  8066. _iframe.contentWindow.document.body.appendChild(script2);
  8067. _iframe.contentWindow.document.body.appendChild(script4);
  8068. })
  8069. } else if (str == 'mind') {
  8070. _iframe = _formdiv.querySelector('iframe')
  8071. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8072. //
  8073. _iframe.contentWindow.document.body.appendChild(script1);
  8074. _iframe.contentWindow.document.body.appendChild(script2);
  8075. _iframe.contentWindow.document.body.appendChild(script4);
  8076. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8077. })
  8078. if (onloadListener) {
  8079. _iframe.contentDocument.location.reload()
  8080. } else {
  8081. _iframe.contentDocument.location.reload()
  8082. }
  8083. } else if (str == 'whiteboard') {
  8084. _iframe = _formdiv.querySelector('iframe')
  8085. let onloadListener = _iframe.onload = () => {
  8086. _iframe.contentWindow.document.body.appendChild(script1);
  8087. _iframe.contentWindow.document.body.appendChild(script2);
  8088. _iframe.contentWindow.document.body.appendChild(script4);
  8089. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8090. };
  8091. // if (onloadListener) {
  8092. // try {
  8093. // _iframe.src += "?cocorobo="+new Date().getTime()
  8094. // _iframe.contentWindow.document.location.reload()
  8095. // } catch (error) {
  8096. // }
  8097. // } else {
  8098. // _iframe.contentDocument.location.reload()
  8099. // }
  8100. } else {
  8101. _iframe.onload = () => {
  8102. _iframe.contentWindow.document.body.appendChild(script1);
  8103. _iframe.contentWindow.document.body.appendChild(script2);
  8104. // _iframe.contentWindow.document.body.appendChild(script3);
  8105. _iframe.contentWindow.document.body.appendChild(script4);
  8106. };
  8107. }
  8108. _jie.onclick = async () => {
  8109. let text = ''
  8110. if (aTool == 1) {
  8111. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8112. } else if (aTool == 6) {
  8113. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8114. } else if (aTool == 3) {
  8115. text = await U.MD.D.I.getEditorContent(_iframe);
  8116. }
  8117. _loading.style.display = 'flex'
  8118. console.log(_loading);
  8119. var _ajs = _iframe.contentWindow.document.createElement("script");
  8120. _ajs.type = "text/javascript";
  8121. _ajs.innerHTML =
  8122. // 'console.log(' + _loading + ');\n' +
  8123. 'var _js = document.createElement("script");\n' +
  8124. '_js.type="text/javascript";\n' +
  8125. '_js.charset="UTF-8";\n' +
  8126. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8127. "_js.onload = function(){\n" +
  8128. ' var a = document.getElementsByTagName("img")\n' +
  8129. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8130. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8131. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8132. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8133. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8134. "beforeUpload_shishi(file," +
  8135. "'" +
  8136. _userid +
  8137. "'" +
  8138. ", " +
  8139. "'" +
  8140. _cid +
  8141. "'" +
  8142. ", " +
  8143. "'" +
  8144. _stage +
  8145. "'" +
  8146. ", " +
  8147. "'" +
  8148. _task +
  8149. "'" +
  8150. ", " +
  8151. "'" +
  8152. _tool +
  8153. "'" +
  8154. ", " +
  8155. "'" +
  8156. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8157. "'" +
  8158. ", " +
  8159. "'" +
  8160. aTool +
  8161. "'" +
  8162. ", " +
  8163. "`" +
  8164. text +
  8165. "`" +
  8166. ")\n" +
  8167. " });\n" +
  8168. "}\n" +
  8169. "document.head.appendChild(_js);\n";
  8170. _iframe.contentWindow.document.head.appendChild(_ajs);
  8171. }
  8172. }
  8173. //U.MD.D.I.openClick(str);
  8174. //如果有任务栏信息
  8175. // if (_taskbar) {
  8176. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8177. // }
  8178. }
  8179. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8180. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8181. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8182. _userinfo = US.userInfo, //登录用户信息
  8183. _userid = US.userInfo.userid //登录用户id
  8184. let _iframe;
  8185. let _cid = cid,
  8186. _stage = stage,
  8187. _task = task,
  8188. _tool = tool;
  8189. var _jie = $$("div", {
  8190. "style": {
  8191. "position": "absolute",
  8192. "bottom": "50px",
  8193. "right": "50px",
  8194. "zIndex": "9999",
  8195. "backgroundColor": "#2268bc",
  8196. "color": "#fff",
  8197. "padding": "12px 20px",
  8198. "cursor": "pointer",
  8199. "borderRadius": "4px",
  8200. },
  8201. "innerHTML": "提交作业"
  8202. })
  8203. let aTool = ''
  8204. let _loading = document.createElement('div')
  8205. _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;"
  8206. // _loading.id = "";
  8207. let _lchild = document.createElement('div')
  8208. let _limg = document.createElement('img')
  8209. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8210. _limg.style = "width: 26px;margin-right: 10px;"
  8211. _lchild.appendChild(_limg)
  8212. let _lspan = document.createElement('span')
  8213. _lspan.innerHTML = "上传中..."
  8214. _lchild.appendChild(_lspan)
  8215. _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%);"
  8216. _loading.appendChild(_lchild)
  8217. let _box = $$('div', {
  8218. "style": {
  8219. "position": "relative",
  8220. "width": "100%",
  8221. "height": "100%",
  8222. },
  8223. })
  8224. _box.appendChild(_loading)
  8225. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8226. switch (str) {
  8227. case "whiteboard":
  8228. aTool = 1;
  8229. _iframe = $$("iframe", {
  8230. "frameborder": "no",
  8231. "border": "0",
  8232. "scrolling ": "no",
  8233. "style": {
  8234. "cssText": "border:0;width:100%;height:100%"
  8235. },
  8236. "src": "https://beta.iwb.cocorobo.cn/"
  8237. })
  8238. _box.appendChild(_iframe);
  8239. _box.appendChild(_jie);
  8240. _formdiv = new U.UF.UI.form(
  8241. "电子白板",
  8242. _box, {
  8243. "id": "whiteboard" + cid + stage + task + tool,
  8244. "style": {
  8245. "width": "90%",
  8246. "height": "90%",
  8247. "overflow": 'hidden'
  8248. },
  8249. "onresize": function () { }
  8250. }, {
  8251. closecallback: function () { }
  8252. }, {
  8253. "style": {
  8254. "height": "36px"
  8255. }
  8256. }).form; //创建窗体
  8257. _taskbar = {
  8258. "id": str + _formdiv.id,
  8259. "style": {
  8260. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8261. },
  8262. "name": "电子白板",
  8263. "forms": _formdiv,
  8264. "click": function () {
  8265. U.MD.D.I.openApplication(str, obj, info);
  8266. }
  8267. }
  8268. break;
  8269. case "mind":
  8270. aTool = 3;
  8271. _iframe = $$("iframe", {
  8272. "frameborder": "no",
  8273. "border": "0",
  8274. "scrolling ": "no",
  8275. "style": {
  8276. "cssText": "border:0;width:100%;height:100%"
  8277. },
  8278. "src": "/kityminder-editor/dist/index.html"
  8279. })
  8280. _box.appendChild(_iframe);
  8281. _box.appendChild(_jie);
  8282. _formdiv = new U.UF.UI.form(
  8283. "思维导图",
  8284. _box, { //"/jsmind/example/demo.html"
  8285. "id": "mind" + cid + stage + task + tool,
  8286. "style": {
  8287. "width": "90%",
  8288. "height": "90%",
  8289. "overflow": 'hidden'
  8290. },
  8291. "onresize": function () { }
  8292. }, {
  8293. closecallback: function () { }
  8294. }, {
  8295. "style": {
  8296. "height": "36px"
  8297. }
  8298. }).form; //创建窗体
  8299. _taskbar = {
  8300. "id": str + _formdiv.id,
  8301. "style": {
  8302. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8303. },
  8304. "name": "思维导图",
  8305. "forms": _formdiv,
  8306. "click": function () {
  8307. U.MD.D.I.openApplication(str, obj, info);
  8308. }
  8309. }
  8310. break;
  8311. case "MindMap":
  8312. aTool = 3;
  8313. _iframe = $$("iframe", {
  8314. "frameborder": "no",
  8315. "border": "0",
  8316. "scrolling ": "no",
  8317. "style": {
  8318. "cssText": "border:0;width:100%;height:100%"
  8319. },
  8320. "src": "//cloud.cocorobo.cn/mind/"
  8321. })
  8322. _box.appendChild(_iframe);
  8323. _box.appendChild(_jie);
  8324. _formdiv = new U.UF.UI.form(
  8325. "思维导图",
  8326. _box, { //"/jsmind/example/demo.html"
  8327. "id": "mind" + cid + stage + task + tool,
  8328. "style": {
  8329. "width": "90%",
  8330. "height": "90%",
  8331. "overflow": 'hidden'
  8332. },
  8333. "onresize": function () { }
  8334. }, {
  8335. closecallback: function () { }
  8336. }, {
  8337. "style": {
  8338. "height": "36px"
  8339. }
  8340. }).form; //创建窗体
  8341. _taskbar = {
  8342. "id": str + _formdiv.id,
  8343. "style": {
  8344. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8345. },
  8346. "name": "思维导图",
  8347. "forms": _formdiv,
  8348. "click": function () {
  8349. U.MD.D.I.openApplication(str, obj, info);
  8350. }
  8351. }
  8352. break;
  8353. case "doc":
  8354. aTool = 6;
  8355. _iframe = $$("iframe", {
  8356. "frameborder": "no",
  8357. "border": "0",
  8358. "scrolling ": "no",
  8359. "style": {
  8360. "cssText": "border:0;width:100%;height:100%"
  8361. },
  8362. "src": "/Office/Word/WordEditArea.htm"
  8363. })
  8364. _box.appendChild(_iframe);
  8365. _box.appendChild(_jie);
  8366. _formdiv = new U.UF.UI.form(
  8367. "协同文档",
  8368. _box, {
  8369. "id": "doc" + cid + stage + task + tool,
  8370. "style": {
  8371. "width": "90%",
  8372. "height": "90%",
  8373. "overflow": 'hidden'
  8374. },
  8375. "onresize": function () { }
  8376. }, {
  8377. closecallback: function () { }
  8378. }, {
  8379. "style": {
  8380. "height": "36px"
  8381. }
  8382. }).form; //创建窗体
  8383. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8384. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8385. })
  8386. _taskbar = {
  8387. "id": str + _formdiv.id,
  8388. "style": {
  8389. "backgroundImage": "url(/img/icon/doc.png)"
  8390. },
  8391. "name": "协同文档",
  8392. "forms": _formdiv,
  8393. "click": function () {
  8394. U.MD.D.I.openApplication(str, obj, info);
  8395. }
  8396. }
  8397. break;
  8398. case "mindNetwork": //好友打开
  8399. aTool = 7;
  8400. _iframe = $$("iframe", {
  8401. "webkitallowfullscreen": "",
  8402. "mozallowfullscreen": "",
  8403. "allowfullscreen": "",
  8404. "frameborder": "no",
  8405. "border": "0",
  8406. "scrolling ": "no",
  8407. "style": {
  8408. "cssText": "border:0; width:100%; height:100%;"
  8409. },
  8410. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8411. })
  8412. _box.appendChild(_iframe);
  8413. _box.appendChild(_jie);
  8414. _formdiv = new U.UF.UI.form(
  8415. "思维网格",
  8416. _box, {
  8417. "id": "mindNetwork" + cid + stage + task + tool,
  8418. "style": {
  8419. "width": "90%",
  8420. "height": "90%",
  8421. "overflow": 'hidden'
  8422. },
  8423. "onresize": function () { }
  8424. }, {
  8425. closecallback: function () { }
  8426. }, {
  8427. "style": {
  8428. "height": "36px"
  8429. }
  8430. }).form; //创建窗体
  8431. _taskbar = {
  8432. "id": str + _formdiv.id,
  8433. "style": {
  8434. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8435. },
  8436. "name": "思维网格",
  8437. "forms": _formdiv,
  8438. "click": function () {
  8439. U.MD.D.I.openApplication(str, obj, info);
  8440. }
  8441. }
  8442. break;
  8443. case "courseDesign":
  8444. _iframe = $$("iframe", {
  8445. "webkitallowfullscreen": "",
  8446. "mozallowfullscreen": "",
  8447. "allowfullscreen": "",
  8448. "frameborder": "no",
  8449. "border": "0",
  8450. "scrolling ": "no",
  8451. "style": {
  8452. "cssText": "border:0; width:100%; height:100%;"
  8453. },
  8454. "src": "/course-design-vue"
  8455. })
  8456. _box.appendChild(_iframe);
  8457. _box.appendChild(_jie);
  8458. _formdiv = new U.UF.UI.form(
  8459. "项目设计",
  8460. _box, {
  8461. "id": "courseDesign" + cid + stage + task + tool,
  8462. "style": {
  8463. "width": "90%",
  8464. "height": "90%",
  8465. "overflow": 'hidden'
  8466. },
  8467. "onresize": function () { }
  8468. }, {
  8469. closecallback: function () { }
  8470. }, {
  8471. "style": {
  8472. "height": "36px"
  8473. }
  8474. }).form; //创建窗体
  8475. _taskbar = {
  8476. "id": str + _formdiv.id,
  8477. "style": {
  8478. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8479. },
  8480. "name": "项目设计",
  8481. "forms": _formdiv,
  8482. "click": function () {
  8483. U.MD.D.I.openApplication(str, obj, info);
  8484. }
  8485. }
  8486. break;
  8487. }
  8488. const script1 = document.createElement("script");
  8489. script1.type = "text/javascript";
  8490. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8491. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8492. const script2 = document.createElement("script");
  8493. script2.type = "text/javascript";
  8494. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8495. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8496. const script3 = document.createElement("script");
  8497. script3.type = "text/javascript";
  8498. script3.charset = "UTF-8";
  8499. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8500. const script4 = document.createElement("script");
  8501. script4.type = "text/javascript";
  8502. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8503. script4.src = window.origin + "/js/Common/jietu2E.js";
  8504. if (_iframe) {
  8505. if (str == 'doc') {
  8506. _iframe = _formdiv.querySelector('iframe')
  8507. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8508. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8509. _iframe.contentWindow.document.body.appendChild(script1);
  8510. _iframe.contentWindow.document.body.appendChild(script2);
  8511. // _iframe.contentWindow.document.body.appendChild(script3);
  8512. _iframe.contentWindow.document.body.appendChild(script4);
  8513. })
  8514. if (onloadListener) {
  8515. _iframe.contentDocument.location.reload()
  8516. } else {
  8517. _iframe.contentDocument.location.reload()
  8518. }
  8519. } else if (str == 'courseDesign') {
  8520. U.UF.DL.iframeLoad(_iframe, function () {
  8521. // _iframe.contentWindow.U.MD.O.W.load();
  8522. // _iframe.contentWindow.document.body.appendChild(script1);
  8523. _iframe.contentWindow.document.body.appendChild(script2);
  8524. _iframe.contentWindow.document.body.appendChild(script4);
  8525. })
  8526. } else if (str == 'mind') {
  8527. _iframe = _formdiv.querySelector('iframe')
  8528. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8529. //
  8530. _iframe.contentWindow.document.body.appendChild(script1);
  8531. _iframe.contentWindow.document.body.appendChild(script2);
  8532. _iframe.contentWindow.document.body.appendChild(script4);
  8533. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8534. })
  8535. if (onloadListener) {
  8536. _iframe.contentDocument.location.reload()
  8537. } else {
  8538. _iframe.contentDocument.location.reload()
  8539. }
  8540. } else if (str == 'whiteboard') {
  8541. _iframe = _formdiv.querySelector('iframe')
  8542. let onloadListener = _iframe.onload = () => {
  8543. _iframe.contentWindow.document.body.appendChild(script1);
  8544. _iframe.contentWindow.document.body.appendChild(script2);
  8545. _iframe.contentWindow.document.body.appendChild(script4);
  8546. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8547. };
  8548. // if (onloadListener) {
  8549. // try {
  8550. // _iframe.src += "?cocorobo="+new Date().getTime()
  8551. // _iframe.contentWindow.document.location.reload()
  8552. // } catch (error) {
  8553. // }
  8554. // } else {
  8555. // _iframe.contentDocument.location.reload()
  8556. // }
  8557. } else {
  8558. _iframe.onload = () => {
  8559. _iframe.contentWindow.document.body.appendChild(script1);
  8560. _iframe.contentWindow.document.body.appendChild(script2);
  8561. // _iframe.contentWindow.document.body.appendChild(script3);
  8562. _iframe.contentWindow.document.body.appendChild(script4);
  8563. };
  8564. }
  8565. _jie.onclick = async () => {
  8566. let text = ''
  8567. if (aTool == 1) {
  8568. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8569. } else if (aTool == 6) {
  8570. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8571. } else if (aTool == 3) {
  8572. text = await U.MD.D.I.getEditorContent(_iframe);
  8573. }
  8574. _loading.style.display = 'flex'
  8575. console.log(_loading);
  8576. var _ajs = _iframe.contentWindow.document.createElement("script");
  8577. _ajs.type = "text/javascript";
  8578. _ajs.innerHTML =
  8579. // 'console.log(' + _loading + ');\n' +
  8580. 'var _js = document.createElement("script");\n' +
  8581. '_js.type="text/javascript";\n' +
  8582. '_js.charset="UTF-8";\n' +
  8583. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8584. "_js.onload = function(){\n" +
  8585. ' var a = document.getElementsByTagName("img")\n' +
  8586. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8587. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8588. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8589. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8590. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8591. "beforeUpload_shishi(file," +
  8592. "'" +
  8593. _userid +
  8594. "'" +
  8595. ", " +
  8596. "'" +
  8597. _cid +
  8598. "'" +
  8599. ", " +
  8600. "'" +
  8601. _stage +
  8602. "'" +
  8603. ", " +
  8604. "'" +
  8605. _task +
  8606. "'" +
  8607. ", " +
  8608. "'" +
  8609. _tool +
  8610. "'" +
  8611. ", " +
  8612. "'" +
  8613. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8614. "'" +
  8615. ", " +
  8616. "'" +
  8617. aTool +
  8618. "'" +
  8619. ", " +
  8620. "`" +
  8621. text +
  8622. "`" +
  8623. ")\n" +
  8624. " });\n" +
  8625. "}\n" +
  8626. "document.head.appendChild(_js);\n";
  8627. _iframe.contentWindow.document.head.appendChild(_ajs);
  8628. }
  8629. }
  8630. //U.MD.D.I.openClick(str);
  8631. //如果有任务栏信息
  8632. // if (_taskbar) {
  8633. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8634. // }
  8635. }
  8636. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8637. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8638. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8639. _userid = student.userid, //登录用户id
  8640. _username = student.student //用户名字
  8641. let _iframe;
  8642. let _cid = cid,
  8643. _stage = stage,
  8644. _task = task,
  8645. _tool = tool;
  8646. var _jie = $$("div", {
  8647. "style": {
  8648. "position": "absolute",
  8649. "bottom": "50px",
  8650. "right": "50px",
  8651. "zIndex": "9999",
  8652. "backgroundColor": "#2268bc",
  8653. "color": "#fff",
  8654. "padding": "12px 20px",
  8655. "cursor": "pointer",
  8656. "borderRadius": "4px",
  8657. },
  8658. "innerHTML": "提交作业"
  8659. })
  8660. let aTool = ''
  8661. let _loading = document.createElement('div')
  8662. _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;"
  8663. // _loading.id = "";
  8664. let _lchild = document.createElement('div')
  8665. let _limg = document.createElement('img')
  8666. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8667. _limg.style = "width: 26px;margin-right: 10px;"
  8668. _lchild.appendChild(_limg)
  8669. let _lspan = document.createElement('span')
  8670. _lspan.innerHTML = "上传中..."
  8671. _lchild.appendChild(_lspan)
  8672. _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%);"
  8673. _loading.appendChild(_lchild)
  8674. var _box = $$('div', {
  8675. "style": {
  8676. "position": "relative",
  8677. "width": "100%",
  8678. "height": "100%",
  8679. },
  8680. })
  8681. _box.appendChild(_loading)
  8682. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8683. switch (str) {
  8684. case "whiteboard":
  8685. aTool = 1;
  8686. _iframe = $$("iframe", {
  8687. "frameborder": "no",
  8688. "border": "0",
  8689. "scrolling ": "no",
  8690. "style": {
  8691. "cssText": "border:0;width:100%;height:100%"
  8692. },
  8693. "src": "https://beta.iwb.cocorobo.cn/"
  8694. })
  8695. _box.appendChild(_iframe);
  8696. _box.appendChild(_jie);
  8697. _formdiv = new U.UF.UI.form(
  8698. "电子白板-" + _username,
  8699. _box, {
  8700. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8701. "style": {
  8702. "width": "90%",
  8703. "height": "90%",
  8704. "overflow": 'hidden'
  8705. },
  8706. "onresize": function () { }
  8707. }, {
  8708. closecallback: function () { }
  8709. }, {
  8710. "style": {
  8711. "height": "36px"
  8712. }
  8713. }).form; //创建窗体
  8714. _taskbar = {
  8715. "id": str + _formdiv.id,
  8716. "style": {
  8717. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8718. },
  8719. "name": "电子白板",
  8720. "forms": _formdiv,
  8721. "click": function () {
  8722. U.MD.D.I.openApplication(str, obj, info);
  8723. }
  8724. }
  8725. break;
  8726. case "mind":
  8727. aTool = 3;
  8728. _iframe = $$("iframe", {
  8729. "frameborder": "no",
  8730. "border": "0",
  8731. "scrolling ": "no",
  8732. "style": {
  8733. "cssText": "border:0;width:100%;height:100%"
  8734. },
  8735. "src": "/kityminder-editor/dist/index.html"
  8736. })
  8737. _box.appendChild(_iframe);
  8738. _box.appendChild(_jie);
  8739. _formdiv = new U.UF.UI.form(
  8740. "思维导图-" + _username,
  8741. _box, { //"/jsmind/example/demo.html"
  8742. "id": "mind" + cid + stage + task + tool + _userid,
  8743. "style": {
  8744. "width": "90%",
  8745. "height": "90%",
  8746. "overflow": 'hidden'
  8747. },
  8748. "onresize": function () { }
  8749. }, {
  8750. closecallback: function () { }
  8751. }, {
  8752. "style": {
  8753. "height": "36px"
  8754. }
  8755. }).form; //创建窗体
  8756. _taskbar = {
  8757. "id": str + _formdiv.id,
  8758. "style": {
  8759. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8760. },
  8761. "name": "思维导图",
  8762. "forms": _formdiv,
  8763. "click": function () {
  8764. U.MD.D.I.openApplication(str, obj, info);
  8765. }
  8766. }
  8767. break;
  8768. case "MindMap":
  8769. aTool = 3;
  8770. _iframe = $$("iframe", {
  8771. "frameborder": "no",
  8772. "border": "0",
  8773. "scrolling ": "no",
  8774. "style": {
  8775. "cssText": "border:0;width:100%;height:100%"
  8776. },
  8777. "src": "//cloud.cocorobo.cn/mind/"
  8778. })
  8779. _box.appendChild(_iframe);
  8780. _box.appendChild(_jie);
  8781. _formdiv = new U.UF.UI.form(
  8782. "思维导图-" + _username,
  8783. _box, { //"/jsmind/example/demo.html"
  8784. "id": "mind" + cid + stage + task + tool + _userid,
  8785. "style": {
  8786. "width": "90%",
  8787. "height": "90%",
  8788. "overflow": 'hidden'
  8789. },
  8790. "onresize": function () { }
  8791. }, {
  8792. closecallback: function () { }
  8793. }, {
  8794. "style": {
  8795. "height": "36px"
  8796. }
  8797. }).form; //创建窗体
  8798. _taskbar = {
  8799. "id": str + _formdiv.id,
  8800. "style": {
  8801. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8802. },
  8803. "name": "思维导图",
  8804. "forms": _formdiv,
  8805. "click": function () {
  8806. U.MD.D.I.openApplication(str, obj, info);
  8807. }
  8808. }
  8809. break;
  8810. case "doc":
  8811. aTool = 6;
  8812. _iframe = $$("iframe", {
  8813. "frameborder": "no",
  8814. "border": "0",
  8815. "scrolling ": "no",
  8816. "style": {
  8817. "cssText": "border:0;width:100%;height:100%"
  8818. },
  8819. "src": "/Office/Word/WordEditArea.htm"
  8820. })
  8821. _box.appendChild(_iframe);
  8822. _box.appendChild(_jie);
  8823. _formdiv = new U.UF.UI.form(
  8824. "协同文档-" + _username,
  8825. _box, {
  8826. "id": "doc" + cid + stage + task + tool + _userid,
  8827. "style": {
  8828. "width": "90%",
  8829. "height": "90%",
  8830. "overflow": 'hidden'
  8831. },
  8832. "onresize": function () { }
  8833. }, {
  8834. closecallback: function () { }
  8835. }, {
  8836. "style": {
  8837. "height": "36px"
  8838. }
  8839. }).form; //创建窗体
  8840. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8841. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8842. })
  8843. _taskbar = {
  8844. "id": str + _formdiv.id,
  8845. "style": {
  8846. "backgroundImage": "url(/img/icon/doc.png)"
  8847. },
  8848. "name": "协同文档",
  8849. "forms": _formdiv,
  8850. "click": function () {
  8851. U.MD.D.I.openApplication(str, obj, info);
  8852. }
  8853. }
  8854. break;
  8855. case "mindNetwork": //好友打开
  8856. aTool = 7;
  8857. _iframe = $$("iframe", {
  8858. "webkitallowfullscreen": "",
  8859. "mozallowfullscreen": "",
  8860. "allowfullscreen": "",
  8861. "frameborder": "no",
  8862. "border": "0",
  8863. "scrolling ": "no",
  8864. "style": {
  8865. "cssText": "border:0; width:100%; height:100%;"
  8866. },
  8867. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8868. })
  8869. _box.appendChild(_iframe);
  8870. _box.appendChild(_jie);
  8871. _formdiv = new U.UF.UI.form(
  8872. "思维网格-" + _username,
  8873. _box, {
  8874. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8875. "style": {
  8876. "width": "90%",
  8877. "height": "90%",
  8878. "overflow": 'hidden'
  8879. },
  8880. "onresize": function () { }
  8881. }, {
  8882. closecallback: function () { }
  8883. }, {
  8884. "style": {
  8885. "height": "36px"
  8886. }
  8887. }).form; //创建窗体
  8888. _taskbar = {
  8889. "id": str + _formdiv.id,
  8890. "style": {
  8891. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8892. },
  8893. "name": "思维网格",
  8894. "forms": _formdiv,
  8895. "click": function () {
  8896. U.MD.D.I.openApplication(str, obj, info);
  8897. }
  8898. }
  8899. break;
  8900. case "courseDesign":
  8901. _iframe = $$("iframe", {
  8902. "webkitallowfullscreen": "",
  8903. "mozallowfullscreen": "",
  8904. "allowfullscreen": "",
  8905. "frameborder": "no",
  8906. "border": "0",
  8907. "scrolling ": "no",
  8908. "style": {
  8909. "cssText": "border:0; width:100%; height:100%;"
  8910. },
  8911. "src": "/course-design-vue"
  8912. })
  8913. _box.appendChild(_iframe);
  8914. _box.appendChild(_jie);
  8915. _formdiv = new U.UF.UI.form(
  8916. "项目设计-" + _username,
  8917. _box, {
  8918. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8919. "style": {
  8920. "width": "90%",
  8921. "height": "90%",
  8922. "overflow": 'hidden'
  8923. },
  8924. "onresize": function () { }
  8925. }, {
  8926. closecallback: function () { }
  8927. }, {
  8928. "style": {
  8929. "height": "36px"
  8930. }
  8931. }).form; //创建窗体
  8932. _taskbar = {
  8933. "id": str + _formdiv.id,
  8934. "style": {
  8935. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8936. },
  8937. "name": "项目设计",
  8938. "forms": _formdiv,
  8939. "click": function () {
  8940. U.MD.D.I.openApplication(str, obj, info);
  8941. }
  8942. }
  8943. break;
  8944. }
  8945. const script1 = document.createElement("script");
  8946. script1.type = "text/javascript";
  8947. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8948. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8949. const script2 = document.createElement("script");
  8950. script2.type = "text/javascript";
  8951. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8952. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8953. const script3 = document.createElement("script");
  8954. script3.type = "text/javascript";
  8955. script3.charset = "UTF-8";
  8956. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8957. const script4 = document.createElement("script");
  8958. script4.type = "text/javascript";
  8959. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8960. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8961. if (_iframe) {
  8962. if (str == 'doc') {
  8963. _iframe = _formdiv.querySelector('iframe')
  8964. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8965. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8966. _iframe.contentWindow.document.body.appendChild(script1);
  8967. _iframe.contentWindow.document.body.appendChild(script2);
  8968. // _iframe.contentWindow.document.body.appendChild(script3);
  8969. _iframe.contentWindow.document.body.appendChild(script4);
  8970. })
  8971. if (onloadListener) {
  8972. _iframe.contentDocument.location.reload()
  8973. } else {
  8974. _iframe.contentDocument.location.reload()
  8975. }
  8976. } else if (str == 'courseDesign') {
  8977. U.UF.DL.iframeLoad(_iframe, function () {
  8978. // _iframe.contentWindow.U.MD.O.W.load();
  8979. // _iframe.contentWindow.document.body.appendChild(script1);
  8980. _iframe.contentWindow.document.body.appendChild(script2);
  8981. _iframe.contentWindow.document.body.appendChild(script4);
  8982. })
  8983. } else if (str == 'mind') {
  8984. _iframe = _formdiv.querySelector('iframe')
  8985. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8986. //
  8987. _iframe.contentWindow.document.body.appendChild(script1);
  8988. _iframe.contentWindow.document.body.appendChild(script2);
  8989. _iframe.contentWindow.document.body.appendChild(script4);
  8990. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8991. })
  8992. if (onloadListener) {
  8993. _iframe.contentDocument.location.reload()
  8994. } else {
  8995. _iframe.contentDocument.location.reload()
  8996. }
  8997. } else if (str == 'whiteboard') {
  8998. _iframe = _formdiv.querySelector('iframe')
  8999. let onloadListener = _iframe.onload = () => {
  9000. _iframe.contentWindow.document.body.appendChild(script1);
  9001. _iframe.contentWindow.document.body.appendChild(script2);
  9002. _iframe.contentWindow.document.body.appendChild(script4);
  9003. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9004. };
  9005. // if (onloadListener) {
  9006. // try {
  9007. // _iframe.src += "?cocorobo="+new Date().getTime()
  9008. // _iframe.contentWindow.document.location.reload()
  9009. // } catch (error) {
  9010. // }
  9011. // } else {
  9012. // _iframe.contentDocument.location.reload()
  9013. // }
  9014. } else {
  9015. _iframe.onload = () => {
  9016. _iframe.contentWindow.document.body.appendChild(script1);
  9017. _iframe.contentWindow.document.body.appendChild(script2);
  9018. // _iframe.contentWindow.document.body.appendChild(script3);
  9019. _iframe.contentWindow.document.body.appendChild(script4);
  9020. };
  9021. }
  9022. _jie.onclick = async () => {
  9023. let text = ''
  9024. if (aTool == 1) {
  9025. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9026. } else if (aTool == 6) {
  9027. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9028. } else if (aTool == 3) {
  9029. text = await U.MD.D.I.getEditorContent(_iframe);
  9030. }
  9031. _loading.style.display = 'flex'
  9032. console.log(_loading);
  9033. var _ajs = _iframe.contentWindow.document.createElement("script");
  9034. _ajs.type = "text/javascript";
  9035. _ajs.innerHTML =
  9036. // 'console.log(' + _loading + ');\n' +
  9037. 'var _js = document.createElement("script");\n' +
  9038. '_js.type="text/javascript";\n' +
  9039. '_js.charset="UTF-8";\n' +
  9040. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9041. "_js.onload = function(){\n" +
  9042. ' var a = document.getElementsByTagName("img")\n' +
  9043. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9044. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9045. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9046. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9047. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9048. "beforeUpload_shishi(file," +
  9049. "'" +
  9050. _userid +
  9051. "'" +
  9052. ", " +
  9053. "'" +
  9054. _cid +
  9055. "'" +
  9056. ", " +
  9057. "'" +
  9058. _stage +
  9059. "'" +
  9060. ", " +
  9061. "'" +
  9062. _task +
  9063. "'" +
  9064. ", " +
  9065. "'" +
  9066. _tool +
  9067. "'" +
  9068. ", " +
  9069. "'" +
  9070. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9071. "'" +
  9072. ", " +
  9073. "'" +
  9074. aTool +
  9075. "'" +
  9076. ", " +
  9077. "`" +
  9078. text +
  9079. "`" +
  9080. ")\n" +
  9081. " });\n" +
  9082. "}\n" +
  9083. "document.head.appendChild(_js);\n";
  9084. _iframe.contentWindow.document.head.appendChild(_ajs);
  9085. }
  9086. }
  9087. }
  9088. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9089. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9090. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9091. _userid = student.userid, //登录用户id
  9092. _username = student.student //用户名字
  9093. let _iframe;
  9094. let _cid = cid,
  9095. _stage = stage,
  9096. _task = task,
  9097. _tool = tool;
  9098. var _jie = $$("div", {
  9099. "style": {
  9100. "position": "absolute",
  9101. "bottom": "50px",
  9102. "right": "50px",
  9103. "zIndex": "9999",
  9104. "backgroundColor": "#2268bc",
  9105. "color": "#fff",
  9106. "padding": "12px 20px",
  9107. "cursor": "pointer",
  9108. "borderRadius": "4px",
  9109. },
  9110. "innerHTML": "提交作业"
  9111. })
  9112. let aTool = ''
  9113. let _loading = document.createElement('div')
  9114. _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;"
  9115. // _loading.id = "";
  9116. let _lchild = document.createElement('div')
  9117. let _limg = document.createElement('img')
  9118. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9119. _limg.style = "width: 26px;margin-right: 10px;"
  9120. _lchild.appendChild(_limg)
  9121. let _lspan = document.createElement('span')
  9122. _lspan.innerHTML = "上传中..."
  9123. _lchild.appendChild(_lspan)
  9124. _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%);"
  9125. _loading.appendChild(_lchild)
  9126. var _box = $$('div', {
  9127. "style": {
  9128. "position": "relative",
  9129. "width": "100%",
  9130. "height": "100%",
  9131. },
  9132. })
  9133. _box.appendChild(_loading)
  9134. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9135. switch (str) {
  9136. case "whiteboard":
  9137. aTool = 1;
  9138. _iframe = $$("iframe", {
  9139. "frameborder": "no",
  9140. "border": "0",
  9141. "scrolling ": "no",
  9142. "style": {
  9143. "cssText": "border:0;width:100%;height:100%"
  9144. },
  9145. "src": "https://beta.iwb.cocorobo.cn/"
  9146. })
  9147. _box.appendChild(_iframe);
  9148. _box.appendChild(_jie);
  9149. _formdiv = new U.UF.UI.form(
  9150. "电子白板-" + _username,
  9151. _box, {
  9152. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9153. "style": {
  9154. "width": "90%",
  9155. "height": "90%",
  9156. "overflow": 'hidden'
  9157. },
  9158. "onresize": function () { }
  9159. }, {
  9160. closecallback: function () { }
  9161. }, {
  9162. "style": {
  9163. "height": "36px"
  9164. }
  9165. }).form; //创建窗体
  9166. _taskbar = {
  9167. "id": str + _formdiv.id,
  9168. "style": {
  9169. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9170. },
  9171. "name": "电子白板",
  9172. "forms": _formdiv,
  9173. "click": function () {
  9174. U.MD.D.I.openApplication(str, obj, info);
  9175. }
  9176. }
  9177. break;
  9178. case "mind":
  9179. aTool = 3;
  9180. _iframe = $$("iframe", {
  9181. "frameborder": "no",
  9182. "border": "0",
  9183. "scrolling ": "no",
  9184. "style": {
  9185. "cssText": "border:0;width:100%;height:100%"
  9186. },
  9187. "src": "/kityminder-editor/dist/index.html"
  9188. })
  9189. _box.appendChild(_iframe);
  9190. _box.appendChild(_jie);
  9191. _formdiv = new U.UF.UI.form(
  9192. "思维导图-" + _username,
  9193. _box, { //"/jsmind/example/demo.html"
  9194. "id": "mind" + cid + stage + task + tool + _userid,
  9195. "style": {
  9196. "width": "90%",
  9197. "height": "90%",
  9198. "overflow": 'hidden'
  9199. },
  9200. "onresize": function () { }
  9201. }, {
  9202. closecallback: function () { }
  9203. }, {
  9204. "style": {
  9205. "height": "36px"
  9206. }
  9207. }).form; //创建窗体
  9208. _taskbar = {
  9209. "id": str + _formdiv.id,
  9210. "style": {
  9211. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9212. },
  9213. "name": "思维导图",
  9214. "forms": _formdiv,
  9215. "click": function () {
  9216. U.MD.D.I.openApplication(str, obj, info);
  9217. }
  9218. }
  9219. break;
  9220. case "MindMap":
  9221. aTool = 3;
  9222. _iframe = $$("iframe", {
  9223. "frameborder": "no",
  9224. "border": "0",
  9225. "scrolling ": "no",
  9226. "style": {
  9227. "cssText": "border:0;width:100%;height:100%"
  9228. },
  9229. "src": "//cloud.cocorobo.cn/mind/"
  9230. })
  9231. _box.appendChild(_iframe);
  9232. _box.appendChild(_jie);
  9233. _formdiv = new U.UF.UI.form(
  9234. "思维导图-" + _username,
  9235. _box, { //"/jsmind/example/demo.html"
  9236. "id": "mind" + cid + stage + task + tool + _userid,
  9237. "style": {
  9238. "width": "90%",
  9239. "height": "90%",
  9240. "overflow": 'hidden'
  9241. },
  9242. "onresize": function () { }
  9243. }, {
  9244. closecallback: function () { }
  9245. }, {
  9246. "style": {
  9247. "height": "36px"
  9248. }
  9249. }).form; //创建窗体
  9250. _taskbar = {
  9251. "id": str + _formdiv.id,
  9252. "style": {
  9253. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9254. },
  9255. "name": "思维导图",
  9256. "forms": _formdiv,
  9257. "click": function () {
  9258. U.MD.D.I.openApplication(str, obj, info);
  9259. }
  9260. }
  9261. break;
  9262. case "doc":
  9263. aTool = 6;
  9264. _iframe = $$("iframe", {
  9265. "frameborder": "no",
  9266. "border": "0",
  9267. "scrolling ": "no",
  9268. "style": {
  9269. "cssText": "border:0;width:100%;height:100%"
  9270. },
  9271. "src": "/Office/Word/WordEditArea.htm"
  9272. })
  9273. _box.appendChild(_iframe);
  9274. _box.appendChild(_jie);
  9275. _formdiv = new U.UF.UI.form(
  9276. "协同文档-" + _username,
  9277. _box, {
  9278. "id": "doc" + cid + stage + task + tool + _userid,
  9279. "style": {
  9280. "width": "90%",
  9281. "height": "90%",
  9282. "overflow": 'hidden'
  9283. },
  9284. "onresize": function () { }
  9285. }, {
  9286. closecallback: function () { }
  9287. }, {
  9288. "style": {
  9289. "height": "36px"
  9290. }
  9291. }).form; //创建窗体
  9292. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9293. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9294. })
  9295. _taskbar = {
  9296. "id": str + _formdiv.id,
  9297. "style": {
  9298. "backgroundImage": "url(/img/icon/doc.png)"
  9299. },
  9300. "name": "协同文档",
  9301. "forms": _formdiv,
  9302. "click": function () {
  9303. U.MD.D.I.openApplication(str, obj, info);
  9304. }
  9305. }
  9306. break;
  9307. case "mindNetwork": //好友打开
  9308. aTool = 7;
  9309. _iframe = $$("iframe", {
  9310. "webkitallowfullscreen": "",
  9311. "mozallowfullscreen": "",
  9312. "allowfullscreen": "",
  9313. "frameborder": "no",
  9314. "border": "0",
  9315. "scrolling ": "no",
  9316. "style": {
  9317. "cssText": "border:0; width:100%; height:100%;"
  9318. },
  9319. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9320. })
  9321. _box.appendChild(_iframe);
  9322. _box.appendChild(_jie);
  9323. _formdiv = new U.UF.UI.form(
  9324. "思维网格-" + _username,
  9325. _box, {
  9326. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9327. "style": {
  9328. "width": "90%",
  9329. "height": "90%",
  9330. "overflow": 'hidden'
  9331. },
  9332. "onresize": function () { }
  9333. }, {
  9334. closecallback: function () { }
  9335. }, {
  9336. "style": {
  9337. "height": "36px"
  9338. }
  9339. }).form; //创建窗体
  9340. _taskbar = {
  9341. "id": str + _formdiv.id,
  9342. "style": {
  9343. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9344. },
  9345. "name": "思维网格",
  9346. "forms": _formdiv,
  9347. "click": function () {
  9348. U.MD.D.I.openApplication(str, obj, info);
  9349. }
  9350. }
  9351. break;
  9352. case "courseDesign":
  9353. _iframe = $$("iframe", {
  9354. "webkitallowfullscreen": "",
  9355. "mozallowfullscreen": "",
  9356. "allowfullscreen": "",
  9357. "frameborder": "no",
  9358. "border": "0",
  9359. "scrolling ": "no",
  9360. "style": {
  9361. "cssText": "border:0; width:100%; height:100%;"
  9362. },
  9363. "src": "/course-design-vue"
  9364. })
  9365. _box.appendChild(_iframe);
  9366. _box.appendChild(_jie);
  9367. _formdiv = new U.UF.UI.form(
  9368. "项目设计-" + _username,
  9369. _box, {
  9370. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9371. "style": {
  9372. "width": "90%",
  9373. "height": "90%",
  9374. "overflow": 'hidden'
  9375. },
  9376. "onresize": function () { }
  9377. }, {
  9378. closecallback: function () { }
  9379. }, {
  9380. "style": {
  9381. "height": "36px"
  9382. }
  9383. }).form; //创建窗体
  9384. _taskbar = {
  9385. "id": str + _formdiv.id,
  9386. "style": {
  9387. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9388. },
  9389. "name": "项目设计",
  9390. "forms": _formdiv,
  9391. "click": function () {
  9392. U.MD.D.I.openApplication(str, obj, info);
  9393. }
  9394. }
  9395. break;
  9396. }
  9397. const script1 = document.createElement("script");
  9398. script1.type = "text/javascript";
  9399. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9400. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9401. const script2 = document.createElement("script");
  9402. script2.type = "text/javascript";
  9403. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9404. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9405. const script3 = document.createElement("script");
  9406. script3.type = "text/javascript";
  9407. script3.charset = "UTF-8";
  9408. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9409. const script4 = document.createElement("script");
  9410. script4.type = "text/javascript";
  9411. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9412. script4.src = window.origin + "/js/Common/jietu2E.js";
  9413. if (_iframe) {
  9414. if (str == 'doc') {
  9415. _iframe = _formdiv.querySelector('iframe')
  9416. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9417. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9418. _iframe.contentWindow.document.body.appendChild(script1);
  9419. _iframe.contentWindow.document.body.appendChild(script2);
  9420. // _iframe.contentWindow.document.body.appendChild(script3);
  9421. _iframe.contentWindow.document.body.appendChild(script4);
  9422. })
  9423. if (onloadListener) {
  9424. _iframe.contentDocument.location.reload()
  9425. } else {
  9426. _iframe.contentDocument.location.reload()
  9427. }
  9428. } else if (str == 'courseDesign') {
  9429. U.UF.DL.iframeLoad(_iframe, function () {
  9430. // _iframe.contentWindow.U.MD.O.W.load();
  9431. // _iframe.contentWindow.document.body.appendChild(script1);
  9432. _iframe.contentWindow.document.body.appendChild(script2);
  9433. _iframe.contentWindow.document.body.appendChild(script4);
  9434. })
  9435. } else if (str == 'mind') {
  9436. _iframe = _formdiv.querySelector('iframe')
  9437. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9438. //
  9439. _iframe.contentWindow.document.body.appendChild(script1);
  9440. _iframe.contentWindow.document.body.appendChild(script2);
  9441. _iframe.contentWindow.document.body.appendChild(script4);
  9442. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9443. })
  9444. if (onloadListener) {
  9445. _iframe.contentDocument.location.reload()
  9446. } else {
  9447. _iframe.contentDocument.location.reload()
  9448. }
  9449. } else if (str == 'whiteboard') {
  9450. _iframe = _formdiv.querySelector('iframe')
  9451. let onloadListener = _iframe.onload = () => {
  9452. _iframe.contentWindow.document.body.appendChild(script1);
  9453. _iframe.contentWindow.document.body.appendChild(script2);
  9454. _iframe.contentWindow.document.body.appendChild(script4);
  9455. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9456. };
  9457. // if (onloadListener) {
  9458. // try {
  9459. // _iframe.src += "?cocorobo="+new Date().getTime()
  9460. // _iframe.contentWindow.document.location.reload()
  9461. // } catch (error) {
  9462. // }
  9463. // } else {
  9464. // _iframe.contentDocument.location.reload()
  9465. // }
  9466. } else {
  9467. _iframe.onload = () => {
  9468. _iframe.contentWindow.document.body.appendChild(script1);
  9469. _iframe.contentWindow.document.body.appendChild(script2);
  9470. // _iframe.contentWindow.document.body.appendChild(script3);
  9471. _iframe.contentWindow.document.body.appendChild(script4);
  9472. };
  9473. }
  9474. _jie.onclick = async () => {
  9475. let text = ''
  9476. if (aTool == 1) {
  9477. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9478. } else if (aTool == 6) {
  9479. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9480. } else if (aTool == 3) {
  9481. text = await U.MD.D.I.getEditorContent(_iframe);
  9482. }
  9483. _loading.style.display = 'flex'
  9484. console.log(_loading);
  9485. var _ajs = _iframe.contentWindow.document.createElement("script");
  9486. _ajs.type = "text/javascript";
  9487. _ajs.innerHTML =
  9488. // 'console.log(' + _loading + ');\n' +
  9489. 'var _js = document.createElement("script");\n' +
  9490. '_js.type="text/javascript";\n' +
  9491. '_js.charset="UTF-8";\n' +
  9492. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9493. "_js.onload = function(){\n" +
  9494. ' var a = document.getElementsByTagName("img")\n' +
  9495. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9496. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9497. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9498. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9499. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9500. "beforeUpload_shishi(file," +
  9501. "'" +
  9502. _userid +
  9503. "'" +
  9504. ", " +
  9505. "'" +
  9506. _cid +
  9507. "'" +
  9508. ", " +
  9509. "'" +
  9510. _stage +
  9511. "'" +
  9512. ", " +
  9513. "'" +
  9514. _task +
  9515. "'" +
  9516. ", " +
  9517. "'" +
  9518. _tool +
  9519. "'" +
  9520. ", " +
  9521. "'" +
  9522. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9523. "'" +
  9524. ", " +
  9525. "'" +
  9526. aTool +
  9527. "'" +
  9528. ", " +
  9529. "`" +
  9530. text +
  9531. "`" +
  9532. ")\n" +
  9533. " });\n" +
  9534. "}\n" +
  9535. "document.head.appendChild(_js);\n";
  9536. _iframe.contentWindow.document.head.appendChild(_ajs);
  9537. }
  9538. }
  9539. }
  9540. U.MD.D.I.getEditorContent = function (iframe) {
  9541. return new Promise((resolve, reject) => {
  9542. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9543. console.log(content);
  9544. resolve(content)
  9545. });
  9546. });
  9547. }
  9548. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9549. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9550. // if (res.value[0].length > 0) {
  9551. // // resolve(res.value[0][0].text);
  9552. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9553. // $(fileInput).val('');
  9554. // });
  9555. // }
  9556. // }, [], { "type": "GET", "withCredentials": true });
  9557. var xmlhttp;
  9558. var Mac, Sn, DeviceId
  9559. if (window.XMLHttpRequest) {
  9560. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9561. xmlhttp = new XMLHttpRequest();
  9562. } else {
  9563. // IE6, IE5 浏览器执行代码
  9564. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9565. }
  9566. xmlhttp.onreadystatechange = function () {
  9567. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9568. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9569. // resolve(res.value[0][0].text);
  9570. if (type == '2') {
  9571. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9572. } else if (type == '3') {
  9573. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9574. }
  9575. } else {
  9576. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9577. }
  9578. }
  9579. }
  9580. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9581. xmlhttp.send();
  9582. }
  9583. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9584. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9585. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9586. _userinfo = US.userInfo, //登录用户信息
  9587. _userid = US.userInfo.userid //登录用户id
  9588. let _iframe;
  9589. let _cid = cid,
  9590. _stage = stage,
  9591. _task = task,
  9592. _tool = tool;
  9593. var _jie = $$("div", {
  9594. "style": {
  9595. "position": "absolute",
  9596. "bottom": "50px",
  9597. "right": "50px",
  9598. "zIndex": "9999",
  9599. "backgroundColor": "#2268bc",
  9600. "color": "#fff",
  9601. "padding": "12px 20px",
  9602. "cursor": "pointer",
  9603. "borderRadius": "4px",
  9604. },
  9605. "innerHTML": "确认并提交"
  9606. })
  9607. let aTool = ''
  9608. let _loading = document.createElement('div')
  9609. _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;"
  9610. // _loading.id = "";
  9611. let _lchild = document.createElement('div')
  9612. let _limg = document.createElement('img')
  9613. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9614. _limg.style = "width: 26px;margin-right: 10px;"
  9615. _lchild.appendChild(_limg)
  9616. let _lspan = document.createElement('span')
  9617. _lspan.innerHTML = "上传中..."
  9618. _lchild.appendChild(_lspan)
  9619. _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%);"
  9620. _loading.appendChild(_lchild)
  9621. var _box = $$('div', {
  9622. "style": {
  9623. "position": "relative",
  9624. "width": "100%",
  9625. "height": "100%",
  9626. },
  9627. })
  9628. _box.appendChild(_loading)
  9629. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9630. switch (str) {
  9631. case "whiteboard":
  9632. aTool = 1;
  9633. _iframe = $$("iframe", {
  9634. "frameborder": "no",
  9635. "border": "0",
  9636. "scrolling ": "no",
  9637. "style": {
  9638. "cssText": "border:0;width:100%;height:100%"
  9639. },
  9640. "src": "https://beta.iwb.cocorobo.cn/"
  9641. })
  9642. _box.appendChild(_iframe);
  9643. _box.appendChild(_jie);
  9644. _formdiv = new U.UF.UI.form(
  9645. "电子白板",
  9646. _box, {
  9647. "id": "whiteboards" + cid + stage + task + tool,
  9648. "style": {
  9649. "width": "90%",
  9650. "height": "90%",
  9651. "overflow": 'hidden'
  9652. },
  9653. "onresize": function () { }
  9654. }, {
  9655. closecallback: function () { }
  9656. }, {
  9657. "style": {
  9658. "height": "36px"
  9659. }
  9660. }).form; //创建窗体
  9661. _taskbar = {
  9662. "id": str + _formdiv.id,
  9663. "style": {
  9664. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9665. },
  9666. "name": "电子白板",
  9667. "forms": _formdiv,
  9668. "click": function () {
  9669. U.MD.D.I.openApplication(str, obj, info);
  9670. }
  9671. }
  9672. break;
  9673. case "mind":
  9674. aTool = 3;
  9675. _iframe = $$("iframe", {
  9676. "frameborder": "no",
  9677. "border": "0",
  9678. "scrolling ": "no",
  9679. "style": {
  9680. "cssText": "border:0;width:100%;height:100%"
  9681. },
  9682. "src": "/kityminder-editor/dist/index.html"
  9683. });
  9684. _box.appendChild(_iframe);
  9685. _box.appendChild(_jie);
  9686. _formdiv = new U.UF.UI.form(
  9687. "思维导图",
  9688. _box, { //"/jsmind/example/demo.html"
  9689. "id": "minds" + cid + stage + task + tool,
  9690. "style": {
  9691. "width": "90%",
  9692. "height": "90%",
  9693. "overflow": 'hidden'
  9694. },
  9695. "onresize": function () { }
  9696. }, {
  9697. closecallback: function () { }
  9698. }, {
  9699. "style": {
  9700. "height": "36px"
  9701. }
  9702. }).form; //创建窗体
  9703. _taskbar = {
  9704. "id": str + _formdiv.id,
  9705. "style": {
  9706. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9707. },
  9708. "name": "思维导图",
  9709. "forms": _formdiv,
  9710. "click": function () {
  9711. U.MD.D.I.openApplication(str, obj, info);
  9712. }
  9713. }
  9714. break;
  9715. case "doc":
  9716. aTool = 6;
  9717. _iframe = $$("iframe", {
  9718. "frameborder": "no",
  9719. "border": "0",
  9720. "scrolling ": "no",
  9721. "style": {
  9722. "cssText": "border:0;width:100%;height:100%"
  9723. },
  9724. "src": "/Office/Word/WordEditArea.htm"
  9725. })
  9726. _box.appendChild(_iframe);
  9727. _box.appendChild(_jie);
  9728. _formdiv = new U.UF.UI.form(
  9729. "协同文档",
  9730. _box, {
  9731. "id": "docs" + cid + stage + task + tool,
  9732. "style": {
  9733. "width": "90%",
  9734. "height": "90%",
  9735. "overflow": 'hidden'
  9736. },
  9737. "onresize": function () { }
  9738. }, {
  9739. closecallback: function () { }
  9740. }, {
  9741. "style": {
  9742. "height": "36px"
  9743. }
  9744. }).form; //创建窗体
  9745. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9746. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9747. })
  9748. _taskbar = {
  9749. "id": str + _formdiv.id,
  9750. "style": {
  9751. "backgroundImage": "url(/img/icon/doc.png)"
  9752. },
  9753. "name": "协同文档",
  9754. "forms": _formdiv,
  9755. "click": function () {
  9756. U.MD.D.I.openApplication(str, obj, info);
  9757. }
  9758. }
  9759. break;
  9760. }
  9761. const script1 = document.createElement("script");
  9762. script1.type = "text/javascript";
  9763. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9764. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9765. const script2 = document.createElement("script");
  9766. script2.type = "text/javascript";
  9767. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9768. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9769. const script3 = document.createElement("script");
  9770. script3.type = "text/javascript";
  9771. script3.charset = "UTF-8";
  9772. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9773. const script4 = document.createElement("script");
  9774. script4.type = "text/javascript";
  9775. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9776. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9777. if (_iframe) {
  9778. if (str == 'doc') {
  9779. _iframe = _formdiv.querySelector('iframe')
  9780. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9781. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9782. _iframe.contentWindow.document.body.appendChild(script1);
  9783. _iframe.contentWindow.document.body.appendChild(script2);
  9784. // _iframe.contentWindow.document.body.appendChild(script3);
  9785. _iframe.contentWindow.document.body.appendChild(script4);
  9786. })
  9787. if (onloadListener) {
  9788. _iframe.contentDocument.location.reload()
  9789. } else {
  9790. _iframe.contentDocument.location.reload()
  9791. }
  9792. } else if (str == 'mind') {
  9793. _iframe = _formdiv.querySelector('iframe')
  9794. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9795. _iframe.contentWindow.document.body.appendChild(script1);
  9796. _iframe.contentWindow.document.body.appendChild(script2);
  9797. _iframe.contentWindow.document.body.appendChild(script4);
  9798. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9799. })
  9800. if (onloadListener) {
  9801. _iframe.contentDocument.location.reload()
  9802. } else {
  9803. _iframe.contentDocument.location.reload()
  9804. }
  9805. } else {
  9806. _iframe.onload = () => {
  9807. _iframe.contentWindow.document.body.appendChild(script1);
  9808. _iframe.contentWindow.document.body.appendChild(script2);
  9809. // _iframe.contentWindow.document.body.appendChild(script3);
  9810. _iframe.contentWindow.document.body.appendChild(script4);
  9811. };
  9812. }
  9813. _jie.onclick = async () => {
  9814. let text = ''
  9815. if (aTool == 6) {
  9816. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9817. } else if (aTool == 3) {
  9818. text = await U.MD.D.I.getEditorContent(_iframe);
  9819. }
  9820. _loading.style.display = 'flex'
  9821. console.log(_loading);
  9822. var _ajs = _iframe.contentWindow.document.createElement("script");
  9823. _ajs.type = "text/javascript";
  9824. _ajs.innerHTML =
  9825. // 'console.log(' + _loading + ');\n' +
  9826. 'var _js = document.createElement("script");\n' +
  9827. '_js.type="text/javascript";\n' +
  9828. '_js.charset="UTF-8";\n' +
  9829. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9830. "_js.onload = function(){\n" +
  9831. ' var a = document.getElementsByTagName("img")\n' +
  9832. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9833. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9834. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9835. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9836. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9837. "beforeUpload_shishi(file," +
  9838. "'" +
  9839. _userid +
  9840. "'" +
  9841. ", " +
  9842. "'" +
  9843. _cid +
  9844. "'" +
  9845. ", " +
  9846. "'" +
  9847. _stage +
  9848. "'" +
  9849. ", " +
  9850. "'" +
  9851. _task +
  9852. "'" +
  9853. ", " +
  9854. "'" +
  9855. _tool +
  9856. "'" +
  9857. ", " +
  9858. "'" +
  9859. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9860. "'" +
  9861. ", " +
  9862. "'" +
  9863. aTool +
  9864. "'" +
  9865. ", " +
  9866. "`" +
  9867. text +
  9868. "`" +
  9869. ")\n" +
  9870. " });\n" +
  9871. "}\n" +
  9872. "document.head.appendChild(_js);\n";
  9873. _iframe.contentWindow.document.head.appendChild(_ajs);
  9874. }
  9875. }
  9876. //U.MD.D.I.openClick(str);
  9877. //如果有任务栏信息
  9878. // if (_taskbar) {
  9879. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9880. // }
  9881. }
  9882. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9883. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9884. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9885. _userinfo = US.userInfo, //登录用户信息
  9886. _userid = US.userInfo.userid //登录用户id
  9887. let _iframe;
  9888. let _cid = cid,
  9889. _stage = stage,
  9890. _task = task,
  9891. _tool = tool;
  9892. var _jie = $$("div", {
  9893. "style": {
  9894. "position": "absolute",
  9895. "bottom": "50px",
  9896. "right": "50px",
  9897. "zIndex": "9999",
  9898. "backgroundColor": "#2268bc",
  9899. "color": "#fff",
  9900. "padding": "12px 20px",
  9901. "cursor": "pointer",
  9902. "borderRadius": "4px",
  9903. },
  9904. "innerHTML": "确认并提交"
  9905. })
  9906. let aTool = ''
  9907. let _loading = document.createElement('div')
  9908. _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;"
  9909. // _loading.id = "";
  9910. let _lchild = document.createElement('div')
  9911. let _limg = document.createElement('img')
  9912. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9913. _limg.style = "width: 26px;margin-right: 10px;"
  9914. _lchild.appendChild(_limg)
  9915. let _lspan = document.createElement('span')
  9916. _lspan.innerHTML = "上传中..."
  9917. _lchild.appendChild(_lspan)
  9918. _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%);"
  9919. _loading.appendChild(_lchild)
  9920. var _box = $$('div', {
  9921. "style": {
  9922. "position": "relative",
  9923. "width": "100%",
  9924. "height": "100%",
  9925. },
  9926. })
  9927. _box.appendChild(_loading)
  9928. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9929. switch (str) {
  9930. case "whiteboard":
  9931. aTool = 1;
  9932. _iframe = $$("iframe", {
  9933. "frameborder": "no",
  9934. "border": "0",
  9935. "scrolling ": "no",
  9936. "style": {
  9937. "cssText": "border:0;width:100%;height:100%"
  9938. },
  9939. "src": "https://beta.iwb.cocorobo.cn/"
  9940. })
  9941. _box.appendChild(_iframe);
  9942. _box.appendChild(_jie);
  9943. _formdiv = new U.UF.UI.form(
  9944. "电子白板",
  9945. _box, {
  9946. "id": "whiteboards" + cid + stage + task + tool,
  9947. "style": {
  9948. "width": "90%",
  9949. "height": "90%",
  9950. "overflow": 'hidden'
  9951. },
  9952. "onresize": function () { }
  9953. }, {
  9954. closecallback: function () { }
  9955. }, {
  9956. "style": {
  9957. "height": "36px"
  9958. }
  9959. }).form; //创建窗体
  9960. _taskbar = {
  9961. "id": str + _formdiv.id,
  9962. "style": {
  9963. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9964. },
  9965. "name": "电子白板",
  9966. "forms": _formdiv,
  9967. "click": function () {
  9968. U.MD.D.I.openApplication(str, obj, info);
  9969. }
  9970. }
  9971. break;
  9972. case "mind":
  9973. aTool = 3;
  9974. _iframe = $$("iframe", {
  9975. "frameborder": "no",
  9976. "border": "0",
  9977. "scrolling ": "no",
  9978. "style": {
  9979. "cssText": "border:0;width:100%;height:100%"
  9980. },
  9981. "src": "/kityminder-editor/dist/index.html"
  9982. });
  9983. _box.appendChild(_iframe);
  9984. _box.appendChild(_jie);
  9985. _formdiv = new U.UF.UI.form(
  9986. "思维导图",
  9987. _box, { //"/jsmind/example/demo.html"
  9988. "id": "minds" + cid + stage + task + tool,
  9989. "style": {
  9990. "width": "90%",
  9991. "height": "90%",
  9992. "overflow": 'hidden'
  9993. },
  9994. "onresize": function () { }
  9995. }, {
  9996. closecallback: function () { }
  9997. }, {
  9998. "style": {
  9999. "height": "36px"
  10000. }
  10001. }).form; //创建窗体
  10002. _taskbar = {
  10003. "id": str + _formdiv.id,
  10004. "style": {
  10005. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10006. },
  10007. "name": "思维导图",
  10008. "forms": _formdiv,
  10009. "click": function () {
  10010. U.MD.D.I.openApplication(str, obj, info);
  10011. }
  10012. }
  10013. break;
  10014. case "doc":
  10015. aTool = 6;
  10016. _iframe = $$("iframe", {
  10017. "frameborder": "no",
  10018. "border": "0",
  10019. "scrolling ": "no",
  10020. "style": {
  10021. "cssText": "border:0;width:100%;height:100%"
  10022. },
  10023. "src": "/Office/Word/WordEditArea.htm"
  10024. })
  10025. _box.appendChild(_iframe);
  10026. _box.appendChild(_jie);
  10027. _formdiv = new U.UF.UI.form(
  10028. "协同文档",
  10029. _box, {
  10030. "id": "docs" + cid + stage + task + tool,
  10031. "style": {
  10032. "width": "90%",
  10033. "height": "90%",
  10034. "overflow": 'hidden'
  10035. },
  10036. "onresize": function () { }
  10037. }, {
  10038. closecallback: function () { }
  10039. }, {
  10040. "style": {
  10041. "height": "36px"
  10042. }
  10043. }).form; //创建窗体
  10044. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10045. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10046. })
  10047. _taskbar = {
  10048. "id": str + _formdiv.id,
  10049. "style": {
  10050. "backgroundImage": "url(/img/icon/doc.png)"
  10051. },
  10052. "name": "协同文档",
  10053. "forms": _formdiv,
  10054. "click": function () {
  10055. U.MD.D.I.openApplication(str, obj, info);
  10056. }
  10057. }
  10058. break;
  10059. }
  10060. const script1 = document.createElement("script");
  10061. script1.type = "text/javascript";
  10062. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10063. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10064. const script2 = document.createElement("script");
  10065. script2.type = "text/javascript";
  10066. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10067. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10068. const script3 = document.createElement("script");
  10069. script3.type = "text/javascript";
  10070. script3.charset = "UTF-8";
  10071. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10072. const script4 = document.createElement("script");
  10073. script4.type = "text/javascript";
  10074. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10075. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10076. if (_iframe) {
  10077. if (str == 'doc') {
  10078. _iframe = _formdiv.querySelector('iframe')
  10079. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10080. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10081. _iframe.contentWindow.document.body.appendChild(script1);
  10082. _iframe.contentWindow.document.body.appendChild(script2);
  10083. // _iframe.contentWindow.document.body.appendChild(script3);
  10084. _iframe.contentWindow.document.body.appendChild(script4);
  10085. })
  10086. if (onloadListener) {
  10087. _iframe.contentDocument.location.reload()
  10088. } else {
  10089. _iframe.contentDocument.location.reload()
  10090. }
  10091. } else if (str == 'mind') {
  10092. _iframe = _formdiv.querySelector('iframe')
  10093. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10094. _iframe.contentWindow.document.body.appendChild(script1);
  10095. _iframe.contentWindow.document.body.appendChild(script2);
  10096. _iframe.contentWindow.document.body.appendChild(script4);
  10097. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10098. })
  10099. if (onloadListener) {
  10100. _iframe.contentDocument.location.reload()
  10101. } else {
  10102. _iframe.contentDocument.location.reload()
  10103. }
  10104. } else {
  10105. _iframe.onload = () => {
  10106. _iframe.contentWindow.document.body.appendChild(script1);
  10107. _iframe.contentWindow.document.body.appendChild(script2);
  10108. // _iframe.contentWindow.document.body.appendChild(script3);
  10109. _iframe.contentWindow.document.body.appendChild(script4);
  10110. };
  10111. }
  10112. _jie.onclick = async () => {
  10113. let text = ''
  10114. if (aTool == 6) {
  10115. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10116. } else if (aTool == 3) {
  10117. text = await U.MD.D.I.getEditorContent(_iframe);
  10118. }
  10119. _loading.style.display = 'flex'
  10120. console.log(_loading);
  10121. var _ajs = _iframe.contentWindow.document.createElement("script");
  10122. _ajs.type = "text/javascript";
  10123. _ajs.innerHTML =
  10124. // 'console.log(' + _loading + ');\n' +
  10125. 'var _js = document.createElement("script");\n' +
  10126. '_js.type="text/javascript";\n' +
  10127. '_js.charset="UTF-8";\n' +
  10128. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10129. "_js.onload = function(){\n" +
  10130. ' var a = document.getElementsByTagName("img")\n' +
  10131. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10132. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10133. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10134. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10135. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10136. "beforeUpload_shishi(file," +
  10137. "'" +
  10138. _userid +
  10139. "'" +
  10140. ", " +
  10141. "'" +
  10142. _cid +
  10143. "'" +
  10144. ", " +
  10145. "'" +
  10146. _stage +
  10147. "'" +
  10148. ", " +
  10149. "'" +
  10150. _task +
  10151. "'" +
  10152. ", " +
  10153. "'" +
  10154. _tool +
  10155. "'" +
  10156. ", " +
  10157. "'" +
  10158. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10159. "'" +
  10160. ", " +
  10161. "'" +
  10162. aTool +
  10163. "'" +
  10164. ", " +
  10165. "`" +
  10166. text +
  10167. "`" +
  10168. ")\n" +
  10169. " });\n" +
  10170. "}\n" +
  10171. "document.head.appendChild(_js);\n";
  10172. _iframe.contentWindow.document.head.appendChild(_ajs);
  10173. }
  10174. }
  10175. //U.MD.D.I.openClick(str);
  10176. //如果有任务栏信息
  10177. // if (_taskbar) {
  10178. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10179. // }
  10180. }
  10181. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10182. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10183. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10184. _userinfo = US.userInfo, //登录用户信息
  10185. _userid = US.userInfo.userid //登录用户id
  10186. let _iframe;
  10187. let _cid = cid,
  10188. _stage = stage,
  10189. _task = task,
  10190. _tool = tool;
  10191. var _jie = $$("div", {
  10192. "style": {
  10193. "position": "absolute",
  10194. "bottom": "50px",
  10195. "right": "50px",
  10196. "zIndex": "9999",
  10197. "backgroundColor": "#2268bc",
  10198. "color": "#fff",
  10199. "padding": "12px 20px",
  10200. "cursor": "pointer",
  10201. "borderRadius": "4px",
  10202. },
  10203. "innerHTML": "上传模板"
  10204. })
  10205. let aTool = ''
  10206. let _loading = document.createElement('div')
  10207. _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;"
  10208. // _loading.id = "";
  10209. let _lchild = document.createElement('div')
  10210. let _limg = document.createElement('img')
  10211. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10212. _limg.style = "width: 26px;margin-right: 10px;"
  10213. _lchild.appendChild(_limg)
  10214. let _lspan = document.createElement('span')
  10215. _lspan.innerHTML = "上传中..."
  10216. _lchild.appendChild(_lspan)
  10217. _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%);"
  10218. _loading.appendChild(_lchild)
  10219. var _box = $$('div', {
  10220. "style": {
  10221. "position": "relative",
  10222. "width": "100%",
  10223. "height": "100%",
  10224. },
  10225. })
  10226. _box.appendChild(_loading)
  10227. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10228. switch (str) {
  10229. case "whiteboard":
  10230. aTool = 1;
  10231. _iframe = $$("iframe", {
  10232. "frameborder": "no",
  10233. "border": "0",
  10234. "scrolling ": "no",
  10235. "style": {
  10236. "cssText": "border:0;width:100%;height:100%"
  10237. },
  10238. "src": "https://beta.iwb.cocorobo.cn/"
  10239. })
  10240. _box.appendChild(_iframe);
  10241. _box.appendChild(_jie);
  10242. _formdiv = new U.UF.UI.form(
  10243. "电子白板",
  10244. _box, {
  10245. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10246. "style": {
  10247. "width": "90%",
  10248. "height": "90%",
  10249. "overflow": 'hidden'
  10250. },
  10251. "onresize": function () { }
  10252. }, {
  10253. closecallback: function () { }
  10254. }, {
  10255. "style": {
  10256. "height": "36px"
  10257. }
  10258. }).form; //创建窗体
  10259. _taskbar = {
  10260. "id": str + _formdiv.id,
  10261. "style": {
  10262. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10263. },
  10264. "name": "电子白板",
  10265. "forms": _formdiv,
  10266. "click": function () {
  10267. U.MD.D.I.openApplication(str, obj, info);
  10268. }
  10269. }
  10270. break;
  10271. case "mind":
  10272. aTool = 3;
  10273. _iframe = $$("iframe", {
  10274. "frameborder": "no",
  10275. "border": "0",
  10276. "scrolling ": "no",
  10277. "style": {
  10278. "cssText": "border:0;width:100%;height:100%"
  10279. },
  10280. "src": "/kityminder-editor/dist/index.html"
  10281. });
  10282. _box.appendChild(_iframe);
  10283. _box.appendChild(_jie);
  10284. _formdiv = new U.UF.UI.form(
  10285. "思维导图",
  10286. _box, { //"/jsmind/example/demo.html"
  10287. "id": "minds_Yu" + cid + stage + task + tool,
  10288. "style": {
  10289. "width": "90%",
  10290. "height": "90%",
  10291. "overflow": 'hidden'
  10292. },
  10293. "onresize": function () { }
  10294. }, {
  10295. closecallback: function () { }
  10296. }, {
  10297. "style": {
  10298. "height": "36px"
  10299. }
  10300. }).form; //创建窗体
  10301. _taskbar = {
  10302. "id": str + _formdiv.id,
  10303. "style": {
  10304. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10305. },
  10306. "name": "思维导图",
  10307. "forms": _formdiv,
  10308. "click": function () {
  10309. U.MD.D.I.openApplication(str, obj, info);
  10310. }
  10311. }
  10312. break;
  10313. case "doc":
  10314. aTool = 6;
  10315. _iframe = $$("iframe", {
  10316. "frameborder": "no",
  10317. "border": "0",
  10318. "scrolling ": "no",
  10319. "style": {
  10320. "cssText": "border:0;width:100%;height:100%"
  10321. },
  10322. "src": "/Office/Word/WordEditArea.htm"
  10323. })
  10324. _box.appendChild(_iframe);
  10325. _box.appendChild(_jie);
  10326. _formdiv = new U.UF.UI.form(
  10327. "协同文档",
  10328. _box, {
  10329. "id": "docs_Yu" + cid + stage + task + tool,
  10330. "style": {
  10331. "width": "90%",
  10332. "height": "90%",
  10333. "overflow": 'hidden'
  10334. },
  10335. "onresize": function () { }
  10336. }, {
  10337. closecallback: function () { }
  10338. }, {
  10339. "style": {
  10340. "height": "36px"
  10341. }
  10342. }).form; //创建窗体
  10343. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10344. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10345. })
  10346. _taskbar = {
  10347. "id": str + _formdiv.id,
  10348. "style": {
  10349. "backgroundImage": "url(/img/icon/doc.png)"
  10350. },
  10351. "name": "协同文档",
  10352. "forms": _formdiv,
  10353. "click": function () {
  10354. U.MD.D.I.openApplication(str, obj, info);
  10355. }
  10356. }
  10357. break;
  10358. case "CocoPi":
  10359. aTool = 57;
  10360. _iframe = $$("iframe", {
  10361. "allowpaymentrequest": "allowpaymentrequest",
  10362. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10363. "webkitallowfullscreen": "",
  10364. "mozallowfullscreen": "",
  10365. "frameborder": "no",
  10366. "border": "0",
  10367. "scrolling ": "no",
  10368. "style": {
  10369. "cssText": "border:0;width:100%;height:100%"
  10370. },
  10371. "src": "https://pi.cocorobo.cn/"
  10372. })
  10373. _box.appendChild(_iframe);
  10374. _box.appendChild(_jie);
  10375. _formdiv = new U.UF.UI.form(
  10376. "CocoPi",
  10377. _box, {
  10378. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10379. "style": {
  10380. "width": "90%",
  10381. "height": "90%",
  10382. "overflow": 'hidden'
  10383. },
  10384. "onresize": function () { }
  10385. }, {
  10386. closecallback: function () { }
  10387. }, {
  10388. "style": {
  10389. "height": "36px"
  10390. }
  10391. }).form; //创建窗体
  10392. _taskbar = {
  10393. "id": str + _formdiv.id,
  10394. "style": {
  10395. "backgroundImage": "url(/img/icon/cocopi.png)"
  10396. },
  10397. "name": "CocoPi",
  10398. "forms": _formdiv,
  10399. "click": function () {
  10400. U.MD.D.I.openApplication(str, obj, info);
  10401. }
  10402. }
  10403. break;
  10404. }
  10405. if (_iframe) {
  10406. if (str == 'doc') {
  10407. _iframe = _formdiv.querySelector('iframe')
  10408. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10409. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10410. })
  10411. if (onloadListener) {
  10412. _iframe.contentDocument.location.reload()
  10413. } else {
  10414. _iframe.contentDocument.location.reload()
  10415. }
  10416. } else if (str == 'mind') {
  10417. _iframe = _formdiv.querySelector('iframe')
  10418. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10419. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10420. })
  10421. if (onloadListener) {
  10422. _iframe.contentDocument.location.reload()
  10423. } else {
  10424. _iframe.contentDocument.location.reload()
  10425. }
  10426. } else if (str == 'whiteboard') {
  10427. _iframe = _formdiv.querySelector('iframe')
  10428. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10429. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10430. })
  10431. // if (onloadListener) {
  10432. // try {
  10433. // _iframe.src += "?cocorobo="+new Date().getTime()
  10434. // _iframe.contentWindow.document.location.reload()
  10435. // } catch (error) {
  10436. // }
  10437. // } else {
  10438. // _iframe.contentDocument.location.reload()
  10439. // }
  10440. } else if (str == 'CocoPi') {
  10441. _iframe = _formdiv.querySelector('iframe')
  10442. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10443. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10444. })
  10445. if (onloadListener) {
  10446. _iframe.contentDocument.location.reload()
  10447. } else {
  10448. _iframe.contentDocument.location.reload()
  10449. }
  10450. } else {
  10451. _iframe.onload = () => { };
  10452. }
  10453. _jie.onclick = async () => {
  10454. let text = ''
  10455. let type = '2'
  10456. if (aTool == 1) {
  10457. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10458. type = '3'
  10459. } else if (aTool == 6) {
  10460. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10461. type = '1'
  10462. } else if (aTool == 3) {
  10463. text = await U.MD.D.I.getEditorContent(_iframe);
  10464. type = '2'
  10465. } else if (aTool == 57) {
  10466. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10467. type = '4'
  10468. }
  10469. _loading.style.display = 'flex'
  10470. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10471. }
  10472. }
  10473. //U.MD.D.I.openClick(str);
  10474. //如果有任务栏信息
  10475. // if (_taskbar) {
  10476. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10477. // }
  10478. }
  10479. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10480. var xmlhttp;
  10481. var Mac, Sn, DeviceId
  10482. if (window.XMLHttpRequest) {
  10483. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10484. xmlhttp = new XMLHttpRequest();
  10485. } else {
  10486. // IE6, IE5 浏览器执行代码
  10487. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10488. }
  10489. xmlhttp.onreadystatechange = function () {
  10490. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10491. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10492. // resolve(res.value[0][0].text);
  10493. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10494. }
  10495. }
  10496. }
  10497. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10498. xmlhttp.send();
  10499. }
  10500. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10501. var xmlhttp;
  10502. var Mac, Sn, DeviceId
  10503. if (window.XMLHttpRequest) {
  10504. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10505. xmlhttp = new XMLHttpRequest();
  10506. } else {
  10507. // IE6, IE5 浏览器执行代码
  10508. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10509. }
  10510. xmlhttp.onreadystatechange = function () {
  10511. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10512. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10513. // resolve(res.value[0][0].text);
  10514. if (type == '2') {
  10515. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10516. } else if (type == '3') {
  10517. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10518. } else if (type == '4') {
  10519. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10520. }
  10521. } else {
  10522. if (type == '2') {
  10523. iframe.contentWindow.editor.minder.importData('json', '')
  10524. } else if (type == '3') {
  10525. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10526. } else if (type == '4') {
  10527. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10528. }
  10529. }
  10530. }
  10531. }
  10532. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10533. xmlhttp.send();
  10534. }
  10535. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10536. var xmlhttp;
  10537. var Mac, Sn, DeviceId
  10538. if (window.XMLHttpRequest) {
  10539. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10540. xmlhttp = new XMLHttpRequest();
  10541. } else {
  10542. // IE6, IE5 浏览器执行代码
  10543. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10544. }
  10545. xmlhttp.onreadystatechange = function () {
  10546. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10547. if (xmlhttp.response) {
  10548. // resolve(res.value[0][0].text);
  10549. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10550. // $(fileInput).val('');
  10551. // });
  10552. span.innerHTML = '上传成功'
  10553. setTimeout(() => {
  10554. loading.style.display = 'none'
  10555. }, 1000);
  10556. }
  10557. }
  10558. }
  10559. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10560. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10561. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10562. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10563. // 设置请求头,表示请求体的编码格式
  10564. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10565. // 设置请求体,使用url-encoded格式的数据
  10566. }
  10567. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10568. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10569. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10570. _userinfo = US.userInfo, //登录用户信息
  10571. _userid = US.userInfo.userid //登录用户id
  10572. let _iframe;
  10573. let _cid = cid,
  10574. _stage = stage,
  10575. _task = task,
  10576. _tool = tool;
  10577. var _jie = $$("div", {
  10578. "style": {
  10579. "position": "absolute",
  10580. "bottom": "50px",
  10581. "right": "50px",
  10582. "zIndex": "9999",
  10583. "backgroundColor": "#2268bc",
  10584. "color": "#fff",
  10585. "padding": "12px 20px",
  10586. "cursor": "pointer",
  10587. "borderRadius": "4px",
  10588. },
  10589. "innerHTML": "提交作业"
  10590. })
  10591. let aTool = ''
  10592. let _loading = document.createElement('div')
  10593. _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;"
  10594. // _loading.id = "";
  10595. let _lchild = document.createElement('div')
  10596. let _limg = document.createElement('img')
  10597. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10598. _limg.style = "width: 26px;margin-right: 10px;"
  10599. _lchild.appendChild(_limg)
  10600. let _lspan = document.createElement('span')
  10601. _lspan.innerHTML = "上传中..."
  10602. _lchild.appendChild(_lspan)
  10603. _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%);"
  10604. _loading.appendChild(_lchild)
  10605. var _box = $$('div', {
  10606. "style": {
  10607. "position": "relative",
  10608. "width": "100%",
  10609. "height": "100%",
  10610. },
  10611. })
  10612. _box.appendChild(_loading)
  10613. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10614. switch (str) {
  10615. case "CocoPi":
  10616. aTool = 57;
  10617. _iframe = $$("iframe", {
  10618. "allowpaymentrequest": "allowpaymentrequest",
  10619. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10620. "webkitallowfullscreen": "",
  10621. "mozallowfullscreen": "",
  10622. "frameborder": "no",
  10623. "border": "0",
  10624. "scrolling ": "no",
  10625. "style": {
  10626. "cssText": "border:0;width:100%;height:100%"
  10627. },
  10628. "src": "https://pi.cocorobo.cn/"
  10629. })
  10630. _box.appendChild(_iframe);
  10631. _box.appendChild(_jie);
  10632. _formdiv = new U.UF.UI.form(
  10633. "CocoPi",
  10634. _box, {
  10635. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10636. "style": {
  10637. "width": "90%",
  10638. "height": "90%",
  10639. "overflow": 'hidden'
  10640. },
  10641. "onresize": function () { }
  10642. }, {
  10643. closecallback: function () { }
  10644. }, {
  10645. "style": {
  10646. "height": "36px"
  10647. }
  10648. }).form; //创建窗体
  10649. _taskbar = {
  10650. "id": str + _formdiv.id,
  10651. "style": {
  10652. "backgroundImage": "url(/img/icon/cocopi.png)"
  10653. },
  10654. "name": "CocoPi",
  10655. "forms": _formdiv,
  10656. "click": function () {
  10657. U.MD.D.I.openApplication(str, obj, info);
  10658. }
  10659. }
  10660. break;
  10661. }
  10662. if (_iframe) {
  10663. if (str == 'CocoPi') {
  10664. _iframe = _formdiv.querySelector('iframe')
  10665. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10666. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10667. })
  10668. if (onloadListener) {
  10669. _iframe.contentDocument.location.reload()
  10670. } else {
  10671. _iframe.contentDocument.location.reload()
  10672. }
  10673. }
  10674. _jie.onclick = async () => {
  10675. let text = ''
  10676. if (aTool == 57) {
  10677. text = _iframe.contentWindow.getLoadXmlStr()
  10678. }
  10679. _loading.style.display = 'flex'
  10680. console.log(_loading);
  10681. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10682. _loading.style.display = 'none'
  10683. let _div = document.createElement('div')
  10684. _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;"
  10685. let _inner = document.createElement('div')
  10686. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10687. _inner.innerHTML = "上传成功"
  10688. _div.appendChild(_inner)
  10689. _iframe.contentWindow.window.document.body.appendChild(_div)
  10690. _div.onclick = () => {
  10691. _iframe.contentWindow.window.document.body.removeChild(_div)
  10692. }
  10693. setTimeout(() => {
  10694. _iframe.contentWindow.window.document.body.removeChild(_div)
  10695. }, 1000);
  10696. }, [], { "type": "POST", "withCredentials": true });
  10697. }
  10698. }
  10699. }
  10700. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10701. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10702. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10703. _userid = student.userid, //登录用户id
  10704. _username = student.student //用户名字
  10705. let _iframe;
  10706. let _cid = cid,
  10707. _stage = stage,
  10708. _task = task,
  10709. _tool = tool;
  10710. var _jie = $$("div", {
  10711. "style": {
  10712. "position": "absolute",
  10713. "bottom": "50px",
  10714. "right": "50px",
  10715. "zIndex": "9999",
  10716. "backgroundColor": "#2268bc",
  10717. "color": "#fff",
  10718. "padding": "12px 20px",
  10719. "cursor": "pointer",
  10720. "borderRadius": "4px",
  10721. },
  10722. "innerHTML": "提交作业"
  10723. })
  10724. let aTool = ''
  10725. let _loading = document.createElement('div')
  10726. _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;"
  10727. // _loading.id = "";
  10728. let _lchild = document.createElement('div')
  10729. let _limg = document.createElement('img')
  10730. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10731. _limg.style = "width: 26px;margin-right: 10px;"
  10732. _lchild.appendChild(_limg)
  10733. let _lspan = document.createElement('span')
  10734. _lspan.innerHTML = "上传中..."
  10735. _lchild.appendChild(_lspan)
  10736. _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%);"
  10737. _loading.appendChild(_lchild)
  10738. var _box = $$('div', {
  10739. "style": {
  10740. "position": "relative",
  10741. "width": "100%",
  10742. "height": "100%",
  10743. },
  10744. })
  10745. _box.appendChild(_loading)
  10746. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10747. switch (str) {
  10748. case "CocoPi":
  10749. aTool = 57;
  10750. _iframe = $$("iframe", {
  10751. "allowpaymentrequest": "allowpaymentrequest",
  10752. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10753. "webkitallowfullscreen": "",
  10754. "mozallowfullscreen": "",
  10755. "frameborder": "no",
  10756. "border": "0",
  10757. "scrolling ": "no",
  10758. "style": {
  10759. "cssText": "border:0;width:100%;height:100%"
  10760. },
  10761. "src": "https://pi.cocorobo.cn/"
  10762. })
  10763. _box.appendChild(_iframe);
  10764. _box.appendChild(_jie);
  10765. _formdiv = new U.UF.UI.form(
  10766. "CocoPi-" + _username,
  10767. _box, {
  10768. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10769. "style": {
  10770. "width": "90%",
  10771. "height": "90%",
  10772. "overflow": 'hidden'
  10773. },
  10774. "onresize": function () { }
  10775. }, {
  10776. closecallback: function () { }
  10777. }, {
  10778. "style": {
  10779. "height": "36px"
  10780. }
  10781. }).form; //创建窗体
  10782. _taskbar = {
  10783. "id": str + _formdiv.id,
  10784. "style": {
  10785. "backgroundImage": "url(/img/icon/cocopi.png)"
  10786. },
  10787. "name": "CocoPi",
  10788. "forms": _formdiv,
  10789. "click": function () {
  10790. U.MD.D.I.openApplication(str, obj, info);
  10791. }
  10792. }
  10793. break;
  10794. }
  10795. if (_iframe) {
  10796. if (str == 'CocoPi') {
  10797. _iframe = _formdiv.querySelector('iframe')
  10798. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10799. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10800. })
  10801. if (onloadListener) {
  10802. _iframe.contentDocument.location.reload()
  10803. } else {
  10804. _iframe.contentDocument.location.reload()
  10805. }
  10806. }
  10807. _jie.onclick = async () => {
  10808. let text = ''
  10809. if (aTool == 57) {
  10810. text = _iframe.contentWindow.getLoadXmlStr()
  10811. }
  10812. _loading.style.display = 'flex'
  10813. console.log(_loading);
  10814. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10815. _loading.style.display = 'none'
  10816. let _div = document.createElement('div')
  10817. _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;"
  10818. let _inner = document.createElement('div')
  10819. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10820. _inner.innerHTML = "上传成功"
  10821. _div.appendChild(_inner)
  10822. _iframe.contentWindow.window.document.body.appendChild(_div)
  10823. _div.onclick = () => {
  10824. _iframe.contentWindow.window.document.body.removeChild(_div)
  10825. }
  10826. setTimeout(() => {
  10827. _iframe.contentWindow.window.document.body.removeChild(_div)
  10828. }, 1000);
  10829. }, [], { "type": "POST", "withCredentials": true });
  10830. }
  10831. }
  10832. }
  10833. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10834. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10835. if (res.value[0].length > 0) {
  10836. if (atool == 57) {
  10837. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10838. }
  10839. } else {
  10840. if (atool == 57) {
  10841. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10842. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10843. }
  10844. }
  10845. }, [], { "type": "POST", "withCredentials": true });
  10846. }
  10847. U.MD.D.addOp = function(text,type,time){
  10848. var userInfo = US.userInfo;
  10849. if(Object.keys(userInfo).length !== 0){
  10850. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10851. }, [], { "type": "POST", "withCredentials": true });
  10852. }
  10853. }