DeskTop.js 712 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299
  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.tycyteacherDeskIcon = [
  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": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  726. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  729. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  730. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  731. ];
  732. //hk
  733. U.MD.D.I.tycyStudentDeskIcon = [
  734. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  740. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  741. ];
  742. //hk
  743. U.MD.D.I.hkaceteacherDeskIcon = [
  744. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  745. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  746. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  747. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  748. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  749. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  750. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  751. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  752. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  753. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  754. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  755. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  756. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  757. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  758. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  759. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  760. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  761. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  762. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  763. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  764. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceStudentDeskIcon = [
  769. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  771. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  772. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  773. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  774. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  775. ];
  776. //香海正覺蓮社佛教正覺中學
  777. U.MD.D.I.hkZJLSteacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  781. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  782. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  783. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  784. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  785. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  786. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  787. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  788. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  789. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  790. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //香海正覺蓮社佛教正覺中學
  796. U.MD.D.I.hkZJLSStudentDeskIcon = [
  797. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  798. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  799. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  800. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  801. ];
  802. //云海
  803. U.MD.D.I.yunhaiTeacherDeskIcon = [
  804. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  805. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  806. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  807. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  808. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  809. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  810. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  811. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  812. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  813. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  814. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  815. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  816. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  817. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  818. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  819. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //福田
  824. U.MD.D.I.heyuanTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  828. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  829. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  830. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  831. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  832. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  833. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  834. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  836. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  837. ];
  838. //福田
  839. U.MD.D.I.heyuanAdminDeskIcon = [
  840. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  841. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  842. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  843. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  844. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  845. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  846. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  847. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  848. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  849. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  850. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  851. ];
  852. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  853. U.MD.D.I.szherTeacherDeskIcon = [
  854. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  855. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  856. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  857. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  858. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  859. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  862. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  864. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  865. ];
  866. //dsei
  867. U.MD.D.I.dseiTeacherDeskIcon = [
  868. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  869. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  870. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  871. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  872. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  873. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  874. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  875. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  876. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  877. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  878. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  879. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  880. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  881. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  882. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  883. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  884. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  885. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  886. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  887. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  888. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  889. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  890. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  891. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  892. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  893. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  894. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  895. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  896. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  897. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  898. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  899. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  900. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  901. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  902. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  903. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  904. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  905. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  906. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  907. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  908. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  909. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  910. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  911. ];
  912. //dsei
  913. U.MD.D.I.dseiAdminDeskIcon = [
  914. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  915. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  916. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  917. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  921. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  922. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  923. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  924. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  925. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  926. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  927. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  928. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  929. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  930. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  931. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  932. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  933. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  934. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  935. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  936. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  937. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  938. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  939. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  940. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  941. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  942. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  943. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  944. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  945. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  946. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  947. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  948. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  949. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  950. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  951. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  952. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  953. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  954. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  955. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  956. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  957. ];
  958. //dsei
  959. U.MD.D.I.dseiStudentDeskIcon = [
  960. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  961. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  962. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  963. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  964. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  965. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  966. ];
  967. //未来教育基地
  968. U.MD.D.I.szjkyTeacherDeskIcon = [
  969. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  970. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  971. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  972. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  973. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  974. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  975. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  976. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  977. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  978. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  979. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  980. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  981. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  982. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  983. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  984. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  985. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  986. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  987. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  988. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  989. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  990. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  991. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  992. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  993. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  994. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  995. ];
  996. //未来教育基地
  997. U.MD.D.I.szjkyAdminDeskIcon = [
  998. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  999. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1001. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1002. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1003. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1004. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1005. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1015. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1016. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1017. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1018. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1019. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1020. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1021. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1022. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1023. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1024. ];
  1025. //未来教育基地
  1026. U.MD.D.I.szjkyStudentDeskIcon = [
  1027. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1028. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1029. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1030. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1031. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1032. ];
  1033. //成华教育局
  1034. U.MD.D.I.chjyjTeacherDeskIcon = [
  1035. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1036. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1040. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1041. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1042. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1043. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1044. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1045. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1046. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //成华教育局chjyj
  1051. U.MD.D.I.chjyjAdminDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1055. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1056. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1057. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1058. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1059. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1062. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1063. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1064. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1065. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1066. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1067. ];
  1068. //成华教育局chjyj
  1069. U.MD.D.I.chjyjStudentDeskIcon = [
  1070. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1071. { "Name": "项目管理", "Url": "studentCourse", "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. ];
  1075. //tpc
  1076. U.MD.D.I.tpcStudentDeskIcon = [
  1077. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1078. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1079. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1080. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1081. ];
  1082. //tpc
  1083. U.MD.D.I.tpcTeacherDeskIcon = [
  1084. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1085. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1086. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1087. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //tpc
  1093. U.MD.D.I.tpcAdminDeskIcon = [
  1094. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1095. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1100. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1101. ];
  1102. //THU-IOE
  1103. U.MD.D.I.thuioeTeacherDeskIcon = [
  1104. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1105. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1107. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1108. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1110. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1111. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1112. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1113. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1114. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1115. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1116. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1117. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1118. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1119. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1120. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1121. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1122. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1123. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1124. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1125. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1126. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1127. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1128. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1129. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1130. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1131. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1132. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1133. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1134. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1135. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1136. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1137. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1138. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1139. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1141. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1142. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1143. ];
  1144. //THU-IOE
  1145. U.MD.D.I.thuioeStudentDeskIcon = [
  1146. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1149. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1150. ];
  1151. //jccssyl
  1152. U.MD.D.I.jccssylTeacherDeskIcon = [
  1153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1155. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1157. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1158. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1159. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1160. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1161. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1162. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1163. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1164. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1165. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1166. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1167. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1168. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1169. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1170. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1171. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1172. ];
  1173. //jccssyl
  1174. U.MD.D.I.jccssylStudentDeskIcon = [
  1175. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1176. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1177. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1178. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1179. ];
  1180. //cale
  1181. U.MD.D.I.caleTeacherDeskIcon = [
  1182. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1183. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1184. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1185. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1186. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1187. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1188. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1189. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1190. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1191. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1192. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1193. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1194. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1195. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1196. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1197. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1198. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1199. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1200. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1201. ];
  1202. //cale
  1203. U.MD.D.I.caleStudentDeskIcon = [
  1204. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1205. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1206. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1207. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1208. ];
  1209. //lqwmsgzs
  1210. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1211. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1212. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1214. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1215. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1216. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1217. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1218. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1219. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1221. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1222. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1223. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1224. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1225. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1226. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1227. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1228. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1229. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1230. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1231. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1232. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1233. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1234. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1235. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1236. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1237. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1238. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1239. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1240. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1241. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1242. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1243. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1244. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1245. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1246. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1247. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1248. ];
  1249. //lqwmsgzs
  1250. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1251. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1252. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1253. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1254. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1255. ];
  1256. //盐田区幼儿园
  1257. U.MD.D.I.ytyTeacherDeskIcon = [
  1258. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1259. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1260. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1261. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1262. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1263. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1264. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1265. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1267. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1268. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1269. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1270. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1271. ];
  1272. //盐田区幼儿园
  1273. U.MD.D.I.ytyStudentDeskIcon = [
  1274. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1275. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1276. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1277. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1280. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1281. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1282. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1283. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1284. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1285. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1286. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1287. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1288. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1289. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1290. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1291. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1292. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1293. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1294. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1295. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1296. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1297. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1298. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1299. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1300. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1301. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1302. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1303. ];
  1304. //scnuai
  1305. U.MD.D.I.scnuaiAdminDeskIcon = [
  1306. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1307. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1308. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1311. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1312. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1315. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1316. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1317. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1318. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1320. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1321. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1322. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1323. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1324. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1325. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1326. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1327. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1328. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1329. ];
  1330. //scnuai
  1331. U.MD.D.I.scnuaiStudentDeskIcon = [
  1332. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1336. ];
  1337. //cocobiz
  1338. U.MD.D.I.cocobizteacherDeskIcon = [
  1339. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1340. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1341. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1342. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1343. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1345. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1346. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1347. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1348. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1349. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1350. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1351. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1352. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1353. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1354. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1355. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1356. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1357. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1358. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1359. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1360. ];
  1361. //cocobiz
  1362. U.MD.D.I.cocobizStudentDeskIcon = [
  1363. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1364. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1366. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1367. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1368. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1369. ];
  1370. //xxzjky
  1371. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1372. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1373. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1374. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1375. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1376. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1377. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1378. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1379. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1380. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1381. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1382. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1383. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1384. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1385. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1386. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1389. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1391. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1392. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1393. ];
  1394. //xxzjky
  1395. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1396. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1397. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1398. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1399. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1400. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1401. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. ];
  1403. //nsfx
  1404. U.MD.D.I.nsfxTeacherDeskIcon = [
  1405. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1406. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1408. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1409. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1410. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1411. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1412. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1413. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1414. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1415. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1416. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1417. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1418. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1419. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1420. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1421. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1422. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1423. ];
  1424. //nsfx
  1425. U.MD.D.I.nsfxStudentDeskIcon = [
  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. //stia
  1432. U.MD.D.I.stiaTeacherDeskIcon = [
  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. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1437. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1438. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1439. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1440. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1441. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1442. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1443. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1444. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1445. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1446. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1447. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1448. ];
  1449. //stia
  1450. U.MD.D.I.stiaStudentDeskIcon = [
  1451. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. ];
  1456. //szdjg
  1457. U.MD.D.I.szdjgTeacherDeskIcon = [
  1458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. ];
  1461. //szdjg
  1462. U.MD.D.I.szdjgStudentDeskIcon = [
  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. //010607
  1469. U.MD.D.I.x010607TeacherDeskIcon = [
  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": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1478. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1479. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1480. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1481. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1482. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1483. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1484. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1485. ];
  1486. //010607
  1487. U.MD.D.I.x010607StudentDeskIcon = [
  1488. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1489. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1490. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1491. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. ];
  1493. //010608
  1494. U.MD.D.I.x010608TeacherDeskIcon = [
  1495. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1496. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1498. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1499. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1500. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1501. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1502. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1505. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1506. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1507. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1508. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1509. ];
  1510. //010608
  1511. U.MD.D.I.x010608StudentDeskIcon = [
  1512. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1513. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1514. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. ];
  1517. //xhly
  1518. U.MD.D.I.xhlyTeacherDeskIcon = [
  1519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1520. ];
  1521. //010608
  1522. U.MD.D.I.xhlyStudentDeskIcon = [
  1523. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1524. ];
  1525. //北师大
  1526. U.MD.D.I.BSDNSteacherDeskIcon = [
  1527. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1528. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1529. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1530. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1531. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1532. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1533. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1534. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1535. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1536. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1537. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1538. ];
  1539. //北师大
  1540. U.MD.D.I.BSDNSstudentDeskIcon = [
  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. //CUHK_EDU
  1547. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1555. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1556. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1557. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1558. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1559. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1560. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1561. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1562. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1563. ];
  1564. //CUHK_EDU
  1565. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1566. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1567. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1568. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1570. ];
  1571. //010503
  1572. U.MD.D.I.x010503TeacherDeskIcon = [
  1573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1579. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1580. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1581. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1582. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1583. ];
  1584. //010503
  1585. U.MD.D.I.x010503StudentDeskIcon = [
  1586. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1587. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1588. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1589. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1590. ];
  1591. //SPROUT Lab
  1592. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1593. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1594. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1595. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1596. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1597. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1599. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1602. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1603. ];
  1604. //SPROUT Lab
  1605. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1606. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1607. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1609. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1610. ];
  1611. //010204
  1612. U.MD.D.I.x010204TeacherDeskIcon = [
  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. ];
  1616. //010204
  1617. U.MD.D.I.x010204StudentDeskIcon = [
  1618. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1619. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1620. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1621. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1622. ];
  1623. //trail
  1624. U.MD.D.I.trailTeacherDeskIcon = [
  1625. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1626. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1627. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1628. ];
  1629. //trail
  1630. U.MD.D.I.trailStudentDeskIcon = [
  1631. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1632. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1633. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1634. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1635. ];
  1636. //trial
  1637. U.MD.D.I.trialTeacherDeskIcon = [
  1638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1640. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1641. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1642. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1643. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1644. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1645. ];
  1646. //trial
  1647. U.MD.D.I.trialStudentDeskIcon = [
  1648. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1649. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1650. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1651. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1652. ];
  1653. //010504
  1654. U.MD.D.I.x010504TeacherDeskIcon = [
  1655. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1656. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1657. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1658. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1659. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1660. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1661. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1663. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1664. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1665. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1666. ];
  1667. //010504
  1668. U.MD.D.I.x010504StudentDeskIcon = [
  1669. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1670. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1671. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1672. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1673. ];
  1674. //010505
  1675. U.MD.D.I.x010505TeacherDeskIcon = [
  1676. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1677. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1678. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1679. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1680. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1681. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1682. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1683. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1684. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1685. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1686. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1687. ];
  1688. //010505
  1689. U.MD.D.I.x010505StudentDeskIcon = [
  1690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1692. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1693. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1694. ];
  1695. //SCNUET
  1696. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1699. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1702. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1703. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1704. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1705. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1706. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1708. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1709. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1710. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1711. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1712. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1713. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1714. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1715. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1716. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1717. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1718. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1719. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1720. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1721. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1722. ];
  1723. //SCNUET
  1724. U.MD.D.I.SCNUETAdminDeskIcon = [
  1725. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1726. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1727. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1729. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1730. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1731. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1732. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1735. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1736. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1737. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1738. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1739. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1741. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1742. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1743. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1744. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1745. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1746. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1747. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.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. ];
  1751. //SCNUET
  1752. U.MD.D.I.SCNUETStudentDeskIcon = [
  1753. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1754. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1755. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1757. ];
  1758. //x020201
  1759. U.MD.D.I.x020201TeacherDeskIcon = [
  1760. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1761. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1762. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1764. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1765. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1766. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1767. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1768. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1769. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1770. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1771. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1772. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1773. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1774. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1775. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1776. ];
  1777. //x020201
  1778. U.MD.D.I.x020201AdminDeskIcon = [
  1779. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1780. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1781. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1782. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1783. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1784. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1785. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1786. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1787. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1790. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1791. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1792. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1793. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1794. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1795. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1796. ];
  1797. //020201
  1798. U.MD.D.I.x020201StudentDeskIcon = [
  1799. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1800. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1801. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1803. ];
  1804. //010611
  1805. U.MD.D.I.x010611TeacherDeskIcon = [
  1806. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1807. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1808. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1809. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1810. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1811. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1812. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1813. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1814. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1815. ];
  1816. //010611
  1817. U.MD.D.I.x010611StudentDeskIcon = [
  1818. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1819. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1820. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1821. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1822. ];
  1823. //010612
  1824. U.MD.D.I.x010612TeacherDeskIcon = [
  1825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1831. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1832. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1833. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1834. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1835. ];
  1836. //010612
  1837. U.MD.D.I.x010612StudentDeskIcon = [
  1838. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1839. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1840. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1841. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1842. ];
  1843. //tianyuan
  1844. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1845. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1846. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1847. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1848. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1849. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1850. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1851. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1852. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1853. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1854. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1855. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1856. ];
  1857. //010611
  1858. U.MD.D.I.tianyuanStudentDeskIcon = [
  1859. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1860. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1861. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1862. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1863. ];
  1864. //320101
  1865. U.MD.D.I.x320101TeacherDeskIcon = [
  1866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1872. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1873. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1874. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1875. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1876. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1877. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1878. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1879. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1880. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1881. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1882. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1883. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1884. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1885. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1886. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1887. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1888. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1889. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1890. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1891. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1892. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1893. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1894. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1895. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1896. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1897. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1898. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1899. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.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": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1903. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1904. ];
  1905. //320101
  1906. U.MD.D.I.x320101StudentDeskIcon = [
  1907. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1908. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1909. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1911. ];
  1912. //szsy
  1913. U.MD.D.I.szsyTeacherDeskIcon = [
  1914. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1915. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1916. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1917. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1918. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1919. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1920. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1921. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1922. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1923. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1924. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1925. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1926. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.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": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1930. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1931. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1932. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1933. ];
  1934. //szsy
  1935. U.MD.D.I.szsyStudentDeskIcon = [
  1936. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1937. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1938. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1939. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1940. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1941. ];
  1942. //010404
  1943. U.MD.D.I.x010404TeacherDeskIcon = [
  1944. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1945. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1946. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1947. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1948. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1949. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1950. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1951. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1952. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1953. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1954. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1955. ];
  1956. //010404
  1957. U.MD.D.I.x010404StudentDeskIcon = [
  1958. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1959. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1960. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1961. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1962. ];
  1963. //#region 桌面初始化a
  1964. /**
  1965. * 初始化桌面的起始函数
  1966. *
  1967. */
  1968. U.MD.D.I.init = function () {
  1969. if ($("#U_MD_D_K")[0]) {
  1970. //初始化桌面图标
  1971. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1972. // var clickUrl = ':12588/requestIp.php';
  1973. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1974. // U.MD.D.I.Ip = data;
  1975. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1976. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1977. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1978. // })
  1979. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1980. // })
  1981. }
  1982. }
  1983. /**
  1984. * 模式切换
  1985. *
  1986. */
  1987. U.MD.D.I.ModeCheck = function (type) {
  1988. if (US.Config.type == type) {
  1989. return
  1990. }
  1991. US.Config.type = type
  1992. $('.U_PBL_Check .active')[0].className = ''
  1993. if (type == 1) {
  1994. $('.U_PBL_Check div')[0].className = 'active'
  1995. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1996. } else {
  1997. $('.U_PBL_Check div')[1].className = 'active'
  1998. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1999. }
  2000. //初始化桌面图标
  2001. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2002. if (type == 2) {
  2003. U.MD.D.I.openApplication("project")
  2004. }
  2005. }
  2006. /**
  2007. * 隐藏任务栏
  2008. *
  2009. * @param {element} 桌面元素
  2010. */
  2011. U.MD.D.I.hiddenTaskbar = function (el) {
  2012. //任务栏位置变小
  2013. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2014. //桌面的位置变大
  2015. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2016. }
  2017. /**
  2018. * 隐藏任务栏
  2019. *
  2020. * @param {element} 桌面元素
  2021. */
  2022. U.MD.D.I.hiddenTaskbarout = function (el) {
  2023. //任务栏位置变小
  2024. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2025. //任务栏位置变化
  2026. U.selectEl(el).css({ "bottom": "-60px" });
  2027. //桌面的位置变大
  2028. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2029. }
  2030. }
  2031. /**
  2032. * 初始化打印桌面图标
  2033. *
  2034. * @param {element} 桌面元素
  2035. */
  2036. U.MD.D.I.initDesktopIcons = function (el, type) {
  2037. var i, //用于循环
  2038. _content, //桌面图标元素
  2039. _iconcontent, //桌面图标元素
  2040. _frag = $$("frag"), //定义一个碎片元素
  2041. _type = US.userInfo.type,
  2042. _org = US.userInfo.org,
  2043. _oid = US.userInfo.organizeid,
  2044. _role = US.userInfo.role,
  2045. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2046. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2047. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2048. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2049. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2050. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2051. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2052. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2053. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2054. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2055. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2056. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2057. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2058. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2059. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2060. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2061. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2062. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2063. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2064. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2065. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2066. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2067. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2068. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2069. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2070. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2071. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2072. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2073. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2074. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2075. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2076. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2077. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2078. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2079. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2080. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2081. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2082. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2083. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2084. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2085. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2086. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2087. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2088. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2089. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2090. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2091. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2092. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2093. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2094. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2095. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2096. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2097. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2098. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2099. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2100. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2101. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2102. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2103. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2104. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2105. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2106. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2107. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2108. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2109. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2110. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2111. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2112. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2113. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2114. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2115. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2116. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2117. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2118. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2119. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2120. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2121. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2122. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2123. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2124. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2125. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2126. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2127. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2128. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2129. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2130. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2131. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2132. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2133. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2134. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2135. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2136. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2137. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2138. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2139. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2140. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2141. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2142. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2143. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2144. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2145. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2146. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2147. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2148. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2149. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2150. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2151. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2152. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2153. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2154. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2155. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2156. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2157. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2158. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2159. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2160. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2161. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2162. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2163. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2164. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2165. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2166. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2167. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2168. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2169. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2170. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2171. 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'];
  2172. 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','62c166af-2f22-11f0-b60f-005056924926'];
  2173. 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",]
  2174. //清楚桌面图标
  2175. el.innerHTML = "";
  2176. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2177. _teacherDesktopIconInfo.push(
  2178. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2179. { "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)" } },
  2180. )
  2181. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2182. }
  2183. 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') {
  2184. _teacherDesktopIconInfo.push(
  2185. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2186. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2187. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2188. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2189. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2190. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2191. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2192. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2193. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2194. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2195. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2197. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2198. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2199. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2200. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2201. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2202. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2203. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2204. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2205. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2206. )
  2207. }
  2208. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2209. _teacherDesktopIconInfo.push(
  2210. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2211. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2212. )
  2213. }
  2214. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2215. _nsfxTeacherDeskIconInfo.push(
  2216. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2217. )
  2218. }
  2219. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2220. // _teacherDesktopIconInfo.push(
  2221. // )
  2222. // }
  2223. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2224. _teacherDesktopIconInfo.push(
  2225. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2226. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2227. )
  2228. }
  2229. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2230. _teacherDesktopIconInfo.push(
  2231. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2232. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2233. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2234. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2235. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2236. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2237. )
  2238. _studentDesktopIconInfo.push(
  2239. )
  2240. }
  2241. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2242. _teacherDesktopIconInfo.push(
  2243. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2244. )
  2245. _studentDesktopIconInfo.push(
  2246. )
  2247. }
  2248. //010606 组织
  2249. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2250. _teacherDesktopIconInfo.push(
  2251. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2252. )
  2253. _studentDesktopIconInfo.push(
  2254. )
  2255. }
  2256. //麒麟二中 和 民新小学
  2257. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2258. _teacherDesktopIconInfo.push(
  2259. )
  2260. }
  2261. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2262. _teacherDesktopIconInfo.push(
  2263. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2264. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2265. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2266. )
  2267. }
  2268. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2269. _hkTeacherDeskIconInfo.push(
  2270. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2271. )
  2272. }
  2273. //北师大附中(010601)
  2274. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2275. // _teacherDesktopIconInfo.push(
  2276. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2277. // )
  2278. // _studentDesktopIconInfo.push(
  2279. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2280. // )
  2281. // }
  2282. //樂善堂余近卿中學
  2283. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2284. _teacherDesktopIconInfo.push(
  2285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2286. )
  2287. }
  2288. // Education Artificial Intelligence
  2289. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2290. _teacherDesktopIconInfo.push(
  2291. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2292. )
  2293. }
  2294. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2295. _teacherDesktopIconInfo.push(
  2296. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2297. )
  2298. }
  2299. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2300. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2301. _teacherDesktopIconInfo.push(
  2302. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2303. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2304. )
  2305. }
  2306. //麒麟二中
  2307. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2308. _studentDesktopIconInfo.push(
  2309. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2310. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2311. )
  2312. }
  2313. //万科双语
  2314. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2315. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2316. if (el.Name == '项目管理') {
  2317. el.Name = 'PBL项目'
  2318. }
  2319. return el
  2320. })
  2321. _studentDesktopIconInfo3.push(
  2322. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2323. )
  2324. }
  2325. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2326. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2327. return el.Name != '魔盒识字' && el.Name != '24点'
  2328. })
  2329. }
  2330. 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) {
  2331. _studentDesktopIconInfo.push(
  2332. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2333. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2334. )
  2335. }
  2336. //循环创建桌面图标
  2337. if (type == 1) {
  2338. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2339. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2340. _content = $$("div", {
  2341. className: "U_MD_D_KO",
  2342. "onmousedown": U.UF.C.closure(function (obj) {
  2343. //防止拖动图标即打开了桌面应用
  2344. U.MD.D.click(this, obj);
  2345. }, [_studentDesktopIconInfo[i]]),
  2346. "onclick": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_studentDesktopIconInfo[i]])
  2350. }, _frag); //
  2351. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2352. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2353. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2354. }
  2355. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2356. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2357. _content = $$("div", {
  2358. className: "U_MD_D_KO",
  2359. "onmousedown": U.UF.C.closure(function (obj) {
  2360. //防止拖动图标即打开了桌面应用
  2361. U.MD.D.click(this, obj);
  2362. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2363. "onclick": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_hkZJLSStudentDeskIconInfo[i]])
  2367. }, _frag); //
  2368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2371. } //
  2372. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2373. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2374. _content = $$("div", {
  2375. className: "U_MD_D_KO",
  2376. "onmousedown": U.UF.C.closure(function (obj) {
  2377. //防止拖动图标即打开了桌面应用
  2378. U.MD.D.click(this, obj);
  2379. }, [_ytyStudentDeskIconInfo[i]]),
  2380. "onclick": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_ytyStudentDeskIconInfo[i]])
  2384. }, _frag); //
  2385. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2386. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2387. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2388. } //
  2389. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2390. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2391. _content = $$("div", {
  2392. className: "U_MD_D_KO",
  2393. "onmousedown": U.UF.C.closure(function (obj) {
  2394. //防止拖动图标即打开了桌面应用
  2395. U.MD.D.click(this, obj);
  2396. }, [_jccssylStudentDeskIconInfo[i]]),
  2397. "onclick": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_jccssylStudentDeskIconInfo[i]])
  2401. }, _frag); //
  2402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2405. }
  2406. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2407. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2408. _content = $$("div", {
  2409. className: "U_MD_D_KO",
  2410. "onmousedown": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_scnuaiStudentDeskIconInfo[i]]),
  2414. "onclick": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_scnuaiStudentDeskIconInfo[i]])
  2418. }, _frag); //
  2419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2422. }
  2423. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2424. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2425. _content = $$("div", {
  2426. className: "U_MD_D_KO",
  2427. "onmousedown": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_caleStudentDeskIconInfo[i]]),
  2431. "onclick": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_caleStudentDeskIconInfo[i]])
  2435. }, _frag); //
  2436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2439. }
  2440. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2441. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2442. _content = $$("div", {
  2443. className: "U_MD_D_KO",
  2444. "onmousedown": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_thuioeStudentDeskIconInfo[i]]),
  2448. "onclick": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_thuioeStudentDeskIconInfo[i]])
  2452. }, _frag); //
  2453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2456. }
  2457. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2458. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2459. _content = $$("div", {
  2460. className: "U_MD_D_KO",
  2461. "onmousedown": U.UF.C.closure(function (obj) {
  2462. //防止拖动图标即打开了桌面应用
  2463. U.MD.D.click(this, obj);
  2464. }, [_tpcStudentDeskIconInfo[i]]),
  2465. "onclick": U.UF.C.closure(function (obj) {
  2466. //防止拖动图标即打开了桌面应用
  2467. U.MD.D.click(this, obj);
  2468. }, [_tpcStudentDeskIconInfo[i]])
  2469. }, _frag); //
  2470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2473. } //
  2474. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2475. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2476. _content = $$("div", {
  2477. className: "U_MD_D_KO",
  2478. "onmousedown": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_chjyjStudentDeskIconInfo[i]]),
  2482. "onclick": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_chjyjStudentDeskIconInfo[i]])
  2486. }, _frag); //
  2487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2490. }
  2491. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2492. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2493. _content = $$("div", {
  2494. className: "U_MD_D_KO",
  2495. "onmousedown": U.UF.C.closure(function (obj) {
  2496. //防止拖动图标即打开了桌面应用
  2497. U.MD.D.click(this, obj);
  2498. }, [_szjkyStudentDeskIconInfo[i]]),
  2499. "onclick": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_szjkyStudentDeskIconInfo[i]])
  2503. }, _frag); //
  2504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2507. }
  2508. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2509. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2510. _content = $$("div", {
  2511. className: "U_MD_D_KO",
  2512. "onmousedown": U.UF.C.closure(function (obj) {
  2513. //防止拖动图标即打开了桌面应用
  2514. U.MD.D.click(this, obj);
  2515. }, [_x020201StudentDeskIconInfo[i]]),
  2516. "onclick": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_x020201StudentDeskIconInfo[i]])
  2520. }, _frag); //
  2521. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2522. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2523. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2524. }
  2525. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2526. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2527. _content = $$("div", {
  2528. className: "U_MD_D_KO",
  2529. "onmousedown": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_SCNUETStudentDeskIconInfo[i]]),
  2533. "onclick": U.UF.C.closure(function (obj) {
  2534. //防止拖动图标即打开了桌面应用
  2535. U.MD.D.click(this, obj);
  2536. }, [_SCNUETStudentDeskIconInfo[i]])
  2537. }, _frag); //
  2538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2541. }
  2542. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2543. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2544. _content = $$("div", {
  2545. className: "U_MD_D_KO",
  2546. "onmousedown": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_dseiStudentDeskIconInfo[i]]),
  2550. "onclick": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_dseiStudentDeskIconInfo[i]])
  2554. }, _frag); //
  2555. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2556. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2557. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2558. }
  2559. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2560. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2561. _content = $$("div", {
  2562. className: "U_MD_D_KO",
  2563. "onmousedown": U.UF.C.closure(function (obj) {
  2564. //防止拖动图标即打开了桌面应用
  2565. U.MD.D.click(this, obj);
  2566. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2567. "onclick": U.UF.C.closure(function (obj) {
  2568. //防止拖动图标即打开了桌面应用
  2569. U.MD.D.click(this, obj);
  2570. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2571. }, _frag); //
  2572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2575. }
  2576. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2577. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2578. _content = $$("div", {
  2579. className: "U_MD_D_KO",
  2580. "onmousedown": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_nsfxStudentDeskIconInfo[i]]),
  2584. "onclick": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_nsfxStudentDeskIconInfo[i]])
  2588. }, _frag); //
  2589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2592. }
  2593. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2594. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2595. _content = $$("div", {
  2596. className: "U_MD_D_KO",
  2597. "onmousedown": U.UF.C.closure(function (obj) {
  2598. //防止拖动图标即打开了桌面应用
  2599. U.MD.D.click(this, obj);
  2600. }, [_stiaStudentDeskIconInfo[i]]),
  2601. "onclick": U.UF.C.closure(function (obj) {
  2602. //防止拖动图标即打开了桌面应用
  2603. U.MD.D.click(this, obj);
  2604. }, [_stiaStudentDeskIconInfo[i]])
  2605. }, _frag); //
  2606. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2607. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2608. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2609. }
  2610. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2611. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2612. _content = $$("div", {
  2613. className: "U_MD_D_KO",
  2614. "onmousedown": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_szdjgStudentDeskIconInfo[i]]),
  2618. "onclick": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_szdjgStudentDeskIconInfo[i]])
  2622. }, _frag); //
  2623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2626. }
  2627. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2628. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2629. _content = $$("div", {
  2630. className: "U_MD_D_KO",
  2631. "onmousedown": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_x010607StudentDeskIconInfo[i]]),
  2635. "onclick": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_x010607StudentDeskIconInfo[i]])
  2639. }, _frag); //
  2640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2643. }
  2644. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2645. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2646. _content = $$("div", {
  2647. className: "U_MD_D_KO",
  2648. "onmousedown": U.UF.C.closure(function (obj) {
  2649. //防止拖动图标即打开了桌面应用
  2650. U.MD.D.click(this, obj);
  2651. }, [_xhlyStudentDeskIconInfo[i]]),
  2652. "onclick": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_xhlyStudentDeskIconInfo[i]])
  2656. }, _frag); //
  2657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2660. }
  2661. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2662. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2663. _content = $$("div", {
  2664. className: "U_MD_D_KO",
  2665. "onmousedown": U.UF.C.closure(function (obj) {
  2666. //防止拖动图标即打开了桌面应用
  2667. U.MD.D.click(this, obj);
  2668. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2669. "onclick": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2673. }, _frag); //
  2674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2677. }
  2678. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2679. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2680. _content = $$("div", {
  2681. className: "U_MD_D_KO",
  2682. "onmousedown": U.UF.C.closure(function (obj) {
  2683. //防止拖动图标即打开了桌面应用
  2684. U.MD.D.click(this, obj);
  2685. }, [_x010503StudentDeskIconInfo[i]]),
  2686. "onclick": U.UF.C.closure(function (obj) {
  2687. //防止拖动图标即打开了桌面应用
  2688. U.MD.D.click(this, obj);
  2689. }, [_x010503StudentDeskIconInfo[i]])
  2690. }, _frag); //
  2691. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2692. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2693. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2694. }
  2695. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2696. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2697. _content = $$("div", {
  2698. className: "U_MD_D_KO",
  2699. "onmousedown": U.UF.C.closure(function (obj) {
  2700. //防止拖动图标即打开了桌面应用
  2701. U.MD.D.click(this, obj);
  2702. }, [_x010504StudentDeskIconInfo[i]]),
  2703. "onclick": U.UF.C.closure(function (obj) {
  2704. //防止拖动图标即打开了桌面应用
  2705. U.MD.D.click(this, obj);
  2706. }, [_x010504StudentDeskIconInfo[i]])
  2707. }, _frag); //
  2708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2711. }
  2712. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2713. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2714. _content = $$("div", {
  2715. className: "U_MD_D_KO",
  2716. "onmousedown": U.UF.C.closure(function (obj) {
  2717. //防止拖动图标即打开了桌面应用
  2718. U.MD.D.click(this, obj);
  2719. }, [_x010505StudentDeskIconInfo[i]]),
  2720. "onclick": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_x010505StudentDeskIconInfo[i]])
  2724. }, _frag); //
  2725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2728. }
  2729. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2730. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2731. _content = $$("div", {
  2732. className: "U_MD_D_KO",
  2733. "onmousedown": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_x010404StudentDeskIconInfo[i]]),
  2737. "onclick": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_x010404StudentDeskIconInfo[i]])
  2741. }, _frag); //
  2742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2745. }
  2746. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2747. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2748. _content = $$("div", {
  2749. className: "U_MD_D_KO",
  2750. "onmousedown": U.UF.C.closure(function (obj) {
  2751. //防止拖动图标即打开了桌面应用
  2752. U.MD.D.click(this, obj);
  2753. }, [_x010204StudentDeskIconInfo[i]]),
  2754. "onclick": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_x010204StudentDeskIconInfo[i]])
  2758. }, _frag); //
  2759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2762. }
  2763. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2764. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2765. _content = $$("div", {
  2766. className: "U_MD_D_KO",
  2767. "onmousedown": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_x320101StudentDeskIconInfo[i]]),
  2771. "onclick": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_x320101StudentDeskIconInfo[i]])
  2775. }, _frag); //
  2776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2779. }
  2780. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2781. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2782. _content = $$("div", {
  2783. className: "U_MD_D_KO",
  2784. "onmousedown": U.UF.C.closure(function (obj) {
  2785. //防止拖动图标即打开了桌面应用
  2786. U.MD.D.click(this, obj);
  2787. }, [_trailStudentDeskIconInfo[i]]),
  2788. "onclick": U.UF.C.closure(function (obj) {
  2789. //防止拖动图标即打开了桌面应用
  2790. U.MD.D.click(this, obj);
  2791. }, [_trailStudentDeskIconInfo[i]])
  2792. }, _frag); //
  2793. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2794. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2795. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2796. }
  2797. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2798. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2799. _content = $$("div", {
  2800. className: "U_MD_D_KO",
  2801. "onmousedown": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_trialStudentDeskIconInfo[i]]),
  2805. "onclick": U.UF.C.closure(function (obj) {
  2806. //防止拖动图标即打开了桌面应用
  2807. U.MD.D.click(this, obj);
  2808. }, [_trialStudentDeskIconInfo[i]])
  2809. }, _frag); //
  2810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2813. }
  2814. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2815. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2816. _content = $$("div", {
  2817. className: "U_MD_D_KO",
  2818. "onmousedown": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2822. "onclick": U.UF.C.closure(function (obj) {
  2823. //防止拖动图标即打开了桌面应用
  2824. U.MD.D.click(this, obj);
  2825. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2826. }, _frag); //
  2827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2830. }
  2831. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2832. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2833. _content = $$("div", {
  2834. className: "U_MD_D_KO",
  2835. "onmousedown": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_szsyStudentDeskIconInfo[i]]),
  2839. "onclick": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_szsyStudentDeskIconInfo[i]])
  2843. }, _frag); //
  2844. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2845. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2846. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2847. }
  2848. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2849. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2850. _content = $$("div", {
  2851. className: "U_MD_D_KO",
  2852. "onmousedown": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_x010608StudentDeskIconInfo[i]]),
  2856. "onclick": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_x010608StudentDeskIconInfo[i]])
  2860. }, _frag); //
  2861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2864. }
  2865. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2866. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2867. _content = $$("div", {
  2868. className: "U_MD_D_KO",
  2869. "onmousedown": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_x010611StudentDeskIconInfo[i]]),
  2873. "onclick": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_x010611StudentDeskIconInfo[i]])
  2877. }, _frag); //
  2878. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2881. }
  2882. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2883. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2884. _content = $$("div", {
  2885. className: "U_MD_D_KO",
  2886. "onmousedown": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_x010612StudentDeskIconInfo[i]]),
  2890. "onclick": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_x010612StudentDeskIconInfo[i]])
  2894. }, _frag); //
  2895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2898. }
  2899. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2900. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2901. _content = $$("div", {
  2902. className: "U_MD_D_KO",
  2903. "onmousedown": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_tianyuantudentDeskIconInfo[i]]),
  2907. "onclick": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_tianyuantudentDeskIconInfo[i]])
  2911. }, _frag); //
  2912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2915. }
  2916. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2917. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2918. _content = $$("div", {
  2919. className: "U_MD_D_KO",
  2920. "onmousedown": U.UF.C.closure(function (obj) {
  2921. //防止拖动图标即打开了桌面应用
  2922. U.MD.D.click(this, obj);
  2923. }, [_siesStudentDeskIconInfo[i]]),
  2924. "onclick": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_siesStudentDeskIconInfo[i]])
  2928. }, _frag); //
  2929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2932. }
  2933. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2934. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_guzmsStudentDeskIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_guzmsStudentDeskIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2951. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2952. _content = $$("div", {
  2953. className: "U_MD_D_KO",
  2954. "onmousedown": U.UF.C.closure(function (obj) {
  2955. //防止拖动图标即打开了桌面应用
  2956. U.MD.D.click(this, obj);
  2957. }, [_hkStudentDeskIconInfo[i]]),
  2958. "onclick": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_hkStudentDeskIconInfo[i]])
  2962. }, _frag); //
  2963. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2964. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2965. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2966. }
  2967. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  2968. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  2969. _content = $$("div", {
  2970. className: "U_MD_D_KO",
  2971. "onmousedown": U.UF.C.closure(function (obj) {
  2972. //防止拖动图标即打开了桌面应用
  2973. U.MD.D.click(this, obj);
  2974. }, [_tycyStudentDeskIconInfo[i]]),
  2975. "onclick": U.UF.C.closure(function (obj) {
  2976. //防止拖动图标即打开了桌面应用
  2977. U.MD.D.click(this, obj);
  2978. }, [_tycyStudentDeskIconInfo[i]])
  2979. }, _frag); //
  2980. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2981. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  2982. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  2983. }
  2984. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2985. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2986. _content = $$("div", {
  2987. className: "U_MD_D_KO",
  2988. "onmousedown": U.UF.C.closure(function (obj) {
  2989. //防止拖动图标即打开了桌面应用
  2990. U.MD.D.click(this, obj);
  2991. }, [_hkaceStudentDeskIconInfo[i]]),
  2992. "onclick": U.UF.C.closure(function (obj) {
  2993. //防止拖动图标即打开了桌面应用
  2994. U.MD.D.click(this, obj);
  2995. }, [_hkaceStudentDeskIconInfo[i]])
  2996. }, _frag); //
  2997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3000. }
  3001. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3002. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3003. _content = $$("div", {
  3004. className: "U_MD_D_KO",
  3005. "onmousedown": U.UF.C.closure(function (obj) {
  3006. //防止拖动图标即打开了桌面应用
  3007. U.MD.D.click(this, obj);
  3008. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3009. "onclick": U.UF.C.closure(function (obj) {
  3010. //防止拖动图标即打开了桌面应用
  3011. U.MD.D.click(this, obj);
  3012. }, [_BSDNSstudentDesktopIconInfo[i]])
  3013. }, _frag); //
  3014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3017. }
  3018. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3019. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3020. _content = $$("div", {
  3021. className: "U_MD_D_KO",
  3022. "onmousedown": U.UF.C.closure(function (obj) {
  3023. //防止拖动图标即打开了桌面应用
  3024. U.MD.D.click(this, obj);
  3025. }, [_cocobizStudentDeskIconInfo[i]]),
  3026. "onclick": U.UF.C.closure(function (obj) {
  3027. //防止拖动图标即打开了桌面应用
  3028. U.MD.D.click(this, obj);
  3029. }, [_cocobizStudentDeskIconInfo[i]])
  3030. }, _frag); //
  3031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3034. }
  3035. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3036. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3037. _content = $$("div", {
  3038. className: "U_MD_D_KO",
  3039. "onmousedown": U.UF.C.closure(function (obj) {
  3040. //防止拖动图标即打开了桌面应用
  3041. U.MD.D.click(this, obj);
  3042. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3043. "onclick": U.UF.C.closure(function (obj) {
  3044. //防止拖动图标即打开了桌面应用
  3045. U.MD.D.click(this, obj);
  3046. }, [_xxzjkyStudentDeskIconInfo[i]])
  3047. }, _frag); //
  3048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3051. }
  3052. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3053. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3054. _content = $$("div", {
  3055. className: "U_MD_D_KO",
  3056. "onmousedown": U.UF.C.closure(function (obj) {
  3057. //防止拖动图标即打开了桌面应用
  3058. U.MD.D.click(this, obj);
  3059. }, [_studentDesktopIconInfo[i]]),
  3060. "onclick": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_studentDesktopIconInfo[i]])
  3064. }, _frag); //
  3065. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3066. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3067. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3068. }
  3069. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3070. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3071. _content = $$("div", {
  3072. className: "U_MD_D_KO",
  3073. "onmousedown": U.UF.C.closure(function (obj) {
  3074. //防止拖动图标即打开了桌面应用
  3075. U.MD.D.click(this, obj);
  3076. }, [_tcStudentDeskIconInfo[i]]),
  3077. "onclick": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_tcStudentDeskIconInfo[i]])
  3081. }, _frag); //
  3082. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3085. }
  3086. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3087. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3088. _content = $$("div", {
  3089. className: "U_MD_D_KO",
  3090. "onmousedown": U.UF.C.closure(function (obj) {
  3091. //防止拖动图标即打开了桌面应用
  3092. U.MD.D.click(this, obj);
  3093. }, [_szscStudentDeskIconInfo[i]]),
  3094. "onclick": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_szscStudentDeskIconInfo[i]])
  3098. }, _frag); //
  3099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3102. }
  3103. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3104. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3105. _content = $$("div", {
  3106. className: "U_MD_D_KO",
  3107. "onmousedown": U.UF.C.closure(function (obj) {
  3108. //防止拖动图标即打开了桌面应用
  3109. U.MD.D.click(this, obj);
  3110. }, [_studentDesktopIconInfo3[i]]),
  3111. "onclick": U.UF.C.closure(function (obj) {
  3112. //防止拖动图标即打开了桌面应用
  3113. U.MD.D.click(this, obj);
  3114. }, [_studentDesktopIconInfo3[i]])
  3115. }, _frag); //
  3116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3119. }
  3120. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3121. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3122. _content = $$("div", {
  3123. className: "U_MD_D_KO",
  3124. "onmousedown": U.UF.C.closure(function (obj) {
  3125. //防止拖动图标即打开了桌面应用
  3126. U.MD.D.click(this, obj);
  3127. }, [_studentDesktopIconInfo2[i]]),
  3128. "onclick": U.UF.C.closure(function (obj) {
  3129. //防止拖动图标即打开了桌面应用
  3130. U.MD.D.click(this, obj);
  3131. }, [_studentDesktopIconInfo2[i]])
  3132. }, _frag); //
  3133. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3134. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3135. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3136. }
  3137. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3138. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3139. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3140. continue
  3141. }
  3142. _content = $$("div", {
  3143. className: "U_MD_D_KO",
  3144. "onmousedown": U.UF.C.closure(function (obj) {
  3145. //防止拖动图标即打开了桌面应用
  3146. U.MD.D.click(this, obj);
  3147. }, [_wanketeacherDesktopIconInfo[i]]),
  3148. "onclick": U.UF.C.closure(function (obj) {
  3149. //防止拖动图标即打开了桌面应用
  3150. U.MD.D.click(this, obj);
  3151. }, [_wanketeacherDesktopIconInfo[i]])
  3152. }, _frag); //
  3153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3156. }
  3157. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3158. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3159. _content = $$("div", {
  3160. className: "U_MD_D_KO",
  3161. "onmousedown": U.UF.C.closure(function (obj) {
  3162. //防止拖动图标即打开了桌面应用
  3163. U.MD.D.click(this, obj);
  3164. }, [_wankeAdminDesktopIconInfo[i]]),
  3165. "onclick": U.UF.C.closure(function (obj) {
  3166. //防止拖动图标即打开了桌面应用
  3167. U.MD.D.click(this, obj);
  3168. }, [_wankeAdminDesktopIconInfo[i]])
  3169. }, _frag); //
  3170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3173. }
  3174. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3175. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3176. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3177. continue
  3178. }
  3179. _content = $$("div", {
  3180. className: "U_MD_D_KO",
  3181. "onmousedown": U.UF.C.closure(function (obj) {
  3182. //防止拖动图标即打开了桌面应用
  3183. U.MD.D.click(this, obj);
  3184. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3185. "onclick": U.UF.C.closure(function (obj) {
  3186. //防止拖动图标即打开了桌面应用
  3187. U.MD.D.click(this, obj);
  3188. }, [_scnuaiTeacherDeskIconInfo[i]])
  3189. }, _frag); //
  3190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3193. }
  3194. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3195. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3196. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3197. continue
  3198. }
  3199. _content = $$("div", {
  3200. className: "U_MD_D_KO",
  3201. "onmousedown": U.UF.C.closure(function (obj) {
  3202. //防止拖动图标即打开了桌面应用
  3203. U.MD.D.click(this, obj);
  3204. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3205. "onclick": U.UF.C.closure(function (obj) {
  3206. //防止拖动图标即打开了桌面应用
  3207. U.MD.D.click(this, obj);
  3208. }, [_BSDNSteacherDesktopIconInfo[i]])
  3209. }, _frag); //
  3210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3213. }
  3214. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3215. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3216. _content = $$("div", {
  3217. className: "U_MD_D_KO",
  3218. "onmousedown": U.UF.C.closure(function (obj) {
  3219. //防止拖动图标即打开了桌面应用
  3220. U.MD.D.click(this, obj);
  3221. }, [_scnuaiAdminDeskIconInfo[i]]),
  3222. "onclick": U.UF.C.closure(function (obj) {
  3223. //防止拖动图标即打开了桌面应用
  3224. U.MD.D.click(this, obj);
  3225. }, [_scnuaiAdminDeskIconInfo[i]])
  3226. }, _frag); //
  3227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3230. }
  3231. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3232. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3233. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3234. continue
  3235. }
  3236. _content = $$("div", {
  3237. className: "U_MD_D_KO",
  3238. "onmousedown": U.UF.C.closure(function (obj) {
  3239. //防止拖动图标即打开了桌面应用
  3240. U.MD.D.click(this, obj);
  3241. }, [_jccssylTeacherDeskIconInfo[i]]),
  3242. "onclick": U.UF.C.closure(function (obj) {
  3243. //防止拖动图标即打开了桌面应用
  3244. U.MD.D.click(this, obj);
  3245. }, [_jccssylTeacherDeskIconInfo[i]])
  3246. }, _frag); //
  3247. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3248. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3249. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3250. }
  3251. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3252. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3253. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3254. continue
  3255. }
  3256. _content = $$("div", {
  3257. className: "U_MD_D_KO",
  3258. "onmousedown": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_caleTeacherDeskIconInfo[i]]),
  3262. "onclick": U.UF.C.closure(function (obj) {
  3263. //防止拖动图标即打开了桌面应用
  3264. U.MD.D.click(this, obj);
  3265. }, [_caleTeacherDeskIconInfo[i]])
  3266. }, _frag); //
  3267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3270. }
  3271. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3272. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3273. _content = $$("div", {
  3274. className: "U_MD_D_KO",
  3275. "onmousedown": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_tpcOrganizerDeskIconInfo[i]]),
  3279. "onclick": U.UF.C.closure(function (obj) {
  3280. //防止拖动图标即打开了桌面应用
  3281. U.MD.D.click(this, obj);
  3282. }, [_tpcOrganizerDeskIconInfo[i]])
  3283. }, _frag); //
  3284. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3285. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3286. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3287. }
  3288. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3289. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3290. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3291. continue
  3292. }
  3293. _content = $$("div", {
  3294. className: "U_MD_D_KO",
  3295. "onmousedown": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_tpcTeacherDeskIconInfo[i]]),
  3299. "onclick": U.UF.C.closure(function (obj) {
  3300. //防止拖动图标即打开了桌面应用
  3301. U.MD.D.click(this, obj);
  3302. }, [_tpcTeacherDeskIconInfo[i]])
  3303. }, _frag); //
  3304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3307. }
  3308. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3309. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3310. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3311. continue
  3312. }
  3313. _content = $$("div", {
  3314. className: "U_MD_D_KO",
  3315. "onmousedown": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_teacherDesktopIconInfo2[i]]),
  3319. "onclick": U.UF.C.closure(function (obj) {
  3320. //防止拖动图标即打开了桌面应用
  3321. U.MD.D.click(this, obj);
  3322. }, [_teacherDesktopIconInfo2[i]])
  3323. }, _frag); //
  3324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3327. }
  3328. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3329. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3330. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3331. continue
  3332. }
  3333. _content = $$("div", {
  3334. className: "U_MD_D_KO",
  3335. "onmousedown": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_thuioeTeacherDeskIconInfo[i]]),
  3339. "onclick": U.UF.C.closure(function (obj) {
  3340. //防止拖动图标即打开了桌面应用
  3341. U.MD.D.click(this, obj);
  3342. }, [_thuioeTeacherDeskIconInfo[i]])
  3343. }, _frag); //
  3344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3347. }
  3348. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3349. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3350. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3351. continue
  3352. }
  3353. _content = $$("div", {
  3354. className: "U_MD_D_KO",
  3355. "onmousedown": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_lotechTeacherDeskIconInfo[i]]),
  3359. "onclick": U.UF.C.closure(function (obj) {
  3360. //防止拖动图标即打开了桌面应用
  3361. U.MD.D.click(this, obj);
  3362. }, [_lotechTeacherDeskIconInfo[i]])
  3363. }, _frag); //
  3364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3367. }//
  3368. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3369. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3370. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3371. continue
  3372. }
  3373. _content = $$("div", {
  3374. className: "U_MD_D_KO",
  3375. "onmousedown": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3379. "onclick": U.UF.C.closure(function (obj) {
  3380. //防止拖动图标即打开了桌面应用
  3381. U.MD.D.click(this, obj);
  3382. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3383. }, _frag); //
  3384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3387. }
  3388. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3389. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3390. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3391. continue
  3392. }
  3393. _content = $$("div", {
  3394. className: "U_MD_D_KO",
  3395. "onmousedown": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_siesTeacherDeskIconInfo[i]]),
  3399. "onclick": U.UF.C.closure(function (obj) {
  3400. //防止拖动图标即打开了桌面应用
  3401. U.MD.D.click(this, obj);
  3402. }, [_siesTeacherDeskIconInfo[i]])
  3403. }, _frag); //
  3404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3407. }
  3408. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3409. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3410. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3411. continue
  3412. }
  3413. _content = $$("div", {
  3414. className: "U_MD_D_KO",
  3415. "onmousedown": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_guzmsTeacherDeskIconInfo[i]]),
  3419. "onclick": U.UF.C.closure(function (obj) {
  3420. //防止拖动图标即打开了桌面应用
  3421. U.MD.D.click(this, obj);
  3422. }, [_guzmsTeacherDeskIconInfo[i]])
  3423. }, _frag); //
  3424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3427. }
  3428. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3429. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3430. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3431. continue
  3432. }
  3433. _content = $$("div", {
  3434. className: "U_MD_D_KO",
  3435. "onmousedown": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_longhuaTeacherDeskIconInfo[i]]),
  3439. "onclick": U.UF.C.closure(function (obj) {
  3440. //防止拖动图标即打开了桌面应用
  3441. U.MD.D.click(this, obj);
  3442. }, [_longhuaTeacherDeskIconInfo[i]])
  3443. }, _frag); //
  3444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3447. }
  3448. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3449. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3450. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3451. continue
  3452. }
  3453. _content = $$("div", {
  3454. className: "U_MD_D_KO",
  3455. "onmousedown": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_ytyTeacherDeskIconInfo[i]]),
  3459. "onclick": U.UF.C.closure(function (obj) {
  3460. //防止拖动图标即打开了桌面应用
  3461. U.MD.D.click(this, obj);
  3462. }, [_ytyTeacherDeskIconInfo[i]])
  3463. }, _frag); //
  3464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3467. }
  3468. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3469. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3470. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3471. continue
  3472. }
  3473. _content = $$("div", {
  3474. className: "U_MD_D_KO",
  3475. "onmousedown": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3479. "onclick": U.UF.C.closure(function (obj) {
  3480. //防止拖动图标即打开了桌面应用
  3481. U.MD.D.click(this, obj);
  3482. }, [_yunhaiTeacherDeskIconInfo[i]])
  3483. }, _frag); //
  3484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3487. } //_hkStudentDeskIconInfo
  3488. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3489. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3490. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3491. continue
  3492. }
  3493. _content = $$("div", {
  3494. className: "U_MD_D_KO",
  3495. "onmousedown": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3499. "onclick": U.UF.C.closure(function (obj) {
  3500. //防止拖动图标即打开了桌面应用
  3501. U.MD.D.click(this, obj);
  3502. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3503. }, _frag); //
  3504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3507. }
  3508. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3509. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3510. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3511. continue
  3512. }
  3513. _content = $$("div", {
  3514. className: "U_MD_D_KO",
  3515. "onmousedown": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_ricohTeacherDeskIconInfo[i]]),
  3519. "onclick": U.UF.C.closure(function (obj) {
  3520. //防止拖动图标即打开了桌面应用
  3521. U.MD.D.click(this, obj);
  3522. }, [_ricohTeacherDeskIconInfo[i]])
  3523. }, _frag); //
  3524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3527. }
  3528. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3529. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3530. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3531. continue
  3532. }
  3533. _content = $$("div", {
  3534. className: "U_MD_D_KO",
  3535. "onmousedown": U.UF.C.closure(function (obj) {
  3536. //防止拖动图标即打开了桌面应用
  3537. U.MD.D.click(this, obj);
  3538. }, [_hkTeacherDeskIconInfo[i]]),
  3539. "onclick": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_hkTeacherDeskIconInfo[i]])
  3543. }, _frag); //
  3544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3547. }
  3548. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3549. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3550. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3551. continue
  3552. }
  3553. _content = $$("div", {
  3554. className: "U_MD_D_KO",
  3555. "onmousedown": U.UF.C.closure(function (obj) {
  3556. //防止拖动图标即打开了桌面应用
  3557. U.MD.D.click(this, obj);
  3558. }, [_tycyTeacherDeskIconInfo[i]]),
  3559. "onclick": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_tycyTeacherDeskIconInfo[i]])
  3563. }, _frag); //
  3564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3567. }
  3568. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3569. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3570. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3571. continue
  3572. }
  3573. _content = $$("div", {
  3574. className: "U_MD_D_KO",
  3575. "onmousedown": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_hkaceTeacherDeskIconInfo[i]]),
  3579. "onclick": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_hkaceTeacherDeskIconInfo[i]])
  3583. }, _frag); //
  3584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3587. }
  3588. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3589. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3590. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3591. continue
  3592. }
  3593. _content = $$("div", {
  3594. className: "U_MD_D_KO",
  3595. "onmousedown": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_cocobizTeacherDeskIconInfo[i]]),
  3599. "onclick": U.UF.C.closure(function (obj) {
  3600. //防止拖动图标即打开了桌面应用
  3601. U.MD.D.click(this, obj);
  3602. }, [_cocobizTeacherDeskIconInfo[i]])
  3603. }, _frag); //
  3604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3607. }
  3608. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3609. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3610. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3611. continue
  3612. }
  3613. _content = $$("div", {
  3614. className: "U_MD_D_KO",
  3615. "onmousedown": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3619. "onclick": U.UF.C.closure(function (obj) {
  3620. //防止拖动图标即打开了桌面应用
  3621. U.MD.D.click(this, obj);
  3622. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3623. }, _frag); //
  3624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3627. }
  3628. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3629. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3630. _content = $$("div", {
  3631. className: "U_MD_D_KO",
  3632. "onmousedown": U.UF.C.closure(function (obj) {
  3633. //防止拖动图标即打开了桌面应用
  3634. U.MD.D.click(this, obj);
  3635. }, [_gdjgAdminDeskIconInfo[i]]),
  3636. "onclick": U.UF.C.closure(function (obj) {
  3637. //防止拖动图标即打开了桌面应用
  3638. U.MD.D.click(this, obj);
  3639. }, [_gdjgAdminDeskIconInfo[i]])
  3640. }, _frag); //
  3641. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3642. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3643. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3644. }
  3645. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3646. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3647. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3648. continue
  3649. }
  3650. _content = $$("div", {
  3651. className: "U_MD_D_KO",
  3652. "onmousedown": U.UF.C.closure(function (obj) {
  3653. //防止拖动图标即打开了桌面应用
  3654. U.MD.D.click(this, obj);
  3655. }, [_gdjgTeacherDeskIconInfo[i]]),
  3656. "onclick": U.UF.C.closure(function (obj) {
  3657. //防止拖动图标即打开了桌面应用
  3658. U.MD.D.click(this, obj);
  3659. }, [_gdjgTeacherDeskIconInfo[i]])
  3660. }, _frag); //
  3661. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3662. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3663. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3664. }
  3665. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3666. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3667. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3668. continue
  3669. }
  3670. _content = $$("div", {
  3671. className: "U_MD_D_KO",
  3672. "onmousedown": U.UF.C.closure(function (obj) {
  3673. //防止拖动图标即打开了桌面应用
  3674. U.MD.D.click(this, obj);
  3675. }, [_szherTeacherDeskIconInfo[i]]),
  3676. "onclick": U.UF.C.closure(function (obj) {
  3677. //防止拖动图标即打开了桌面应用
  3678. U.MD.D.click(this, obj);
  3679. }, [_szherTeacherDeskIconInfo[i]])
  3680. }, _frag); //
  3681. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3682. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3683. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3684. }
  3685. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3686. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3687. _content = $$("div", {
  3688. className: "U_MD_D_KO",
  3689. "onmousedown": U.UF.C.closure(function (obj) {
  3690. //防止拖动图标即打开了桌面应用
  3691. U.MD.D.click(this, obj);
  3692. }, [_heyuannAdminDeskIconInfo[i]]),
  3693. "onclick": U.UF.C.closure(function (obj) {
  3694. //防止拖动图标即打开了桌面应用
  3695. U.MD.D.click(this, obj);
  3696. }, [_heyuannAdminDeskIconInfo[i]])
  3697. }, _frag); //
  3698. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3699. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3700. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3701. }
  3702. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3703. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3704. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3705. continue
  3706. }
  3707. _content = $$("div", {
  3708. className: "U_MD_D_KO",
  3709. "onmousedown": U.UF.C.closure(function (obj) {
  3710. //防止拖动图标即打开了桌面应用
  3711. U.MD.D.click(this, obj);
  3712. }, [_heyuanTeacherDeskIconInfo[i]]),
  3713. "onclick": U.UF.C.closure(function (obj) {
  3714. //防止拖动图标即打开了桌面应用
  3715. U.MD.D.click(this, obj);
  3716. }, [_heyuanTeacherDeskIconInfo[i]])
  3717. }, _frag); //
  3718. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3719. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3720. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3721. } //
  3722. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3723. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3724. _content = $$("div", {
  3725. className: "U_MD_D_KO",
  3726. "onmousedown": U.UF.C.closure(function (obj) {
  3727. //防止拖动图标即打开了桌面应用
  3728. U.MD.D.click(this, obj);
  3729. }, [_dseiAdminDeskIconInfo[i]]),
  3730. "onclick": U.UF.C.closure(function (obj) {
  3731. //防止拖动图标即打开了桌面应用
  3732. U.MD.D.click(this, obj);
  3733. }, [_dseiAdminDeskIconInfo[i]])
  3734. }, _frag); //
  3735. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3736. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3737. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3738. }
  3739. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3740. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3741. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3742. continue
  3743. }
  3744. _content = $$("div", {
  3745. className: "U_MD_D_KO",
  3746. "onmousedown": U.UF.C.closure(function (obj) {
  3747. //防止拖动图标即打开了桌面应用
  3748. U.MD.D.click(this, obj);
  3749. }, [_dseiTeacherDeskIconInfo[i]]),
  3750. "onclick": U.UF.C.closure(function (obj) {
  3751. //防止拖动图标即打开了桌面应用
  3752. U.MD.D.click(this, obj);
  3753. }, [_dseiTeacherDeskIconInfo[i]])
  3754. }, _frag); //
  3755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3758. } //
  3759. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3760. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3761. _content = $$("div", {
  3762. className: "U_MD_D_KO",
  3763. "onmousedown": U.UF.C.closure(function (obj) {
  3764. //防止拖动图标即打开了桌面应用
  3765. U.MD.D.click(this, obj);
  3766. }, [_chjyjAdminDeskIconInfo[i]]),
  3767. "onclick": U.UF.C.closure(function (obj) {
  3768. //防止拖动图标即打开了桌面应用
  3769. U.MD.D.click(this, obj);
  3770. }, [_chjyjAdminDeskIconInfo[i]])
  3771. }, _frag); //
  3772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3775. }//
  3776. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3777. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3778. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3779. continue
  3780. }
  3781. _content = $$("div", {
  3782. className: "U_MD_D_KO",
  3783. "onmousedown": U.UF.C.closure(function (obj) {
  3784. //防止拖动图标即打开了桌面应用
  3785. U.MD.D.click(this, obj);
  3786. }, [_chjyjTeacherDeskIconInfo[i]]),
  3787. "onclick": U.UF.C.closure(function (obj) {
  3788. //防止拖动图标即打开了桌面应用
  3789. U.MD.D.click(this, obj);
  3790. }, [_chjyjTeacherDeskIconInfo[i]])
  3791. }, _frag); //
  3792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3795. }
  3796. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3797. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3798. _content = $$("div", {
  3799. className: "U_MD_D_KO",
  3800. "onmousedown": U.UF.C.closure(function (obj) {
  3801. //防止拖动图标即打开了桌面应用
  3802. U.MD.D.click(this, obj);
  3803. }, [_szjkyAdminDeskIconInfo[i]]),
  3804. "onclick": U.UF.C.closure(function (obj) {
  3805. //防止拖动图标即打开了桌面应用
  3806. U.MD.D.click(this, obj);
  3807. }, [_szjkyAdminDeskIconInfo[i]])
  3808. }, _frag); //
  3809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3812. }//
  3813. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3814. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3815. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3816. continue
  3817. }
  3818. _content = $$("div", {
  3819. className: "U_MD_D_KO",
  3820. "onmousedown": U.UF.C.closure(function (obj) {
  3821. //防止拖动图标即打开了桌面应用
  3822. U.MD.D.click(this, obj);
  3823. }, [_szjkyTeacherDeskIconInfo[i]]),
  3824. "onclick": U.UF.C.closure(function (obj) {
  3825. //防止拖动图标即打开了桌面应用
  3826. U.MD.D.click(this, obj);
  3827. }, [_szjkyTeacherDeskIconInfo[i]])
  3828. }, _frag); //
  3829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3832. }
  3833. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3834. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3835. _content = $$("div", {
  3836. className: "U_MD_D_KO",
  3837. "onmousedown": U.UF.C.closure(function (obj) {
  3838. //防止拖动图标即打开了桌面应用
  3839. U.MD.D.click(this, obj);
  3840. }, [_x020201AdminDeskIconInfo[i]]),
  3841. "onclick": U.UF.C.closure(function (obj) {
  3842. //防止拖动图标即打开了桌面应用
  3843. U.MD.D.click(this, obj);
  3844. }, [_x020201AdminDeskIconInfo[i]])
  3845. }, _frag); //
  3846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3849. }//
  3850. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3851. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3852. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3853. continue
  3854. }
  3855. _content = $$("div", {
  3856. className: "U_MD_D_KO",
  3857. "onmousedown": U.UF.C.closure(function (obj) {
  3858. //防止拖动图标即打开了桌面应用
  3859. U.MD.D.click(this, obj);
  3860. }, [_x020201TeacherDeskIconInfo[i]]),
  3861. "onclick": U.UF.C.closure(function (obj) {
  3862. //防止拖动图标即打开了桌面应用
  3863. U.MD.D.click(this, obj);
  3864. }, [_x020201TeacherDeskIconInfo[i]])
  3865. }, _frag); //
  3866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3869. }
  3870. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3871. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3872. _content = $$("div", {
  3873. className: "U_MD_D_KO",
  3874. "onmousedown": U.UF.C.closure(function (obj) {
  3875. //防止拖动图标即打开了桌面应用
  3876. U.MD.D.click(this, obj);
  3877. }, [_SCNUETAdminDeskIconInfo[i]]),
  3878. "onclick": U.UF.C.closure(function (obj) {
  3879. //防止拖动图标即打开了桌面应用
  3880. U.MD.D.click(this, obj);
  3881. }, [_SCNUETAdminDeskIconInfo[i]])
  3882. }, _frag); //
  3883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3886. }//
  3887. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3888. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3889. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3890. continue
  3891. }
  3892. _content = $$("div", {
  3893. className: "U_MD_D_KO",
  3894. "onmousedown": U.UF.C.closure(function (obj) {
  3895. //防止拖动图标即打开了桌面应用
  3896. U.MD.D.click(this, obj);
  3897. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3898. "onclick": U.UF.C.closure(function (obj) {
  3899. //防止拖动图标即打开了桌面应用
  3900. U.MD.D.click(this, obj);
  3901. }, [_SCNUETTeacherDeskIconInfo[i]])
  3902. }, _frag); //
  3903. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3904. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3905. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3906. }
  3907. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3908. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3909. _content = $$("div", {
  3910. className: "U_MD_D_KO",
  3911. "onmousedown": U.UF.C.closure(function (obj) {
  3912. //防止拖动图标即打开了桌面应用
  3913. U.MD.D.click(this, obj);
  3914. }, [_futianAdminDeskIconInfo[i]]),
  3915. "onclick": U.UF.C.closure(function (obj) {
  3916. //防止拖动图标即打开了桌面应用
  3917. U.MD.D.click(this, obj);
  3918. }, [_futianAdminDeskIconInfo[i]])
  3919. }, _frag); //
  3920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3923. }
  3924. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3925. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3926. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3927. continue
  3928. }
  3929. _content = $$("div", {
  3930. className: "U_MD_D_KO",
  3931. "onmousedown": U.UF.C.closure(function (obj) {
  3932. //防止拖动图标即打开了桌面应用
  3933. U.MD.D.click(this, obj);
  3934. }, [_futianTeacherDeskIconInfo[i]]),
  3935. "onclick": U.UF.C.closure(function (obj) {
  3936. //防止拖动图标即打开了桌面应用
  3937. U.MD.D.click(this, obj);
  3938. }, [_futianTeacherDeskIconInfo[i]])
  3939. }, _frag); //
  3940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3943. }
  3944. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3945. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3946. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3947. continue
  3948. }
  3949. _content = $$("div", {
  3950. className: "U_MD_D_KO",
  3951. "onmousedown": U.UF.C.closure(function (obj) {
  3952. //防止拖动图标即打开了桌面应用
  3953. U.MD.D.click(this, obj);
  3954. }, [_MingdeTeacherDeskIcon[i]]),
  3955. "onclick": U.UF.C.closure(function (obj) {
  3956. //防止拖动图标即打开了桌面应用
  3957. U.MD.D.click(this, obj);
  3958. }, [_MingdeTeacherDeskIcon[i]])
  3959. }, _frag); //
  3960. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3961. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3962. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3963. }
  3964. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3965. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3966. _content = $$("div", {
  3967. className: "U_MD_D_KO",
  3968. "onmousedown": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_lhsAdminDesktopIconInfo[i]]),
  3972. "onclick": U.UF.C.closure(function (obj) {
  3973. //防止拖动图标即打开了桌面应用
  3974. U.MD.D.click(this, obj);
  3975. }, [_lhsAdminDesktopIconInfo[i]])
  3976. }, _frag); //
  3977. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3978. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3979. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3980. }
  3981. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3982. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3983. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3984. continue
  3985. }
  3986. _content = $$("div", {
  3987. className: "U_MD_D_KO",
  3988. "onmousedown": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_lhsteacherDesktopIconInfo[i]]),
  3992. "onclick": U.UF.C.closure(function (obj) {
  3993. //防止拖动图标即打开了桌面应用
  3994. U.MD.D.click(this, obj);
  3995. }, [_lhsteacherDesktopIconInfo[i]])
  3996. }, _frag); //
  3997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4000. }
  4001. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4002. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4003. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4004. continue
  4005. }
  4006. _content = $$("div", {
  4007. className: "U_MD_D_KO",
  4008. "onmousedown": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4012. "onclick": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_zhoujiateacherDesktopIconInfo[i]])
  4016. }, _frag); //
  4017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4020. }
  4021. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4022. for (i = 0; i < _hanDeskIcon.length; i++) {
  4023. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4024. continue
  4025. }
  4026. _content = $$("div", {
  4027. className: "U_MD_D_KO",
  4028. "onmousedown": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_hanDeskIcon[i]]),
  4032. "onclick": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_hanDeskIcon[i]])
  4036. }, _frag); //
  4037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4040. }
  4041. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4042. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4043. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4044. continue
  4045. }
  4046. _content = $$("div", {
  4047. className: "U_MD_D_KO",
  4048. "onmousedown": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_orgStemDeskIcon[i]]),
  4052. "onclick": U.UF.C.closure(function (obj) {
  4053. //防止拖动图标即打开了桌面应用
  4054. U.MD.D.click(this, obj);
  4055. }, [_orgStemDeskIcon[i]])
  4056. }, _frag); //
  4057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4060. }
  4061. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4062. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4063. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4064. continue
  4065. }
  4066. _content = $$("div", {
  4067. className: "U_MD_D_KO",
  4068. "onmousedown": U.UF.C.closure(function (obj) {
  4069. //防止拖动图标即打开了桌面应用
  4070. U.MD.D.click(this, obj);
  4071. }, [_szulsDeskIcon[i]]),
  4072. "onclick": U.UF.C.closure(function (obj) {
  4073. //防止拖动图标即打开了桌面应用
  4074. U.MD.D.click(this, obj);
  4075. }, [_szulsDeskIcon[i]])
  4076. }, _frag); //
  4077. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4078. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4079. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4080. }
  4081. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4082. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4083. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4084. continue
  4085. }
  4086. _content = $$("div", {
  4087. className: "U_MD_D_KO",
  4088. "onmousedown": U.UF.C.closure(function (obj) {
  4089. //防止拖动图标即打开了桌面应用
  4090. U.MD.D.click(this, obj);
  4091. }, [_orgDesktopIconInfo[i]]),
  4092. "onclick": U.UF.C.closure(function (obj) {
  4093. //防止拖动图标即打开了桌面应用
  4094. U.MD.D.click(this, obj);
  4095. }, [_orgDesktopIconInfo[i]])
  4096. }, _frag); //
  4097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4100. }
  4101. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4102. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4103. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4104. continue
  4105. }
  4106. _content = $$("div", {
  4107. className: "U_MD_D_KO",
  4108. "onmousedown": U.UF.C.closure(function (obj) {
  4109. //防止拖动图标即打开了桌面应用
  4110. U.MD.D.click(this, obj);
  4111. }, [_schoolDesktopIconInfo[i]]),
  4112. "onclick": U.UF.C.closure(function (obj) {
  4113. //防止拖动图标即打开了桌面应用
  4114. U.MD.D.click(this, obj);
  4115. }, [_schoolDesktopIconInfo[i]])
  4116. }, _frag); //
  4117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4120. }
  4121. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4122. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4123. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4124. continue
  4125. }
  4126. _content = $$("div", {
  4127. className: "U_MD_D_KO",
  4128. "onmousedown": U.UF.C.closure(function (obj) {
  4129. //防止拖动图标即打开了桌面应用
  4130. U.MD.D.click(this, obj);
  4131. }, [_GMteacherDesktopIconInfo[i]]),
  4132. "onclick": U.UF.C.closure(function (obj) {
  4133. //防止拖动图标即打开了桌面应用
  4134. U.MD.D.click(this, obj);
  4135. }, [_GMteacherDesktopIconInfo[i]])
  4136. }, _frag); //
  4137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4140. }
  4141. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4142. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4143. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4144. continue
  4145. }
  4146. _content = $$("div", {
  4147. className: "U_MD_D_KO",
  4148. "onmousedown": U.UF.C.closure(function (obj) {
  4149. //防止拖动图标即打开了桌面应用
  4150. U.MD.D.click(this, obj);
  4151. }, [_SONGteacherDesktopIconInfo[i]]),
  4152. "onclick": U.UF.C.closure(function (obj) {
  4153. //防止拖动图标即打开了桌面应用
  4154. U.MD.D.click(this, obj);
  4155. }, [_SONGteacherDesktopIconInfo[i]])
  4156. }, _frag); //
  4157. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4158. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4159. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4160. }
  4161. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4162. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4163. _content = $$("div", {
  4164. className: "U_MD_D_KO",
  4165. "onmousedown": U.UF.C.closure(function (obj) {
  4166. //防止拖动图标即打开了桌面应用
  4167. U.MD.D.click(this, obj);
  4168. }, [_GMstudentDesktopIconInfo[i]]),
  4169. "onclick": U.UF.C.closure(function (obj) {
  4170. //防止拖动图标即打开了桌面应用
  4171. U.MD.D.click(this, obj);
  4172. }, [_GMstudentDesktopIconInfo[i]])
  4173. }, _frag); //
  4174. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4175. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4176. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4177. }
  4178. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4179. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4180. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4181. continue
  4182. }
  4183. _content = $$("div", {
  4184. className: "U_MD_D_KO",
  4185. "onmousedown": U.UF.C.closure(function (obj) {
  4186. //防止拖动图标即打开了桌面应用
  4187. U.MD.D.click(this, obj);
  4188. }, [_tcTeacherDeskIconInfo[i]]),
  4189. "onclick": U.UF.C.closure(function (obj) {
  4190. //防止拖动图标即打开了桌面应用
  4191. U.MD.D.click(this, obj);
  4192. }, [_tcTeacherDeskIconInfo[i]])
  4193. }, _frag); //
  4194. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4195. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4196. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4197. }
  4198. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4199. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4200. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4201. continue
  4202. }
  4203. _content = $$("div", {
  4204. className: "U_MD_D_KO",
  4205. "onmousedown": U.UF.C.closure(function (obj) {
  4206. //防止拖动图标即打开了桌面应用
  4207. U.MD.D.click(this, obj);
  4208. }, [_tcOrganizerDeskIconInfo[i]]),
  4209. "onclick": U.UF.C.closure(function (obj) {
  4210. //防止拖动图标即打开了桌面应用
  4211. U.MD.D.click(this, obj);
  4212. }, [_tcOrganizerDeskIconInfo[i]])
  4213. }, _frag); //
  4214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4217. }
  4218. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4219. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4220. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4221. continue
  4222. }
  4223. _content = $$("div", {
  4224. className: "U_MD_D_KO",
  4225. "onmousedown": U.UF.C.closure(function (obj) {
  4226. //防止拖动图标即打开了桌面应用
  4227. U.MD.D.click(this, obj);
  4228. }, [_szscTeacherDeskIconInfo[i]]),
  4229. "onclick": U.UF.C.closure(function (obj) {
  4230. //防止拖动图标即打开了桌面应用
  4231. U.MD.D.click(this, obj);
  4232. }, [_szscTeacherDeskIconInfo[i]])
  4233. }, _frag); //
  4234. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4235. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4236. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4237. }
  4238. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4239. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4240. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4241. continue
  4242. }
  4243. _content = $$("div", {
  4244. className: "U_MD_D_KO",
  4245. "onmousedown": U.UF.C.closure(function (obj) {
  4246. //防止拖动图标即打开了桌面应用
  4247. U.MD.D.click(this, obj);
  4248. }, [_szscOrganizerDeskIconInfo[i]]),
  4249. "onclick": U.UF.C.closure(function (obj) {
  4250. //防止拖动图标即打开了桌面应用
  4251. U.MD.D.click(this, obj);
  4252. }, [_szscOrganizerDeskIconInfo[i]])
  4253. }, _frag); //
  4254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4257. }
  4258. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4259. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4260. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4261. continue
  4262. }
  4263. _content = $$("div", {
  4264. className: "U_MD_D_KO",
  4265. "onmousedown": U.UF.C.closure(function (obj) {
  4266. //防止拖动图标即打开了桌面应用
  4267. U.MD.D.click(this, obj);
  4268. }, [_nsfxTeacherDeskIconInfo[i]]),
  4269. "onclick": U.UF.C.closure(function (obj) {
  4270. //防止拖动图标即打开了桌面应用
  4271. U.MD.D.click(this, obj);
  4272. }, [_nsfxTeacherDeskIconInfo[i]])
  4273. }, _frag); //
  4274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4277. }
  4278. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4279. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4280. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4281. continue
  4282. }
  4283. _content = $$("div", {
  4284. className: "U_MD_D_KO",
  4285. "onmousedown": U.UF.C.closure(function (obj) {
  4286. //防止拖动图标即打开了桌面应用
  4287. U.MD.D.click(this, obj);
  4288. }, [_stiaTeacherDeskIconInfo[i]]),
  4289. "onclick": U.UF.C.closure(function (obj) {
  4290. //防止拖动图标即打开了桌面应用
  4291. U.MD.D.click(this, obj);
  4292. }, [_stiaTeacherDeskIconInfo[i]])
  4293. }, _frag); //
  4294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4297. }
  4298. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4299. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4300. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4301. continue
  4302. }
  4303. _content = $$("div", {
  4304. className: "U_MD_D_KO",
  4305. "onmousedown": U.UF.C.closure(function (obj) {
  4306. //防止拖动图标即打开了桌面应用
  4307. U.MD.D.click(this, obj);
  4308. }, [_szdjgTeacherDeskIconInfo[i]]),
  4309. "onclick": U.UF.C.closure(function (obj) {
  4310. //防止拖动图标即打开了桌面应用
  4311. U.MD.D.click(this, obj);
  4312. }, [_szdjgTeacherDeskIconInfo[i]])
  4313. }, _frag); //
  4314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4317. }
  4318. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4319. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4320. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4321. continue
  4322. }
  4323. _content = $$("div", {
  4324. className: "U_MD_D_KO",
  4325. "onmousedown": U.UF.C.closure(function (obj) {
  4326. //防止拖动图标即打开了桌面应用
  4327. U.MD.D.click(this, obj);
  4328. }, [_x010607TeacherDeskIconInfo[i]]),
  4329. "onclick": U.UF.C.closure(function (obj) {
  4330. //防止拖动图标即打开了桌面应用
  4331. U.MD.D.click(this, obj);
  4332. }, [_x010607TeacherDeskIconInfo[i]])
  4333. }, _frag); //
  4334. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4335. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4336. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4337. }
  4338. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4339. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4340. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4341. continue
  4342. }
  4343. _content = $$("div", {
  4344. className: "U_MD_D_KO",
  4345. "onmousedown": U.UF.C.closure(function (obj) {
  4346. //防止拖动图标即打开了桌面应用
  4347. U.MD.D.click(this, obj);
  4348. }, [_xhlyTeacherDeskIconInfo[i]]),
  4349. "onclick": U.UF.C.closure(function (obj) {
  4350. //防止拖动图标即打开了桌面应用
  4351. U.MD.D.click(this, obj);
  4352. }, [_xhlyTeacherDeskIconInfo[i]])
  4353. }, _frag); //
  4354. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4355. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4356. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4357. }
  4358. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4359. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4360. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4361. continue
  4362. }
  4363. _content = $$("div", {
  4364. className: "U_MD_D_KO",
  4365. "onmousedown": U.UF.C.closure(function (obj) {
  4366. //防止拖动图标即打开了桌面应用
  4367. U.MD.D.click(this, obj);
  4368. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4369. "onclick": U.UF.C.closure(function (obj) {
  4370. //防止拖动图标即打开了桌面应用
  4371. U.MD.D.click(this, obj);
  4372. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4373. }, _frag); //
  4374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4377. }
  4378. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4379. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4380. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4381. continue
  4382. }
  4383. _content = $$("div", {
  4384. className: "U_MD_D_KO",
  4385. "onmousedown": U.UF.C.closure(function (obj) {
  4386. //防止拖动图标即打开了桌面应用
  4387. U.MD.D.click(this, obj);
  4388. }, [_x010503TeacherDeskIconInfo[i]]),
  4389. "onclick": U.UF.C.closure(function (obj) {
  4390. //防止拖动图标即打开了桌面应用
  4391. U.MD.D.click(this, obj);
  4392. }, [_x010503TeacherDeskIconInfo[i]])
  4393. }, _frag); //
  4394. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4395. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4396. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4397. }
  4398. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4399. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4400. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4401. continue
  4402. }
  4403. _content = $$("div", {
  4404. className: "U_MD_D_KO",
  4405. "onmousedown": U.UF.C.closure(function (obj) {
  4406. //防止拖动图标即打开了桌面应用
  4407. U.MD.D.click(this, obj);
  4408. }, [_x010504TeacherDeskIconInfo[i]]),
  4409. "onclick": U.UF.C.closure(function (obj) {
  4410. //防止拖动图标即打开了桌面应用
  4411. U.MD.D.click(this, obj);
  4412. }, [_x010504TeacherDeskIconInfo[i]])
  4413. }, _frag); //
  4414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4417. }
  4418. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4419. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4420. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4421. continue
  4422. }
  4423. _content = $$("div", {
  4424. className: "U_MD_D_KO",
  4425. "onmousedown": U.UF.C.closure(function (obj) {
  4426. //防止拖动图标即打开了桌面应用
  4427. U.MD.D.click(this, obj);
  4428. }, [_x010505TeacherDeskIconInfo[i]]),
  4429. "onclick": U.UF.C.closure(function (obj) {
  4430. //防止拖动图标即打开了桌面应用
  4431. U.MD.D.click(this, obj);
  4432. }, [_x010505TeacherDeskIconInfo[i]])
  4433. }, _frag); //
  4434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4437. }
  4438. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4439. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4440. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4441. continue
  4442. }
  4443. _content = $$("div", {
  4444. className: "U_MD_D_KO",
  4445. "onmousedown": U.UF.C.closure(function (obj) {
  4446. //防止拖动图标即打开了桌面应用
  4447. U.MD.D.click(this, obj);
  4448. }, [_x010404TeacherDeskIconInfo[i]]),
  4449. "onclick": U.UF.C.closure(function (obj) {
  4450. //防止拖动图标即打开了桌面应用
  4451. U.MD.D.click(this, obj);
  4452. }, [_x010404TeacherDeskIconInfo[i]])
  4453. }, _frag); //
  4454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4457. }
  4458. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4459. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4460. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4461. continue
  4462. }
  4463. _content = $$("div", {
  4464. className: "U_MD_D_KO",
  4465. "onmousedown": U.UF.C.closure(function (obj) {
  4466. //防止拖动图标即打开了桌面应用
  4467. U.MD.D.click(this, obj);
  4468. }, [_x010204TeacherDeskIconInfo[i]]),
  4469. "onclick": U.UF.C.closure(function (obj) {
  4470. //防止拖动图标即打开了桌面应用
  4471. U.MD.D.click(this, obj);
  4472. }, [_x010204TeacherDeskIconInfo[i]])
  4473. }, _frag); //
  4474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4477. }
  4478. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4479. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4480. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4481. continue
  4482. }
  4483. _content = $$("div", {
  4484. className: "U_MD_D_KO",
  4485. "onmousedown": U.UF.C.closure(function (obj) {
  4486. //防止拖动图标即打开了桌面应用
  4487. U.MD.D.click(this, obj);
  4488. }, [_x320101TeacherDeskIconInfo[i]]),
  4489. "onclick": U.UF.C.closure(function (obj) {
  4490. //防止拖动图标即打开了桌面应用
  4491. U.MD.D.click(this, obj);
  4492. }, [_x320101TeacherDeskIconInfo[i]])
  4493. }, _frag); //
  4494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4497. }
  4498. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4499. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4500. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4501. continue
  4502. }
  4503. _content = $$("div", {
  4504. className: "U_MD_D_KO",
  4505. "onmousedown": U.UF.C.closure(function (obj) {
  4506. //防止拖动图标即打开了桌面应用
  4507. U.MD.D.click(this, obj);
  4508. }, [_trailTeacherDeskIconInfo[i]]),
  4509. "onclick": U.UF.C.closure(function (obj) {
  4510. //防止拖动图标即打开了桌面应用
  4511. U.MD.D.click(this, obj);
  4512. }, [_trailTeacherDeskIconInfo[i]])
  4513. }, _frag); //
  4514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4517. }
  4518. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4519. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4520. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4521. continue
  4522. }
  4523. _content = $$("div", {
  4524. className: "U_MD_D_KO",
  4525. "onmousedown": U.UF.C.closure(function (obj) {
  4526. //防止拖动图标即打开了桌面应用
  4527. U.MD.D.click(this, obj);
  4528. }, [_trialTeacherDeskIconInfo[i]]),
  4529. "onclick": U.UF.C.closure(function (obj) {
  4530. //防止拖动图标即打开了桌面应用
  4531. U.MD.D.click(this, obj);
  4532. }, [_trialTeacherDeskIconInfo[i]])
  4533. }, _frag); //
  4534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4537. }
  4538. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4539. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4540. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4541. continue
  4542. }
  4543. _content = $$("div", {
  4544. className: "U_MD_D_KO",
  4545. "onmousedown": U.UF.C.closure(function (obj) {
  4546. //防止拖动图标即打开了桌面应用
  4547. U.MD.D.click(this, obj);
  4548. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4549. "onclick": U.UF.C.closure(function (obj) {
  4550. //防止拖动图标即打开了桌面应用
  4551. U.MD.D.click(this, obj);
  4552. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4553. }, _frag); //
  4554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4557. }
  4558. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4559. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4560. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4561. continue
  4562. }
  4563. _content = $$("div", {
  4564. className: "U_MD_D_KO",
  4565. "onmousedown": U.UF.C.closure(function (obj) {
  4566. //防止拖动图标即打开了桌面应用
  4567. U.MD.D.click(this, obj);
  4568. }, [_szsyTeacherDeskIconInfo[i]]),
  4569. "onclick": U.UF.C.closure(function (obj) {
  4570. //防止拖动图标即打开了桌面应用
  4571. U.MD.D.click(this, obj);
  4572. }, [_szsyTeacherDeskIconInfo[i]])
  4573. }, _frag); //
  4574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4577. }
  4578. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4579. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4580. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4581. continue
  4582. }
  4583. _content = $$("div", {
  4584. className: "U_MD_D_KO",
  4585. "onmousedown": U.UF.C.closure(function (obj) {
  4586. //防止拖动图标即打开了桌面应用
  4587. U.MD.D.click(this, obj);
  4588. }, [_x010608TeacherDeskIconInfo[i]]),
  4589. "onclick": U.UF.C.closure(function (obj) {
  4590. //防止拖动图标即打开了桌面应用
  4591. U.MD.D.click(this, obj);
  4592. }, [_x010608TeacherDeskIconInfo[i]])
  4593. }, _frag); //
  4594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4597. }
  4598. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4599. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4600. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4601. continue
  4602. }
  4603. _content = $$("div", {
  4604. className: "U_MD_D_KO",
  4605. "onmousedown": U.UF.C.closure(function (obj) {
  4606. //防止拖动图标即打开了桌面应用
  4607. U.MD.D.click(this, obj);
  4608. }, [_x010611TeacherDeskIconInfo[i]]),
  4609. "onclick": U.UF.C.closure(function (obj) {
  4610. //防止拖动图标即打开了桌面应用
  4611. U.MD.D.click(this, obj);
  4612. }, [_x010611TeacherDeskIconInfo[i]])
  4613. }, _frag); //
  4614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4617. }
  4618. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4619. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4620. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4621. continue
  4622. }
  4623. _content = $$("div", {
  4624. className: "U_MD_D_KO",
  4625. "onmousedown": U.UF.C.closure(function (obj) {
  4626. //防止拖动图标即打开了桌面应用
  4627. U.MD.D.click(this, obj);
  4628. }, [_x010612TeacherDeskIconInfo[i]]),
  4629. "onclick": U.UF.C.closure(function (obj) {
  4630. //防止拖动图标即打开了桌面应用
  4631. U.MD.D.click(this, obj);
  4632. }, [_x010612TeacherDeskIconInfo[i]])
  4633. }, _frag); //
  4634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4637. }
  4638. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4639. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4640. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4641. continue
  4642. }
  4643. _content = $$("div", {
  4644. className: "U_MD_D_KO",
  4645. "onmousedown": U.UF.C.closure(function (obj) {
  4646. //防止拖动图标即打开了桌面应用
  4647. U.MD.D.click(this, obj);
  4648. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4649. "onclick": U.UF.C.closure(function (obj) {
  4650. //防止拖动图标即打开了桌面应用
  4651. U.MD.D.click(this, obj);
  4652. }, [_tianyuanTeacherDeskIconInfo[i]])
  4653. }, _frag); //
  4654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4657. }
  4658. } else {
  4659. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4660. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4661. continue
  4662. }
  4663. _content = $$("div", {
  4664. className: "U_MD_D_KO",
  4665. "onmousedown": U.UF.C.closure(function (obj) {
  4666. //防止拖动图标即打开了桌面应用
  4667. U.MD.D.click(this, obj);
  4668. }, [_teacherDesktopIconInfo[i]]),
  4669. "onclick": U.UF.C.closure(function (obj) {
  4670. //防止拖动图标即打开了桌面应用
  4671. U.MD.D.click(this, obj);
  4672. }, [_teacherDesktopIconInfo[i]])
  4673. }, _frag); //
  4674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4677. }
  4678. }
  4679. } else {
  4680. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4681. _content = $$("div", {
  4682. className: "U_MD_D_KO",
  4683. style: { 'width': '124px', 'height': '145px' },
  4684. "onmousedown": U.UF.C.closure(function (obj) {
  4685. //防止拖动图标即打开了桌面应用
  4686. U.MD.D.click(this, obj);
  4687. }, [_easyDesktopIconInfo[i]]),
  4688. "onclick": U.UF.C.closure(function (obj) {
  4689. //防止拖动图标即打开了桌面应用
  4690. U.MD.D.click(this, obj);
  4691. }, [_easyDesktopIconInfo[i]])
  4692. }, _frag); //
  4693. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4696. }
  4697. }
  4698. if (type == 1) {
  4699. //加载好后给图标定位
  4700. U.MD.D.iconPostion($(_frag).Child());
  4701. } else {
  4702. //加载好后给图标定位
  4703. U.MD.D.iconPostion2($(_frag).Child());
  4704. }
  4705. //把图标加载到页面
  4706. el.appendChild(_frag);
  4707. }
  4708. /**
  4709. * 显示任务栏
  4710. *
  4711. * @param {element} 桌面元素
  4712. */
  4713. U.MD.D.I.displayTaskbar = function (el) {
  4714. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4715. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4716. //任务栏位置变化
  4717. U.selectEl(el).css({ "bottom": "0px" });
  4718. //桌面位置变话
  4719. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4720. }
  4721. }
  4722. //#region 桌面图标拖动逻辑
  4723. /**
  4724. * 桌面排列图标
  4725. *
  4726. * @param {element} 桌面元素
  4727. * @param {object} 上下相距的距离
  4728. * @param {object} 左右相距的距离
  4729. * @return {object} 命名空间
  4730. */
  4731. U.MD.D.iconPostion = function (childs, top, left) {
  4732. var i; //用于循环处理
  4733. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4734. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4735. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4736. for (i = 0; i < childs.length; i++) {
  4737. //如果竖排top超过了范围处理
  4738. if (top + 95 > US.height - 10) {
  4739. //left超过了页面范围处理,则向上重叠打印处理
  4740. if ((left + 180) > US.width) {
  4741. top -= 110;
  4742. left -= 90;
  4743. }
  4744. //没有超过范围,那么left+90添加到下一个竖排打印
  4745. else {
  4746. left += 90;
  4747. top = 15;
  4748. };
  4749. }
  4750. //给图标的位置赋值
  4751. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4752. if (i < childs.length - 1) {
  4753. //页面图标每次向下加95
  4754. top += 95;
  4755. }
  4756. }
  4757. //返回最后调用的图标的位置
  4758. return [top, left];
  4759. }
  4760. /**
  4761. * 桌面排列图标
  4762. *
  4763. * @param {element} 桌面元素
  4764. * @param {object} 上下相距的距离
  4765. * @param {object} 左右相距的距离
  4766. * @return {object} 命名空间
  4767. */
  4768. U.MD.D.iconPostion2 = function (childs, top, left) {
  4769. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4770. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4771. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4772. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4773. for (i = 0; i < childs.length; i++) {
  4774. //如果竖排top超过了范围处理
  4775. if (left + 150 > US.width - 10) {
  4776. //left超过了页面范围处理,则向上重叠打印处理
  4777. if ((top + 180) > US.Height) {
  4778. top -= 150;
  4779. left -= 150;
  4780. }
  4781. //没有超过范围,那么left+90添加到下一个竖排打印
  4782. else {
  4783. top += 150;
  4784. left = ol;
  4785. };
  4786. }
  4787. //给图标的位置赋值
  4788. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4789. if (i < childs.length - 1) {
  4790. //页面图标每次向下加95
  4791. left += 150;
  4792. }
  4793. }
  4794. //返回最后调用的图标的位置
  4795. return [top, left];
  4796. }
  4797. /**
  4798. * 桌面点击事件逻辑
  4799. *
  4800. * @param {element} 桌面元素
  4801. * @param {object} 上下相距的距离
  4802. * @param {object} 左右相距的距离
  4803. * @return {object} 命名空间
  4804. */
  4805. U.MD.D.click = function (el, obj) {
  4806. var _buttonnumber = event.button; //点击的按钮的事件值
  4807. var _userinfo = US.userInfo;
  4808. U.UF.EV.stopBubble(); //阻止向上冒泡
  4809. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4810. if (_buttonnumber < 2) {
  4811. //如果是click事件的处理
  4812. if (event.type == "click") {
  4813. //如果元素在mousemove事件中没有移动则出发click事件
  4814. if (!U.MD.D.I.IsDrag) {
  4815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4816. U.alert("请先登录您的账号!");
  4817. setTimeout(() => {
  4818. U.MD.U.L.login();
  4819. }, 2000);
  4820. } else {
  4821. //打开应用处理
  4822. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4823. }
  4824. }
  4825. }
  4826. //如果是mouse事件的处理
  4827. else {
  4828. if (US.Config.type == '1') {
  4829. //拖动处理,添加拖动和拖动结束事件
  4830. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4831. }
  4832. }
  4833. U.MD.D.I.IsDrag = false;
  4834. }
  4835. }
  4836. /**
  4837. * 拖动的处理
  4838. *
  4839. */
  4840. U.MD.D.iconMove = function () {
  4841. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4842. U.MD.D.I.IsDrag = true;
  4843. }
  4844. /**
  4845. * 拖动结束后,这里是定位处理,以网状的形式定位
  4846. *
  4847. * @param {element} 拖动的元素
  4848. * @return {object} 命名空间
  4849. */
  4850. U.MD.D.iconUp = function (el) {
  4851. var _top = 15,
  4852. _left = 20,
  4853. _margin,
  4854. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4855. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4856. if (_positioninfo["OT"] > 15) {
  4857. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4858. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4859. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4860. }
  4861. if (_positioninfo["OL"] > 20) {
  4862. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4863. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4864. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4865. }
  4866. //while循环判断么一个重叠的元素
  4867. do {
  4868. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4869. _top = _positioninfo[0] + 95; //得到定位后的top
  4870. _left = _positioninfo[1]; //得到定位后的left
  4871. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4872. }
  4873. /**
  4874. * 判断拖动后图标是否重叠
  4875. *
  4876. * @param {element} 拖动的元素
  4877. * @param {element} 桌面所有的元素
  4878. * @param {array} 拖动元素的位置
  4879. ----------[0] 上 top
  4880. ----------[1] 左 left
  4881. * @return {object} 命名空间
  4882. */
  4883. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4884. //循环所有的图标
  4885. for (var i = 0; i < childs.length; i++) {
  4886. //判断有没有和该图标诶子重叠的元素
  4887. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4888. return childs[i]; //如果有返回
  4889. }
  4890. }
  4891. }
  4892. //#endregion
  4893. //#endregion
  4894. //#region 桌面应用
  4895. /**
  4896. * 打开应用
  4897. *
  4898. * @param {string} 类型
  4899. -----------------Disk 网盘系统
  4900. -----------------PDisk 学习系统网盘
  4901. -----------------Poto 图片
  4902. -----------------Video 视频
  4903. -----------------Music 音乐
  4904. -----------------Word word
  4905. -----------------Excel excel
  4906. -----------------Txt 记事本
  4907. -----------------PB 学习系统
  4908. -----------------Blog 朋友圈系统
  4909. -----------------FTP ftp系统
  4910. -----------------Group 好友群
  4911. -----------------SY 首页系统
  4912. -----------------Set 个人设置
  4913. -----------------XSet 系统设置
  4914. -----------------App 我们所有的app
  4915. -----------------BC c.1473.cn 平台
  4916. -----------------CWeb d.1473.cn 变成平台
  4917. -----------------其他的外联系统 我们统一用iframe打开
  4918. * @param {array} 类型
  4919. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4920. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4921. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4922. 如果第一个参数为其他,则无第二个参数
  4923. * @returns {array}
  4924. */
  4925. window.addEventListener('message', function (e) { // 监听 message 事件
  4926. // alert(e.data.type);
  4927. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4928. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4929. //3是展示全部阶段 2学生 1老师 4专家
  4930. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4931. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4932. //3是展示全部阶段 2学生 1老师 4专家
  4933. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4934. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4935. //3是展示全部阶段 2学生 1老师 4专家
  4936. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4937. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4938. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4939. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4940. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4941. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4942. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4943. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4944. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4945. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4946. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4947. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4948. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4949. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4950. //3是展示全部阶段 2学生 1老师 4专家
  4951. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4952. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4953. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4954. U.MD.D.I.selectUser();
  4955. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4956. var _formel = document.getElementById("study");
  4957. U.UF.F.windowZooming(_formel);
  4958. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4959. var _formel = document.getElementById("studyDetail");
  4960. U.UF.F.windowZooming(_formel);
  4961. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4962. var _formel = document.getElementById("studyDetail");
  4963. U.UF.F.windowZooming(_formel);
  4964. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4965. var _formel = document.getElementById("studentStudy");
  4966. U.UF.F.windowZooming(_formel);
  4967. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4968. // var _formel = document.getElementById("study");
  4969. //如果最大化了,那么就把他缩小
  4970. // if (_formel.ismaximize) {
  4971. // return;
  4972. // }
  4973. // U.UF.F.windowZooming(_formel);
  4974. // U.UF.F.topWindow(_formel);
  4975. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4976. // var _formel = document.getElementById("studyDetail");
  4977. //如果最大化了,那么就把他缩小
  4978. // if (_formel.ismaximize) {
  4979. // return;
  4980. // }
  4981. // U.UF.F.windowZooming(_formel);
  4982. // U.UF.F.topWindow(_formel);
  4983. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4984. // var _formel = document.getElementById("studentStudy");
  4985. // if (_formel.ismaximize) {
  4986. // return;
  4987. // }
  4988. // U.UF.F.windowZooming(_formel);
  4989. // U.UF.F.topWindow(_formel);
  4990. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4991. var _formel = document.getElementById("study");
  4992. // if (_formel.ismaximize) {
  4993. // return;
  4994. // }
  4995. // U.UF.F.windowZooming(_formel);
  4996. U.UF.F.topWindow(_formel);
  4997. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4998. var _formel = document.getElementById("studentIndex");
  4999. U.UF.F.windowZooming(_formel);
  5000. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5001. var _formel = document.getElementById("studyDetailS");
  5002. U.UF.F.windowZooming(_formel);
  5003. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5004. var _formel = document.getElementById("studioIndex");
  5005. U.UF.F.windowZooming(_formel);
  5006. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5007. var _formel = document.getElementById("studyDetailStudio");
  5008. U.UF.F.windowZooming(_formel);
  5009. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5010. var _formel = document.getElementById("studyDetailStudio");
  5011. U.UF.F.windowZooming(_formel);
  5012. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5013. var _formel = document.getElementById("studyDetailNT");
  5014. U.UF.F.windowZooming(_formel);
  5015. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5016. var _formel = document.getElementById("studyDetailS");
  5017. U.UF.F.windowZooming(_formel);
  5018. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5019. var _formel = document.getElementById("studyDetailS");
  5020. U.UF.F.topWindow(_formel);
  5021. } else if (e.data.tools && e.data.tools == "1") {
  5022. // U.MD.D.I.openApplication("whiteboard")
  5023. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5024. } else if (e.data.tools && e.data.tools == "2") {
  5025. U.MD.D.I.openApplication("note")
  5026. } else if (e.data.tools && e.data.tools == "3") {
  5027. // U.MD.D.I.openApplication("mind")
  5028. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5029. } else if (e.data.tools && e.data.tools == "4") {
  5030. U.MD.D.I.openApplication("investigation")
  5031. } else if (e.data.tools && e.data.tools == "6") {
  5032. // U.MD.D.I.openApplication("doc")
  5033. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5034. } else if (e.data.tools && e.data.tools == "7") {
  5035. // U.MD.D.I.openApplication("mindNetwork")
  5036. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5037. } else if (e.data.tools && e.data.tools == "8") {
  5038. U.MD.D.I.openApplication("library")
  5039. } else if (e.data.tools && e.data.tools == "17") {
  5040. U.MD.D.I.openApplication("stuLibrary")
  5041. } else if (e.data.tools && e.data.tools == "18") {
  5042. U.MD.D.I.openApplication("train")
  5043. } else if (e.data.tools && e.data.tools == "21") {
  5044. U.MD.D.I.openApplication("program")
  5045. } else if (e.data.tools && e.data.tools == "22") {
  5046. U.MD.D.I.openApplication("AIprogram2")
  5047. } else if (e.data.tools && e.data.tools == "23") {
  5048. U.MD.D.I.openApplication("Pythonprogram")
  5049. } else if (e.data.tools && e.data.tools == "24") {
  5050. U.MD.D.I.openApplication("AIprogram")
  5051. } else if (e.data.tools && e.data.tools == "25") {
  5052. U.MD.D.I.openApplication("sys")
  5053. } else if (e.data.tools && e.data.tools == "26") {
  5054. // U.MD.D.I.openApplication("courseDesign")
  5055. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5056. } else if (e.data.tools && e.data.tools == "31") {
  5057. U.MD.D.I.openApplication("netWorkPanel")
  5058. } else if (e.data.tools && e.data.tools == "32") {
  5059. U.MD.D.I.openApplication("codeEdit")
  5060. } else if (e.data.tools && e.data.tools == "57") {
  5061. U.MD.D.I.openApplication("CocoPi")
  5062. } else if (e.data.tools && e.data.tools == "63") {
  5063. U.MD.D.I.openApplication("Wood")
  5064. } else if (e.data.tools && e.data.tools == "58") {
  5065. U.MD.D.I.openApplication("car")
  5066. } else if (e.data.tools && e.data.tools == "59") {
  5067. U.MD.D.I.openApplication("lineSearch")
  5068. } else if (e.data.tools && e.data.tools == "60") {
  5069. U.MD.D.I.openApplication("deepLearning")
  5070. } else if (e.data.tools && e.data.tools == "61") {
  5071. U.MD.D.I.openApplication("allHistory")
  5072. } else if (e.data.tools && e.data.tools == "28") {
  5073. U.MD.D.I.openApplication("translation")
  5074. } else if (e.data.tools && e.data.tools == "37") {
  5075. U.MD.D.I.openApplication("mohe")
  5076. } else if (e.data.tools && e.data.tools == "38") {
  5077. U.MD.D.I.openApplication("24game")
  5078. } else if (e.data.tools && e.data.tools == "39") {
  5079. U.MD.D.I.openApplication("GeoGebra")
  5080. } else if (e.data.tools && e.data.tools == "43") {
  5081. U.MD.D.I.openApplication("studentEvaluate")
  5082. } else if (e.data.tools && e.data.tools == "44") {
  5083. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5084. } else if (e.data.tools && e.data.tools == "46") {
  5085. U.MD.D.I.openApplication("project")
  5086. } else if (e.data.tools && e.data.tools == "71") {
  5087. U.MD.D.I.openApplication("aigptCourse")
  5088. } else if (e.data.tools && e.data.tools == "72") {
  5089. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5090. } else if (e.data.tools && e.data.tools == "1s") {
  5091. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5092. } else if (e.data.tools && e.data.tools == "3s") {
  5093. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5094. } else if (e.data.tools && e.data.tools == "6s") {
  5095. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5096. } else if (e.data.tools && e.data.tools == "1studio") {
  5097. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5098. } else if (e.data.tools && e.data.tools == "3studio") {
  5099. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5100. } else if (e.data.tools && e.data.tools == "6studio") {
  5101. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5102. } else if (e.data.tools && e.data.tools == "3y") {
  5103. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5104. } else if (e.data.tools && e.data.tools == "1y") {
  5105. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5106. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5107. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5108. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5109. U.MD.D.I.openApplication("AIAnalyse")
  5110. } else if (e.data.tools && e.data.tools == "1teacher") {
  5111. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5112. } else if (e.data.tools && e.data.tools == "3teacher") {
  5113. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5114. } else if (e.data.tools && e.data.tools == "7teacher") {
  5115. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5116. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5117. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5118. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5119. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5120. } else if (e.data.tools && e.data.tools == "1E") {
  5121. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5122. } else if (e.data.tools && e.data.tools == "3E") {
  5123. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5124. } else if (e.data.tools && e.data.tools == "57y") {
  5125. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5126. } else if (e.data.tools && e.data.tools == "57u") {
  5127. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5128. } else if (e.data.tools && e.data.tools == "57teacher") {
  5129. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5130. } else if (e.data.tools && e.data.tools == "64") {
  5131. U.MD.D.I.openApplication("AIChat")
  5132. } else if (e.data.tools && e.data.tools == "66") {
  5133. U.MD.D.I.openApplication("formulaEdi")
  5134. } else if (e.data.tools && e.data.tools == "67") {
  5135. U.MD.D.I.openApplication("molStr")
  5136. } else if (e.data.tools && e.data.tools == "68") {
  5137. U.MD.D.I.openApplication("timeAxis")
  5138. } else if (e.data.tools && e.data.tools == "openCourse") {
  5139. let _data = {
  5140. typea: e.data.typea || '',
  5141. typeb: e.data.typeb || '',
  5142. typed: e.data.typed || '',
  5143. }
  5144. U.MD.D.I.openInApplication("index", _data)
  5145. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5146. let _data = {
  5147. classid: e.data.classid || '',
  5148. }
  5149. U.MD.D.I.openInApplication("dataClass", _data)
  5150. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5151. let _data = {
  5152. cid: e.data.cid || '',
  5153. gid: e.data.gid || '',
  5154. }
  5155. U.MD.D.I.openInApplication("opencCscl", _data)
  5156. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5157. U.MD.D.I.openApplication("dataBoardTest")
  5158. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5159. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5160. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5161. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5162. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5163. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5164. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5165. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5166. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5167. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5168. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5169. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5170. }else if (e.data.tools && e.data.tools == "loginSz") {
  5171. U.MD.D.I.openInApplication("loginSz")
  5172. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5173. if($('#classroom_observation_board')[0]){
  5174. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5175. }
  5176. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5177. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5178. if($('#classroom_observation_ob_comment')[0]){
  5179. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5180. }
  5181. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5182. }else if (e.data.tools && e.data.tools == "logout"){
  5183. U.MD.U.LO.logoutSystem()
  5184. }else if (e.data.tools && e.data.tools == "getLogin"){
  5185. let _iframe = $('#UI_Login')[0];
  5186. if (_iframe) {
  5187. var userInfo = US.userInfo;
  5188. var type = 2
  5189. if(userInfo && userInfo.userid){
  5190. type = 1
  5191. }
  5192. _contentWindow = _iframe.contentWindow;
  5193. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5194. }
  5195. }
  5196. });
  5197. U.MD.D.I.selectUser = function () {
  5198. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5199. if (res.value[0].length > 0) {
  5200. US.userInfo = res.value[0][0];
  5201. $(".userName")[0].innerHTML = US.userInfo.username;
  5202. }
  5203. }, [], { "type": "GET", "withCredentials": true });
  5204. }
  5205. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5206. var _userinfo = US.userInfo, //登录用户信息
  5207. _userid = US.userInfo.userid, //登录用户id
  5208. _oid = _userinfo.organizeid,
  5209. _type = US.userInfo.type,
  5210. _org = US.userInfo.org,
  5211. _role = US.userInfo.role,
  5212. _classId = US.userInfo.classid;
  5213. if (_type == 4) {
  5214. tType = 4
  5215. }
  5216. switch (str) {
  5217. case "studyDetailNT": //无终端模式
  5218. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5219. setTimeout(() => {
  5220. U.MD.U.L.login();
  5221. }, 2000);
  5222. } else {
  5223. _formdiv = new U.UF.UI.form(
  5224. "课程详情",
  5225. $$("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 }), {
  5226. "id": "studyDetailNT",
  5227. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5228. "onresize": function () { }
  5229. }, {
  5230. closecallback: function () { }
  5231. }, { "style": { "height": "36px" } }).form; //创建窗体
  5232. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5233. break;
  5234. }
  5235. case "studyDetail":
  5236. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5237. setTimeout(() => {
  5238. U.MD.U.L.login();
  5239. }, 2000);
  5240. } else {
  5241. _formdiv = new U.UF.UI.form(
  5242. "课程详情",
  5243. $$("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 }), {
  5244. "id": "studyDetail",
  5245. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5246. "onresize": function () { }
  5247. }, {
  5248. closecallback: function () { }
  5249. }, { "style": { "height": "36px" } }).form; //创建窗体
  5250. _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); } }
  5251. break;
  5252. }
  5253. case "studyDetailTrain":
  5254. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5255. setTimeout(() => {
  5256. U.MD.U.L.login();
  5257. }, 2000);
  5258. } else {
  5259. _formdiv = new U.UF.UI.form(
  5260. "培训详情",
  5261. $$("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 }), {
  5262. "id": "studyDetailTrain",
  5263. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5264. "onresize": function () { }
  5265. }, {
  5266. closecallback: function () { }
  5267. }, { "style": { "height": "36px" } }).form; //创建窗体
  5268. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5269. break;
  5270. }
  5271. case "studyDetailS":
  5272. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5273. setTimeout(() => {
  5274. U.MD.U.L.login();
  5275. }, 2000);
  5276. } else {
  5277. _formdiv = new U.UF.UI.form(
  5278. "项目详情",
  5279. $$("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 }), {
  5280. "id": "studyDetailS",
  5281. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //创建窗体
  5286. _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); } }
  5287. break;
  5288. }
  5289. case "studyDetailStudio":
  5290. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5291. setTimeout(() => {
  5292. U.MD.U.L.login();
  5293. }, 2000);
  5294. } else {
  5295. _formdiv = new U.UF.UI.form(
  5296. "工作详情",
  5297. $$("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 }), {
  5298. "id": "studyDetailStudio",
  5299. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5300. "onresize": function () { }
  5301. }, {
  5302. closecallback: function () { }
  5303. }, { "style": { "height": "36px" } }).form; //创建窗体
  5304. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5305. break;
  5306. }
  5307. case "studyDetailS5":
  5308. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5309. setTimeout(() => {
  5310. U.MD.U.L.login();
  5311. }, 2000);
  5312. } else {
  5313. _formdiv = new U.UF.UI.form(
  5314. "项目详情",
  5315. $$("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 }), {
  5316. "id": "studyDetailS",
  5317. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5318. "onresize": function () { }
  5319. }, {
  5320. closecallback: function () { }
  5321. }, { "style": { "height": "36px" } }).form; //创建窗体
  5322. _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); } }
  5323. break;
  5324. }
  5325. case "studyDetailGM":
  5326. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5327. setTimeout(() => {
  5328. U.MD.U.L.login();
  5329. }, 2000);
  5330. } else {
  5331. _formdiv = new U.UF.UI.form(
  5332. "课程详情",
  5333. $$("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 }), {
  5334. "id": "studyDetail",
  5335. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5336. "onresize": function () { }
  5337. }, {
  5338. closecallback: function () { }
  5339. }, { "style": { "height": "36px" } }).form; //创建窗体
  5340. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5341. break;
  5342. }
  5343. case "hanUrl":
  5344. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5345. setTimeout(() => {
  5346. U.MD.U.L.login();
  5347. }, 2000);
  5348. } else {
  5349. _formdiv = new U.UF.UI.form(
  5350. "汉字宫",
  5351. $$("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" }), {
  5352. "id": "hanUrl",
  5353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5354. "onresize": function () { }
  5355. }, {
  5356. closecallback: function () { }
  5357. }, { "style": { "height": "36px" } }).form; //创建窗体
  5358. _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); } }
  5359. break;
  5360. }
  5361. case "index":
  5362. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5363. setTimeout(() => {
  5364. U.MD.U.L.login();
  5365. }, 2000);
  5366. } else {
  5367. _formdiv = new U.UF.UI.form(
  5368. "课程中心",
  5369. $$("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 }), {
  5370. "id": "study",
  5371. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5372. "onresize": function () { }
  5373. }, {
  5374. closecallback: function () { }
  5375. }, { "style": { "height": "36px" } }).form; //创建窗体
  5376. _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); } }
  5377. break;
  5378. }
  5379. case "dataClass":
  5380. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5381. setTimeout(() => {
  5382. U.MD.U.L.login();
  5383. }, 2000);
  5384. } else {
  5385. _formdiv = new U.UF.UI.form(
  5386. "数据报告",
  5387. $$("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 }), {
  5388. "id": "dataClass",
  5389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5390. "onresize": function () { }
  5391. }, {
  5392. closecallback: function () { }
  5393. }, { "style": { "height": "36px" } }).form; //创建窗体
  5394. _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); } }
  5395. break;
  5396. }
  5397. case "opencCscl":
  5398. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5399. setTimeout(() => {
  5400. U.MD.U.L.login();
  5401. }, 2000);
  5402. } else {
  5403. _formdiv = new U.UF.UI.form(
  5404. "协同建构",
  5405. $$("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 }), {
  5406. "id": "futureClass",
  5407. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5408. "onresize": function () { }
  5409. }, {
  5410. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5411. }, { "style": { "height": "36px" } }).form; //创建窗体
  5412. _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); } }
  5413. break;
  5414. }
  5415. case "openCourseUpdate":
  5416. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5417. setTimeout(() => {
  5418. U.MD.U.L.login();
  5419. }, 2000);
  5420. } else {
  5421. _formdiv = new U.UF.UI.form(
  5422. "课程管理",
  5423. $$("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 }), {
  5424. "id": "openCourseUpdate",
  5425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5426. "onresize": function () { }
  5427. }, {
  5428. closecallback: function () { }
  5429. }, { "style": { "height": "36px" } }).form; //创建窗体
  5430. break;
  5431. }
  5432. case "openNewCourseUpdate":
  5433. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5434. setTimeout(() => {
  5435. U.MD.U.L.login();
  5436. }, 2000);
  5437. } else {
  5438. _formdiv = new U.UF.UI.form(
  5439. "课程管理",
  5440. $$("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 }), {
  5441. "id": "openCourseUpdate",
  5442. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5443. "onresize": function () { }
  5444. }, {
  5445. closecallback: function () { }
  5446. }, { "style": { "height": "36px" } }).form; //创建窗体
  5447. break;
  5448. }
  5449. case "openCourseEUpdate":
  5450. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5451. setTimeout(() => {
  5452. U.MD.U.L.login();
  5453. }, 2000);
  5454. } else {
  5455. _formdiv = new U.UF.UI.form(
  5456. "课程管理",
  5457. $$("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 }), {
  5458. "id": "openCourseUpdate",
  5459. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5460. "onresize": function () { }
  5461. }, {
  5462. closecallback: function () { }
  5463. }, { "style": { "height": "36px" } }).form; //创建窗体
  5464. break;
  5465. }
  5466. case "openCourseAiUpdate":
  5467. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5468. setTimeout(() => {
  5469. U.MD.U.L.login();
  5470. }, 2000);
  5471. } else {
  5472. _formdiv = new U.UF.UI.form(
  5473. "课程管理",
  5474. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5475. "id": "openCourseUpdate",
  5476. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5477. "onresize": function () { }
  5478. }, {
  5479. closecallback: function () { }
  5480. }, { "style": { "height": "36px" } }).form; //创建窗体
  5481. break;
  5482. }
  5483. case "openCourseAiUpdate2":
  5484. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5485. setTimeout(() => {
  5486. U.MD.U.L.login();
  5487. }, 2000);
  5488. } else {
  5489. _formdiv = new U.UF.UI.form(
  5490. "课程管理",
  5491. $$("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 }), {
  5492. "id": "openCourseUpdate",
  5493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5494. "onresize": function () { }
  5495. }, {
  5496. closecallback: function () { }
  5497. }, { "style": { "height": "36px" } }).form; //创建窗体
  5498. break;
  5499. }
  5500. case "openCourseNewUpdate":
  5501. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5502. setTimeout(() => {
  5503. U.MD.U.L.login();
  5504. }, 2000);
  5505. } else {
  5506. _formdiv = new U.UF.UI.form(
  5507. "课程管理",
  5508. $$("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 }), {
  5509. "id": "openCourseUpdate",
  5510. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5511. "onresize": function () { }
  5512. }, {
  5513. closecallback: function () { }
  5514. }, { "style": { "height": "36px" } }).form; //创建窗体
  5515. break;
  5516. }
  5517. case "inviteLoginSz":
  5518. _formdiv = new U.UF.UI.form(
  5519. "随机码登录",
  5520. $$("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 }), {
  5521. "id": "loginSz",
  5522. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5523. "onresize": function () { }
  5524. }, {
  5525. closecallback: function () { }
  5526. }, { "style": { "height": "36px" } }).form; //创建窗体
  5527. break;
  5528. case "loginSz":
  5529. _formdiv = new U.UF.UI.form(
  5530. "教师登录",
  5531. $$("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" }), {
  5532. "id": "loginSz",
  5533. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5534. "onresize": function () { }
  5535. }, {
  5536. closecallback: function () { }
  5537. }, { "style": { "height": "36px" } }).form; //创建窗体
  5538. break;
  5539. case "teacher":
  5540. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5541. setTimeout(() => {
  5542. U.MD.U.L.login();
  5543. }, 2000);
  5544. } else {
  5545. _formdiv = new U.UF.UI.form(
  5546. "教师管理",
  5547. $$("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 }), {
  5548. "id": "teacher",
  5549. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5550. "onresize": function () { }
  5551. }, {
  5552. closecallback: function () { }
  5553. }, { "style": { "height": "36px" } }).form; //创建窗体
  5554. break;
  5555. }
  5556. case "dataBoardSZArea":
  5557. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5558. setTimeout(() => {
  5559. U.MD.U.L.login();
  5560. }, 2000);
  5561. } else {
  5562. _formdiv = new U.UF.UI.form(
  5563. "综合数据看板",
  5564. $$("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 }), {
  5565. "id": "dataBoardSZArea",
  5566. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5567. "onresize": function () { }
  5568. }, {
  5569. closecallback: function () { }
  5570. }, { "style": { "height": "36px" } }).form; //创建窗体
  5571. break;
  5572. }
  5573. case "dataBoardSZCity":
  5574. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5575. setTimeout(() => {
  5576. U.MD.U.L.login();
  5577. }, 2000);
  5578. } else {
  5579. _formdiv = new U.UF.UI.form(
  5580. "综合数据看板",
  5581. $$("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 }), {
  5582. "id": "dataBoardSZCity",
  5583. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5584. "onresize": function () { }
  5585. }, {
  5586. closecallback: function () { }
  5587. }, { "style": { "height": "36px" } }).form; //创建窗体
  5588. break;
  5589. }
  5590. case "classroom_observation_board":
  5591. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5592. setTimeout(() => {
  5593. U.MD.U.L.login();
  5594. }, 2000);
  5595. } else {
  5596. _formdiv = new U.UF.UI.form(
  5597. "课堂观察",
  5598. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5599. "id": "classroom_observation_board",
  5600. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5601. "onresize": function () { }
  5602. }, {
  5603. closecallback: function () { }
  5604. }, { "style": { "height": "36px" } }).form; //创建窗体
  5605. break;
  5606. }
  5607. case "classroom_observation_ob_comment":
  5608. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5609. setTimeout(() => {
  5610. U.MD.U.L.login();
  5611. }, 2000);
  5612. } else {
  5613. _formdiv = new U.UF.UI.form(
  5614. "课堂审核",
  5615. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5616. "id": "classroom_observation_ob_comment",
  5617. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5618. "onresize": function () { }
  5619. }, {
  5620. closecallback: function () { }
  5621. }, { "style": { "height": "36px" } }).form; //创建窗体
  5622. break;
  5623. }
  5624. case "gptConfig":
  5625. _formdiv = new U.UF.UI.form(
  5626. data.name ? data.name : "应用中心",
  5627. $$("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 }), {
  5628. "id": "gptConfig" + data.id,
  5629. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5630. "onresize": function () { }
  5631. }, {
  5632. closecallback: function () { }
  5633. }, { "style": { "height": "36px" } }).form; //创建窗体
  5634. break;
  5635. }
  5636. }
  5637. U.MD.D.I.openApplication = function (str, obj, info) {
  5638. obj = obj || {};
  5639. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5640. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5641. _userinfo = US.userInfo, //登录用户信息
  5642. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5643. _oid = obj.organizeid || _userinfo.organizeid,
  5644. _type = US.userInfo.type,
  5645. _org = obj.org || US.userInfo.org,
  5646. _role = US.userInfo.role,
  5647. _classId = US.userInfo.classid,
  5648. _TscreenType = 1
  5649. _screenType = 2,
  5650. _SscreenType = 3;
  5651. let iframeBool = true
  5652. if(U.UF.UI.form.allForm[str]){
  5653. iframeBool = false
  5654. }
  5655. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5656. return;
  5657. }
  5658. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student"]
  5659. if(opArray.includes(str)){
  5660. let _str = str
  5661. if(str == 'appStore'){
  5662. _str = "cocoFlow"
  5663. }else if(str == "futureClass"){
  5664. _str = "cocoNote"
  5665. }
  5666. try {
  5667. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5668. } catch (error) {
  5669. console.log(error);
  5670. }
  5671. }
  5672. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5673. switch (str) {
  5674. case "studnetProject": //好友打开
  5675. _formdiv = new U.UF.UI.form(
  5676. "我的项目",
  5677. $$("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 }), {
  5678. "id": "studnetProject",
  5679. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5680. "onresize": function () { }
  5681. }, {
  5682. closecallback: function () { }
  5683. }, { "style": { "height": "36px" } }).form; //创建窗体
  5684. _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); } }
  5685. break;
  5686. case "studentEvaluate": //好友打开
  5687. _formdiv = new U.UF.UI.form(
  5688. "我的评价",
  5689. $$("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 }), {
  5690. "id": "studentEvaluate",
  5691. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5692. "onresize": function () { }
  5693. }, {
  5694. closecallback: function () { }
  5695. }, { "style": { "height": "36px" } }).form; //创建窗体
  5696. _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); } }
  5697. break;
  5698. case "my":
  5699. _formdiv = new U.UF.UI.form(
  5700. "我的资料",
  5701. $$("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 }), {
  5702. "id": "my",
  5703. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5704. "onresize": function () { }
  5705. }, {
  5706. closecallback: function () { }
  5707. }, { "style": { "height": "36px" } }).form; //创建窗体
  5708. _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); } }
  5709. break;
  5710. case "program":
  5711. _formdiv = new U.UF.UI.form(
  5712. "编程平台",
  5713. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5714. "id": "program",
  5715. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5716. "onresize": function () { }
  5717. }, {
  5718. closecallback: function () { }
  5719. }, { "style": { "height": "36px" } }).form; //创建窗体
  5720. _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); } }
  5721. break;
  5722. case "library":
  5723. _formdiv = new U.UF.UI.form(
  5724. "素材库",
  5725. $$("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 }), {
  5726. "id": "library",
  5727. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5728. "onresize": function () { }
  5729. }, {
  5730. closecallback: function () { }
  5731. }, { "style": { "height": "36px" } }).form; //创建窗体
  5732. _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); } }
  5733. break;
  5734. case "whiteboard":
  5735. _formdiv = new U.UF.UI.form(
  5736. "电子白板",
  5737. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5738. "id": "whiteboard",
  5739. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5740. "onresize": function () { }
  5741. }, {
  5742. closecallback: function () { }
  5743. }, { "style": { "height": "36px" } }).form; //创建窗体
  5744. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5745. break;
  5746. case "investigation":
  5747. _formdiv = new U.UF.UI.form(
  5748. "问卷调查",
  5749. $$("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 }), {
  5750. "id": "investigation",
  5751. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5752. "onresize": function () { }
  5753. }, {
  5754. closecallback: function () { }
  5755. }, { "style": { "height": "36px" } }).form; //创建窗体
  5756. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5757. break;
  5758. case "note":
  5759. _formdiv = new U.UF.UI.form(
  5760. "便签分类",
  5761. $$("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 }), {
  5762. "id": "note",
  5763. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5769. break;
  5770. // case "score":
  5771. // _formdiv = new U.UF.UI.form(
  5772. // "量规评分",
  5773. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5774. // "id": "score",
  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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5781. // break;
  5782. case "mind":
  5783. _formdiv = new U.UF.UI.form(
  5784. "思维导图",
  5785. $$("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"
  5786. "id": "mind",
  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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5793. break;
  5794. case "doc":
  5795. // U.MD.D.I.isRoom();
  5796. _formdiv = new U.UF.UI.form(
  5797. "协同文档",
  5798. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5799. "id": "doc",
  5800. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5801. "onresize": function () { }
  5802. }, {
  5803. closecallback: function () { }
  5804. }, { "style": { "height": "36px" } }).form; //创建窗体
  5805. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5806. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5807. // })
  5808. _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); } }
  5809. break;
  5810. case "studentStudy":
  5811. _formdiv = new U.UF.UI.form(
  5812. "课程中心",
  5813. $$("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
  5814. "id": "studentStudy",
  5815. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5816. "onresize": function () { }
  5817. }, {
  5818. closecallback: function () { }
  5819. }, { "style": { "height": "36px" } }).form; //创建窗体
  5820. _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); } }
  5821. break;
  5822. case "train": //好友打开
  5823. _formdiv = new U.UF.UI.form(
  5824. "训练平台",
  5825. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5826. "id": "train",
  5827. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5828. "onresize": function () { }
  5829. }, {
  5830. closecallback: function () { }
  5831. }, { "style": { "height": "36px" } }).form; //创建窗体
  5832. _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); } }
  5833. break;
  5834. case "mindNetwork": //好友打开
  5835. _formdiv = new U.UF.UI.form(
  5836. "思维网格",
  5837. $$("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 }), {
  5838. "id": "mindNetwork",
  5839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5840. "onresize": function () { }
  5841. }, {
  5842. closecallback: function () { }
  5843. }, { "style": { "height": "36px" } }).form; //创建窗体
  5844. _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); } }
  5845. break;
  5846. case "studentClassRoom": //好友打开
  5847. _formdiv = new U.UF.UI.form(
  5848. "实时课堂",
  5849. $$("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 }), {
  5850. "id": "studentClassRoom",
  5851. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5852. "onresize": function () { }
  5853. }, {
  5854. closecallback: function () { }
  5855. }, { "style": { "height": "36px" } }).form; //创建窗体
  5856. _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); } }
  5857. setTimeout(() => {
  5858. U.UF.F.windowZooming(_formdiv)
  5859. }, 0);
  5860. break;
  5861. }
  5862. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5863. switch (str) {
  5864. case "studnetProject": //好友打开
  5865. _formdiv = new U.UF.UI.form(
  5866. "我的项目",
  5867. $$("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 }), {
  5868. "id": "studnetProject",
  5869. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5870. "onresize": function () { }
  5871. }, {
  5872. closecallback: function () { }
  5873. }, { "style": { "height": "36px" } }).form; //创建窗体
  5874. _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); } }
  5875. break;
  5876. case "studentEvaluate": //好友打开
  5877. _formdiv = new U.UF.UI.form(
  5878. "我的评价",
  5879. $$("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 }), {
  5880. "id": "studentEvaluate",
  5881. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5882. "onresize": function () { }
  5883. }, {
  5884. closecallback: function () { }
  5885. }, { "style": { "height": "36px" } }).form; //创建窗体
  5886. _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); } }
  5887. break;
  5888. case "my":
  5889. _formdiv = new U.UF.UI.form(
  5890. "我的资料",
  5891. $$("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 }), {
  5892. "id": "my",
  5893. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5894. "onresize": function () { }
  5895. }, {
  5896. closecallback: function () { }
  5897. }, { "style": { "height": "36px" } }).form; //创建窗体
  5898. _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); } }
  5899. break;
  5900. case "program":
  5901. _formdiv = new U.UF.UI.form(
  5902. "编程平台",
  5903. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5904. "id": "program",
  5905. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5906. "onresize": function () { }
  5907. }, {
  5908. closecallback: function () { }
  5909. }, { "style": { "height": "36px" } }).form; //创建窗体
  5910. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5911. break;
  5912. case "library":
  5913. _formdiv = new U.UF.UI.form(
  5914. "素材库",
  5915. $$("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 }), {
  5916. "id": "library",
  5917. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5918. "onresize": function () { }
  5919. }, {
  5920. closecallback: function () { }
  5921. }, { "style": { "height": "36px" } }).form; //创建窗体
  5922. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5923. break;
  5924. case "whiteboard":
  5925. _formdiv = new U.UF.UI.form(
  5926. "电子白板",
  5927. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5928. "id": "whiteboard",
  5929. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5930. "onresize": function () { }
  5931. }, {
  5932. closecallback: function () { }
  5933. }, { "style": { "height": "36px" } }).form; //创建窗体
  5934. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5935. break;
  5936. case "investigation":
  5937. _formdiv = new U.UF.UI.form(
  5938. "问卷调查",
  5939. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5940. "id": "investigation",
  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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5947. break;
  5948. case "note":
  5949. _formdiv = new U.UF.UI.form(
  5950. "便签分类",
  5951. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5952. "id": "note",
  5953. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5954. "onresize": function () { }
  5955. }, {
  5956. closecallback: function () { }
  5957. }, { "style": { "height": "36px" } }).form; //创建窗体
  5958. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5959. break;
  5960. // case "score":
  5961. // _formdiv = new U.UF.UI.form(
  5962. // "量规评分",
  5963. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5964. // "id": "score",
  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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5971. // break;
  5972. case "mind":
  5973. _formdiv = new U.UF.UI.form(
  5974. "思维导图",
  5975. $$("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"
  5976. "id": "mind",
  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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5983. break;
  5984. case "doc":
  5985. // U.MD.D.I.isRoom();
  5986. _formdiv = new U.UF.UI.form(
  5987. "协同文档",
  5988. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5989. "id": "doc",
  5990. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5991. "onresize": function () { }
  5992. }, {
  5993. closecallback: function () { }
  5994. }, { "style": { "height": "36px" } }).form; //创建窗体
  5995. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5996. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5997. })
  5998. _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); } }
  5999. break;
  6000. case "train": //好友打开
  6001. _formdiv = new U.UF.UI.form(
  6002. "训练平台",
  6003. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6004. "id": "train",
  6005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6006. "onresize": function () { }
  6007. }, {
  6008. closecallback: function () { }
  6009. }, { "style": { "height": "36px" } }).form; //创建窗体
  6010. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6011. break;
  6012. case "studentStudy":
  6013. _formdiv = new U.UF.UI.form(
  6014. "课程中心",
  6015. $$("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
  6016. "id": "studentStudy",
  6017. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6018. "onresize": function () { }
  6019. }, {
  6020. closecallback: function () { }
  6021. }, { "style": { "height": "36px" } }).form; //创建窗体
  6022. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6023. break;
  6024. case "mindNetwork": //好友打开
  6025. _formdiv = new U.UF.UI.form(
  6026. "思维网格",
  6027. $$("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 }), {
  6028. "id": "mindNetwork",
  6029. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6030. "onresize": function () { }
  6031. }, {
  6032. closecallback: function () { }
  6033. }, { "style": { "height": "36px" } }).form; //创建窗体
  6034. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6035. break;
  6036. case "studentClassRoom": //好友打开
  6037. _formdiv = new U.UF.UI.form(
  6038. "实时课堂",
  6039. $$("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 }), {
  6040. "id": "studentClassRoom",
  6041. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6042. "onresize": function () { }
  6043. }, {
  6044. closecallback: function () { }
  6045. }, { "style": { "height": "36px" } }).form; //创建窗体
  6046. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6047. setTimeout(() => {
  6048. U.UF.F.windowZooming(_formdiv)
  6049. }, 0);
  6050. break;
  6051. }
  6052. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6053. //选择应用处理
  6054. switch (str) {
  6055. case "project": //好友打开
  6056. _formdiv = new U.UF.UI.form(
  6057. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6058. $$("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 }), {
  6059. "id": "project",
  6060. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6061. "onresize": function () { }
  6062. }, {
  6063. closecallback: function () { }
  6064. }, { "style": { "height": "36px" } }).form; //创建窗体
  6065. _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); } }
  6066. break;
  6067. case "student":
  6068. _formdiv = new U.UF.UI.form(
  6069. "学生管理",
  6070. $$("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 }), {
  6071. "id": "student",
  6072. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6073. "onresize": function () { }
  6074. }, {
  6075. closecallback: function () { }
  6076. }, { "style": { "height": "36px" } }).form; //创建窗体
  6077. _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); } }
  6078. break;
  6079. case "evaluate":
  6080. _formdiv = new U.UF.UI.form(
  6081. "学生评价",
  6082. $$("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 }), {
  6083. "id": "evaluate",
  6084. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6085. "onresize": function () { }
  6086. }, {
  6087. closecallback: function () { }
  6088. }, { "style": { "height": "36px" } }).form; //创建窗体
  6089. _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); } }
  6090. break;
  6091. case "sys":
  6092. _formdiv = new U.UF.UI.form(
  6093. "目标管理",
  6094. $$("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 }), {
  6095. "id": "sys",
  6096. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6097. "onresize": function () { }
  6098. }, {
  6099. closecallback: function () { }
  6100. }, { "style": { "height": "36px" } }).form; //创建窗体
  6101. _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); } }
  6102. break;
  6103. case "courseDesign":
  6104. _formdiv = new U.UF.UI.form(
  6105. "项目设计",
  6106. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6107. "id": "courseDesign",
  6108. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6109. "onresize": function () { }
  6110. }, {
  6111. closecallback: function () { }
  6112. }, { "style": { "height": "36px" } }).form; //创建窗体
  6113. _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); } }
  6114. break;
  6115. case "program":
  6116. _formdiv = new U.UF.UI.form(
  6117. "编程平台",
  6118. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6119. "id": "program",
  6120. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6121. "onresize": function () { }
  6122. }, {
  6123. closecallback: function () { }
  6124. }, { "style": { "height": "36px" } }).form; //创建窗体
  6125. _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); } }
  6126. break;
  6127. case "class":
  6128. _formdiv = new U.UF.UI.form(
  6129. "班级管理",
  6130. $$("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 }), {
  6131. "id": "class",
  6132. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6133. "onresize": function () { }
  6134. }, {
  6135. closecallback: function () { }
  6136. }, { "style": { "height": "36px" } }).form; //创建窗体
  6137. _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); } }
  6138. break;
  6139. case "Grade":
  6140. _formdiv = new U.UF.UI.form(
  6141. "年级管理",
  6142. $$("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 }), {
  6143. "id": "Grade",
  6144. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6145. "onresize": function () { }
  6146. }, {
  6147. closecallback: function () { }
  6148. }, { "style": { "height": "36px" } }).form; //创建窗体
  6149. _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); } }
  6150. break;
  6151. case "teacherOffice":
  6152. _formdiv = new U.UF.UI.form(
  6153. "教研室",
  6154. $$("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 }), {
  6155. "id": "teacherOffice",
  6156. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6157. "onresize": function () { }
  6158. }, {
  6159. closecallback: function () { }
  6160. }, { "style": { "height": "36px" } }).form; //创建窗体
  6161. _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); } }
  6162. break;
  6163. case "my":
  6164. _formdiv = new U.UF.UI.form(
  6165. "我的资料",
  6166. $$("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 }), {
  6167. "id": "my",
  6168. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6169. "onresize": function () { }
  6170. }, {
  6171. closecallback: function () { }
  6172. }, { "style": { "height": "36px" } }).form; //创建窗体
  6173. _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); } }
  6174. break;
  6175. case "notice":
  6176. _formdiv = new U.UF.UI.form(
  6177. "通知公告",
  6178. $$("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 }), {
  6179. "id": "notice",
  6180. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6181. "onresize": function () { }
  6182. }, {
  6183. closecallback: function () { }
  6184. }, { "style": { "height": "36px" } }).form; //创建窗体
  6185. _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); } }
  6186. break;
  6187. case "library":
  6188. _formdiv = new U.UF.UI.form(
  6189. "素材库",
  6190. $$("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 }), {
  6191. "id": "library",
  6192. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6193. "onresize": function () { }
  6194. }, {
  6195. closecallback: function () { }
  6196. }, { "style": { "height": "36px" } }).form; //创建窗体
  6197. _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); } }
  6198. break;
  6199. case "whiteboard":
  6200. _formdiv = new U.UF.UI.form(
  6201. "电子白板",
  6202. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6203. "id": "whiteboard",
  6204. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6205. "onresize": function () { }
  6206. }, {
  6207. closecallback: function () { }
  6208. }, { "style": { "height": "36px" } }).form; //创建窗体
  6209. _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); } }
  6210. break;
  6211. case "investigation":
  6212. _formdiv = new U.UF.UI.form(
  6213. "问卷调查",
  6214. $$("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 }), {
  6215. "id": "investigation",
  6216. "style": { "width": "90%", "height": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6222. break;
  6223. case "note":
  6224. _formdiv = new U.UF.UI.form(
  6225. "便签分类",
  6226. $$("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 }), {
  6227. "id": "note",
  6228. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6234. break;
  6235. // case "score":
  6236. // _formdiv = new U.UF.UI.form(
  6237. // "量规评分",
  6238. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6239. // "id": "score",
  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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6246. // break;
  6247. case "mind":
  6248. _formdiv = new U.UF.UI.form(
  6249. "思维导图",
  6250. $$("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"
  6251. "id": "mind",
  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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6258. break;
  6259. case "doc":
  6260. // U.MD.D.I.isRoom();
  6261. _formdiv = new U.UF.UI.form(
  6262. "协同文档",
  6263. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6264. "id": "doc",
  6265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6266. "onresize": function () { }
  6267. }, {
  6268. closecallback: function () { }
  6269. }, { "style": { "height": "36px" } }).form; //创建窗体
  6270. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6271. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6272. })
  6273. _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); } }
  6274. break;
  6275. case "study":
  6276. _formdiv = new U.UF.UI.form(
  6277. "课程中心",
  6278. $$("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
  6279. "id": "study",
  6280. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6281. "onresize": function () { }
  6282. }, {
  6283. closecallback: function () { }
  6284. }, { "style": { "height": "36px" } }).form; //创建窗体
  6285. _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); } }
  6286. break;
  6287. case "mindNetwork": //好友打开
  6288. _formdiv = new U.UF.UI.form(
  6289. "思维网格",
  6290. $$("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 }), {
  6291. "id": "mindNetwork",
  6292. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6293. "onresize": function () { }
  6294. }, {
  6295. closecallback: function () { }
  6296. }, { "style": { "height": "36px" } }).form; //创建窗体
  6297. _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); } }
  6298. break;
  6299. case "train": //好友打开
  6300. _formdiv = new U.UF.UI.form(
  6301. "训练平台",
  6302. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6303. "id": "mindNetwork",
  6304. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6305. "onresize": function () { }
  6306. }, {
  6307. closecallback: function () { }
  6308. }, { "style": { "height": "36px" } }).form; //创建窗体
  6309. _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); } }
  6310. break;
  6311. case "teacherClassRoom": //好友打开
  6312. _formdiv = new U.UF.UI.form(
  6313. "实时课堂",
  6314. $$("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 }), {
  6315. "id": "teacherClassRoom",
  6316. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6317. "onresize": function () { }
  6318. }, {
  6319. closecallback: function () { }
  6320. }, { "style": { "height": "36px" } }).form; //创建窗体
  6321. _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); } }
  6322. setTimeout(() => {
  6323. U.UF.F.windowZooming(_formdiv)
  6324. }, 0);
  6325. break;
  6326. }
  6327. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6328. switch (str) {
  6329. case "project": //好友打开
  6330. _formdiv = new U.UF.UI.form(
  6331. "课程管理",
  6332. $$("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 }), {
  6333. "id": "project",
  6334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6335. "onresize": function () { }
  6336. }, {
  6337. closecallback: function () { }
  6338. }, { "style": { "height": "36px" } }).form; //创建窗体
  6339. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6340. break;
  6341. case "evaluate":
  6342. _formdiv = new U.UF.UI.form(
  6343. "学生评价",
  6344. $$("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 }), {
  6345. "id": "evaluate",
  6346. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6347. "onresize": function () { }
  6348. }, {
  6349. closecallback: function () { }
  6350. }, { "style": { "height": "36px" } }).form; //创建窗体
  6351. _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); } }
  6352. break;
  6353. case "notice":
  6354. _formdiv = new U.UF.UI.form(
  6355. "通知公告",
  6356. $$("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 }), {
  6357. "id": "notice",
  6358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //创建窗体
  6363. _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); } }
  6364. break;
  6365. case "stuLibrary":
  6366. _formdiv = new U.UF.UI.form(
  6367. "学习资料",
  6368. $$("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 }), {
  6369. "id": "stuLibrary",
  6370. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () { }
  6374. }, { "style": { "height": "36px" } }).form; //创建窗体
  6375. _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); } }
  6376. break;
  6377. case "program":
  6378. _formdiv = new U.UF.UI.form(
  6379. "编程平台",
  6380. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6381. "id": "program",
  6382. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //创建窗体
  6387. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6388. break;
  6389. case "whiteboard":
  6390. _formdiv = new U.UF.UI.form(
  6391. "电子白板",
  6392. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6393. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6400. break;
  6401. case "investigation":
  6402. _formdiv = new U.UF.UI.form(
  6403. "问卷调查",
  6404. $$("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 }), {
  6405. "id": "investigation",
  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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6412. break;
  6413. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6417. "id": "mind",
  6418. "style": { "width": "90%", "height": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6424. break;
  6425. case "doc":
  6426. // U.MD.D.I.isRoom();
  6427. _formdiv = new U.UF.UI.form(
  6428. "协同文档",
  6429. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6430. "id": "doc",
  6431. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6432. "onresize": function () { }
  6433. }, {
  6434. closecallback: function () { }
  6435. }, { "style": { "height": "36px" } }).form; //创建窗体
  6436. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6437. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6438. })
  6439. _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); } }
  6440. break;
  6441. case "study":
  6442. _formdiv = new U.UF.UI.form(
  6443. "课程中心",
  6444. $$("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
  6445. "id": "study",
  6446. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6447. "onresize": function () { }
  6448. }, {
  6449. closecallback: function () { }
  6450. }, { "style": { "height": "36px" } }).form; //创建窗体
  6451. _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); } }
  6452. break;
  6453. case "mindNetwork": //好友打开
  6454. _formdiv = new U.UF.UI.form(
  6455. "思维网格",
  6456. $$("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 }), {
  6457. "id": "mindNetwork",
  6458. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6459. "onresize": function () { }
  6460. }, {
  6461. closecallback: function () { }
  6462. }, { "style": { "height": "36px" } }).form; //创建窗体
  6463. _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); } }
  6464. break;
  6465. case "train": //好友打开
  6466. _formdiv = new U.UF.UI.form(
  6467. "训练平台",
  6468. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6469. "id": "train",
  6470. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6471. "onresize": function () { }
  6472. }, {
  6473. closecallback: function () { }
  6474. }, { "style": { "height": "36px" } }).form; //创建窗体
  6475. _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); } }
  6476. break;
  6477. case "sys":
  6478. _formdiv = new U.UF.UI.form(
  6479. "目标管理",
  6480. $$("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 }), {
  6481. "id": "sys",
  6482. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6483. "onresize": function () { }
  6484. }, {
  6485. closecallback: function () { }
  6486. }, { "style": { "height": "36px" } }).form; //创建窗体
  6487. _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); } }
  6488. break;
  6489. case "courseDesign":
  6490. _formdiv = new U.UF.UI.form(
  6491. "项目设计",
  6492. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6493. "id": "courseDesign",
  6494. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6495. "onresize": function () { }
  6496. }, {
  6497. closecallback: function () { }
  6498. }, { "style": { "height": "36px" } }).form; //创建窗体
  6499. _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); } }
  6500. break;
  6501. }
  6502. } else if (!_type) {
  6503. switch (str) {
  6504. case "my":
  6505. _formdiv = new U.UF.UI.form(
  6506. "我的资料",
  6507. $$("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 }), {
  6508. "id": "my",
  6509. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6510. "onresize": function () { }
  6511. }, {
  6512. closecallback: function () { }
  6513. }, { "style": { "height": "36px" } }).form; //创建窗体
  6514. _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); } }
  6515. break;
  6516. }
  6517. }
  6518. switch (str) {
  6519. // AIprogram2 AI体验 aihub.cocorobo.cn
  6520. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6521. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6522. case "formulaEdi": //公式编辑
  6523. _formdiv = new U.UF.UI.form(
  6524. "公式编辑",
  6525. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6526. "id": "formulaEdi",
  6527. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, { "style": { "height": "36px" } }).form; //创建窗体
  6532. _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); } }
  6533. break;
  6534. case "molStr": //分子结构
  6535. _formdiv = new U.UF.UI.form(
  6536. "分子结构",
  6537. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6538. "id": "molStr",
  6539. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, { "style": { "height": "36px" } }).form; //创建窗体
  6544. _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); } }
  6545. break;
  6546. case "timeAxis": //时间轴
  6547. _formdiv = new U.UF.UI.form(
  6548. "时间轴",
  6549. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6550. "id": "timeAxis",
  6551. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6552. "onresize": function () { }
  6553. }, {
  6554. closecallback: function () { }
  6555. }, { "style": { "height": "36px" } }).form; //创建窗体
  6556. _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); } }
  6557. break;
  6558. case "AIprogram2": //AI体验
  6559. _formdiv = new U.UF.UI.form(
  6560. "AI体验",
  6561. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6562. "id": "AIprogram2",
  6563. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6564. "onresize": function () { }
  6565. }, {
  6566. closecallback: function () { }
  6567. }, { "style": { "height": "36px" } }).form; //创建窗体
  6568. _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); } }
  6569. break;
  6570. case "Pythonprogram": //python编程
  6571. _formdiv = new U.UF.UI.form(
  6572. "Python编程",
  6573. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6574. "id": "Pythonprogram",
  6575. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6576. "onresize": function () { }
  6577. }, {
  6578. closecallback: function () { }
  6579. }, { "style": { "height": "36px" } }).form; //创建窗体
  6580. _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); } }
  6581. break;
  6582. case "AIprogram": //ai编程
  6583. _formdiv = new U.UF.UI.form(
  6584. "AI编程平台",
  6585. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6586. "id": "AIprogram",
  6587. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6588. "onresize": function () { }
  6589. }, {
  6590. closecallback: function () { }
  6591. }, { "style": { "height": "36px" } }).form; //创建窗体
  6592. _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); } }
  6593. break;
  6594. case "CocoPi": //CocoPi
  6595. _formdiv = new U.UF.UI.form(
  6596. "CocoPi",
  6597. $$("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" }), {
  6598. "id": "CocoPi",
  6599. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6600. "onresize": function () { }
  6601. }, {
  6602. closecallback: function () { }
  6603. }, { "style": { "height": "36px" } }).form; //创建窗体
  6604. _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); } }
  6605. break;
  6606. case "Wood": //Wood
  6607. _formdiv = new U.UF.UI.form(
  6608. "海龟编程",
  6609. $$("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/" }), {
  6610. "id": "Wood",
  6611. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6612. "onresize": function () { }
  6613. }, {
  6614. closecallback: function () { }
  6615. }, { "style": { "height": "36px" } }).form; //创建窗体
  6616. _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); } }
  6617. break;
  6618. case "car": //模拟驾驶
  6619. _formdiv = new U.UF.UI.form(
  6620. "模拟驾驶",
  6621. $$("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/" }), {
  6622. "id": "car",
  6623. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6624. "onresize": function () { }
  6625. }, {
  6626. closecallback: function () { }
  6627. }, { "style": { "height": "36px" } }).form; //创建窗体
  6628. _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); } }
  6629. break;
  6630. case "lineSearch": //路径搜索
  6631. _formdiv = new U.UF.UI.form(
  6632. "路径搜索",
  6633. $$("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/" }), {
  6634. "id": "lineSearch",
  6635. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6636. "onresize": function () { }
  6637. }, {
  6638. closecallback: function () { }
  6639. }, { "style": { "height": "36px" } }).form; //创建窗体
  6640. _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); } }
  6641. break;
  6642. case "deepLearning": //深度学习
  6643. _formdiv = new U.UF.UI.form(
  6644. "深度学习",
  6645. $$("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/#" }), {
  6646. "id": "deepLearning",
  6647. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6648. "onresize": function () { }
  6649. }, {
  6650. closecallback: function () { }
  6651. }, { "style": { "height": "36px" } }).form; //创建窗体
  6652. _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); } }
  6653. break;
  6654. case "allHistory": //深度学习
  6655. _formdiv = new U.UF.UI.form(
  6656. "全历史",
  6657. $$("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/" }), {
  6658. "id": "allHistory",
  6659. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6660. "onresize": function () { }
  6661. }, {
  6662. closecallback: function () { }
  6663. }, { "style": { "height": "36px" } }).form; //创建窗体
  6664. _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); } }
  6665. break;
  6666. case "chatPDF": //ai编程
  6667. _formdiv = new U.UF.UI.form(
  6668. "chatPDF",
  6669. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6670. "id": "chatPDF",
  6671. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6672. "onresize": function () { }
  6673. }, {
  6674. closecallback: function () { }
  6675. }, { "style": { "height": "36px" } }).form; //创建窗体
  6676. _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); } }
  6677. break;
  6678. case "resources": //国家教育
  6679. _formdiv = new U.UF.UI.form(
  6680. "国家教育",
  6681. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6682. "id": "resources",
  6683. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6684. "onresize": function () { }
  6685. }, {
  6686. closecallback: function () { }
  6687. }, { "style": { "height": "36px" } }).form; //创建窗体
  6688. _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); } }
  6689. break;
  6690. case "codeEdit": //源码编辑
  6691. _formdiv = new U.UF.UI.form(
  6692. "源码编辑",
  6693. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6694. "id": "codeEdit",
  6695. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6696. "onresize": function () { }
  6697. }, {
  6698. closecallback: function () { }
  6699. }, { "style": { "height": "36px" } }).form; //创建窗体
  6700. _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); } }
  6701. break; //
  6702. case "MindMap": //MindMap
  6703. _formdiv = new U.UF.UI.form(
  6704. "MindMap",
  6705. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6706. "id": "MindMap",
  6707. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6708. "onresize": function () { }
  6709. }, {
  6710. closecallback: function () { }
  6711. }, { "style": { "height": "36px" } }).form; //创建窗体
  6712. _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); } }
  6713. break;
  6714. case "netWorkPanel": //netWorkPanel
  6715. _formdiv = new U.UF.UI.form(
  6716. "netWorkPanel",
  6717. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6718. "id": "netWorkPanel",
  6719. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6720. "onresize": function () { }
  6721. }, {
  6722. closecallback: function () { }
  6723. }, { "style": { "height": "36px" } }).form; //创建窗体
  6724. _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); } }
  6725. break;
  6726. case "GeoGebra": //GeoGebra
  6727. _formdiv = new U.UF.UI.form(
  6728. "GeoGebra",
  6729. $$("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" }), {
  6730. "id": "GeoGebra",
  6731. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6732. "onresize": function () { }
  6733. }, {
  6734. closecallback: function () { }
  6735. }, { "style": { "height": "36px" } }).form; //创建窗体
  6736. _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); } }
  6737. break;
  6738. case "translation": //翻译
  6739. _formdiv = new U.UF.UI.form(
  6740. "翻译",
  6741. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6742. "id": "translation",
  6743. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6744. "onresize": function () { }
  6745. }, {
  6746. closecallback: function () { }
  6747. }, { "style": { "height": "36px" } }).form; //创建窗体
  6748. _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); } }
  6749. break;
  6750. case "mohe": //魔盒
  6751. _formdiv = new U.UF.UI.form(
  6752. "魔盒识字",
  6753. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6754. "id": "mohe",
  6755. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6756. "onresize": function () { }
  6757. }, {
  6758. closecallback: function () { }
  6759. }, { "style": { "height": "36px" } }).form; //创建窗体
  6760. _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); } }
  6761. break;
  6762. case "24game": //24点
  6763. _formdiv = new U.UF.UI.form(
  6764. "24点",
  6765. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6766. "id": "24game",
  6767. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6768. "onresize": function () { }
  6769. }, {
  6770. closecallback: function () { }
  6771. }, { "style": { "height": "36px" } }).form; //创建窗体
  6772. _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); } }
  6773. break;
  6774. case "case":
  6775. _formdiv = new U.UF.UI.form(
  6776. "课程进展",
  6777. $$("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 }), {
  6778. "id": "case",
  6779. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6780. "onresize": function () { }
  6781. }, {
  6782. closecallback: function () { }
  6783. }, { "style": { "height": "36px" } }).form; //创建窗体
  6784. _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); } }
  6785. break;
  6786. case "snf":
  6787. _formdiv = new U.UF.UI.form(
  6788. "赛诺梵",
  6789. $$("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" }), {
  6790. "id": "snf",
  6791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6792. "onresize": function () { }
  6793. }, {
  6794. closecallback: function () { }
  6795. }, { "style": { "height": "36px" } }).form; //创建窗体
  6796. _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); } }
  6797. break;
  6798. case "hanFamily":
  6799. _formdiv = new U.UF.UI.form(
  6800. "汉字家族",
  6801. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6802. "id": "hanFamily",
  6803. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6804. "onresize": function () { }
  6805. }, {
  6806. closecallback: function () { }
  6807. }, { "style": { "height": "36px" } }).form; //创建窗体
  6808. _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); } }
  6809. break;
  6810. case "hanClassics":
  6811. _formdiv = new U.UF.UI.form(
  6812. "国学经典",
  6813. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6814. "id": "hanClassics",
  6815. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6816. "onresize": function () { }
  6817. }, {
  6818. closecallback: function () { }
  6819. }, { "style": { "height": "36px" } }).form; //创建窗体
  6820. _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); } }
  6821. break;
  6822. case "hanTraining":
  6823. _formdiv = new U.UF.UI.form(
  6824. "笔画训练",
  6825. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6826. "id": "hanTraining",
  6827. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6828. "onresize": function () { }
  6829. }, {
  6830. closecallback: function () { }
  6831. }, { "style": { "height": "36px" } }).form; //创建窗体
  6832. _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); } }
  6833. break;
  6834. case "hanClass":
  6835. _formdiv = new U.UF.UI.form(
  6836. "书法课堂",
  6837. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6838. "id": "hanClass",
  6839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6840. "onresize": function () { }
  6841. }, {
  6842. closecallback: function () { }
  6843. }, { "style": { "height": "36px" } }).form; //创建窗体
  6844. _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); } }
  6845. break;
  6846. case "han":
  6847. _formdiv = new U.UF.UI.form(
  6848. "汉字宫",
  6849. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6850. "id": "han",
  6851. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6852. "onresize": function () { }
  6853. }, {
  6854. closecallback: function () { }
  6855. }, { "style": { "height": "36px" } }).form; //创建窗体
  6856. _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); } }
  6857. break;
  6858. case "projectGM": //课程管理
  6859. _formdiv = new U.UF.UI.form(
  6860. "课程管理",
  6861. $$("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 }), {
  6862. "id": "projectGM",
  6863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6864. "onresize": function () { }
  6865. }, {
  6866. closecallback: function () { }
  6867. }, { "style": { "height": "36px" } }).form; //创建窗体
  6868. _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); } }
  6869. break;
  6870. case "studyGM": //课程中心
  6871. _formdiv = new U.UF.UI.form(
  6872. "课程中心",
  6873. $$("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
  6874. "id": "study",
  6875. "style": { "width": "100%", "height": "100%", "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/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6881. break;
  6882. // studentGM
  6883. case "studentGM": //学生管理
  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/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6887. "id": "studentGM",
  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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6894. break;
  6895. case "evaluateGM": //学生评价
  6896. _formdiv = new U.UF.UI.form(
  6897. "学生评价",
  6898. $$("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 }), {
  6899. "id": "evaluateGM",
  6900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6901. "onresize": function () { }
  6902. }, {
  6903. closecallback: function () { }
  6904. }, { "style": { "height": "36px" } }).form; //创建窗体
  6905. _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); } }
  6906. break;
  6907. // classGM
  6908. case "classGM": //班级管理
  6909. _formdiv = new U.UF.UI.form(
  6910. "班级管理",
  6911. $$("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 }), {
  6912. "id": "classGM",
  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/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6919. break;
  6920. // dataGM
  6921. case "dataGM":
  6922. _formdiv = new U.UF.UI.form(
  6923. "我的资料",
  6924. $$("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 }), {
  6925. "id": "dataGM",
  6926. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6927. "onresize": function () { }
  6928. }, {
  6929. closecallback: function () { }
  6930. }, { "style": { "height": "36px" } }).form; //创建窗体
  6931. _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); } }
  6932. break;
  6933. // caseGM
  6934. case "caseGM": //课程进展
  6935. _formdiv = new U.UF.UI.form(
  6936. "课程进展",
  6937. $$("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 }), {
  6938. "id": "caseGM",
  6939. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6940. "onresize": function () { }
  6941. }, {
  6942. closecallback: function () { }
  6943. }, { "style": { "height": "36px" } }).form; //创建窗体
  6944. _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); } }
  6945. break;
  6946. // meterialGM
  6947. case "meterialGM": //素材库
  6948. _formdiv = new U.UF.UI.form(
  6949. "素材库",
  6950. $$("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 }), {
  6951. "id": "meterialGM",
  6952. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6953. "onresize": function () { }
  6954. }, {
  6955. closecallback: function () { }
  6956. }, { "style": { "height": "36px" } }).form; //创建窗体
  6957. _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); } }
  6958. break;
  6959. // evaluateSGM
  6960. case "evaluateSGM": //我的评价
  6961. _formdiv = new U.UF.UI.form(
  6962. "我的评价",
  6963. $$("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 }), {
  6964. "id": "evaluateSGM",
  6965. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6966. "onresize": function () { }
  6967. }, {
  6968. closecallback: function () { }
  6969. }, { "style": { "height": "36px" } }).form; //创建窗体
  6970. _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); } }
  6971. break;
  6972. case "jupyter": //jupyter
  6973. _formdiv = new U.UF.UI.form(
  6974. "jupyter",
  6975. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6976. "id": "jupyter",
  6977. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6978. "onresize": function () { }
  6979. }, {
  6980. closecallback: function () { }
  6981. }, { "style": { "height": "36px" } }).form; //创建窗体
  6982. _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); } }
  6983. break;
  6984. case "number": //数字实验室
  6985. _formdiv = new U.UF.UI.form(
  6986. "数字实验室",
  6987. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6988. "id": "number",
  6989. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6990. "onresize": function () { }
  6991. }, {
  6992. closecallback: function () { }
  6993. }, { "style": { "height": "36px" } }).form; //创建窗体
  6994. _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); } }
  6995. break;
  6996. case "studentCourse": //项目管理 学生
  6997. _formdiv = new U.UF.UI.form(
  6998. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6999. $$("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 }), {
  7000. "id": "studentCourse",
  7001. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7002. "onresize": function () { }
  7003. }, {
  7004. closecallback: function () { }
  7005. }, { "style": { "height": "36px" } }).form; //创建窗体
  7006. _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); } }
  7007. break;
  7008. case "studentCourseS": //项目管理 老师
  7009. _formdiv = new U.UF.UI.form(
  7010. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7011. $$("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 }), {
  7012. "id": "studentCourseS",
  7013. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7014. "onresize": function () { }
  7015. }, {
  7016. closecallback: function () { }
  7017. }, { "style": { "height": "36px" } }).form; //创建窗体
  7018. _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); } }
  7019. break;
  7020. case "studentIndex": //项目中心
  7021. _formdiv = new U.UF.UI.form(
  7022. "项目中心",
  7023. $$("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 }), {
  7024. "id": "studentIndex",
  7025. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7026. "onresize": function () { }
  7027. }, {
  7028. closecallback: function () { }
  7029. }, { "style": { "height": "36px" } }).form; //创建窗体
  7030. _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); } }
  7031. break;
  7032. case "CaseDesignS":
  7033. _formdiv = new U.UF.UI.form(
  7034. "项目进展",
  7035. $$("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 }), {
  7036. "id": "case",
  7037. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7038. "onresize": function () { }
  7039. }, {
  7040. closecallback: function () { }
  7041. }, { "style": { "height": "36px" } }).form; //创建窗体
  7042. _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); } }
  7043. break;
  7044. case "tcStudent": //腾讯学生管理
  7045. _formdiv = new U.UF.UI.form(
  7046. "学生管理",
  7047. $$("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 }), {
  7048. "id": "tcStudent",
  7049. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7050. "onresize": function () { }
  7051. }, {
  7052. closecallback: function () { }
  7053. }, { "style": { "height": "36px" } }).form; //创建窗体
  7054. _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); } }
  7055. break;
  7056. case "tcSchool": //腾讯学校管理
  7057. _formdiv = new U.UF.UI.form(
  7058. "学校管理",
  7059. $$("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 }), {
  7060. "id": "tcSchool",
  7061. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7062. "onresize": function () { }
  7063. }, {
  7064. closecallback: function () { }
  7065. }, { "style": { "height": "36px" } }).form; //创建窗体
  7066. _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); } }
  7067. break;
  7068. case "tcTeacher": //腾讯学校管理
  7069. _formdiv = new U.UF.UI.form(
  7070. "教师管理",
  7071. $$("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 }), {
  7072. "id": "tcTeacher",
  7073. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7074. "onresize": function () { }
  7075. }, {
  7076. closecallback: function () { }
  7077. }, { "style": { "height": "36px" } }).form; //创建窗体
  7078. _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); } }
  7079. break;
  7080. case "teacher":
  7081. _formdiv = new U.UF.UI.form(
  7082. "教师管理",
  7083. $$("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 }), {
  7084. "id": "teacher",
  7085. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7086. "onresize": function () { }
  7087. }, {
  7088. closecallback: function () { }
  7089. }, { "style": { "height": "36px" } }).form; //创建窗体
  7090. _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); } }
  7091. break;
  7092. case "tcData": //腾讯我的资料
  7093. _formdiv = new U.UF.UI.form(
  7094. "我的资料",
  7095. $$("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 }), {
  7096. "id": "tcData",
  7097. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7098. "onresize": function () { }
  7099. }, {
  7100. closecallback: function () { }
  7101. }, { "style": { "height": "36px" } }).form; //创建窗体
  7102. _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); } }
  7103. break;
  7104. case "tcNotice": //腾讯消息通知
  7105. _formdiv = new U.UF.UI.form(
  7106. "消息通知",
  7107. $$("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 }), {
  7108. "id": "tcNotice",
  7109. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7110. "onresize": function () { }
  7111. }, {
  7112. closecallback: function () { }
  7113. }, { "style": { "height": "36px" } }).form; //创建窗体
  7114. _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); } }
  7115. break;
  7116. case "myReport": //好友打开
  7117. _formdiv = new U.UF.UI.form(
  7118. "我的评价",
  7119. $$("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 }), {
  7120. "id": "myReport",
  7121. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7122. "onresize": function () { }
  7123. }, {
  7124. closecallback: function () { }
  7125. }, { "style": { "height": "36px" } }).form; //创建窗体
  7126. _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); } }
  7127. break;
  7128. case "learnAna": //好友打开
  7129. _formdiv = new U.UF.UI.form(
  7130. "学习分析",
  7131. $$("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 }), {
  7132. "id": "learnAna",
  7133. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7134. "onresize": function () { }
  7135. }, {
  7136. closecallback: function () { }
  7137. }, { "style": { "height": "36px" } }).form; //创建窗体
  7138. _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); } }
  7139. break;
  7140. case "AIChat": //AI共创
  7141. _formdiv = new U.UF.UI.form(
  7142. "AI共创",
  7143. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7144. "id": "AIChat",
  7145. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7146. "onresize": function () { }
  7147. }, {
  7148. istop: true,
  7149. closecallback: function () { $("#aichat_icon").remove(); },
  7150. narrowcallback: function () {
  7151. if (!$("#aichat_icon")[0]) {
  7152. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7153. }
  7154. },
  7155. }, { "style": { "height": "36px" } }).form; //创建窗体
  7156. _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); } }
  7157. break;
  7158. case "ainew": //AI共创
  7159. _formdiv = new U.UF.UI.form(
  7160. "AI协同",
  7161. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7162. "id": "ainew",
  7163. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7164. "onresize": function () { }
  7165. }, {
  7166. closecallback: function () { }
  7167. }, { "style": { "height": "36px" } }).form; //创建窗体
  7168. _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); } }
  7169. break;
  7170. case "gpt4": //gpt4
  7171. _formdiv = new U.UF.UI.form(
  7172. "AI助手",
  7173. $$("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 }), {
  7174. "id": "gpt4",
  7175. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7176. "onresize": function () { }
  7177. }, {
  7178. closecallback: function () { }
  7179. }, { "style": { "height": "36px" } }).form; //创建窗体
  7180. _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); } }
  7181. break;
  7182. case "aigpt": //gpt4
  7183. _formdiv = new U.UF.UI.form(
  7184. "AI助手+",
  7185. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7186. "id": "aigpt",
  7187. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7188. "onresize": function () { }
  7189. }, {
  7190. closecallback: function () {
  7191. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7192. }
  7193. }, { "style": { "height": "36px" } }).form; //创建窗体
  7194. _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); } }
  7195. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7196. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7197. })
  7198. break;
  7199. case "aiKnowledge": //aiKnowledge
  7200. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7201. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7202. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7203. }
  7204. _formdiv = new U.UF.UI.form(
  7205. "知识建构",
  7206. $$("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 }), {
  7207. "id": "aiKnowledge",
  7208. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7209. "onresize": function () { }
  7210. }, {
  7211. closecallback: function () { }
  7212. }, { "style": { "height": "36px" } }).form; //创建窗体
  7213. _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); } }
  7214. break;
  7215. case "futureClass": //AI共创
  7216. _formdiv = new U.UF.UI.form(
  7217. "协同建构",
  7218. $$("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
  7219. "id": "synergyCourse",
  7220. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7221. "onresize": function () { }
  7222. }, {
  7223. closecallback: function () {
  7224. $("iframe", _formdiv)[0].contentWindow.loginout();
  7225. }
  7226. }, { "style": { "height": "36px" } }).form; //创建窗体
  7227. _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); } }
  7228. break;
  7229. case "aiagent": //ai agent
  7230. _formdiv = new U.UF.UI.form(
  7231. "AI Agent",
  7232. $$("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" }), {
  7233. "id": "AIAgent",
  7234. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7235. "onresize": function () { }
  7236. }, {
  7237. closecallback: function () { }
  7238. }, { "style": { "height": "36px" } }).form; //创建窗体
  7239. _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); } }
  7240. break;
  7241. case "dataBoard": //数据看板
  7242. _formdiv = new U.UF.UI.form(
  7243. "数据看板",
  7244. $$("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 }), {
  7245. "id": "dataBoard",
  7246. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7247. "onresize": function () { }
  7248. }, {
  7249. closecallback: function () { }
  7250. }, { "style": { "height": "36px" } }).form; //创建窗体
  7251. _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); } }
  7252. break;
  7253. case "dataBoardSies": //数据融合
  7254. _formdiv = new U.UF.UI.form(
  7255. "数据融合",
  7256. $$("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 }), {
  7257. "id": "dataBoardSies",
  7258. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7259. "onresize": function () { }
  7260. }, {
  7261. closecallback: function () { }
  7262. }, { "style": { "height": "36px" } }).form; //创建窗体
  7263. _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); } }
  7264. break;
  7265. case "dataBoardNew": //数据看板
  7266. _formdiv = new U.UF.UI.form(
  7267. "综合看板",
  7268. $$("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 }), {
  7269. "id": "dataBoardNew",
  7270. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7271. "onresize": function () { }
  7272. }, {
  7273. closecallback: function () { }
  7274. }, { "style": { "height": "36px" } }).form; //创建窗体
  7275. _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); } }
  7276. break;
  7277. case "dataBoardTest": //数据看板
  7278. _formdiv = new U.UF.UI.form(
  7279. "评测看板",
  7280. $$("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 }), {
  7281. "id": "dataBoardTest",
  7282. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7283. "onresize": function () { }
  7284. }, {
  7285. closecallback: function () { }
  7286. }, { "style": { "height": "36px" } }).form; //创建窗体
  7287. _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); } }
  7288. break;
  7289. case "AIAnalyse": //AI共创
  7290. _formdiv = new U.UF.UI.form(
  7291. "AI分析",
  7292. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7293. "id": "AIAnalyse",
  7294. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7295. "onresize": function () { }
  7296. }, {
  7297. closecallback: function () { }
  7298. }, { "style": { "height": "36px" } }).form; //创建窗体
  7299. _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); } }
  7300. break;
  7301. case "studioCourse": //AI共创
  7302. _formdiv = new U.UF.UI.form(
  7303. "工作管理",
  7304. $$("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 }), {
  7305. "id": "studioCourse",
  7306. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7307. "onresize": function () { }
  7308. }, {
  7309. closecallback: function () { }
  7310. }, { "style": { "height": "36px" } }).form; //创建窗体
  7311. _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); } }
  7312. break;
  7313. case "studioIndex": //AI共创
  7314. _formdiv = new U.UF.UI.form(
  7315. "工作中心",
  7316. $$("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 }), {
  7317. "id": "studioIndex",
  7318. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7319. "onresize": function () { }
  7320. }, {
  7321. closecallback: function () { }
  7322. }, { "style": { "height": "36px" } }).form; //创建窗体
  7323. _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); } }
  7324. break;
  7325. case "source":
  7326. _formdiv = new U.UF.UI.form(
  7327. "教学资源",
  7328. $$("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 }), {
  7329. "id": "source",
  7330. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7331. "onresize": function () { }
  7332. }, {
  7333. closecallback: function () { }
  7334. }, { "style": { "height": "36px" } }).form; //创建窗体
  7335. _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); } }
  7336. break;
  7337. case "testTeacher":
  7338. _formdiv = new U.UF.UI.form(
  7339. "智能表单",
  7340. $$("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 }), {
  7341. "id": "testTeacher",
  7342. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7343. "onresize": function () { }
  7344. }, {
  7345. closecallback: function () { }
  7346. }, { "style": { "height": "36px" } }).form; //创建窗体
  7347. _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); } }
  7348. break;
  7349. case "testStudent":
  7350. _formdiv = new U.UF.UI.form(
  7351. "教师中心",
  7352. $$("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 }), {
  7353. "id": "testStudent",
  7354. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7355. "onresize": function () { }
  7356. }, {
  7357. closecallback: function () { }
  7358. }, { "style": { "height": "36px" } }).form; //创建窗体
  7359. _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); } }
  7360. break;
  7361. case "testTeacherSies":
  7362. _formdiv = new U.UF.UI.form(
  7363. "教师管理",
  7364. $$("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 }), {
  7365. "id": "testTeacherSies",
  7366. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7367. "onresize": function () { }
  7368. }, {
  7369. closecallback: function () { }
  7370. }, { "style": { "height": "36px" } }).form; //创建窗体
  7371. _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); } }
  7372. break;
  7373. case "testStudentSies":
  7374. _formdiv = new U.UF.UI.form(
  7375. "教师中心",
  7376. $$("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 }), {
  7377. "id": "testStudentSies",
  7378. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7379. "onresize": function () { }
  7380. }, {
  7381. closecallback: function () { }
  7382. }, { "style": { "height": "36px" } }).form; //创建窗体
  7383. _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); } }
  7384. break;
  7385. case "ytpbl": //消息通知
  7386. _formdiv = new U.UF.UI.form(
  7387. "案例征集",
  7388. $$("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 }), {
  7389. "id": "ytpbl",
  7390. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7391. "onresize": function () { }
  7392. }, {
  7393. closecallback: function () { }
  7394. }, { "style": { "height": "36px" } }).form; //创建窗体
  7395. _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); } }
  7396. // 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");
  7397. break;
  7398. case "aiCourseResource": //人工智能窗体
  7399. _formdiv = new U.UF.UI.form(
  7400. false,
  7401. $$("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 }), {
  7402. "id": "aiCourseResource",
  7403. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7404. "onresize": function () { },
  7405. "isdrag": false,
  7406. }, {
  7407. closecallback: function () { }
  7408. }, { "style": { "height": "36px" } }).form; //创建窗体
  7409. _taskbar = ''
  7410. break;
  7411. case "szdjgCocooroboX": //图形化编程
  7412. _formdiv = new U.UF.UI.form(
  7413. "图形化编程",
  7414. $$("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" }), {
  7415. "id": "szdjgCocooroboX",
  7416. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7417. "onresize": function () { }
  7418. }, {
  7419. closecallback: function () { }
  7420. }, { "style": { "height": "36px" } }).form; //创建窗体
  7421. _taskbar = ''
  7422. break;
  7423. case "szdjgPython": //python编程
  7424. _formdiv = new U.UF.UI.form(
  7425. "Python编程",
  7426. $$("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" }), {
  7427. "id": "szdjgPython",
  7428. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7429. "onresize": function () { }
  7430. }, {
  7431. closecallback: function () { }
  7432. }, { "style": { "height": "36px" } }).form; //创建窗体
  7433. _taskbar = ''
  7434. break;
  7435. case "Record":
  7436. _formdiv = new U.UF.UI.form(
  7437. "观察记录",
  7438. $$("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 }), {
  7439. "id": "Record",
  7440. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7441. "onresize": function () { }
  7442. }, {
  7443. closecallback: function () { }
  7444. }, { "style": { "height": "36px" } }).form; //创建窗体
  7445. _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); } }
  7446. break;
  7447. case "aigptCourse":
  7448. _formdiv = new U.UF.UI.form(
  7449. "AI智能体",
  7450. $$("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' }), {
  7451. "id": "aigptCourse",
  7452. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7453. "onresize": function () { }
  7454. }, {
  7455. closecallback: function () { }
  7456. }, { "style": { "height": "36px" } }).form; //创建窗体
  7457. _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); } }
  7458. break;
  7459. case "classroomObservation":
  7460. _formdiv = new U.UF.UI.form(
  7461. "课堂观察",
  7462. $$("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 }), {
  7463. "id": "classroomObservation",
  7464. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7465. "onresize": function () { }
  7466. }, {
  7467. closecallback: function () { }
  7468. }, { "style": { "height": "36px" } }).form; //创建窗体
  7469. _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); } }
  7470. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7471. break;
  7472. case "pblCourse":
  7473. _formdiv = new U.UF.UI.form(
  7474. "学生PBL",
  7475. $$("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 }), {
  7476. "id": "pblCourse",
  7477. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7478. "onresize": function () { }
  7479. }, {
  7480. closecallback: function () { }
  7481. }, { "style": { "height": "36px" } }).form; //创建窗体
  7482. _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); } }
  7483. break;
  7484. case "appStore":
  7485. U.MD.D.addOp('','cocoflowOpen','')
  7486. _formdiv = new U.UF.UI.form(
  7487. "CocoFlow",
  7488. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7489. "id": "appStore",
  7490. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7491. "onresize": function () { }
  7492. }, {
  7493. closecallback: function () { }
  7494. }, { "style": { "height": "36px" } }).form; //创建窗体
  7495. _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); } }
  7496. break;
  7497. case "sassPlatform":
  7498. _formdiv = new U.UF.UI.form(
  7499. "Sass通用后台管理",
  7500. $$("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 }), {
  7501. "id": "sassPlatform",
  7502. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7503. "onresize": function () { }
  7504. }, {
  7505. closecallback: function () { }
  7506. }, { "style": { "height": "36px" } }).form; //创建窗体
  7507. _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); } }
  7508. break;
  7509. case "EDU":
  7510. _formdiv = new U.UF.UI.form(
  7511. "EDU",
  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": "//edu.cocorobo.cn" }), {
  7513. "id": "EDU",
  7514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7515. "onresize": function () { }
  7516. }, {
  7517. closecallback: function () { }
  7518. }, { "style": { "height": "36px" } }).form; //创建窗体
  7519. _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); } }
  7520. break;
  7521. case "knowledge":
  7522. _formdiv = new U.UF.UI.form(
  7523. "知识库",
  7524. $$("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 }), {
  7525. "id": "knowledge",
  7526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7527. "onresize": function () { }
  7528. }, {
  7529. closecallback: function () { }
  7530. }, { "style": { "height": "36px" } }).form; //创建窗体
  7531. _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); } }
  7532. break;
  7533. case "userExamine":
  7534. _formdiv = new U.UF.UI.form(
  7535. "账号申请",
  7536. $$("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" }), {
  7537. "id": "userExamine",
  7538. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7539. "onresize": function () { }
  7540. }, {
  7541. closecallback: function () { }
  7542. }, { "style": { "height": "36px" } }).form; //创建窗体
  7543. break;
  7544. case "cocoflowDeskTop": //cocoflowDeskTop
  7545. _formdiv = new U.UF.UI.form(
  7546. false,
  7547. $$("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 }), {
  7548. "id": "cocoflowDeskTop",
  7549. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7550. "onresize": function () { },
  7551. }, {
  7552. closecallback: function () { },
  7553. "isdrag": false,
  7554. }, { "style": { "height": "36px" } }).form; //创建窗体
  7555. _taskbar = ''
  7556. break;
  7557. case "liyuanLogin": //liyuanLogin
  7558. _formdiv = new U.UF.UI.form(
  7559. false,
  7560. $$("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 }), {
  7561. "id": "liyuanLogin",
  7562. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7563. "onresize": function () { },
  7564. }, {
  7565. closecallback: function () { },
  7566. isdrag: false,
  7567. isstretching: false,
  7568. isenlarge: false,
  7569. isnarrow: false
  7570. }, { "style": { "height": "36px" } }).form; //创建窗体
  7571. _taskbar = ''
  7572. break;
  7573. case "updatePaDialog":
  7574. _formdiv = new U.UF.UI.form(
  7575. "密码修改",
  7576. $$("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 }), {
  7577. "id": "updatePaDialog",
  7578. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7579. "onresize": function () { },
  7580. }, {
  7581. closecallback: function () { },
  7582. isclose: false,
  7583. isdrag: false,
  7584. isstretching: false,
  7585. isenlarge: false,
  7586. isnarrow: false
  7587. }, { "style": { "height": "36px" } }).form; //创建窗体
  7588. break;
  7589. }
  7590. //U.MD.D.I.openClick(str);
  7591. //如果有任务栏信息
  7592. if (_taskbar) {
  7593. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7594. }
  7595. if(iframeBool){
  7596. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7597. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7598. // console.log("iframe进入");
  7599. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7600. // };
  7601. setTimeout(() => {
  7602. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7603. }, 2000);
  7604. }
  7605. }
  7606. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7607. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7608. _userinfo = US.userInfo, //登录用户信息
  7609. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7610. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7611. let iframeBool = true;
  7612. let queryString = ''
  7613. if(array && array.length){
  7614. const paramsMap = {
  7615. userid: _userid,
  7616. org: _org,
  7617. oid: _oid,
  7618. type: _type,
  7619. role: _role,
  7620. classId: _classId,
  7621. TscreenType: _TscreenType,
  7622. SscreenType: _SscreenType
  7623. };
  7624. const canshu = array
  7625. .filter(param => paramsMap[param] !== undefined)
  7626. .map(param => `${param}=${paramsMap[param]}`);
  7627. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7628. }
  7629. let _url = url + queryString
  7630. if(U.UF.UI.form.allForm[id]){
  7631. iframeBool = false
  7632. }
  7633. _formdiv = new U.UF.UI.form(
  7634. false,
  7635. $$("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 }),
  7636. {
  7637. "id": id,
  7638. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7639. "onresize": function () { },
  7640. },
  7641. {
  7642. closecallback: function () { },
  7643. isdrag: false,
  7644. isstretching: false,
  7645. isenlarge: false,
  7646. isnarrow: false
  7647. },
  7648. { "style": { "height": "36px" } },
  7649. undefined,
  7650. undefined,
  7651. dom
  7652. ).form
  7653. }
  7654. // U.MD.D.I.openClick = function(str){
  7655. // var click = '';
  7656. // switch(str){
  7657. // case 'friend':
  7658. // click = '我的好友';
  7659. // break;
  7660. // case 'domain':
  7661. // click = '域名管理';
  7662. // break;
  7663. // case 'disk':
  7664. // click = '我的云盘';
  7665. // break;
  7666. // case 'word':
  7667. // click = 'Word';
  7668. // break;
  7669. // case 'excel':
  7670. // click = 'Execl';
  7671. // break;
  7672. // case 'txt':
  7673. // click = '文本文件';
  7674. // break;
  7675. // case 'lookupFriend':
  7676. // click = '查找好友';
  7677. // break;
  7678. // case 'ftp':
  7679. // click = 'FTP';
  7680. // break;
  7681. // case 'group':
  7682. // click = '群组';
  7683. // break;
  7684. // case 'set':
  7685. // click = '我的设置';
  7686. // break;
  7687. // case 'systemSet':
  7688. // click = '系统设置';
  7689. // break;
  7690. // case 'boomYun':
  7691. // click = '互联办公';
  7692. // break;
  7693. // case 'xz':
  7694. // click = '云端下载';
  7695. // break;
  7696. // case 'client':
  7697. // click = '有思浏览器';
  7698. // break;
  7699. // case 'backEndProgramming':
  7700. // click = '在线后台编程';
  7701. // break;
  7702. // case 'frontEndProgramming':
  7703. // click = '在线前端编程';
  7704. // break;
  7705. // default: break;
  7706. // }
  7707. // if(U.MD.D.I.Ip && click){
  7708. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7709. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7710. // })
  7711. // }
  7712. // }
  7713. /**
  7714. *函数作用:ajax简易函数,使用post格式
  7715. *@param url {data} 后台地址
  7716. *@param data {data} 参数json
  7717. *@param fn {data} 回调函数
  7718. *
  7719. */
  7720. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7721. // var xhr = new XMLHttpRequest();
  7722. // xhr.open("GET",url,true);
  7723. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7724. // xhr.onreadystatechange = function(){
  7725. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7726. // fn.call(this,xhr.responseText);
  7727. // }
  7728. // };
  7729. // xhr.send();
  7730. // }
  7731. /*判断是否是内网IP*/
  7732. // U.MD.D.I.isInnerIPFn = function(str){
  7733. // var curPageUrl = str;
  7734. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7735. // curPageUrl =curPageUrl.replace(reg1,'');
  7736. // // console.log('curPageUrl-1 '+curPageUrl);
  7737. // var reg2 = /\:+/g;//替换冒号为一点
  7738. // curPageUrl =curPageUrl.replace(reg2,'.');
  7739. // // console.log('curPageUrl-2 '+curPageUrl);
  7740. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7741. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7742. // if(curPageUrl[2] != '16'){
  7743. // return ipAddress;
  7744. // }else{
  7745. // return false;
  7746. // }
  7747. // }
  7748. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7749. // //compatibility for firefox and chrome
  7750. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7751. // var pc = new myPeerConnection({
  7752. // iceServers: []
  7753. // }),
  7754. // noop = function() {},
  7755. // localIPs = {},
  7756. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7757. // key;
  7758. // function iterateIP(ip) {
  7759. // if (!localIPs[ip]) onNewIP(ip);
  7760. // localIPs[ip] = true;
  7761. // }
  7762. // //create a bogus data channel
  7763. // pc.createDataChannel("");
  7764. // // create offer and set local description
  7765. // pc.createOffer().then(function(sdp) {
  7766. // sdp.sdp.split('\n').forEach(function(line) {
  7767. // if (line.indexOf('candidate') < 0) return;
  7768. // line.match(ipRegex).forEach(iterateIP);
  7769. // });
  7770. // pc.setLocalDescription(sdp, noop, noop);
  7771. // }).catch(function(reason) {
  7772. // // An error occurred, so handle the failure to connect
  7773. // });
  7774. // //sten for candidate events
  7775. // pc.onicecandidate = function(ice) {
  7776. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7777. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7778. // };
  7779. // }
  7780. // U.MD.D.I.getUserIpBool = function(callback){
  7781. // U.MD.D.I.getUserIP(function(ip){
  7782. // alert("Got IP! :" + ip);
  7783. // });
  7784. //}
  7785. //#endregion
  7786. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7787. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7788. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7789. _userinfo = US.userInfo, //登录用户信息
  7790. _userid = US.userInfo.userid //登录用户id
  7791. let _iframe;
  7792. let _cid = cid,
  7793. _stage = stage,
  7794. _task = task,
  7795. _tool = tool;
  7796. var _jie = $$("div", {
  7797. "style": {
  7798. "position": "absolute",
  7799. "bottom": "50px",
  7800. "right": "50px",
  7801. "zIndex": "9999",
  7802. "backgroundColor": "#2268bc",
  7803. "color": "#fff",
  7804. "padding": "12px 20px",
  7805. "cursor": "pointer",
  7806. "borderRadius": "4px",
  7807. },
  7808. "innerHTML": "提交作业"
  7809. })
  7810. let aTool = ''
  7811. let _loading = document.createElement('div')
  7812. _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;"
  7813. // _loading.id = "";
  7814. let _lchild = document.createElement('div')
  7815. let _limg = document.createElement('img')
  7816. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7817. _limg.style = "width: 26px;margin-right: 10px;"
  7818. _lchild.appendChild(_limg)
  7819. let _lspan = document.createElement('span')
  7820. _lspan.innerHTML = "上传中..."
  7821. _lchild.appendChild(_lspan)
  7822. _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%);"
  7823. _loading.appendChild(_lchild)
  7824. var _box = $$('div', {
  7825. "style": {
  7826. "position": "relative",
  7827. "width": "100%",
  7828. "height": "100%",
  7829. },
  7830. })
  7831. _box.appendChild(_loading)
  7832. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7833. switch (str) {
  7834. case "whiteboard":
  7835. aTool = 1;
  7836. _iframe = $$("iframe", {
  7837. "frameborder": "no",
  7838. "border": "0",
  7839. "scrolling ": "no",
  7840. "style": {
  7841. "cssText": "border:0;width:100%;height:100%"
  7842. },
  7843. "src": "https://beta.iwb.cocorobo.cn/"
  7844. })
  7845. _box.appendChild(_iframe);
  7846. _box.appendChild(_jie);
  7847. _formdiv = new U.UF.UI.form(
  7848. "电子白板",
  7849. _box, {
  7850. "id": "whiteboard" + cid + stage + task + tool,
  7851. "style": {
  7852. "width": "90%",
  7853. "height": "90%",
  7854. "overflow": 'hidden'
  7855. },
  7856. "onresize": function () { }
  7857. }, {
  7858. closecallback: function () { }
  7859. }, {
  7860. "style": {
  7861. "height": "36px"
  7862. }
  7863. }).form; //创建窗体
  7864. _taskbar = {
  7865. "id": str + _formdiv.id,
  7866. "style": {
  7867. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7868. },
  7869. "name": "电子白板",
  7870. "forms": _formdiv,
  7871. "click": function () {
  7872. U.MD.D.I.openApplication(str, obj, info);
  7873. }
  7874. }
  7875. break;
  7876. case "mind":
  7877. aTool = 3;
  7878. _iframe = $$("iframe", {
  7879. "frameborder": "no",
  7880. "border": "0",
  7881. "scrolling ": "no",
  7882. "style": {
  7883. "cssText": "border:0;width:100%;height:100%"
  7884. },
  7885. "src": "/kityminder-editor/dist/index.html"
  7886. })
  7887. _box.appendChild(_iframe);
  7888. _box.appendChild(_jie);
  7889. _formdiv = new U.UF.UI.form(
  7890. "思维导图",
  7891. _box, { //"/jsmind/example/demo.html"
  7892. "id": "mind" + cid + stage + task + tool,
  7893. "style": {
  7894. "width": "90%",
  7895. "height": "90%",
  7896. "overflow": 'hidden'
  7897. },
  7898. "onresize": function () { }
  7899. }, {
  7900. closecallback: function () { }
  7901. }, {
  7902. "style": {
  7903. "height": "36px"
  7904. }
  7905. }).form; //创建窗体
  7906. _taskbar = {
  7907. "id": str + _formdiv.id,
  7908. "style": {
  7909. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7910. },
  7911. "name": "思维导图",
  7912. "forms": _formdiv,
  7913. "click": function () {
  7914. U.MD.D.I.openApplication(str, obj, info);
  7915. }
  7916. }
  7917. break;
  7918. case "MindMap":
  7919. aTool = 3;
  7920. _iframe = $$("iframe", {
  7921. "frameborder": "no",
  7922. "border": "0",
  7923. "scrolling ": "no",
  7924. "style": {
  7925. "cssText": "border:0;width:100%;height:100%"
  7926. },
  7927. "src": "//cloud.cocorobo.cn/mind/"
  7928. })
  7929. _box.appendChild(_iframe);
  7930. _box.appendChild(_jie);
  7931. _formdiv = new U.UF.UI.form(
  7932. "思维导图",
  7933. _box, { //"/jsmind/example/demo.html"
  7934. "id": "mind" + cid + stage + task + tool,
  7935. "style": {
  7936. "width": "90%",
  7937. "height": "90%",
  7938. "overflow": 'hidden'
  7939. },
  7940. "onresize": function () { }
  7941. }, {
  7942. closecallback: function () { }
  7943. }, {
  7944. "style": {
  7945. "height": "36px"
  7946. }
  7947. }).form; //创建窗体
  7948. _taskbar = {
  7949. "id": str + _formdiv.id,
  7950. "style": {
  7951. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7952. },
  7953. "name": "思维导图",
  7954. "forms": _formdiv,
  7955. "click": function () {
  7956. U.MD.D.I.openApplication(str, obj, info);
  7957. }
  7958. }
  7959. break;
  7960. case "doc":
  7961. aTool = 6;
  7962. _iframe = $$("iframe", {
  7963. "frameborder": "no",
  7964. "border": "0",
  7965. "scrolling ": "no",
  7966. "style": {
  7967. "cssText": "border:0;width:100%;height:100%"
  7968. },
  7969. "src": "/Office/Word/WordEditArea.htm"
  7970. })
  7971. _box.appendChild(_iframe);
  7972. _box.appendChild(_jie);
  7973. _formdiv = new U.UF.UI.form(
  7974. "协同文档",
  7975. _box, {
  7976. "id": "doc" + cid + stage + task + tool,
  7977. "style": {
  7978. "width": "90%",
  7979. "height": "90%",
  7980. "overflow": 'hidden'
  7981. },
  7982. "onresize": function () { }
  7983. }, {
  7984. closecallback: function () { }
  7985. }, {
  7986. "style": {
  7987. "height": "36px"
  7988. }
  7989. }).form; //创建窗体
  7990. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7991. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7992. })
  7993. _taskbar = {
  7994. "id": str + _formdiv.id,
  7995. "style": {
  7996. "backgroundImage": "url(/img/icon/doc.png)"
  7997. },
  7998. "name": "协同文档",
  7999. "forms": _formdiv,
  8000. "click": function () {
  8001. U.MD.D.I.openApplication(str, obj, info);
  8002. }
  8003. }
  8004. break;
  8005. case "mindNetwork": //好友打开
  8006. aTool = 7;
  8007. _iframe = $$("iframe", {
  8008. "webkitallowfullscreen": "",
  8009. "mozallowfullscreen": "",
  8010. "allowfullscreen": "",
  8011. "frameborder": "no",
  8012. "border": "0",
  8013. "scrolling ": "no",
  8014. "style": {
  8015. "cssText": "border:0; width:100%; height:100%;"
  8016. },
  8017. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8018. })
  8019. _box.appendChild(_iframe);
  8020. _box.appendChild(_jie);
  8021. _formdiv = new U.UF.UI.form(
  8022. "思维网格",
  8023. _box, {
  8024. "id": "mindNetwork" + cid + stage + task + tool,
  8025. "style": {
  8026. "width": "90%",
  8027. "height": "90%",
  8028. "overflow": 'hidden'
  8029. },
  8030. "onresize": function () { }
  8031. }, {
  8032. closecallback: function () { }
  8033. }, {
  8034. "style": {
  8035. "height": "36px"
  8036. }
  8037. }).form; //创建窗体
  8038. _taskbar = {
  8039. "id": str + _formdiv.id,
  8040. "style": {
  8041. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8042. },
  8043. "name": "思维网格",
  8044. "forms": _formdiv,
  8045. "click": function () {
  8046. U.MD.D.I.openApplication(str, obj, info);
  8047. }
  8048. }
  8049. break;
  8050. case "courseDesign":
  8051. _iframe = $$("iframe", {
  8052. "webkitallowfullscreen": "",
  8053. "mozallowfullscreen": "",
  8054. "allowfullscreen": "",
  8055. "frameborder": "no",
  8056. "border": "0",
  8057. "scrolling ": "no",
  8058. "style": {
  8059. "cssText": "border:0; width:100%; height:100%;"
  8060. },
  8061. "src": "/course-design-vue"
  8062. })
  8063. _box.appendChild(_iframe);
  8064. _box.appendChild(_jie);
  8065. _formdiv = new U.UF.UI.form(
  8066. "项目设计",
  8067. _box, {
  8068. "id": "courseDesign" + cid + stage + task + tool,
  8069. "style": {
  8070. "width": "90%",
  8071. "height": "90%",
  8072. "overflow": 'hidden'
  8073. },
  8074. "onresize": function () { }
  8075. }, {
  8076. closecallback: function () { }
  8077. }, {
  8078. "style": {
  8079. "height": "36px"
  8080. }
  8081. }).form; //创建窗体
  8082. _taskbar = {
  8083. "id": str + _formdiv.id,
  8084. "style": {
  8085. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8086. },
  8087. "name": "项目设计",
  8088. "forms": _formdiv,
  8089. "click": function () {
  8090. U.MD.D.I.openApplication(str, obj, info);
  8091. }
  8092. }
  8093. break;
  8094. }
  8095. const script1 = document.createElement("script");
  8096. script1.type = "text/javascript";
  8097. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8098. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8099. const script2 = document.createElement("script");
  8100. script2.type = "text/javascript";
  8101. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8102. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8103. const script3 = document.createElement("script");
  8104. script3.type = "text/javascript";
  8105. script3.charset = "UTF-8";
  8106. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8107. const script4 = document.createElement("script");
  8108. script4.type = "text/javascript";
  8109. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8110. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8111. if (_iframe) {
  8112. if (str == 'doc') {
  8113. _iframe = _formdiv.querySelector('iframe')
  8114. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8115. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8116. _iframe.contentWindow.document.body.appendChild(script1);
  8117. _iframe.contentWindow.document.body.appendChild(script2);
  8118. // _iframe.contentWindow.document.body.appendChild(script3);
  8119. _iframe.contentWindow.document.body.appendChild(script4);
  8120. })
  8121. if (onloadListener) {
  8122. _iframe.contentDocument.location.reload()
  8123. } else {
  8124. _iframe.contentDocument.location.reload()
  8125. }
  8126. } else if (str == 'courseDesign') {
  8127. U.UF.DL.iframeLoad(_iframe, function () {
  8128. // _iframe.contentWindow.U.MD.O.W.load();
  8129. // _iframe.contentWindow.document.body.appendChild(script1);
  8130. _iframe.contentWindow.document.body.appendChild(script2);
  8131. _iframe.contentWindow.document.body.appendChild(script4);
  8132. })
  8133. } else if (str == 'mind') {
  8134. _iframe = _formdiv.querySelector('iframe')
  8135. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8136. //
  8137. _iframe.contentWindow.document.body.appendChild(script1);
  8138. _iframe.contentWindow.document.body.appendChild(script2);
  8139. _iframe.contentWindow.document.body.appendChild(script4);
  8140. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8141. })
  8142. if (onloadListener) {
  8143. _iframe.contentDocument.location.reload()
  8144. } else {
  8145. _iframe.contentDocument.location.reload()
  8146. }
  8147. } else if (str == 'whiteboard') {
  8148. _iframe = _formdiv.querySelector('iframe')
  8149. let onloadListener = _iframe.onload = () => {
  8150. _iframe.contentWindow.document.body.appendChild(script1);
  8151. _iframe.contentWindow.document.body.appendChild(script2);
  8152. _iframe.contentWindow.document.body.appendChild(script4);
  8153. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8154. };
  8155. // if (onloadListener) {
  8156. // try {
  8157. // _iframe.src += "?cocorobo="+new Date().getTime()
  8158. // _iframe.contentWindow.document.location.reload()
  8159. // } catch (error) {
  8160. // }
  8161. // } else {
  8162. // _iframe.contentDocument.location.reload()
  8163. // }
  8164. } else {
  8165. _iframe.onload = () => {
  8166. _iframe.contentWindow.document.body.appendChild(script1);
  8167. _iframe.contentWindow.document.body.appendChild(script2);
  8168. // _iframe.contentWindow.document.body.appendChild(script3);
  8169. _iframe.contentWindow.document.body.appendChild(script4);
  8170. };
  8171. }
  8172. _jie.onclick = async () => {
  8173. let text = ''
  8174. if (aTool == 1) {
  8175. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8176. } else if (aTool == 6) {
  8177. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8178. } else if (aTool == 3) {
  8179. text = await U.MD.D.I.getEditorContent(_iframe);
  8180. }
  8181. _loading.style.display = 'flex'
  8182. console.log(_loading);
  8183. var _ajs = _iframe.contentWindow.document.createElement("script");
  8184. _ajs.type = "text/javascript";
  8185. _ajs.innerHTML =
  8186. // 'console.log(' + _loading + ');\n' +
  8187. 'var _js = document.createElement("script");\n' +
  8188. '_js.type="text/javascript";\n' +
  8189. '_js.charset="UTF-8";\n' +
  8190. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8191. "_js.onload = function(){\n" +
  8192. ' var a = document.getElementsByTagName("img")\n' +
  8193. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8194. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8195. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8196. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8197. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8198. "beforeUpload_shishi(file," +
  8199. "'" +
  8200. _userid +
  8201. "'" +
  8202. ", " +
  8203. "'" +
  8204. _cid +
  8205. "'" +
  8206. ", " +
  8207. "'" +
  8208. _stage +
  8209. "'" +
  8210. ", " +
  8211. "'" +
  8212. _task +
  8213. "'" +
  8214. ", " +
  8215. "'" +
  8216. _tool +
  8217. "'" +
  8218. ", " +
  8219. "'" +
  8220. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8221. "'" +
  8222. ", " +
  8223. "'" +
  8224. aTool +
  8225. "'" +
  8226. ", " +
  8227. "`" +
  8228. text +
  8229. "`" +
  8230. ")\n" +
  8231. " });\n" +
  8232. "}\n" +
  8233. "document.head.appendChild(_js);\n";
  8234. _iframe.contentWindow.document.head.appendChild(_ajs);
  8235. }
  8236. }
  8237. //U.MD.D.I.openClick(str);
  8238. //如果有任务栏信息
  8239. // if (_taskbar) {
  8240. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8241. // }
  8242. }
  8243. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8244. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8245. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8246. _userinfo = US.userInfo, //登录用户信息
  8247. _userid = US.userInfo.userid //登录用户id
  8248. let _iframe;
  8249. let _cid = cid,
  8250. _stage = stage,
  8251. _task = task,
  8252. _tool = tool;
  8253. var _jie = $$("div", {
  8254. "style": {
  8255. "position": "absolute",
  8256. "bottom": "50px",
  8257. "right": "50px",
  8258. "zIndex": "9999",
  8259. "backgroundColor": "#2268bc",
  8260. "color": "#fff",
  8261. "padding": "12px 20px",
  8262. "cursor": "pointer",
  8263. "borderRadius": "4px",
  8264. },
  8265. "innerHTML": "提交作业"
  8266. })
  8267. let aTool = ''
  8268. let _loading = document.createElement('div')
  8269. _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;"
  8270. // _loading.id = "";
  8271. let _lchild = document.createElement('div')
  8272. let _limg = document.createElement('img')
  8273. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8274. _limg.style = "width: 26px;margin-right: 10px;"
  8275. _lchild.appendChild(_limg)
  8276. let _lspan = document.createElement('span')
  8277. _lspan.innerHTML = "上传中..."
  8278. _lchild.appendChild(_lspan)
  8279. _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%);"
  8280. _loading.appendChild(_lchild)
  8281. let _box = $$('div', {
  8282. "style": {
  8283. "position": "relative",
  8284. "width": "100%",
  8285. "height": "100%",
  8286. },
  8287. })
  8288. _box.appendChild(_loading)
  8289. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8290. switch (str) {
  8291. case "whiteboard":
  8292. aTool = 1;
  8293. _iframe = $$("iframe", {
  8294. "frameborder": "no",
  8295. "border": "0",
  8296. "scrolling ": "no",
  8297. "style": {
  8298. "cssText": "border:0;width:100%;height:100%"
  8299. },
  8300. "src": "https://beta.iwb.cocorobo.cn/"
  8301. })
  8302. _box.appendChild(_iframe);
  8303. _box.appendChild(_jie);
  8304. _formdiv = new U.UF.UI.form(
  8305. "电子白板",
  8306. _box, {
  8307. "id": "whiteboard" + cid + stage + task + tool,
  8308. "style": {
  8309. "width": "90%",
  8310. "height": "90%",
  8311. "overflow": 'hidden'
  8312. },
  8313. "onresize": function () { }
  8314. }, {
  8315. closecallback: function () { }
  8316. }, {
  8317. "style": {
  8318. "height": "36px"
  8319. }
  8320. }).form; //创建窗体
  8321. _taskbar = {
  8322. "id": str + _formdiv.id,
  8323. "style": {
  8324. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8325. },
  8326. "name": "电子白板",
  8327. "forms": _formdiv,
  8328. "click": function () {
  8329. U.MD.D.I.openApplication(str, obj, info);
  8330. }
  8331. }
  8332. break;
  8333. case "mind":
  8334. aTool = 3;
  8335. _iframe = $$("iframe", {
  8336. "frameborder": "no",
  8337. "border": "0",
  8338. "scrolling ": "no",
  8339. "style": {
  8340. "cssText": "border:0;width:100%;height:100%"
  8341. },
  8342. "src": "/kityminder-editor/dist/index.html"
  8343. })
  8344. _box.appendChild(_iframe);
  8345. _box.appendChild(_jie);
  8346. _formdiv = new U.UF.UI.form(
  8347. "思维导图",
  8348. _box, { //"/jsmind/example/demo.html"
  8349. "id": "mind" + cid + stage + task + tool,
  8350. "style": {
  8351. "width": "90%",
  8352. "height": "90%",
  8353. "overflow": 'hidden'
  8354. },
  8355. "onresize": function () { }
  8356. }, {
  8357. closecallback: function () { }
  8358. }, {
  8359. "style": {
  8360. "height": "36px"
  8361. }
  8362. }).form; //创建窗体
  8363. _taskbar = {
  8364. "id": str + _formdiv.id,
  8365. "style": {
  8366. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8367. },
  8368. "name": "思维导图",
  8369. "forms": _formdiv,
  8370. "click": function () {
  8371. U.MD.D.I.openApplication(str, obj, info);
  8372. }
  8373. }
  8374. break;
  8375. case "MindMap":
  8376. aTool = 3;
  8377. _iframe = $$("iframe", {
  8378. "frameborder": "no",
  8379. "border": "0",
  8380. "scrolling ": "no",
  8381. "style": {
  8382. "cssText": "border:0;width:100%;height:100%"
  8383. },
  8384. "src": "//cloud.cocorobo.cn/mind/"
  8385. })
  8386. _box.appendChild(_iframe);
  8387. _box.appendChild(_jie);
  8388. _formdiv = new U.UF.UI.form(
  8389. "思维导图",
  8390. _box, { //"/jsmind/example/demo.html"
  8391. "id": "mind" + cid + stage + task + tool,
  8392. "style": {
  8393. "width": "90%",
  8394. "height": "90%",
  8395. "overflow": 'hidden'
  8396. },
  8397. "onresize": function () { }
  8398. }, {
  8399. closecallback: function () { }
  8400. }, {
  8401. "style": {
  8402. "height": "36px"
  8403. }
  8404. }).form; //创建窗体
  8405. _taskbar = {
  8406. "id": str + _formdiv.id,
  8407. "style": {
  8408. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8409. },
  8410. "name": "思维导图",
  8411. "forms": _formdiv,
  8412. "click": function () {
  8413. U.MD.D.I.openApplication(str, obj, info);
  8414. }
  8415. }
  8416. break;
  8417. case "doc":
  8418. aTool = 6;
  8419. _iframe = $$("iframe", {
  8420. "frameborder": "no",
  8421. "border": "0",
  8422. "scrolling ": "no",
  8423. "style": {
  8424. "cssText": "border:0;width:100%;height:100%"
  8425. },
  8426. "src": "/Office/Word/WordEditArea.htm"
  8427. })
  8428. _box.appendChild(_iframe);
  8429. _box.appendChild(_jie);
  8430. _formdiv = new U.UF.UI.form(
  8431. "协同文档",
  8432. _box, {
  8433. "id": "doc" + cid + stage + task + tool,
  8434. "style": {
  8435. "width": "90%",
  8436. "height": "90%",
  8437. "overflow": 'hidden'
  8438. },
  8439. "onresize": function () { }
  8440. }, {
  8441. closecallback: function () { }
  8442. }, {
  8443. "style": {
  8444. "height": "36px"
  8445. }
  8446. }).form; //创建窗体
  8447. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8448. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8449. })
  8450. _taskbar = {
  8451. "id": str + _formdiv.id,
  8452. "style": {
  8453. "backgroundImage": "url(/img/icon/doc.png)"
  8454. },
  8455. "name": "协同文档",
  8456. "forms": _formdiv,
  8457. "click": function () {
  8458. U.MD.D.I.openApplication(str, obj, info);
  8459. }
  8460. }
  8461. break;
  8462. case "mindNetwork": //好友打开
  8463. aTool = 7;
  8464. _iframe = $$("iframe", {
  8465. "webkitallowfullscreen": "",
  8466. "mozallowfullscreen": "",
  8467. "allowfullscreen": "",
  8468. "frameborder": "no",
  8469. "border": "0",
  8470. "scrolling ": "no",
  8471. "style": {
  8472. "cssText": "border:0; width:100%; height:100%;"
  8473. },
  8474. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8475. })
  8476. _box.appendChild(_iframe);
  8477. _box.appendChild(_jie);
  8478. _formdiv = new U.UF.UI.form(
  8479. "思维网格",
  8480. _box, {
  8481. "id": "mindNetwork" + cid + stage + task + tool,
  8482. "style": {
  8483. "width": "90%",
  8484. "height": "90%",
  8485. "overflow": 'hidden'
  8486. },
  8487. "onresize": function () { }
  8488. }, {
  8489. closecallback: function () { }
  8490. }, {
  8491. "style": {
  8492. "height": "36px"
  8493. }
  8494. }).form; //创建窗体
  8495. _taskbar = {
  8496. "id": str + _formdiv.id,
  8497. "style": {
  8498. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8499. },
  8500. "name": "思维网格",
  8501. "forms": _formdiv,
  8502. "click": function () {
  8503. U.MD.D.I.openApplication(str, obj, info);
  8504. }
  8505. }
  8506. break;
  8507. case "courseDesign":
  8508. _iframe = $$("iframe", {
  8509. "webkitallowfullscreen": "",
  8510. "mozallowfullscreen": "",
  8511. "allowfullscreen": "",
  8512. "frameborder": "no",
  8513. "border": "0",
  8514. "scrolling ": "no",
  8515. "style": {
  8516. "cssText": "border:0; width:100%; height:100%;"
  8517. },
  8518. "src": "/course-design-vue"
  8519. })
  8520. _box.appendChild(_iframe);
  8521. _box.appendChild(_jie);
  8522. _formdiv = new U.UF.UI.form(
  8523. "项目设计",
  8524. _box, {
  8525. "id": "courseDesign" + cid + stage + task + tool,
  8526. "style": {
  8527. "width": "90%",
  8528. "height": "90%",
  8529. "overflow": 'hidden'
  8530. },
  8531. "onresize": function () { }
  8532. }, {
  8533. closecallback: function () { }
  8534. }, {
  8535. "style": {
  8536. "height": "36px"
  8537. }
  8538. }).form; //创建窗体
  8539. _taskbar = {
  8540. "id": str + _formdiv.id,
  8541. "style": {
  8542. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8543. },
  8544. "name": "项目设计",
  8545. "forms": _formdiv,
  8546. "click": function () {
  8547. U.MD.D.I.openApplication(str, obj, info);
  8548. }
  8549. }
  8550. break;
  8551. }
  8552. const script1 = document.createElement("script");
  8553. script1.type = "text/javascript";
  8554. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8555. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8556. const script2 = document.createElement("script");
  8557. script2.type = "text/javascript";
  8558. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8559. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8560. const script3 = document.createElement("script");
  8561. script3.type = "text/javascript";
  8562. script3.charset = "UTF-8";
  8563. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8564. const script4 = document.createElement("script");
  8565. script4.type = "text/javascript";
  8566. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8567. script4.src = window.origin + "/js/Common/jietu2E.js";
  8568. if (_iframe) {
  8569. if (str == 'doc') {
  8570. _iframe = _formdiv.querySelector('iframe')
  8571. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8572. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8573. _iframe.contentWindow.document.body.appendChild(script1);
  8574. _iframe.contentWindow.document.body.appendChild(script2);
  8575. // _iframe.contentWindow.document.body.appendChild(script3);
  8576. _iframe.contentWindow.document.body.appendChild(script4);
  8577. })
  8578. if (onloadListener) {
  8579. _iframe.contentDocument.location.reload()
  8580. } else {
  8581. _iframe.contentDocument.location.reload()
  8582. }
  8583. } else if (str == 'courseDesign') {
  8584. U.UF.DL.iframeLoad(_iframe, function () {
  8585. // _iframe.contentWindow.U.MD.O.W.load();
  8586. // _iframe.contentWindow.document.body.appendChild(script1);
  8587. _iframe.contentWindow.document.body.appendChild(script2);
  8588. _iframe.contentWindow.document.body.appendChild(script4);
  8589. })
  8590. } else if (str == 'mind') {
  8591. _iframe = _formdiv.querySelector('iframe')
  8592. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8593. //
  8594. _iframe.contentWindow.document.body.appendChild(script1);
  8595. _iframe.contentWindow.document.body.appendChild(script2);
  8596. _iframe.contentWindow.document.body.appendChild(script4);
  8597. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8598. })
  8599. if (onloadListener) {
  8600. _iframe.contentDocument.location.reload()
  8601. } else {
  8602. _iframe.contentDocument.location.reload()
  8603. }
  8604. } else if (str == 'whiteboard') {
  8605. _iframe = _formdiv.querySelector('iframe')
  8606. let onloadListener = _iframe.onload = () => {
  8607. _iframe.contentWindow.document.body.appendChild(script1);
  8608. _iframe.contentWindow.document.body.appendChild(script2);
  8609. _iframe.contentWindow.document.body.appendChild(script4);
  8610. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8611. };
  8612. // if (onloadListener) {
  8613. // try {
  8614. // _iframe.src += "?cocorobo="+new Date().getTime()
  8615. // _iframe.contentWindow.document.location.reload()
  8616. // } catch (error) {
  8617. // }
  8618. // } else {
  8619. // _iframe.contentDocument.location.reload()
  8620. // }
  8621. } else {
  8622. _iframe.onload = () => {
  8623. _iframe.contentWindow.document.body.appendChild(script1);
  8624. _iframe.contentWindow.document.body.appendChild(script2);
  8625. // _iframe.contentWindow.document.body.appendChild(script3);
  8626. _iframe.contentWindow.document.body.appendChild(script4);
  8627. };
  8628. }
  8629. _jie.onclick = async () => {
  8630. let text = ''
  8631. if (aTool == 1) {
  8632. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8633. } else if (aTool == 6) {
  8634. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8635. } else if (aTool == 3) {
  8636. text = await U.MD.D.I.getEditorContent(_iframe);
  8637. }
  8638. _loading.style.display = 'flex'
  8639. console.log(_loading);
  8640. var _ajs = _iframe.contentWindow.document.createElement("script");
  8641. _ajs.type = "text/javascript";
  8642. _ajs.innerHTML =
  8643. // 'console.log(' + _loading + ');\n' +
  8644. 'var _js = document.createElement("script");\n' +
  8645. '_js.type="text/javascript";\n' +
  8646. '_js.charset="UTF-8";\n' +
  8647. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8648. "_js.onload = function(){\n" +
  8649. ' var a = document.getElementsByTagName("img")\n' +
  8650. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8651. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8652. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8653. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8654. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8655. "beforeUpload_shishi(file," +
  8656. "'" +
  8657. _userid +
  8658. "'" +
  8659. ", " +
  8660. "'" +
  8661. _cid +
  8662. "'" +
  8663. ", " +
  8664. "'" +
  8665. _stage +
  8666. "'" +
  8667. ", " +
  8668. "'" +
  8669. _task +
  8670. "'" +
  8671. ", " +
  8672. "'" +
  8673. _tool +
  8674. "'" +
  8675. ", " +
  8676. "'" +
  8677. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8678. "'" +
  8679. ", " +
  8680. "'" +
  8681. aTool +
  8682. "'" +
  8683. ", " +
  8684. "`" +
  8685. text +
  8686. "`" +
  8687. ")\n" +
  8688. " });\n" +
  8689. "}\n" +
  8690. "document.head.appendChild(_js);\n";
  8691. _iframe.contentWindow.document.head.appendChild(_ajs);
  8692. }
  8693. }
  8694. //U.MD.D.I.openClick(str);
  8695. //如果有任务栏信息
  8696. // if (_taskbar) {
  8697. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8698. // }
  8699. }
  8700. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8701. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8702. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8703. _userid = student.userid, //登录用户id
  8704. _username = student.student //用户名字
  8705. let _iframe;
  8706. let _cid = cid,
  8707. _stage = stage,
  8708. _task = task,
  8709. _tool = tool;
  8710. var _jie = $$("div", {
  8711. "style": {
  8712. "position": "absolute",
  8713. "bottom": "50px",
  8714. "right": "50px",
  8715. "zIndex": "9999",
  8716. "backgroundColor": "#2268bc",
  8717. "color": "#fff",
  8718. "padding": "12px 20px",
  8719. "cursor": "pointer",
  8720. "borderRadius": "4px",
  8721. },
  8722. "innerHTML": "提交作业"
  8723. })
  8724. let aTool = ''
  8725. let _loading = document.createElement('div')
  8726. _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;"
  8727. // _loading.id = "";
  8728. let _lchild = document.createElement('div')
  8729. let _limg = document.createElement('img')
  8730. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8731. _limg.style = "width: 26px;margin-right: 10px;"
  8732. _lchild.appendChild(_limg)
  8733. let _lspan = document.createElement('span')
  8734. _lspan.innerHTML = "上传中..."
  8735. _lchild.appendChild(_lspan)
  8736. _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%);"
  8737. _loading.appendChild(_lchild)
  8738. var _box = $$('div', {
  8739. "style": {
  8740. "position": "relative",
  8741. "width": "100%",
  8742. "height": "100%",
  8743. },
  8744. })
  8745. _box.appendChild(_loading)
  8746. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8747. switch (str) {
  8748. case "whiteboard":
  8749. aTool = 1;
  8750. _iframe = $$("iframe", {
  8751. "frameborder": "no",
  8752. "border": "0",
  8753. "scrolling ": "no",
  8754. "style": {
  8755. "cssText": "border:0;width:100%;height:100%"
  8756. },
  8757. "src": "https://beta.iwb.cocorobo.cn/"
  8758. })
  8759. _box.appendChild(_iframe);
  8760. _box.appendChild(_jie);
  8761. _formdiv = new U.UF.UI.form(
  8762. "电子白板-" + _username,
  8763. _box, {
  8764. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8765. "style": {
  8766. "width": "90%",
  8767. "height": "90%",
  8768. "overflow": 'hidden'
  8769. },
  8770. "onresize": function () { }
  8771. }, {
  8772. closecallback: function () { }
  8773. }, {
  8774. "style": {
  8775. "height": "36px"
  8776. }
  8777. }).form; //创建窗体
  8778. _taskbar = {
  8779. "id": str + _formdiv.id,
  8780. "style": {
  8781. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8782. },
  8783. "name": "电子白板",
  8784. "forms": _formdiv,
  8785. "click": function () {
  8786. U.MD.D.I.openApplication(str, obj, info);
  8787. }
  8788. }
  8789. break;
  8790. case "mind":
  8791. aTool = 3;
  8792. _iframe = $$("iframe", {
  8793. "frameborder": "no",
  8794. "border": "0",
  8795. "scrolling ": "no",
  8796. "style": {
  8797. "cssText": "border:0;width:100%;height:100%"
  8798. },
  8799. "src": "/kityminder-editor/dist/index.html"
  8800. })
  8801. _box.appendChild(_iframe);
  8802. _box.appendChild(_jie);
  8803. _formdiv = new U.UF.UI.form(
  8804. "思维导图-" + _username,
  8805. _box, { //"/jsmind/example/demo.html"
  8806. "id": "mind" + cid + stage + task + tool + _userid,
  8807. "style": {
  8808. "width": "90%",
  8809. "height": "90%",
  8810. "overflow": 'hidden'
  8811. },
  8812. "onresize": function () { }
  8813. }, {
  8814. closecallback: function () { }
  8815. }, {
  8816. "style": {
  8817. "height": "36px"
  8818. }
  8819. }).form; //创建窗体
  8820. _taskbar = {
  8821. "id": str + _formdiv.id,
  8822. "style": {
  8823. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8824. },
  8825. "name": "思维导图",
  8826. "forms": _formdiv,
  8827. "click": function () {
  8828. U.MD.D.I.openApplication(str, obj, info);
  8829. }
  8830. }
  8831. break;
  8832. case "MindMap":
  8833. aTool = 3;
  8834. _iframe = $$("iframe", {
  8835. "frameborder": "no",
  8836. "border": "0",
  8837. "scrolling ": "no",
  8838. "style": {
  8839. "cssText": "border:0;width:100%;height:100%"
  8840. },
  8841. "src": "//cloud.cocorobo.cn/mind/"
  8842. })
  8843. _box.appendChild(_iframe);
  8844. _box.appendChild(_jie);
  8845. _formdiv = new U.UF.UI.form(
  8846. "思维导图-" + _username,
  8847. _box, { //"/jsmind/example/demo.html"
  8848. "id": "mind" + cid + stage + task + tool + _userid,
  8849. "style": {
  8850. "width": "90%",
  8851. "height": "90%",
  8852. "overflow": 'hidden'
  8853. },
  8854. "onresize": function () { }
  8855. }, {
  8856. closecallback: function () { }
  8857. }, {
  8858. "style": {
  8859. "height": "36px"
  8860. }
  8861. }).form; //创建窗体
  8862. _taskbar = {
  8863. "id": str + _formdiv.id,
  8864. "style": {
  8865. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8866. },
  8867. "name": "思维导图",
  8868. "forms": _formdiv,
  8869. "click": function () {
  8870. U.MD.D.I.openApplication(str, obj, info);
  8871. }
  8872. }
  8873. break;
  8874. case "doc":
  8875. aTool = 6;
  8876. _iframe = $$("iframe", {
  8877. "frameborder": "no",
  8878. "border": "0",
  8879. "scrolling ": "no",
  8880. "style": {
  8881. "cssText": "border:0;width:100%;height:100%"
  8882. },
  8883. "src": "/Office/Word/WordEditArea.htm"
  8884. })
  8885. _box.appendChild(_iframe);
  8886. _box.appendChild(_jie);
  8887. _formdiv = new U.UF.UI.form(
  8888. "协同文档-" + _username,
  8889. _box, {
  8890. "id": "doc" + cid + stage + task + tool + _userid,
  8891. "style": {
  8892. "width": "90%",
  8893. "height": "90%",
  8894. "overflow": 'hidden'
  8895. },
  8896. "onresize": function () { }
  8897. }, {
  8898. closecallback: function () { }
  8899. }, {
  8900. "style": {
  8901. "height": "36px"
  8902. }
  8903. }).form; //创建窗体
  8904. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8905. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8906. })
  8907. _taskbar = {
  8908. "id": str + _formdiv.id,
  8909. "style": {
  8910. "backgroundImage": "url(/img/icon/doc.png)"
  8911. },
  8912. "name": "协同文档",
  8913. "forms": _formdiv,
  8914. "click": function () {
  8915. U.MD.D.I.openApplication(str, obj, info);
  8916. }
  8917. }
  8918. break;
  8919. case "mindNetwork": //好友打开
  8920. aTool = 7;
  8921. _iframe = $$("iframe", {
  8922. "webkitallowfullscreen": "",
  8923. "mozallowfullscreen": "",
  8924. "allowfullscreen": "",
  8925. "frameborder": "no",
  8926. "border": "0",
  8927. "scrolling ": "no",
  8928. "style": {
  8929. "cssText": "border:0; width:100%; height:100%;"
  8930. },
  8931. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8932. })
  8933. _box.appendChild(_iframe);
  8934. _box.appendChild(_jie);
  8935. _formdiv = new U.UF.UI.form(
  8936. "思维网格-" + _username,
  8937. _box, {
  8938. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8939. "style": {
  8940. "width": "90%",
  8941. "height": "90%",
  8942. "overflow": 'hidden'
  8943. },
  8944. "onresize": function () { }
  8945. }, {
  8946. closecallback: function () { }
  8947. }, {
  8948. "style": {
  8949. "height": "36px"
  8950. }
  8951. }).form; //创建窗体
  8952. _taskbar = {
  8953. "id": str + _formdiv.id,
  8954. "style": {
  8955. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8956. },
  8957. "name": "思维网格",
  8958. "forms": _formdiv,
  8959. "click": function () {
  8960. U.MD.D.I.openApplication(str, obj, info);
  8961. }
  8962. }
  8963. break;
  8964. case "courseDesign":
  8965. _iframe = $$("iframe", {
  8966. "webkitallowfullscreen": "",
  8967. "mozallowfullscreen": "",
  8968. "allowfullscreen": "",
  8969. "frameborder": "no",
  8970. "border": "0",
  8971. "scrolling ": "no",
  8972. "style": {
  8973. "cssText": "border:0; width:100%; height:100%;"
  8974. },
  8975. "src": "/course-design-vue"
  8976. })
  8977. _box.appendChild(_iframe);
  8978. _box.appendChild(_jie);
  8979. _formdiv = new U.UF.UI.form(
  8980. "项目设计-" + _username,
  8981. _box, {
  8982. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8983. "style": {
  8984. "width": "90%",
  8985. "height": "90%",
  8986. "overflow": 'hidden'
  8987. },
  8988. "onresize": function () { }
  8989. }, {
  8990. closecallback: function () { }
  8991. }, {
  8992. "style": {
  8993. "height": "36px"
  8994. }
  8995. }).form; //创建窗体
  8996. _taskbar = {
  8997. "id": str + _formdiv.id,
  8998. "style": {
  8999. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9000. },
  9001. "name": "项目设计",
  9002. "forms": _formdiv,
  9003. "click": function () {
  9004. U.MD.D.I.openApplication(str, obj, info);
  9005. }
  9006. }
  9007. break;
  9008. }
  9009. const script1 = document.createElement("script");
  9010. script1.type = "text/javascript";
  9011. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9012. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9013. const script2 = document.createElement("script");
  9014. script2.type = "text/javascript";
  9015. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9016. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9017. const script3 = document.createElement("script");
  9018. script3.type = "text/javascript";
  9019. script3.charset = "UTF-8";
  9020. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9021. const script4 = document.createElement("script");
  9022. script4.type = "text/javascript";
  9023. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9024. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9025. if (_iframe) {
  9026. if (str == 'doc') {
  9027. _iframe = _formdiv.querySelector('iframe')
  9028. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9029. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9030. _iframe.contentWindow.document.body.appendChild(script1);
  9031. _iframe.contentWindow.document.body.appendChild(script2);
  9032. // _iframe.contentWindow.document.body.appendChild(script3);
  9033. _iframe.contentWindow.document.body.appendChild(script4);
  9034. })
  9035. if (onloadListener) {
  9036. _iframe.contentDocument.location.reload()
  9037. } else {
  9038. _iframe.contentDocument.location.reload()
  9039. }
  9040. } else if (str == 'courseDesign') {
  9041. U.UF.DL.iframeLoad(_iframe, function () {
  9042. // _iframe.contentWindow.U.MD.O.W.load();
  9043. // _iframe.contentWindow.document.body.appendChild(script1);
  9044. _iframe.contentWindow.document.body.appendChild(script2);
  9045. _iframe.contentWindow.document.body.appendChild(script4);
  9046. })
  9047. } else if (str == 'mind') {
  9048. _iframe = _formdiv.querySelector('iframe')
  9049. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9050. //
  9051. _iframe.contentWindow.document.body.appendChild(script1);
  9052. _iframe.contentWindow.document.body.appendChild(script2);
  9053. _iframe.contentWindow.document.body.appendChild(script4);
  9054. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9055. })
  9056. if (onloadListener) {
  9057. _iframe.contentDocument.location.reload()
  9058. } else {
  9059. _iframe.contentDocument.location.reload()
  9060. }
  9061. } else if (str == 'whiteboard') {
  9062. _iframe = _formdiv.querySelector('iframe')
  9063. let onloadListener = _iframe.onload = () => {
  9064. _iframe.contentWindow.document.body.appendChild(script1);
  9065. _iframe.contentWindow.document.body.appendChild(script2);
  9066. _iframe.contentWindow.document.body.appendChild(script4);
  9067. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9068. };
  9069. // if (onloadListener) {
  9070. // try {
  9071. // _iframe.src += "?cocorobo="+new Date().getTime()
  9072. // _iframe.contentWindow.document.location.reload()
  9073. // } catch (error) {
  9074. // }
  9075. // } else {
  9076. // _iframe.contentDocument.location.reload()
  9077. // }
  9078. } else {
  9079. _iframe.onload = () => {
  9080. _iframe.contentWindow.document.body.appendChild(script1);
  9081. _iframe.contentWindow.document.body.appendChild(script2);
  9082. // _iframe.contentWindow.document.body.appendChild(script3);
  9083. _iframe.contentWindow.document.body.appendChild(script4);
  9084. };
  9085. }
  9086. _jie.onclick = async () => {
  9087. let text = ''
  9088. if (aTool == 1) {
  9089. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9090. } else if (aTool == 6) {
  9091. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9092. } else if (aTool == 3) {
  9093. text = await U.MD.D.I.getEditorContent(_iframe);
  9094. }
  9095. _loading.style.display = 'flex'
  9096. console.log(_loading);
  9097. var _ajs = _iframe.contentWindow.document.createElement("script");
  9098. _ajs.type = "text/javascript";
  9099. _ajs.innerHTML =
  9100. // 'console.log(' + _loading + ');\n' +
  9101. 'var _js = document.createElement("script");\n' +
  9102. '_js.type="text/javascript";\n' +
  9103. '_js.charset="UTF-8";\n' +
  9104. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9105. "_js.onload = function(){\n" +
  9106. ' var a = document.getElementsByTagName("img")\n' +
  9107. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9108. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9109. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9110. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9111. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9112. "beforeUpload_shishi(file," +
  9113. "'" +
  9114. _userid +
  9115. "'" +
  9116. ", " +
  9117. "'" +
  9118. _cid +
  9119. "'" +
  9120. ", " +
  9121. "'" +
  9122. _stage +
  9123. "'" +
  9124. ", " +
  9125. "'" +
  9126. _task +
  9127. "'" +
  9128. ", " +
  9129. "'" +
  9130. _tool +
  9131. "'" +
  9132. ", " +
  9133. "'" +
  9134. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9135. "'" +
  9136. ", " +
  9137. "'" +
  9138. aTool +
  9139. "'" +
  9140. ", " +
  9141. "`" +
  9142. text +
  9143. "`" +
  9144. ")\n" +
  9145. " });\n" +
  9146. "}\n" +
  9147. "document.head.appendChild(_js);\n";
  9148. _iframe.contentWindow.document.head.appendChild(_ajs);
  9149. }
  9150. }
  9151. }
  9152. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9153. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9154. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9155. _userid = student.userid, //登录用户id
  9156. _username = student.student //用户名字
  9157. let _iframe;
  9158. let _cid = cid,
  9159. _stage = stage,
  9160. _task = task,
  9161. _tool = tool;
  9162. var _jie = $$("div", {
  9163. "style": {
  9164. "position": "absolute",
  9165. "bottom": "50px",
  9166. "right": "50px",
  9167. "zIndex": "9999",
  9168. "backgroundColor": "#2268bc",
  9169. "color": "#fff",
  9170. "padding": "12px 20px",
  9171. "cursor": "pointer",
  9172. "borderRadius": "4px",
  9173. },
  9174. "innerHTML": "提交作业"
  9175. })
  9176. let aTool = ''
  9177. let _loading = document.createElement('div')
  9178. _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;"
  9179. // _loading.id = "";
  9180. let _lchild = document.createElement('div')
  9181. let _limg = document.createElement('img')
  9182. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9183. _limg.style = "width: 26px;margin-right: 10px;"
  9184. _lchild.appendChild(_limg)
  9185. let _lspan = document.createElement('span')
  9186. _lspan.innerHTML = "上传中..."
  9187. _lchild.appendChild(_lspan)
  9188. _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%);"
  9189. _loading.appendChild(_lchild)
  9190. var _box = $$('div', {
  9191. "style": {
  9192. "position": "relative",
  9193. "width": "100%",
  9194. "height": "100%",
  9195. },
  9196. })
  9197. _box.appendChild(_loading)
  9198. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9199. switch (str) {
  9200. case "whiteboard":
  9201. aTool = 1;
  9202. _iframe = $$("iframe", {
  9203. "frameborder": "no",
  9204. "border": "0",
  9205. "scrolling ": "no",
  9206. "style": {
  9207. "cssText": "border:0;width:100%;height:100%"
  9208. },
  9209. "src": "https://beta.iwb.cocorobo.cn/"
  9210. })
  9211. _box.appendChild(_iframe);
  9212. _box.appendChild(_jie);
  9213. _formdiv = new U.UF.UI.form(
  9214. "电子白板-" + _username,
  9215. _box, {
  9216. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9217. "style": {
  9218. "width": "90%",
  9219. "height": "90%",
  9220. "overflow": 'hidden'
  9221. },
  9222. "onresize": function () { }
  9223. }, {
  9224. closecallback: function () { }
  9225. }, {
  9226. "style": {
  9227. "height": "36px"
  9228. }
  9229. }).form; //创建窗体
  9230. _taskbar = {
  9231. "id": str + _formdiv.id,
  9232. "style": {
  9233. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9234. },
  9235. "name": "电子白板",
  9236. "forms": _formdiv,
  9237. "click": function () {
  9238. U.MD.D.I.openApplication(str, obj, info);
  9239. }
  9240. }
  9241. break;
  9242. case "mind":
  9243. aTool = 3;
  9244. _iframe = $$("iframe", {
  9245. "frameborder": "no",
  9246. "border": "0",
  9247. "scrolling ": "no",
  9248. "style": {
  9249. "cssText": "border:0;width:100%;height:100%"
  9250. },
  9251. "src": "/kityminder-editor/dist/index.html"
  9252. })
  9253. _box.appendChild(_iframe);
  9254. _box.appendChild(_jie);
  9255. _formdiv = new U.UF.UI.form(
  9256. "思维导图-" + _username,
  9257. _box, { //"/jsmind/example/demo.html"
  9258. "id": "mind" + cid + stage + task + tool + _userid,
  9259. "style": {
  9260. "width": "90%",
  9261. "height": "90%",
  9262. "overflow": 'hidden'
  9263. },
  9264. "onresize": function () { }
  9265. }, {
  9266. closecallback: function () { }
  9267. }, {
  9268. "style": {
  9269. "height": "36px"
  9270. }
  9271. }).form; //创建窗体
  9272. _taskbar = {
  9273. "id": str + _formdiv.id,
  9274. "style": {
  9275. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9276. },
  9277. "name": "思维导图",
  9278. "forms": _formdiv,
  9279. "click": function () {
  9280. U.MD.D.I.openApplication(str, obj, info);
  9281. }
  9282. }
  9283. break;
  9284. case "MindMap":
  9285. aTool = 3;
  9286. _iframe = $$("iframe", {
  9287. "frameborder": "no",
  9288. "border": "0",
  9289. "scrolling ": "no",
  9290. "style": {
  9291. "cssText": "border:0;width:100%;height:100%"
  9292. },
  9293. "src": "//cloud.cocorobo.cn/mind/"
  9294. })
  9295. _box.appendChild(_iframe);
  9296. _box.appendChild(_jie);
  9297. _formdiv = new U.UF.UI.form(
  9298. "思维导图-" + _username,
  9299. _box, { //"/jsmind/example/demo.html"
  9300. "id": "mind" + cid + stage + task + tool + _userid,
  9301. "style": {
  9302. "width": "90%",
  9303. "height": "90%",
  9304. "overflow": 'hidden'
  9305. },
  9306. "onresize": function () { }
  9307. }, {
  9308. closecallback: function () { }
  9309. }, {
  9310. "style": {
  9311. "height": "36px"
  9312. }
  9313. }).form; //创建窗体
  9314. _taskbar = {
  9315. "id": str + _formdiv.id,
  9316. "style": {
  9317. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9318. },
  9319. "name": "思维导图",
  9320. "forms": _formdiv,
  9321. "click": function () {
  9322. U.MD.D.I.openApplication(str, obj, info);
  9323. }
  9324. }
  9325. break;
  9326. case "doc":
  9327. aTool = 6;
  9328. _iframe = $$("iframe", {
  9329. "frameborder": "no",
  9330. "border": "0",
  9331. "scrolling ": "no",
  9332. "style": {
  9333. "cssText": "border:0;width:100%;height:100%"
  9334. },
  9335. "src": "/Office/Word/WordEditArea.htm"
  9336. })
  9337. _box.appendChild(_iframe);
  9338. _box.appendChild(_jie);
  9339. _formdiv = new U.UF.UI.form(
  9340. "协同文档-" + _username,
  9341. _box, {
  9342. "id": "doc" + cid + stage + task + tool + _userid,
  9343. "style": {
  9344. "width": "90%",
  9345. "height": "90%",
  9346. "overflow": 'hidden'
  9347. },
  9348. "onresize": function () { }
  9349. }, {
  9350. closecallback: function () { }
  9351. }, {
  9352. "style": {
  9353. "height": "36px"
  9354. }
  9355. }).form; //创建窗体
  9356. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9357. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9358. })
  9359. _taskbar = {
  9360. "id": str + _formdiv.id,
  9361. "style": {
  9362. "backgroundImage": "url(/img/icon/doc.png)"
  9363. },
  9364. "name": "协同文档",
  9365. "forms": _formdiv,
  9366. "click": function () {
  9367. U.MD.D.I.openApplication(str, obj, info);
  9368. }
  9369. }
  9370. break;
  9371. case "mindNetwork": //好友打开
  9372. aTool = 7;
  9373. _iframe = $$("iframe", {
  9374. "webkitallowfullscreen": "",
  9375. "mozallowfullscreen": "",
  9376. "allowfullscreen": "",
  9377. "frameborder": "no",
  9378. "border": "0",
  9379. "scrolling ": "no",
  9380. "style": {
  9381. "cssText": "border:0; width:100%; height:100%;"
  9382. },
  9383. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9384. })
  9385. _box.appendChild(_iframe);
  9386. _box.appendChild(_jie);
  9387. _formdiv = new U.UF.UI.form(
  9388. "思维网格-" + _username,
  9389. _box, {
  9390. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9391. "style": {
  9392. "width": "90%",
  9393. "height": "90%",
  9394. "overflow": 'hidden'
  9395. },
  9396. "onresize": function () { }
  9397. }, {
  9398. closecallback: function () { }
  9399. }, {
  9400. "style": {
  9401. "height": "36px"
  9402. }
  9403. }).form; //创建窗体
  9404. _taskbar = {
  9405. "id": str + _formdiv.id,
  9406. "style": {
  9407. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9408. },
  9409. "name": "思维网格",
  9410. "forms": _formdiv,
  9411. "click": function () {
  9412. U.MD.D.I.openApplication(str, obj, info);
  9413. }
  9414. }
  9415. break;
  9416. case "courseDesign":
  9417. _iframe = $$("iframe", {
  9418. "webkitallowfullscreen": "",
  9419. "mozallowfullscreen": "",
  9420. "allowfullscreen": "",
  9421. "frameborder": "no",
  9422. "border": "0",
  9423. "scrolling ": "no",
  9424. "style": {
  9425. "cssText": "border:0; width:100%; height:100%;"
  9426. },
  9427. "src": "/course-design-vue"
  9428. })
  9429. _box.appendChild(_iframe);
  9430. _box.appendChild(_jie);
  9431. _formdiv = new U.UF.UI.form(
  9432. "项目设计-" + _username,
  9433. _box, {
  9434. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9435. "style": {
  9436. "width": "90%",
  9437. "height": "90%",
  9438. "overflow": 'hidden'
  9439. },
  9440. "onresize": function () { }
  9441. }, {
  9442. closecallback: function () { }
  9443. }, {
  9444. "style": {
  9445. "height": "36px"
  9446. }
  9447. }).form; //创建窗体
  9448. _taskbar = {
  9449. "id": str + _formdiv.id,
  9450. "style": {
  9451. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9452. },
  9453. "name": "项目设计",
  9454. "forms": _formdiv,
  9455. "click": function () {
  9456. U.MD.D.I.openApplication(str, obj, info);
  9457. }
  9458. }
  9459. break;
  9460. }
  9461. const script1 = document.createElement("script");
  9462. script1.type = "text/javascript";
  9463. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9464. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9465. const script2 = document.createElement("script");
  9466. script2.type = "text/javascript";
  9467. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9468. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9469. const script3 = document.createElement("script");
  9470. script3.type = "text/javascript";
  9471. script3.charset = "UTF-8";
  9472. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9473. const script4 = document.createElement("script");
  9474. script4.type = "text/javascript";
  9475. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9476. script4.src = window.origin + "/js/Common/jietu2E.js";
  9477. if (_iframe) {
  9478. if (str == 'doc') {
  9479. _iframe = _formdiv.querySelector('iframe')
  9480. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9481. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9482. _iframe.contentWindow.document.body.appendChild(script1);
  9483. _iframe.contentWindow.document.body.appendChild(script2);
  9484. // _iframe.contentWindow.document.body.appendChild(script3);
  9485. _iframe.contentWindow.document.body.appendChild(script4);
  9486. })
  9487. if (onloadListener) {
  9488. _iframe.contentDocument.location.reload()
  9489. } else {
  9490. _iframe.contentDocument.location.reload()
  9491. }
  9492. } else if (str == 'courseDesign') {
  9493. U.UF.DL.iframeLoad(_iframe, function () {
  9494. // _iframe.contentWindow.U.MD.O.W.load();
  9495. // _iframe.contentWindow.document.body.appendChild(script1);
  9496. _iframe.contentWindow.document.body.appendChild(script2);
  9497. _iframe.contentWindow.document.body.appendChild(script4);
  9498. })
  9499. } else if (str == 'mind') {
  9500. _iframe = _formdiv.querySelector('iframe')
  9501. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9502. //
  9503. _iframe.contentWindow.document.body.appendChild(script1);
  9504. _iframe.contentWindow.document.body.appendChild(script2);
  9505. _iframe.contentWindow.document.body.appendChild(script4);
  9506. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9507. })
  9508. if (onloadListener) {
  9509. _iframe.contentDocument.location.reload()
  9510. } else {
  9511. _iframe.contentDocument.location.reload()
  9512. }
  9513. } else if (str == 'whiteboard') {
  9514. _iframe = _formdiv.querySelector('iframe')
  9515. let onloadListener = _iframe.onload = () => {
  9516. _iframe.contentWindow.document.body.appendChild(script1);
  9517. _iframe.contentWindow.document.body.appendChild(script2);
  9518. _iframe.contentWindow.document.body.appendChild(script4);
  9519. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9520. };
  9521. // if (onloadListener) {
  9522. // try {
  9523. // _iframe.src += "?cocorobo="+new Date().getTime()
  9524. // _iframe.contentWindow.document.location.reload()
  9525. // } catch (error) {
  9526. // }
  9527. // } else {
  9528. // _iframe.contentDocument.location.reload()
  9529. // }
  9530. } else {
  9531. _iframe.onload = () => {
  9532. _iframe.contentWindow.document.body.appendChild(script1);
  9533. _iframe.contentWindow.document.body.appendChild(script2);
  9534. // _iframe.contentWindow.document.body.appendChild(script3);
  9535. _iframe.contentWindow.document.body.appendChild(script4);
  9536. };
  9537. }
  9538. _jie.onclick = async () => {
  9539. let text = ''
  9540. if (aTool == 1) {
  9541. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9542. } else if (aTool == 6) {
  9543. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9544. } else if (aTool == 3) {
  9545. text = await U.MD.D.I.getEditorContent(_iframe);
  9546. }
  9547. _loading.style.display = 'flex'
  9548. console.log(_loading);
  9549. var _ajs = _iframe.contentWindow.document.createElement("script");
  9550. _ajs.type = "text/javascript";
  9551. _ajs.innerHTML =
  9552. // 'console.log(' + _loading + ');\n' +
  9553. 'var _js = document.createElement("script");\n' +
  9554. '_js.type="text/javascript";\n' +
  9555. '_js.charset="UTF-8";\n' +
  9556. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9557. "_js.onload = function(){\n" +
  9558. ' var a = document.getElementsByTagName("img")\n' +
  9559. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9560. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9561. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9562. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9563. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9564. "beforeUpload_shishi(file," +
  9565. "'" +
  9566. _userid +
  9567. "'" +
  9568. ", " +
  9569. "'" +
  9570. _cid +
  9571. "'" +
  9572. ", " +
  9573. "'" +
  9574. _stage +
  9575. "'" +
  9576. ", " +
  9577. "'" +
  9578. _task +
  9579. "'" +
  9580. ", " +
  9581. "'" +
  9582. _tool +
  9583. "'" +
  9584. ", " +
  9585. "'" +
  9586. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9587. "'" +
  9588. ", " +
  9589. "'" +
  9590. aTool +
  9591. "'" +
  9592. ", " +
  9593. "`" +
  9594. text +
  9595. "`" +
  9596. ")\n" +
  9597. " });\n" +
  9598. "}\n" +
  9599. "document.head.appendChild(_js);\n";
  9600. _iframe.contentWindow.document.head.appendChild(_ajs);
  9601. }
  9602. }
  9603. }
  9604. U.MD.D.I.getEditorContent = function (iframe) {
  9605. return new Promise((resolve, reject) => {
  9606. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9607. console.log(content);
  9608. resolve(content)
  9609. });
  9610. });
  9611. }
  9612. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9613. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9614. // if (res.value[0].length > 0) {
  9615. // // resolve(res.value[0][0].text);
  9616. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9617. // $(fileInput).val('');
  9618. // });
  9619. // }
  9620. // }, [], { "type": "GET", "withCredentials": true });
  9621. var xmlhttp;
  9622. var Mac, Sn, DeviceId
  9623. if (window.XMLHttpRequest) {
  9624. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9625. xmlhttp = new XMLHttpRequest();
  9626. } else {
  9627. // IE6, IE5 浏览器执行代码
  9628. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9629. }
  9630. xmlhttp.onreadystatechange = function () {
  9631. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9632. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9633. // resolve(res.value[0][0].text);
  9634. if (type == '2') {
  9635. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9636. } else if (type == '3') {
  9637. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9638. }
  9639. } else {
  9640. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9641. }
  9642. }
  9643. }
  9644. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9645. xmlhttp.send();
  9646. }
  9647. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9648. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9649. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9650. _userinfo = US.userInfo, //登录用户信息
  9651. _userid = US.userInfo.userid //登录用户id
  9652. let _iframe;
  9653. let _cid = cid,
  9654. _stage = stage,
  9655. _task = task,
  9656. _tool = tool;
  9657. var _jie = $$("div", {
  9658. "style": {
  9659. "position": "absolute",
  9660. "bottom": "50px",
  9661. "right": "50px",
  9662. "zIndex": "9999",
  9663. "backgroundColor": "#2268bc",
  9664. "color": "#fff",
  9665. "padding": "12px 20px",
  9666. "cursor": "pointer",
  9667. "borderRadius": "4px",
  9668. },
  9669. "innerHTML": "确认并提交"
  9670. })
  9671. let aTool = ''
  9672. let _loading = document.createElement('div')
  9673. _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;"
  9674. // _loading.id = "";
  9675. let _lchild = document.createElement('div')
  9676. let _limg = document.createElement('img')
  9677. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9678. _limg.style = "width: 26px;margin-right: 10px;"
  9679. _lchild.appendChild(_limg)
  9680. let _lspan = document.createElement('span')
  9681. _lspan.innerHTML = "上传中..."
  9682. _lchild.appendChild(_lspan)
  9683. _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%);"
  9684. _loading.appendChild(_lchild)
  9685. var _box = $$('div', {
  9686. "style": {
  9687. "position": "relative",
  9688. "width": "100%",
  9689. "height": "100%",
  9690. },
  9691. })
  9692. _box.appendChild(_loading)
  9693. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9694. switch (str) {
  9695. case "whiteboard":
  9696. aTool = 1;
  9697. _iframe = $$("iframe", {
  9698. "frameborder": "no",
  9699. "border": "0",
  9700. "scrolling ": "no",
  9701. "style": {
  9702. "cssText": "border:0;width:100%;height:100%"
  9703. },
  9704. "src": "https://beta.iwb.cocorobo.cn/"
  9705. })
  9706. _box.appendChild(_iframe);
  9707. _box.appendChild(_jie);
  9708. _formdiv = new U.UF.UI.form(
  9709. "电子白板",
  9710. _box, {
  9711. "id": "whiteboards" + cid + stage + task + tool,
  9712. "style": {
  9713. "width": "90%",
  9714. "height": "90%",
  9715. "overflow": 'hidden'
  9716. },
  9717. "onresize": function () { }
  9718. }, {
  9719. closecallback: function () { }
  9720. }, {
  9721. "style": {
  9722. "height": "36px"
  9723. }
  9724. }).form; //创建窗体
  9725. _taskbar = {
  9726. "id": str + _formdiv.id,
  9727. "style": {
  9728. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9729. },
  9730. "name": "电子白板",
  9731. "forms": _formdiv,
  9732. "click": function () {
  9733. U.MD.D.I.openApplication(str, obj, info);
  9734. }
  9735. }
  9736. break;
  9737. case "mind":
  9738. aTool = 3;
  9739. _iframe = $$("iframe", {
  9740. "frameborder": "no",
  9741. "border": "0",
  9742. "scrolling ": "no",
  9743. "style": {
  9744. "cssText": "border:0;width:100%;height:100%"
  9745. },
  9746. "src": "/kityminder-editor/dist/index.html"
  9747. });
  9748. _box.appendChild(_iframe);
  9749. _box.appendChild(_jie);
  9750. _formdiv = new U.UF.UI.form(
  9751. "思维导图",
  9752. _box, { //"/jsmind/example/demo.html"
  9753. "id": "minds" + cid + stage + task + tool,
  9754. "style": {
  9755. "width": "90%",
  9756. "height": "90%",
  9757. "overflow": 'hidden'
  9758. },
  9759. "onresize": function () { }
  9760. }, {
  9761. closecallback: function () { }
  9762. }, {
  9763. "style": {
  9764. "height": "36px"
  9765. }
  9766. }).form; //创建窗体
  9767. _taskbar = {
  9768. "id": str + _formdiv.id,
  9769. "style": {
  9770. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9771. },
  9772. "name": "思维导图",
  9773. "forms": _formdiv,
  9774. "click": function () {
  9775. U.MD.D.I.openApplication(str, obj, info);
  9776. }
  9777. }
  9778. break;
  9779. case "doc":
  9780. aTool = 6;
  9781. _iframe = $$("iframe", {
  9782. "frameborder": "no",
  9783. "border": "0",
  9784. "scrolling ": "no",
  9785. "style": {
  9786. "cssText": "border:0;width:100%;height:100%"
  9787. },
  9788. "src": "/Office/Word/WordEditArea.htm"
  9789. })
  9790. _box.appendChild(_iframe);
  9791. _box.appendChild(_jie);
  9792. _formdiv = new U.UF.UI.form(
  9793. "协同文档",
  9794. _box, {
  9795. "id": "docs" + cid + stage + task + tool,
  9796. "style": {
  9797. "width": "90%",
  9798. "height": "90%",
  9799. "overflow": 'hidden'
  9800. },
  9801. "onresize": function () { }
  9802. }, {
  9803. closecallback: function () { }
  9804. }, {
  9805. "style": {
  9806. "height": "36px"
  9807. }
  9808. }).form; //创建窗体
  9809. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9810. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9811. })
  9812. _taskbar = {
  9813. "id": str + _formdiv.id,
  9814. "style": {
  9815. "backgroundImage": "url(/img/icon/doc.png)"
  9816. },
  9817. "name": "协同文档",
  9818. "forms": _formdiv,
  9819. "click": function () {
  9820. U.MD.D.I.openApplication(str, obj, info);
  9821. }
  9822. }
  9823. break;
  9824. }
  9825. const script1 = document.createElement("script");
  9826. script1.type = "text/javascript";
  9827. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9828. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9829. const script2 = document.createElement("script");
  9830. script2.type = "text/javascript";
  9831. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9832. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9833. const script3 = document.createElement("script");
  9834. script3.type = "text/javascript";
  9835. script3.charset = "UTF-8";
  9836. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9837. const script4 = document.createElement("script");
  9838. script4.type = "text/javascript";
  9839. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9840. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9841. if (_iframe) {
  9842. if (str == 'doc') {
  9843. _iframe = _formdiv.querySelector('iframe')
  9844. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9845. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9846. _iframe.contentWindow.document.body.appendChild(script1);
  9847. _iframe.contentWindow.document.body.appendChild(script2);
  9848. // _iframe.contentWindow.document.body.appendChild(script3);
  9849. _iframe.contentWindow.document.body.appendChild(script4);
  9850. })
  9851. if (onloadListener) {
  9852. _iframe.contentDocument.location.reload()
  9853. } else {
  9854. _iframe.contentDocument.location.reload()
  9855. }
  9856. } else if (str == 'mind') {
  9857. _iframe = _formdiv.querySelector('iframe')
  9858. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9859. _iframe.contentWindow.document.body.appendChild(script1);
  9860. _iframe.contentWindow.document.body.appendChild(script2);
  9861. _iframe.contentWindow.document.body.appendChild(script4);
  9862. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9863. })
  9864. if (onloadListener) {
  9865. _iframe.contentDocument.location.reload()
  9866. } else {
  9867. _iframe.contentDocument.location.reload()
  9868. }
  9869. } else {
  9870. _iframe.onload = () => {
  9871. _iframe.contentWindow.document.body.appendChild(script1);
  9872. _iframe.contentWindow.document.body.appendChild(script2);
  9873. // _iframe.contentWindow.document.body.appendChild(script3);
  9874. _iframe.contentWindow.document.body.appendChild(script4);
  9875. };
  9876. }
  9877. _jie.onclick = async () => {
  9878. let text = ''
  9879. if (aTool == 6) {
  9880. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9881. } else if (aTool == 3) {
  9882. text = await U.MD.D.I.getEditorContent(_iframe);
  9883. }
  9884. _loading.style.display = 'flex'
  9885. console.log(_loading);
  9886. var _ajs = _iframe.contentWindow.document.createElement("script");
  9887. _ajs.type = "text/javascript";
  9888. _ajs.innerHTML =
  9889. // 'console.log(' + _loading + ');\n' +
  9890. 'var _js = document.createElement("script");\n' +
  9891. '_js.type="text/javascript";\n' +
  9892. '_js.charset="UTF-8";\n' +
  9893. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9894. "_js.onload = function(){\n" +
  9895. ' var a = document.getElementsByTagName("img")\n' +
  9896. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9897. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9898. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9899. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9900. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9901. "beforeUpload_shishi(file," +
  9902. "'" +
  9903. _userid +
  9904. "'" +
  9905. ", " +
  9906. "'" +
  9907. _cid +
  9908. "'" +
  9909. ", " +
  9910. "'" +
  9911. _stage +
  9912. "'" +
  9913. ", " +
  9914. "'" +
  9915. _task +
  9916. "'" +
  9917. ", " +
  9918. "'" +
  9919. _tool +
  9920. "'" +
  9921. ", " +
  9922. "'" +
  9923. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9924. "'" +
  9925. ", " +
  9926. "'" +
  9927. aTool +
  9928. "'" +
  9929. ", " +
  9930. "`" +
  9931. text +
  9932. "`" +
  9933. ")\n" +
  9934. " });\n" +
  9935. "}\n" +
  9936. "document.head.appendChild(_js);\n";
  9937. _iframe.contentWindow.document.head.appendChild(_ajs);
  9938. }
  9939. }
  9940. //U.MD.D.I.openClick(str);
  9941. //如果有任务栏信息
  9942. // if (_taskbar) {
  9943. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9944. // }
  9945. }
  9946. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9947. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9948. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9949. _userinfo = US.userInfo, //登录用户信息
  9950. _userid = US.userInfo.userid //登录用户id
  9951. let _iframe;
  9952. let _cid = cid,
  9953. _stage = stage,
  9954. _task = task,
  9955. _tool = tool;
  9956. var _jie = $$("div", {
  9957. "style": {
  9958. "position": "absolute",
  9959. "bottom": "50px",
  9960. "right": "50px",
  9961. "zIndex": "9999",
  9962. "backgroundColor": "#2268bc",
  9963. "color": "#fff",
  9964. "padding": "12px 20px",
  9965. "cursor": "pointer",
  9966. "borderRadius": "4px",
  9967. },
  9968. "innerHTML": "确认并提交"
  9969. })
  9970. let aTool = ''
  9971. let _loading = document.createElement('div')
  9972. _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;"
  9973. // _loading.id = "";
  9974. let _lchild = document.createElement('div')
  9975. let _limg = document.createElement('img')
  9976. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9977. _limg.style = "width: 26px;margin-right: 10px;"
  9978. _lchild.appendChild(_limg)
  9979. let _lspan = document.createElement('span')
  9980. _lspan.innerHTML = "上传中..."
  9981. _lchild.appendChild(_lspan)
  9982. _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%);"
  9983. _loading.appendChild(_lchild)
  9984. var _box = $$('div', {
  9985. "style": {
  9986. "position": "relative",
  9987. "width": "100%",
  9988. "height": "100%",
  9989. },
  9990. })
  9991. _box.appendChild(_loading)
  9992. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9993. switch (str) {
  9994. case "whiteboard":
  9995. aTool = 1;
  9996. _iframe = $$("iframe", {
  9997. "frameborder": "no",
  9998. "border": "0",
  9999. "scrolling ": "no",
  10000. "style": {
  10001. "cssText": "border:0;width:100%;height:100%"
  10002. },
  10003. "src": "https://beta.iwb.cocorobo.cn/"
  10004. })
  10005. _box.appendChild(_iframe);
  10006. _box.appendChild(_jie);
  10007. _formdiv = new U.UF.UI.form(
  10008. "电子白板",
  10009. _box, {
  10010. "id": "whiteboards" + cid + stage + task + tool,
  10011. "style": {
  10012. "width": "90%",
  10013. "height": "90%",
  10014. "overflow": 'hidden'
  10015. },
  10016. "onresize": function () { }
  10017. }, {
  10018. closecallback: function () { }
  10019. }, {
  10020. "style": {
  10021. "height": "36px"
  10022. }
  10023. }).form; //创建窗体
  10024. _taskbar = {
  10025. "id": str + _formdiv.id,
  10026. "style": {
  10027. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10028. },
  10029. "name": "电子白板",
  10030. "forms": _formdiv,
  10031. "click": function () {
  10032. U.MD.D.I.openApplication(str, obj, info);
  10033. }
  10034. }
  10035. break;
  10036. case "mind":
  10037. aTool = 3;
  10038. _iframe = $$("iframe", {
  10039. "frameborder": "no",
  10040. "border": "0",
  10041. "scrolling ": "no",
  10042. "style": {
  10043. "cssText": "border:0;width:100%;height:100%"
  10044. },
  10045. "src": "/kityminder-editor/dist/index.html"
  10046. });
  10047. _box.appendChild(_iframe);
  10048. _box.appendChild(_jie);
  10049. _formdiv = new U.UF.UI.form(
  10050. "思维导图",
  10051. _box, { //"/jsmind/example/demo.html"
  10052. "id": "minds" + cid + stage + task + tool,
  10053. "style": {
  10054. "width": "90%",
  10055. "height": "90%",
  10056. "overflow": 'hidden'
  10057. },
  10058. "onresize": function () { }
  10059. }, {
  10060. closecallback: function () { }
  10061. }, {
  10062. "style": {
  10063. "height": "36px"
  10064. }
  10065. }).form; //创建窗体
  10066. _taskbar = {
  10067. "id": str + _formdiv.id,
  10068. "style": {
  10069. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10070. },
  10071. "name": "思维导图",
  10072. "forms": _formdiv,
  10073. "click": function () {
  10074. U.MD.D.I.openApplication(str, obj, info);
  10075. }
  10076. }
  10077. break;
  10078. case "doc":
  10079. aTool = 6;
  10080. _iframe = $$("iframe", {
  10081. "frameborder": "no",
  10082. "border": "0",
  10083. "scrolling ": "no",
  10084. "style": {
  10085. "cssText": "border:0;width:100%;height:100%"
  10086. },
  10087. "src": "/Office/Word/WordEditArea.htm"
  10088. })
  10089. _box.appendChild(_iframe);
  10090. _box.appendChild(_jie);
  10091. _formdiv = new U.UF.UI.form(
  10092. "协同文档",
  10093. _box, {
  10094. "id": "docs" + cid + stage + task + tool,
  10095. "style": {
  10096. "width": "90%",
  10097. "height": "90%",
  10098. "overflow": 'hidden'
  10099. },
  10100. "onresize": function () { }
  10101. }, {
  10102. closecallback: function () { }
  10103. }, {
  10104. "style": {
  10105. "height": "36px"
  10106. }
  10107. }).form; //创建窗体
  10108. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10109. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10110. })
  10111. _taskbar = {
  10112. "id": str + _formdiv.id,
  10113. "style": {
  10114. "backgroundImage": "url(/img/icon/doc.png)"
  10115. },
  10116. "name": "协同文档",
  10117. "forms": _formdiv,
  10118. "click": function () {
  10119. U.MD.D.I.openApplication(str, obj, info);
  10120. }
  10121. }
  10122. break;
  10123. }
  10124. const script1 = document.createElement("script");
  10125. script1.type = "text/javascript";
  10126. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10127. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10128. const script2 = document.createElement("script");
  10129. script2.type = "text/javascript";
  10130. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10131. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10132. const script3 = document.createElement("script");
  10133. script3.type = "text/javascript";
  10134. script3.charset = "UTF-8";
  10135. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10136. const script4 = document.createElement("script");
  10137. script4.type = "text/javascript";
  10138. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10139. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10140. if (_iframe) {
  10141. if (str == 'doc') {
  10142. _iframe = _formdiv.querySelector('iframe')
  10143. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10144. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10145. _iframe.contentWindow.document.body.appendChild(script1);
  10146. _iframe.contentWindow.document.body.appendChild(script2);
  10147. // _iframe.contentWindow.document.body.appendChild(script3);
  10148. _iframe.contentWindow.document.body.appendChild(script4);
  10149. })
  10150. if (onloadListener) {
  10151. _iframe.contentDocument.location.reload()
  10152. } else {
  10153. _iframe.contentDocument.location.reload()
  10154. }
  10155. } else if (str == 'mind') {
  10156. _iframe = _formdiv.querySelector('iframe')
  10157. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10158. _iframe.contentWindow.document.body.appendChild(script1);
  10159. _iframe.contentWindow.document.body.appendChild(script2);
  10160. _iframe.contentWindow.document.body.appendChild(script4);
  10161. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10162. })
  10163. if (onloadListener) {
  10164. _iframe.contentDocument.location.reload()
  10165. } else {
  10166. _iframe.contentDocument.location.reload()
  10167. }
  10168. } else {
  10169. _iframe.onload = () => {
  10170. _iframe.contentWindow.document.body.appendChild(script1);
  10171. _iframe.contentWindow.document.body.appendChild(script2);
  10172. // _iframe.contentWindow.document.body.appendChild(script3);
  10173. _iframe.contentWindow.document.body.appendChild(script4);
  10174. };
  10175. }
  10176. _jie.onclick = async () => {
  10177. let text = ''
  10178. if (aTool == 6) {
  10179. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10180. } else if (aTool == 3) {
  10181. text = await U.MD.D.I.getEditorContent(_iframe);
  10182. }
  10183. _loading.style.display = 'flex'
  10184. console.log(_loading);
  10185. var _ajs = _iframe.contentWindow.document.createElement("script");
  10186. _ajs.type = "text/javascript";
  10187. _ajs.innerHTML =
  10188. // 'console.log(' + _loading + ');\n' +
  10189. 'var _js = document.createElement("script");\n' +
  10190. '_js.type="text/javascript";\n' +
  10191. '_js.charset="UTF-8";\n' +
  10192. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10193. "_js.onload = function(){\n" +
  10194. ' var a = document.getElementsByTagName("img")\n' +
  10195. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10196. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10197. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10198. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10199. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10200. "beforeUpload_shishi(file," +
  10201. "'" +
  10202. _userid +
  10203. "'" +
  10204. ", " +
  10205. "'" +
  10206. _cid +
  10207. "'" +
  10208. ", " +
  10209. "'" +
  10210. _stage +
  10211. "'" +
  10212. ", " +
  10213. "'" +
  10214. _task +
  10215. "'" +
  10216. ", " +
  10217. "'" +
  10218. _tool +
  10219. "'" +
  10220. ", " +
  10221. "'" +
  10222. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10223. "'" +
  10224. ", " +
  10225. "'" +
  10226. aTool +
  10227. "'" +
  10228. ", " +
  10229. "`" +
  10230. text +
  10231. "`" +
  10232. ")\n" +
  10233. " });\n" +
  10234. "}\n" +
  10235. "document.head.appendChild(_js);\n";
  10236. _iframe.contentWindow.document.head.appendChild(_ajs);
  10237. }
  10238. }
  10239. //U.MD.D.I.openClick(str);
  10240. //如果有任务栏信息
  10241. // if (_taskbar) {
  10242. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10243. // }
  10244. }
  10245. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10246. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10247. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10248. _userinfo = US.userInfo, //登录用户信息
  10249. _userid = US.userInfo.userid //登录用户id
  10250. let _iframe;
  10251. let _cid = cid,
  10252. _stage = stage,
  10253. _task = task,
  10254. _tool = tool;
  10255. var _jie = $$("div", {
  10256. "style": {
  10257. "position": "absolute",
  10258. "bottom": "50px",
  10259. "right": "50px",
  10260. "zIndex": "9999",
  10261. "backgroundColor": "#2268bc",
  10262. "color": "#fff",
  10263. "padding": "12px 20px",
  10264. "cursor": "pointer",
  10265. "borderRadius": "4px",
  10266. },
  10267. "innerHTML": "上传模板"
  10268. })
  10269. let aTool = ''
  10270. let _loading = document.createElement('div')
  10271. _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;"
  10272. // _loading.id = "";
  10273. let _lchild = document.createElement('div')
  10274. let _limg = document.createElement('img')
  10275. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10276. _limg.style = "width: 26px;margin-right: 10px;"
  10277. _lchild.appendChild(_limg)
  10278. let _lspan = document.createElement('span')
  10279. _lspan.innerHTML = "上传中..."
  10280. _lchild.appendChild(_lspan)
  10281. _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%);"
  10282. _loading.appendChild(_lchild)
  10283. var _box = $$('div', {
  10284. "style": {
  10285. "position": "relative",
  10286. "width": "100%",
  10287. "height": "100%",
  10288. },
  10289. })
  10290. _box.appendChild(_loading)
  10291. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10292. switch (str) {
  10293. case "whiteboard":
  10294. aTool = 1;
  10295. _iframe = $$("iframe", {
  10296. "frameborder": "no",
  10297. "border": "0",
  10298. "scrolling ": "no",
  10299. "style": {
  10300. "cssText": "border:0;width:100%;height:100%"
  10301. },
  10302. "src": "https://beta.iwb.cocorobo.cn/"
  10303. })
  10304. _box.appendChild(_iframe);
  10305. _box.appendChild(_jie);
  10306. _formdiv = new U.UF.UI.form(
  10307. "电子白板",
  10308. _box, {
  10309. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10310. "style": {
  10311. "width": "90%",
  10312. "height": "90%",
  10313. "overflow": 'hidden'
  10314. },
  10315. "onresize": function () { }
  10316. }, {
  10317. closecallback: function () { }
  10318. }, {
  10319. "style": {
  10320. "height": "36px"
  10321. }
  10322. }).form; //创建窗体
  10323. _taskbar = {
  10324. "id": str + _formdiv.id,
  10325. "style": {
  10326. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10327. },
  10328. "name": "电子白板",
  10329. "forms": _formdiv,
  10330. "click": function () {
  10331. U.MD.D.I.openApplication(str, obj, info);
  10332. }
  10333. }
  10334. break;
  10335. case "mind":
  10336. aTool = 3;
  10337. _iframe = $$("iframe", {
  10338. "frameborder": "no",
  10339. "border": "0",
  10340. "scrolling ": "no",
  10341. "style": {
  10342. "cssText": "border:0;width:100%;height:100%"
  10343. },
  10344. "src": "/kityminder-editor/dist/index.html"
  10345. });
  10346. _box.appendChild(_iframe);
  10347. _box.appendChild(_jie);
  10348. _formdiv = new U.UF.UI.form(
  10349. "思维导图",
  10350. _box, { //"/jsmind/example/demo.html"
  10351. "id": "minds_Yu" + cid + stage + task + tool,
  10352. "style": {
  10353. "width": "90%",
  10354. "height": "90%",
  10355. "overflow": 'hidden'
  10356. },
  10357. "onresize": function () { }
  10358. }, {
  10359. closecallback: function () { }
  10360. }, {
  10361. "style": {
  10362. "height": "36px"
  10363. }
  10364. }).form; //创建窗体
  10365. _taskbar = {
  10366. "id": str + _formdiv.id,
  10367. "style": {
  10368. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10369. },
  10370. "name": "思维导图",
  10371. "forms": _formdiv,
  10372. "click": function () {
  10373. U.MD.D.I.openApplication(str, obj, info);
  10374. }
  10375. }
  10376. break;
  10377. case "doc":
  10378. aTool = 6;
  10379. _iframe = $$("iframe", {
  10380. "frameborder": "no",
  10381. "border": "0",
  10382. "scrolling ": "no",
  10383. "style": {
  10384. "cssText": "border:0;width:100%;height:100%"
  10385. },
  10386. "src": "/Office/Word/WordEditArea.htm"
  10387. })
  10388. _box.appendChild(_iframe);
  10389. _box.appendChild(_jie);
  10390. _formdiv = new U.UF.UI.form(
  10391. "协同文档",
  10392. _box, {
  10393. "id": "docs_Yu" + cid + stage + task + tool,
  10394. "style": {
  10395. "width": "90%",
  10396. "height": "90%",
  10397. "overflow": 'hidden'
  10398. },
  10399. "onresize": function () { }
  10400. }, {
  10401. closecallback: function () { }
  10402. }, {
  10403. "style": {
  10404. "height": "36px"
  10405. }
  10406. }).form; //创建窗体
  10407. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10408. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10409. })
  10410. _taskbar = {
  10411. "id": str + _formdiv.id,
  10412. "style": {
  10413. "backgroundImage": "url(/img/icon/doc.png)"
  10414. },
  10415. "name": "协同文档",
  10416. "forms": _formdiv,
  10417. "click": function () {
  10418. U.MD.D.I.openApplication(str, obj, info);
  10419. }
  10420. }
  10421. break;
  10422. case "CocoPi":
  10423. aTool = 57;
  10424. _iframe = $$("iframe", {
  10425. "allowpaymentrequest": "allowpaymentrequest",
  10426. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10427. "webkitallowfullscreen": "",
  10428. "mozallowfullscreen": "",
  10429. "frameborder": "no",
  10430. "border": "0",
  10431. "scrolling ": "no",
  10432. "style": {
  10433. "cssText": "border:0;width:100%;height:100%"
  10434. },
  10435. "src": "https://pi.cocorobo.cn/"
  10436. })
  10437. _box.appendChild(_iframe);
  10438. _box.appendChild(_jie);
  10439. _formdiv = new U.UF.UI.form(
  10440. "CocoPi",
  10441. _box, {
  10442. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10443. "style": {
  10444. "width": "90%",
  10445. "height": "90%",
  10446. "overflow": 'hidden'
  10447. },
  10448. "onresize": function () { }
  10449. }, {
  10450. closecallback: function () { }
  10451. }, {
  10452. "style": {
  10453. "height": "36px"
  10454. }
  10455. }).form; //创建窗体
  10456. _taskbar = {
  10457. "id": str + _formdiv.id,
  10458. "style": {
  10459. "backgroundImage": "url(/img/icon/cocopi.png)"
  10460. },
  10461. "name": "CocoPi",
  10462. "forms": _formdiv,
  10463. "click": function () {
  10464. U.MD.D.I.openApplication(str, obj, info);
  10465. }
  10466. }
  10467. break;
  10468. }
  10469. if (_iframe) {
  10470. if (str == 'doc') {
  10471. _iframe = _formdiv.querySelector('iframe')
  10472. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10473. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10474. })
  10475. if (onloadListener) {
  10476. _iframe.contentDocument.location.reload()
  10477. } else {
  10478. _iframe.contentDocument.location.reload()
  10479. }
  10480. } else if (str == 'mind') {
  10481. _iframe = _formdiv.querySelector('iframe')
  10482. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10483. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10484. })
  10485. if (onloadListener) {
  10486. _iframe.contentDocument.location.reload()
  10487. } else {
  10488. _iframe.contentDocument.location.reload()
  10489. }
  10490. } else if (str == 'whiteboard') {
  10491. _iframe = _formdiv.querySelector('iframe')
  10492. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10493. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10494. })
  10495. // if (onloadListener) {
  10496. // try {
  10497. // _iframe.src += "?cocorobo="+new Date().getTime()
  10498. // _iframe.contentWindow.document.location.reload()
  10499. // } catch (error) {
  10500. // }
  10501. // } else {
  10502. // _iframe.contentDocument.location.reload()
  10503. // }
  10504. } else if (str == 'CocoPi') {
  10505. _iframe = _formdiv.querySelector('iframe')
  10506. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10507. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10508. })
  10509. if (onloadListener) {
  10510. _iframe.contentDocument.location.reload()
  10511. } else {
  10512. _iframe.contentDocument.location.reload()
  10513. }
  10514. } else {
  10515. _iframe.onload = () => { };
  10516. }
  10517. _jie.onclick = async () => {
  10518. let text = ''
  10519. let type = '2'
  10520. if (aTool == 1) {
  10521. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10522. type = '3'
  10523. } else if (aTool == 6) {
  10524. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10525. type = '1'
  10526. } else if (aTool == 3) {
  10527. text = await U.MD.D.I.getEditorContent(_iframe);
  10528. type = '2'
  10529. } else if (aTool == 57) {
  10530. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10531. type = '4'
  10532. }
  10533. _loading.style.display = 'flex'
  10534. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10535. }
  10536. }
  10537. //U.MD.D.I.openClick(str);
  10538. //如果有任务栏信息
  10539. // if (_taskbar) {
  10540. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10541. // }
  10542. }
  10543. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10544. var xmlhttp;
  10545. var Mac, Sn, DeviceId
  10546. if (window.XMLHttpRequest) {
  10547. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10548. xmlhttp = new XMLHttpRequest();
  10549. } else {
  10550. // IE6, IE5 浏览器执行代码
  10551. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10552. }
  10553. xmlhttp.onreadystatechange = function () {
  10554. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10555. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10556. // resolve(res.value[0][0].text);
  10557. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10558. }
  10559. }
  10560. }
  10561. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10562. xmlhttp.send();
  10563. }
  10564. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10565. var xmlhttp;
  10566. var Mac, Sn, DeviceId
  10567. if (window.XMLHttpRequest) {
  10568. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10569. xmlhttp = new XMLHttpRequest();
  10570. } else {
  10571. // IE6, IE5 浏览器执行代码
  10572. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10573. }
  10574. xmlhttp.onreadystatechange = function () {
  10575. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10576. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10577. // resolve(res.value[0][0].text);
  10578. if (type == '2') {
  10579. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10580. } else if (type == '3') {
  10581. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10582. } else if (type == '4') {
  10583. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10584. }
  10585. } else {
  10586. if (type == '2') {
  10587. iframe.contentWindow.editor.minder.importData('json', '')
  10588. } else if (type == '3') {
  10589. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10590. } else if (type == '4') {
  10591. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10592. }
  10593. }
  10594. }
  10595. }
  10596. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10597. xmlhttp.send();
  10598. }
  10599. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10600. var xmlhttp;
  10601. var Mac, Sn, DeviceId
  10602. if (window.XMLHttpRequest) {
  10603. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10604. xmlhttp = new XMLHttpRequest();
  10605. } else {
  10606. // IE6, IE5 浏览器执行代码
  10607. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10608. }
  10609. xmlhttp.onreadystatechange = function () {
  10610. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10611. if (xmlhttp.response) {
  10612. // resolve(res.value[0][0].text);
  10613. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10614. // $(fileInput).val('');
  10615. // });
  10616. span.innerHTML = '上传成功'
  10617. setTimeout(() => {
  10618. loading.style.display = 'none'
  10619. }, 1000);
  10620. }
  10621. }
  10622. }
  10623. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10624. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10625. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10626. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10627. // 设置请求头,表示请求体的编码格式
  10628. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10629. // 设置请求体,使用url-encoded格式的数据
  10630. }
  10631. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10632. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10633. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10634. _userinfo = US.userInfo, //登录用户信息
  10635. _userid = US.userInfo.userid //登录用户id
  10636. let _iframe;
  10637. let _cid = cid,
  10638. _stage = stage,
  10639. _task = task,
  10640. _tool = tool;
  10641. var _jie = $$("div", {
  10642. "style": {
  10643. "position": "absolute",
  10644. "bottom": "50px",
  10645. "right": "50px",
  10646. "zIndex": "9999",
  10647. "backgroundColor": "#2268bc",
  10648. "color": "#fff",
  10649. "padding": "12px 20px",
  10650. "cursor": "pointer",
  10651. "borderRadius": "4px",
  10652. },
  10653. "innerHTML": "提交作业"
  10654. })
  10655. let aTool = ''
  10656. let _loading = document.createElement('div')
  10657. _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;"
  10658. // _loading.id = "";
  10659. let _lchild = document.createElement('div')
  10660. let _limg = document.createElement('img')
  10661. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10662. _limg.style = "width: 26px;margin-right: 10px;"
  10663. _lchild.appendChild(_limg)
  10664. let _lspan = document.createElement('span')
  10665. _lspan.innerHTML = "上传中..."
  10666. _lchild.appendChild(_lspan)
  10667. _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%);"
  10668. _loading.appendChild(_lchild)
  10669. var _box = $$('div', {
  10670. "style": {
  10671. "position": "relative",
  10672. "width": "100%",
  10673. "height": "100%",
  10674. },
  10675. })
  10676. _box.appendChild(_loading)
  10677. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10678. switch (str) {
  10679. case "CocoPi":
  10680. aTool = 57;
  10681. _iframe = $$("iframe", {
  10682. "allowpaymentrequest": "allowpaymentrequest",
  10683. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10684. "webkitallowfullscreen": "",
  10685. "mozallowfullscreen": "",
  10686. "frameborder": "no",
  10687. "border": "0",
  10688. "scrolling ": "no",
  10689. "style": {
  10690. "cssText": "border:0;width:100%;height:100%"
  10691. },
  10692. "src": "https://pi.cocorobo.cn/"
  10693. })
  10694. _box.appendChild(_iframe);
  10695. _box.appendChild(_jie);
  10696. _formdiv = new U.UF.UI.form(
  10697. "CocoPi",
  10698. _box, {
  10699. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10700. "style": {
  10701. "width": "90%",
  10702. "height": "90%",
  10703. "overflow": 'hidden'
  10704. },
  10705. "onresize": function () { }
  10706. }, {
  10707. closecallback: function () { }
  10708. }, {
  10709. "style": {
  10710. "height": "36px"
  10711. }
  10712. }).form; //创建窗体
  10713. _taskbar = {
  10714. "id": str + _formdiv.id,
  10715. "style": {
  10716. "backgroundImage": "url(/img/icon/cocopi.png)"
  10717. },
  10718. "name": "CocoPi",
  10719. "forms": _formdiv,
  10720. "click": function () {
  10721. U.MD.D.I.openApplication(str, obj, info);
  10722. }
  10723. }
  10724. break;
  10725. }
  10726. if (_iframe) {
  10727. if (str == 'CocoPi') {
  10728. _iframe = _formdiv.querySelector('iframe')
  10729. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10730. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10731. })
  10732. if (onloadListener) {
  10733. _iframe.contentDocument.location.reload()
  10734. } else {
  10735. _iframe.contentDocument.location.reload()
  10736. }
  10737. }
  10738. _jie.onclick = async () => {
  10739. let text = ''
  10740. if (aTool == 57) {
  10741. text = _iframe.contentWindow.getLoadXmlStr()
  10742. }
  10743. _loading.style.display = 'flex'
  10744. console.log(_loading);
  10745. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10746. _loading.style.display = 'none'
  10747. let _div = document.createElement('div')
  10748. _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;"
  10749. let _inner = document.createElement('div')
  10750. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10751. _inner.innerHTML = "上传成功"
  10752. _div.appendChild(_inner)
  10753. _iframe.contentWindow.window.document.body.appendChild(_div)
  10754. _div.onclick = () => {
  10755. _iframe.contentWindow.window.document.body.removeChild(_div)
  10756. }
  10757. setTimeout(() => {
  10758. _iframe.contentWindow.window.document.body.removeChild(_div)
  10759. }, 1000);
  10760. }, [], { "type": "POST", "withCredentials": true });
  10761. }
  10762. }
  10763. }
  10764. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10765. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10766. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10767. _userid = student.userid, //登录用户id
  10768. _username = student.student //用户名字
  10769. let _iframe;
  10770. let _cid = cid,
  10771. _stage = stage,
  10772. _task = task,
  10773. _tool = tool;
  10774. var _jie = $$("div", {
  10775. "style": {
  10776. "position": "absolute",
  10777. "bottom": "50px",
  10778. "right": "50px",
  10779. "zIndex": "9999",
  10780. "backgroundColor": "#2268bc",
  10781. "color": "#fff",
  10782. "padding": "12px 20px",
  10783. "cursor": "pointer",
  10784. "borderRadius": "4px",
  10785. },
  10786. "innerHTML": "提交作业"
  10787. })
  10788. let aTool = ''
  10789. let _loading = document.createElement('div')
  10790. _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;"
  10791. // _loading.id = "";
  10792. let _lchild = document.createElement('div')
  10793. let _limg = document.createElement('img')
  10794. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10795. _limg.style = "width: 26px;margin-right: 10px;"
  10796. _lchild.appendChild(_limg)
  10797. let _lspan = document.createElement('span')
  10798. _lspan.innerHTML = "上传中..."
  10799. _lchild.appendChild(_lspan)
  10800. _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%);"
  10801. _loading.appendChild(_lchild)
  10802. var _box = $$('div', {
  10803. "style": {
  10804. "position": "relative",
  10805. "width": "100%",
  10806. "height": "100%",
  10807. },
  10808. })
  10809. _box.appendChild(_loading)
  10810. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10811. switch (str) {
  10812. case "CocoPi":
  10813. aTool = 57;
  10814. _iframe = $$("iframe", {
  10815. "allowpaymentrequest": "allowpaymentrequest",
  10816. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10817. "webkitallowfullscreen": "",
  10818. "mozallowfullscreen": "",
  10819. "frameborder": "no",
  10820. "border": "0",
  10821. "scrolling ": "no",
  10822. "style": {
  10823. "cssText": "border:0;width:100%;height:100%"
  10824. },
  10825. "src": "https://pi.cocorobo.cn/"
  10826. })
  10827. _box.appendChild(_iframe);
  10828. _box.appendChild(_jie);
  10829. _formdiv = new U.UF.UI.form(
  10830. "CocoPi-" + _username,
  10831. _box, {
  10832. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10833. "style": {
  10834. "width": "90%",
  10835. "height": "90%",
  10836. "overflow": 'hidden'
  10837. },
  10838. "onresize": function () { }
  10839. }, {
  10840. closecallback: function () { }
  10841. }, {
  10842. "style": {
  10843. "height": "36px"
  10844. }
  10845. }).form; //创建窗体
  10846. _taskbar = {
  10847. "id": str + _formdiv.id,
  10848. "style": {
  10849. "backgroundImage": "url(/img/icon/cocopi.png)"
  10850. },
  10851. "name": "CocoPi",
  10852. "forms": _formdiv,
  10853. "click": function () {
  10854. U.MD.D.I.openApplication(str, obj, info);
  10855. }
  10856. }
  10857. break;
  10858. }
  10859. if (_iframe) {
  10860. if (str == 'CocoPi') {
  10861. _iframe = _formdiv.querySelector('iframe')
  10862. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10863. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10864. })
  10865. if (onloadListener) {
  10866. _iframe.contentDocument.location.reload()
  10867. } else {
  10868. _iframe.contentDocument.location.reload()
  10869. }
  10870. }
  10871. _jie.onclick = async () => {
  10872. let text = ''
  10873. if (aTool == 57) {
  10874. text = _iframe.contentWindow.getLoadXmlStr()
  10875. }
  10876. _loading.style.display = 'flex'
  10877. console.log(_loading);
  10878. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10879. _loading.style.display = 'none'
  10880. let _div = document.createElement('div')
  10881. _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;"
  10882. let _inner = document.createElement('div')
  10883. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10884. _inner.innerHTML = "上传成功"
  10885. _div.appendChild(_inner)
  10886. _iframe.contentWindow.window.document.body.appendChild(_div)
  10887. _div.onclick = () => {
  10888. _iframe.contentWindow.window.document.body.removeChild(_div)
  10889. }
  10890. setTimeout(() => {
  10891. _iframe.contentWindow.window.document.body.removeChild(_div)
  10892. }, 1000);
  10893. }, [], { "type": "POST", "withCredentials": true });
  10894. }
  10895. }
  10896. }
  10897. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10898. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10899. if (res.value[0].length > 0) {
  10900. if (atool == 57) {
  10901. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10902. }
  10903. } else {
  10904. if (atool == 57) {
  10905. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10906. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10907. }
  10908. }
  10909. }, [], { "type": "POST", "withCredentials": true });
  10910. }
  10911. U.MD.D.addOp = function(text,type,time){
  10912. var userInfo = US.userInfo;
  10913. if(Object.keys(userInfo).length !== 0){
  10914. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10915. }, [], { "type": "POST", "withCredentials": true });
  10916. }
  10917. }