DeskTop.js 621 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  928. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  929. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  930. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  931. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  932. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  933. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  935. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  936. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  937. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  938. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  939. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  940. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  941. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  942. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  943. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  944. ];
  945. //未来教育基地
  946. U.MD.D.I.szjkyAdminDeskIcon = [
  947. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  948. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  949. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  950. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  951. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  952. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  953. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  954. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  955. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  956. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  957. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  958. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  959. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  960. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  961. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  962. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  963. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  964. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  965. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  966. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  967. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  968. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  969. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  970. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  971. ];
  972. //未来教育基地
  973. U.MD.D.I.szjkyStudentDeskIcon = [
  974. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  975. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  976. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  977. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  978. ];
  979. //成华教育局
  980. U.MD.D.I.chjyjTeacherDeskIcon = [
  981. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  982. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  983. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  984. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  985. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  986. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  987. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  988. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  989. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  990. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  991. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  992. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  993. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  994. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  995. ];
  996. //成华教育局chjyj
  997. U.MD.D.I.chjyjAdminDeskIcon = [
  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": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1005. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1006. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1007. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1008. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1009. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1010. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1011. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1012. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1013. ];
  1014. //成华教育局chjyj
  1015. U.MD.D.I.chjyjStudentDeskIcon = [
  1016. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1017. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. ];
  1021. //tpc
  1022. U.MD.D.I.tpcStudentDeskIcon = [
  1023. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1024. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1025. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1026. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1027. ];
  1028. //tpc
  1029. U.MD.D.I.tpcTeacherDeskIcon = [
  1030. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1031. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1032. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1033. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1034. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1035. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1036. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcAdminDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //THU-IOE
  1049. U.MD.D.I.thuioeTeacherDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1053. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1057. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1058. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1059. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1060. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1061. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1062. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1063. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1064. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1065. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1066. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1067. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1068. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1069. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1070. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1071. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1072. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1073. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1074. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1075. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1076. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1077. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1078. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1079. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1080. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1081. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1082. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1083. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1084. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1085. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1086. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1087. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1089. ];
  1090. //THU-IOE
  1091. U.MD.D.I.thuioeStudentDeskIcon = [
  1092. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1093. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1094. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. ];
  1097. //jccssyl
  1098. U.MD.D.I.jccssylTeacherDeskIcon = [
  1099. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1100. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1101. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1102. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1106. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1107. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1108. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1109. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1110. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1112. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1114. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1115. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1116. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1117. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1118. ];
  1119. //jccssyl
  1120. U.MD.D.I.jccssylStudentDeskIcon = [
  1121. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1122. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1123. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. ];
  1126. //cale
  1127. U.MD.D.I.caleTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1135. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1136. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1137. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1138. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1139. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1140. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1141. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1142. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1144. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1145. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1147. ];
  1148. //cale
  1149. U.MD.D.I.caleStudentDeskIcon = [
  1150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1151. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1152. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. ];
  1155. //lqwmsgzs
  1156. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1157. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1158. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1159. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1160. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1167. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1168. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1169. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1170. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1171. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1172. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1173. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1174. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1175. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1176. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1177. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1178. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1179. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1180. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1181. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1182. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1183. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1184. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1185. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1186. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1187. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1188. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1189. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1190. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1191. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1192. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1193. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1194. ];
  1195. //lqwmsgzs
  1196. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1197. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1198. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1199. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. ];
  1202. //盐田区幼儿园
  1203. U.MD.D.I.ytyTeacherDeskIcon = [
  1204. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1205. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1206. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1207. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1210. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1211. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1212. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1213. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1214. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1215. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1216. ];
  1217. //盐田区幼儿园
  1218. U.MD.D.I.ytyStudentDeskIcon = [
  1219. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. ];
  1223. //scnuai
  1224. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1225. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1226. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1228. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1229. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1230. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1231. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1232. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1235. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1236. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1237. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1238. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1243. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1244. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1245. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1246. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1247. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1248. ];
  1249. //scnuai
  1250. U.MD.D.I.scnuaiAdminDeskIcon = [
  1251. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1252. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1253. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1254. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1255. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1256. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1257. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1258. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1259. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1260. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1261. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1262. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1263. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1264. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1266. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1267. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1268. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1269. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1270. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1271. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1272. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1273. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1274. ];
  1275. //scnuai
  1276. U.MD.D.I.scnuaiStudentDeskIcon = [
  1277. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1278. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1279. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1280. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1281. ];
  1282. //cocobiz
  1283. U.MD.D.I.cocobizteacherDeskIcon = [
  1284. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1285. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1289. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1290. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1291. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1292. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1293. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1294. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1295. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1296. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1297. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1298. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1299. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1300. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1301. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1302. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1303. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1304. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1305. ];
  1306. //cocobiz
  1307. U.MD.D.I.cocobizStudentDeskIcon = [
  1308. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1309. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1310. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1311. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. ];
  1315. //xxzjky
  1316. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1317. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1318. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1319. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1320. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1321. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1322. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1323. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1324. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1325. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1326. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1327. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1328. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1329. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1330. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1331. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1332. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1333. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1334. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1335. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1336. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1337. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1338. ];
  1339. //xxzjky
  1340. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1341. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1344. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. ];
  1348. //nsfx
  1349. U.MD.D.I.nsfxTeacherDeskIcon = [
  1350. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1352. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1353. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1354. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1355. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1356. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1357. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1358. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1359. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1360. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1361. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1362. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1365. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1366. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1367. ];
  1368. //nsfx
  1369. U.MD.D.I.nsfxStudentDeskIcon = [
  1370. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. ];
  1375. //stia
  1376. U.MD.D.I.stiaTeacherDeskIcon = [
  1377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1381. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1386. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1387. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1388. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1389. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1390. ];
  1391. //stia
  1392. U.MD.D.I.stiaStudentDeskIcon = [
  1393. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1394. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1395. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1396. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1397. ];
  1398. //szdjg
  1399. U.MD.D.I.szdjgTeacherDeskIcon = [
  1400. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1401. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. ];
  1403. //szdjg
  1404. U.MD.D.I.szdjgStudentDeskIcon = [
  1405. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1406. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1407. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1409. ];
  1410. //010607
  1411. U.MD.D.I.x010607TeacherDeskIcon = [
  1412. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1413. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1415. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1416. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1417. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1418. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1419. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1420. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1421. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1422. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1423. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1424. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1425. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1426. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1427. ];
  1428. //010607
  1429. U.MD.D.I.x010607StudentDeskIcon = [
  1430. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1431. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1432. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. ];
  1435. //010608
  1436. U.MD.D.I.x010608TeacherDeskIcon = [
  1437. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1438. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1440. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1441. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1442. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1443. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1445. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1447. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1448. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1449. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1450. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608StudentDeskIcon = [
  1454. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1455. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1456. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1457. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. ];
  1459. //xhly
  1460. U.MD.D.I.xhlyTeacherDeskIcon = [
  1461. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1462. ];
  1463. //010608
  1464. U.MD.D.I.xhlyStudentDeskIcon = [
  1465. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. ];
  1467. //北师大
  1468. U.MD.D.I.BSDNSteacherDeskIcon = [
  1469. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1470. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1472. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1473. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1474. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1475. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1476. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1477. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1478. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1479. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1480. ];
  1481. //北师大
  1482. U.MD.D.I.BSDNSstudentDeskIcon = [
  1483. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1484. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1485. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1487. ];
  1488. //CUHK_EDU
  1489. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1490. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1491. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1493. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1494. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1495. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1496. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1500. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1501. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1502. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1503. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1507. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1508. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1509. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. ];
  1512. //010503
  1513. U.MD.D.I.x010503TeacherDeskIcon = [
  1514. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1515. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. ];
  1517. //010503
  1518. U.MD.D.I.x010503StudentDeskIcon = [
  1519. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1520. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1521. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1523. ];
  1524. //SPROUT Lab
  1525. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1526. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1527. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1529. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1530. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1531. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1532. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1533. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1534. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1535. ];
  1536. //SPROUT Lab
  1537. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1538. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1539. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. ];
  1542. //010204
  1543. U.MD.D.I.x010204TeacherDeskIcon = [
  1544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1546. ];
  1547. //010204
  1548. U.MD.D.I.x010204StudentDeskIcon = [
  1549. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1552. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1553. ];
  1554. //trail
  1555. U.MD.D.I.trailTeacherDeskIcon = [
  1556. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1557. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1558. ];
  1559. //trail
  1560. U.MD.D.I.trailStudentDeskIcon = [
  1561. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1562. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1565. ];
  1566. //#region 桌面初始化a
  1567. /**
  1568. * 初始化桌面的起始函数
  1569. *
  1570. */
  1571. U.MD.D.I.init = function () {
  1572. if ($("#U_MD_D_K")[0]) {
  1573. //初始化桌面图标
  1574. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1575. // var clickUrl = ':12588/requestIp.php';
  1576. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1577. // U.MD.D.I.Ip = data;
  1578. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1579. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1580. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1581. // })
  1582. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1583. // })
  1584. }
  1585. }
  1586. /**
  1587. * 模式切换
  1588. *
  1589. */
  1590. U.MD.D.I.ModeCheck = function (type) {
  1591. if (US.Config.type == type) {
  1592. return
  1593. }
  1594. US.Config.type = type
  1595. $('.U_PBL_Check .active')[0].className = ''
  1596. if (type == 1) {
  1597. $('.U_PBL_Check div')[0].className = 'active'
  1598. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1599. } else {
  1600. $('.U_PBL_Check div')[1].className = 'active'
  1601. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1602. }
  1603. //初始化桌面图标
  1604. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1605. if (type == 2) {
  1606. U.MD.D.I.openApplication("project")
  1607. }
  1608. }
  1609. /**
  1610. * 隐藏任务栏
  1611. *
  1612. * @param {element} 桌面元素
  1613. */
  1614. U.MD.D.I.hiddenTaskbar = function (el) {
  1615. //任务栏位置变小
  1616. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1617. //桌面的位置变大
  1618. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1619. }
  1620. /**
  1621. * 隐藏任务栏
  1622. *
  1623. * @param {element} 桌面元素
  1624. */
  1625. U.MD.D.I.hiddenTaskbarout = function (el) {
  1626. //任务栏位置变小
  1627. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1628. //任务栏位置变化
  1629. U.selectEl(el).css({ "bottom": "-60px" });
  1630. //桌面的位置变大
  1631. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1632. }
  1633. }
  1634. /**
  1635. * 初始化打印桌面图标
  1636. *
  1637. * @param {element} 桌面元素
  1638. */
  1639. U.MD.D.I.initDesktopIcons = function (el, type) {
  1640. var i, //用于循环
  1641. _content, //桌面图标元素
  1642. _iconcontent, //桌面图标元素
  1643. _frag = $$("frag"), //定义一个碎片元素
  1644. _type = US.userInfo.type,
  1645. _org = US.userInfo.org,
  1646. _oid = US.userInfo.organizeid,
  1647. _role = US.userInfo.role,
  1648. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1649. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1650. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1651. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1652. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1653. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1654. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1655. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1656. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1657. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1658. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1659. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1660. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1661. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1662. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1663. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1664. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1665. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1666. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1667. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1668. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1669. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1670. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1671. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1672. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1673. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1674. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1675. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1676. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1677. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1678. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1679. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1680. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1681. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1682. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1683. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1684. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1685. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1686. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1687. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1688. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1689. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1690. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1691. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1692. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1693. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1694. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1695. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1696. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1697. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1698. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1699. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1700. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1701. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1702. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1703. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1704. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1705. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1706. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1707. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1708. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1709. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1710. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1711. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1712. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1713. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1714. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1715. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1716. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1717. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1718. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1719. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1720. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1721. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1722. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1723. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1724. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1725. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1726. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1727. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1728. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1729. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1730. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1731. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1732. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1733. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1734. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1735. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1736. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1737. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1738. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1739. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1740. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1741. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1742. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1743. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1744. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1745. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1746. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1747. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5'];
  1748. 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'];
  1749. //清楚桌面图标
  1750. el.innerHTML = "";
  1751. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1752. _teacherDesktopIconInfo.push(
  1753. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1754. { "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)" } },
  1755. )
  1756. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1757. }
  1758. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1759. _teacherDesktopIconInfo.push(
  1760. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1761. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1762. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1763. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1764. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1765. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1766. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1767. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1768. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1769. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1770. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1771. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1772. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1773. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1774. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1775. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1776. )
  1777. }
  1778. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1779. _teacherDesktopIconInfo.push(
  1780. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1781. )
  1782. }
  1783. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1784. // _teacherDesktopIconInfo.push(
  1785. // )
  1786. // }
  1787. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1788. _teacherDesktopIconInfo.push(
  1789. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1790. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1791. )
  1792. }
  1793. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1794. _teacherDesktopIconInfo.push(
  1795. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1796. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1797. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1798. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1799. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1800. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1801. )
  1802. _studentDesktopIconInfo.push(
  1803. )
  1804. }
  1805. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1806. _teacherDesktopIconInfo.push(
  1807. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1808. )
  1809. _studentDesktopIconInfo.push(
  1810. )
  1811. }
  1812. //010606 组织
  1813. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1814. _teacherDesktopIconInfo.push(
  1815. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1816. )
  1817. _studentDesktopIconInfo.push(
  1818. )
  1819. }
  1820. //麒麟二中 和 民新小学
  1821. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1822. _teacherDesktopIconInfo.push(
  1823. )
  1824. }
  1825. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1826. _teacherDesktopIconInfo.push(
  1827. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1828. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1829. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1830. )
  1831. }
  1832. //北师大附中(010601)
  1833. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1834. // _teacherDesktopIconInfo.push(
  1835. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1836. // )
  1837. // _studentDesktopIconInfo.push(
  1838. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1839. // )
  1840. // }
  1841. //樂善堂余近卿中學
  1842. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1843. _teacherDesktopIconInfo.push(
  1844. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1845. )
  1846. }
  1847. // Education Artificial Intelligence
  1848. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1849. _teacherDesktopIconInfo.push(
  1850. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1851. )
  1852. }
  1853. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1854. _teacherDesktopIconInfo.push(
  1855. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1856. )
  1857. }
  1858. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1859. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1860. _teacherDesktopIconInfo.push(
  1861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1863. )
  1864. }
  1865. //麒麟二中
  1866. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1867. _studentDesktopIconInfo.push(
  1868. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1869. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1870. )
  1871. }
  1872. //万科双语
  1873. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1874. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1875. if (el.Name == '项目管理') {
  1876. el.Name = 'PBL项目'
  1877. }
  1878. return el
  1879. })
  1880. _studentDesktopIconInfo3.push(
  1881. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1882. )
  1883. }
  1884. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1885. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1886. return el.Name != '魔盒识字' && el.Name != '24点'
  1887. })
  1888. }
  1889. 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) {
  1890. _studentDesktopIconInfo.push(
  1891. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1892. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1893. )
  1894. }
  1895. //循环创建桌面图标
  1896. if (type == 1) {
  1897. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1898. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1899. _content = $$("div", {
  1900. className: "U_MD_D_KO",
  1901. "onmousedown": U.UF.C.closure(function (obj) {
  1902. //防止拖动图标即打开了桌面应用
  1903. U.MD.D.click(this, obj);
  1904. }, [_studentDesktopIconInfo[i]]),
  1905. "onclick": U.UF.C.closure(function (obj) {
  1906. //防止拖动图标即打开了桌面应用
  1907. U.MD.D.click(this, obj);
  1908. }, [_studentDesktopIconInfo[i]])
  1909. }, _frag); //
  1910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1913. }
  1914. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1915. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1916. _content = $$("div", {
  1917. className: "U_MD_D_KO",
  1918. "onmousedown": U.UF.C.closure(function (obj) {
  1919. //防止拖动图标即打开了桌面应用
  1920. U.MD.D.click(this, obj);
  1921. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1922. "onclick": U.UF.C.closure(function (obj) {
  1923. //防止拖动图标即打开了桌面应用
  1924. U.MD.D.click(this, obj);
  1925. }, [_hkZJLSStudentDeskIconInfo[i]])
  1926. }, _frag); //
  1927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1930. } //
  1931. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1932. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1933. _content = $$("div", {
  1934. className: "U_MD_D_KO",
  1935. "onmousedown": U.UF.C.closure(function (obj) {
  1936. //防止拖动图标即打开了桌面应用
  1937. U.MD.D.click(this, obj);
  1938. }, [_ytyStudentDeskIconInfo[i]]),
  1939. "onclick": U.UF.C.closure(function (obj) {
  1940. //防止拖动图标即打开了桌面应用
  1941. U.MD.D.click(this, obj);
  1942. }, [_ytyStudentDeskIconInfo[i]])
  1943. }, _frag); //
  1944. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1945. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1946. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1947. } //
  1948. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1949. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1950. _content = $$("div", {
  1951. className: "U_MD_D_KO",
  1952. "onmousedown": U.UF.C.closure(function (obj) {
  1953. //防止拖动图标即打开了桌面应用
  1954. U.MD.D.click(this, obj);
  1955. }, [_jccssylStudentDeskIconInfo[i]]),
  1956. "onclick": U.UF.C.closure(function (obj) {
  1957. //防止拖动图标即打开了桌面应用
  1958. U.MD.D.click(this, obj);
  1959. }, [_jccssylStudentDeskIconInfo[i]])
  1960. }, _frag); //
  1961. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1962. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1963. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1964. }
  1965. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1966. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1967. _content = $$("div", {
  1968. className: "U_MD_D_KO",
  1969. "onmousedown": U.UF.C.closure(function (obj) {
  1970. //防止拖动图标即打开了桌面应用
  1971. U.MD.D.click(this, obj);
  1972. }, [_scnuaiStudentDeskIconInfo[i]]),
  1973. "onclick": U.UF.C.closure(function (obj) {
  1974. //防止拖动图标即打开了桌面应用
  1975. U.MD.D.click(this, obj);
  1976. }, [_scnuaiStudentDeskIconInfo[i]])
  1977. }, _frag); //
  1978. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1979. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1980. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1981. }
  1982. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1983. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1984. _content = $$("div", {
  1985. className: "U_MD_D_KO",
  1986. "onmousedown": U.UF.C.closure(function (obj) {
  1987. //防止拖动图标即打开了桌面应用
  1988. U.MD.D.click(this, obj);
  1989. }, [_caleStudentDeskIconInfo[i]]),
  1990. "onclick": U.UF.C.closure(function (obj) {
  1991. //防止拖动图标即打开了桌面应用
  1992. U.MD.D.click(this, obj);
  1993. }, [_caleStudentDeskIconInfo[i]])
  1994. }, _frag); //
  1995. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1996. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1997. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1998. }
  1999. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2000. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2001. _content = $$("div", {
  2002. className: "U_MD_D_KO",
  2003. "onmousedown": U.UF.C.closure(function (obj) {
  2004. //防止拖动图标即打开了桌面应用
  2005. U.MD.D.click(this, obj);
  2006. }, [_thuioeStudentDeskIconInfo[i]]),
  2007. "onclick": U.UF.C.closure(function (obj) {
  2008. //防止拖动图标即打开了桌面应用
  2009. U.MD.D.click(this, obj);
  2010. }, [_thuioeStudentDeskIconInfo[i]])
  2011. }, _frag); //
  2012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2015. }
  2016. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2017. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2018. _content = $$("div", {
  2019. className: "U_MD_D_KO",
  2020. "onmousedown": U.UF.C.closure(function (obj) {
  2021. //防止拖动图标即打开了桌面应用
  2022. U.MD.D.click(this, obj);
  2023. }, [_tpcStudentDeskIconInfo[i]]),
  2024. "onclick": U.UF.C.closure(function (obj) {
  2025. //防止拖动图标即打开了桌面应用
  2026. U.MD.D.click(this, obj);
  2027. }, [_tpcStudentDeskIconInfo[i]])
  2028. }, _frag); //
  2029. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2030. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2031. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2032. } //
  2033. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2034. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2035. _content = $$("div", {
  2036. className: "U_MD_D_KO",
  2037. "onmousedown": U.UF.C.closure(function (obj) {
  2038. //防止拖动图标即打开了桌面应用
  2039. U.MD.D.click(this, obj);
  2040. }, [_chjyjStudentDeskIconInfo[i]]),
  2041. "onclick": U.UF.C.closure(function (obj) {
  2042. //防止拖动图标即打开了桌面应用
  2043. U.MD.D.click(this, obj);
  2044. }, [_chjyjStudentDeskIconInfo[i]])
  2045. }, _frag); //
  2046. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2047. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2048. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2049. }
  2050. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2051. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2052. _content = $$("div", {
  2053. className: "U_MD_D_KO",
  2054. "onmousedown": U.UF.C.closure(function (obj) {
  2055. //防止拖动图标即打开了桌面应用
  2056. U.MD.D.click(this, obj);
  2057. }, [_szjkyStudentDeskIconInfo[i]]),
  2058. "onclick": U.UF.C.closure(function (obj) {
  2059. //防止拖动图标即打开了桌面应用
  2060. U.MD.D.click(this, obj);
  2061. }, [_szjkyStudentDeskIconInfo[i]])
  2062. }, _frag); //
  2063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2066. }
  2067. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2068. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2069. _content = $$("div", {
  2070. className: "U_MD_D_KO",
  2071. "onmousedown": U.UF.C.closure(function (obj) {
  2072. //防止拖动图标即打开了桌面应用
  2073. U.MD.D.click(this, obj);
  2074. }, [_dseiStudentDeskIconInfo[i]]),
  2075. "onclick": U.UF.C.closure(function (obj) {
  2076. //防止拖动图标即打开了桌面应用
  2077. U.MD.D.click(this, obj);
  2078. }, [_dseiStudentDeskIconInfo[i]])
  2079. }, _frag); //
  2080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2083. }
  2084. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2085. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2086. _content = $$("div", {
  2087. className: "U_MD_D_KO",
  2088. "onmousedown": U.UF.C.closure(function (obj) {
  2089. //防止拖动图标即打开了桌面应用
  2090. U.MD.D.click(this, obj);
  2091. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2092. "onclick": U.UF.C.closure(function (obj) {
  2093. //防止拖动图标即打开了桌面应用
  2094. U.MD.D.click(this, obj);
  2095. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2096. }, _frag); //
  2097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2100. }
  2101. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2102. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2103. _content = $$("div", {
  2104. className: "U_MD_D_KO",
  2105. "onmousedown": U.UF.C.closure(function (obj) {
  2106. //防止拖动图标即打开了桌面应用
  2107. U.MD.D.click(this, obj);
  2108. }, [_nsfxStudentDeskIconInfo[i]]),
  2109. "onclick": U.UF.C.closure(function (obj) {
  2110. //防止拖动图标即打开了桌面应用
  2111. U.MD.D.click(this, obj);
  2112. }, [_nsfxStudentDeskIconInfo[i]])
  2113. }, _frag); //
  2114. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2115. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2116. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2117. }
  2118. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2119. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2120. _content = $$("div", {
  2121. className: "U_MD_D_KO",
  2122. "onmousedown": U.UF.C.closure(function (obj) {
  2123. //防止拖动图标即打开了桌面应用
  2124. U.MD.D.click(this, obj);
  2125. }, [_stiaStudentDeskIconInfo[i]]),
  2126. "onclick": U.UF.C.closure(function (obj) {
  2127. //防止拖动图标即打开了桌面应用
  2128. U.MD.D.click(this, obj);
  2129. }, [_stiaStudentDeskIconInfo[i]])
  2130. }, _frag); //
  2131. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2132. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2133. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2134. }
  2135. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2136. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2137. _content = $$("div", {
  2138. className: "U_MD_D_KO",
  2139. "onmousedown": U.UF.C.closure(function (obj) {
  2140. //防止拖动图标即打开了桌面应用
  2141. U.MD.D.click(this, obj);
  2142. }, [_szdjgStudentDeskIconInfo[i]]),
  2143. "onclick": U.UF.C.closure(function (obj) {
  2144. //防止拖动图标即打开了桌面应用
  2145. U.MD.D.click(this, obj);
  2146. }, [_szdjgStudentDeskIconInfo[i]])
  2147. }, _frag); //
  2148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2151. }
  2152. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2153. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2154. _content = $$("div", {
  2155. className: "U_MD_D_KO",
  2156. "onmousedown": U.UF.C.closure(function (obj) {
  2157. //防止拖动图标即打开了桌面应用
  2158. U.MD.D.click(this, obj);
  2159. }, [_x010607StudentDeskIconInfo[i]]),
  2160. "onclick": U.UF.C.closure(function (obj) {
  2161. //防止拖动图标即打开了桌面应用
  2162. U.MD.D.click(this, obj);
  2163. }, [_x010607StudentDeskIconInfo[i]])
  2164. }, _frag); //
  2165. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2166. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2167. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2168. }
  2169. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2170. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2171. _content = $$("div", {
  2172. className: "U_MD_D_KO",
  2173. "onmousedown": U.UF.C.closure(function (obj) {
  2174. //防止拖动图标即打开了桌面应用
  2175. U.MD.D.click(this, obj);
  2176. }, [_xhlyStudentDeskIconInfo[i]]),
  2177. "onclick": U.UF.C.closure(function (obj) {
  2178. //防止拖动图标即打开了桌面应用
  2179. U.MD.D.click(this, obj);
  2180. }, [_xhlyStudentDeskIconInfo[i]])
  2181. }, _frag); //
  2182. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2183. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2184. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2185. }
  2186. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2187. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2188. _content = $$("div", {
  2189. className: "U_MD_D_KO",
  2190. "onmousedown": U.UF.C.closure(function (obj) {
  2191. //防止拖动图标即打开了桌面应用
  2192. U.MD.D.click(this, obj);
  2193. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2194. "onclick": U.UF.C.closure(function (obj) {
  2195. //防止拖动图标即打开了桌面应用
  2196. U.MD.D.click(this, obj);
  2197. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2198. }, _frag); //
  2199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2202. }
  2203. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2204. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2205. _content = $$("div", {
  2206. className: "U_MD_D_KO",
  2207. "onmousedown": U.UF.C.closure(function (obj) {
  2208. //防止拖动图标即打开了桌面应用
  2209. U.MD.D.click(this, obj);
  2210. }, [_x010503StudentDeskIconInfo[i]]),
  2211. "onclick": U.UF.C.closure(function (obj) {
  2212. //防止拖动图标即打开了桌面应用
  2213. U.MD.D.click(this, obj);
  2214. }, [_x010503StudentDeskIconInfo[i]])
  2215. }, _frag); //
  2216. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2217. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2218. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2219. }
  2220. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2221. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2222. _content = $$("div", {
  2223. className: "U_MD_D_KO",
  2224. "onmousedown": U.UF.C.closure(function (obj) {
  2225. //防止拖动图标即打开了桌面应用
  2226. U.MD.D.click(this, obj);
  2227. }, [_x010204StudentDeskIconInfo[i]]),
  2228. "onclick": U.UF.C.closure(function (obj) {
  2229. //防止拖动图标即打开了桌面应用
  2230. U.MD.D.click(this, obj);
  2231. }, [_x010204StudentDeskIconInfo[i]])
  2232. }, _frag); //
  2233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2236. }
  2237. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2238. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2239. _content = $$("div", {
  2240. className: "U_MD_D_KO",
  2241. "onmousedown": U.UF.C.closure(function (obj) {
  2242. //防止拖动图标即打开了桌面应用
  2243. U.MD.D.click(this, obj);
  2244. }, [_trailStudentDeskIconInfo[i]]),
  2245. "onclick": U.UF.C.closure(function (obj) {
  2246. //防止拖动图标即打开了桌面应用
  2247. U.MD.D.click(this, obj);
  2248. }, [_trailStudentDeskIconInfo[i]])
  2249. }, _frag); //
  2250. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2251. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2252. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2253. }
  2254. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2255. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2256. _content = $$("div", {
  2257. className: "U_MD_D_KO",
  2258. "onmousedown": U.UF.C.closure(function (obj) {
  2259. //防止拖动图标即打开了桌面应用
  2260. U.MD.D.click(this, obj);
  2261. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2262. "onclick": U.UF.C.closure(function (obj) {
  2263. //防止拖动图标即打开了桌面应用
  2264. U.MD.D.click(this, obj);
  2265. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2266. }, _frag); //
  2267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2270. }
  2271. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2272. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2273. _content = $$("div", {
  2274. className: "U_MD_D_KO",
  2275. "onmousedown": U.UF.C.closure(function (obj) {
  2276. //防止拖动图标即打开了桌面应用
  2277. U.MD.D.click(this, obj);
  2278. }, [_x010608StudentDeskIconInfo[i]]),
  2279. "onclick": U.UF.C.closure(function (obj) {
  2280. //防止拖动图标即打开了桌面应用
  2281. U.MD.D.click(this, obj);
  2282. }, [_x010608StudentDeskIconInfo[i]])
  2283. }, _frag); //
  2284. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2285. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2286. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2287. }
  2288. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2289. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2290. _content = $$("div", {
  2291. className: "U_MD_D_KO",
  2292. "onmousedown": U.UF.C.closure(function (obj) {
  2293. //防止拖动图标即打开了桌面应用
  2294. U.MD.D.click(this, obj);
  2295. }, [_siesStudentDeskIconInfo[i]]),
  2296. "onclick": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_siesStudentDeskIconInfo[i]])
  2300. }, _frag); //
  2301. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2302. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2303. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2304. }
  2305. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2306. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2307. _content = $$("div", {
  2308. className: "U_MD_D_KO",
  2309. "onmousedown": U.UF.C.closure(function (obj) {
  2310. //防止拖动图标即打开了桌面应用
  2311. U.MD.D.click(this, obj);
  2312. }, [_guzmsStudentDeskIconInfo[i]]),
  2313. "onclick": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_guzmsStudentDeskIconInfo[i]])
  2317. }, _frag); //
  2318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2321. }
  2322. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2323. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2324. _content = $$("div", {
  2325. className: "U_MD_D_KO",
  2326. "onmousedown": U.UF.C.closure(function (obj) {
  2327. //防止拖动图标即打开了桌面应用
  2328. U.MD.D.click(this, obj);
  2329. }, [_hkStudentDeskIconInfo[i]]),
  2330. "onclick": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_hkStudentDeskIconInfo[i]])
  2334. }, _frag); //
  2335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2338. }
  2339. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2340. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2341. _content = $$("div", {
  2342. className: "U_MD_D_KO",
  2343. "onmousedown": U.UF.C.closure(function (obj) {
  2344. //防止拖动图标即打开了桌面应用
  2345. U.MD.D.click(this, obj);
  2346. }, [_hkaceStudentDeskIconInfo[i]]),
  2347. "onclick": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_hkaceStudentDeskIconInfo[i]])
  2351. }, _frag); //
  2352. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2353. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2354. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2355. }
  2356. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2357. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2358. _content = $$("div", {
  2359. className: "U_MD_D_KO",
  2360. "onmousedown": U.UF.C.closure(function (obj) {
  2361. //防止拖动图标即打开了桌面应用
  2362. U.MD.D.click(this, obj);
  2363. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2364. "onclick": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_BSDNSstudentDesktopIconInfo[i]])
  2368. }, _frag); //
  2369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2372. }
  2373. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2374. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2375. _content = $$("div", {
  2376. className: "U_MD_D_KO",
  2377. "onmousedown": U.UF.C.closure(function (obj) {
  2378. //防止拖动图标即打开了桌面应用
  2379. U.MD.D.click(this, obj);
  2380. }, [_cocobizStudentDeskIconInfo[i]]),
  2381. "onclick": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_cocobizStudentDeskIconInfo[i]])
  2385. }, _frag); //
  2386. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2387. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2388. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2389. }
  2390. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2391. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2392. _content = $$("div", {
  2393. className: "U_MD_D_KO",
  2394. "onmousedown": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2398. "onclick": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_xxzjkyStudentDeskIconInfo[i]])
  2402. }, _frag); //
  2403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2406. }
  2407. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2408. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2409. _content = $$("div", {
  2410. className: "U_MD_D_KO",
  2411. "onmousedown": U.UF.C.closure(function (obj) {
  2412. //防止拖动图标即打开了桌面应用
  2413. U.MD.D.click(this, obj);
  2414. }, [_studentDesktopIconInfo[i]]),
  2415. "onclick": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_studentDesktopIconInfo[i]])
  2419. }, _frag); //
  2420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2423. }
  2424. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2425. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2426. _content = $$("div", {
  2427. className: "U_MD_D_KO",
  2428. "onmousedown": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_tcStudentDeskIconInfo[i]]),
  2432. "onclick": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_tcStudentDeskIconInfo[i]])
  2436. }, _frag); //
  2437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2440. }
  2441. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2442. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2443. _content = $$("div", {
  2444. className: "U_MD_D_KO",
  2445. "onmousedown": U.UF.C.closure(function (obj) {
  2446. //防止拖动图标即打开了桌面应用
  2447. U.MD.D.click(this, obj);
  2448. }, [_szscStudentDeskIconInfo[i]]),
  2449. "onclick": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_szscStudentDeskIconInfo[i]])
  2453. }, _frag); //
  2454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2457. }
  2458. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2459. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2460. _content = $$("div", {
  2461. className: "U_MD_D_KO",
  2462. "onmousedown": U.UF.C.closure(function (obj) {
  2463. //防止拖动图标即打开了桌面应用
  2464. U.MD.D.click(this, obj);
  2465. }, [_studentDesktopIconInfo3[i]]),
  2466. "onclick": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_studentDesktopIconInfo3[i]])
  2470. }, _frag); //
  2471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2474. }
  2475. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2476. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2477. _content = $$("div", {
  2478. className: "U_MD_D_KO",
  2479. "onmousedown": U.UF.C.closure(function (obj) {
  2480. //防止拖动图标即打开了桌面应用
  2481. U.MD.D.click(this, obj);
  2482. }, [_studentDesktopIconInfo2[i]]),
  2483. "onclick": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_studentDesktopIconInfo2[i]])
  2487. }, _frag); //
  2488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2491. }
  2492. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2493. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2494. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2495. continue
  2496. }
  2497. _content = $$("div", {
  2498. className: "U_MD_D_KO",
  2499. "onmousedown": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_wanketeacherDesktopIconInfo[i]]),
  2503. "onclick": U.UF.C.closure(function (obj) {
  2504. //防止拖动图标即打开了桌面应用
  2505. U.MD.D.click(this, obj);
  2506. }, [_wanketeacherDesktopIconInfo[i]])
  2507. }, _frag); //
  2508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2511. }
  2512. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2513. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2514. _content = $$("div", {
  2515. className: "U_MD_D_KO",
  2516. "onmousedown": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_wankeAdminDesktopIconInfo[i]]),
  2520. "onclick": U.UF.C.closure(function (obj) {
  2521. //防止拖动图标即打开了桌面应用
  2522. U.MD.D.click(this, obj);
  2523. }, [_wankeAdminDesktopIconInfo[i]])
  2524. }, _frag); //
  2525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2528. }
  2529. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2530. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2531. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2532. continue
  2533. }
  2534. _content = $$("div", {
  2535. className: "U_MD_D_KO",
  2536. "onmousedown": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2540. "onclick": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_scnuaiTeacherDeskIconInfo[i]])
  2544. }, _frag); //
  2545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2548. }
  2549. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2550. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2551. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2552. continue
  2553. }
  2554. _content = $$("div", {
  2555. className: "U_MD_D_KO",
  2556. "onmousedown": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2560. "onclick": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_BSDNSteacherDesktopIconInfo[i]])
  2564. }, _frag); //
  2565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2568. }
  2569. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2570. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2571. _content = $$("div", {
  2572. className: "U_MD_D_KO",
  2573. "onmousedown": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_scnuaiAdminDeskIconInfo[i]]),
  2577. "onclick": U.UF.C.closure(function (obj) {
  2578. //防止拖动图标即打开了桌面应用
  2579. U.MD.D.click(this, obj);
  2580. }, [_scnuaiAdminDeskIconInfo[i]])
  2581. }, _frag); //
  2582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2585. }
  2586. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2587. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2588. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2589. continue
  2590. }
  2591. _content = $$("div", {
  2592. className: "U_MD_D_KO",
  2593. "onmousedown": U.UF.C.closure(function (obj) {
  2594. //防止拖动图标即打开了桌面应用
  2595. U.MD.D.click(this, obj);
  2596. }, [_jccssylTeacherDeskIconInfo[i]]),
  2597. "onclick": U.UF.C.closure(function (obj) {
  2598. //防止拖动图标即打开了桌面应用
  2599. U.MD.D.click(this, obj);
  2600. }, [_jccssylTeacherDeskIconInfo[i]])
  2601. }, _frag); //
  2602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2605. }
  2606. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2607. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2608. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2609. continue
  2610. }
  2611. _content = $$("div", {
  2612. className: "U_MD_D_KO",
  2613. "onmousedown": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_caleTeacherDeskIconInfo[i]]),
  2617. "onclick": U.UF.C.closure(function (obj) {
  2618. //防止拖动图标即打开了桌面应用
  2619. U.MD.D.click(this, obj);
  2620. }, [_caleTeacherDeskIconInfo[i]])
  2621. }, _frag); //
  2622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2625. }
  2626. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2627. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2628. _content = $$("div", {
  2629. className: "U_MD_D_KO",
  2630. "onmousedown": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_tpcOrganizerDeskIconInfo[i]]),
  2634. "onclick": U.UF.C.closure(function (obj) {
  2635. //防止拖动图标即打开了桌面应用
  2636. U.MD.D.click(this, obj);
  2637. }, [_tpcOrganizerDeskIconInfo[i]])
  2638. }, _frag); //
  2639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2642. }
  2643. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2644. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2645. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2646. continue
  2647. }
  2648. _content = $$("div", {
  2649. className: "U_MD_D_KO",
  2650. "onmousedown": U.UF.C.closure(function (obj) {
  2651. //防止拖动图标即打开了桌面应用
  2652. U.MD.D.click(this, obj);
  2653. }, [_tpcTeacherDeskIconInfo[i]]),
  2654. "onclick": U.UF.C.closure(function (obj) {
  2655. //防止拖动图标即打开了桌面应用
  2656. U.MD.D.click(this, obj);
  2657. }, [_tpcTeacherDeskIconInfo[i]])
  2658. }, _frag); //
  2659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2662. }
  2663. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2664. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2665. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2666. continue
  2667. }
  2668. _content = $$("div", {
  2669. className: "U_MD_D_KO",
  2670. "onmousedown": U.UF.C.closure(function (obj) {
  2671. //防止拖动图标即打开了桌面应用
  2672. U.MD.D.click(this, obj);
  2673. }, [_teacherDesktopIconInfo2[i]]),
  2674. "onclick": U.UF.C.closure(function (obj) {
  2675. //防止拖动图标即打开了桌面应用
  2676. U.MD.D.click(this, obj);
  2677. }, [_teacherDesktopIconInfo2[i]])
  2678. }, _frag); //
  2679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2682. }
  2683. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2684. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2685. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2686. continue
  2687. }
  2688. _content = $$("div", {
  2689. className: "U_MD_D_KO",
  2690. "onmousedown": U.UF.C.closure(function (obj) {
  2691. //防止拖动图标即打开了桌面应用
  2692. U.MD.D.click(this, obj);
  2693. }, [_thuioeTeacherDeskIconInfo[i]]),
  2694. "onclick": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_thuioeTeacherDeskIconInfo[i]])
  2698. }, _frag); //
  2699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2702. }
  2703. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2704. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2705. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2706. continue
  2707. }
  2708. _content = $$("div", {
  2709. className: "U_MD_D_KO",
  2710. "onmousedown": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_lotechTeacherDeskIconInfo[i]]),
  2714. "onclick": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_lotechTeacherDeskIconInfo[i]])
  2718. }, _frag); //
  2719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2722. }//
  2723. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2724. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2725. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2726. continue
  2727. }
  2728. _content = $$("div", {
  2729. className: "U_MD_D_KO",
  2730. "onmousedown": U.UF.C.closure(function (obj) {
  2731. //防止拖动图标即打开了桌面应用
  2732. U.MD.D.click(this, obj);
  2733. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2734. "onclick": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2738. }, _frag); //
  2739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2742. }
  2743. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2744. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2745. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2746. continue
  2747. }
  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. }, [_siesTeacherDeskIconInfo[i]]),
  2754. "onclick": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_siesTeacherDeskIconInfo[i]])
  2758. }, _frag); //
  2759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2762. }
  2763. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2764. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2765. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2766. continue
  2767. }
  2768. _content = $$("div", {
  2769. className: "U_MD_D_KO",
  2770. "onmousedown": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_guzmsTeacherDeskIconInfo[i]]),
  2774. "onclick": U.UF.C.closure(function (obj) {
  2775. //防止拖动图标即打开了桌面应用
  2776. U.MD.D.click(this, obj);
  2777. }, [_guzmsTeacherDeskIconInfo[i]])
  2778. }, _frag); //
  2779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2782. }
  2783. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2784. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2785. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2786. continue
  2787. }
  2788. _content = $$("div", {
  2789. className: "U_MD_D_KO",
  2790. "onmousedown": U.UF.C.closure(function (obj) {
  2791. //防止拖动图标即打开了桌面应用
  2792. U.MD.D.click(this, obj);
  2793. }, [_longhuaTeacherDeskIconInfo[i]]),
  2794. "onclick": U.UF.C.closure(function (obj) {
  2795. //防止拖动图标即打开了桌面应用
  2796. U.MD.D.click(this, obj);
  2797. }, [_longhuaTeacherDeskIconInfo[i]])
  2798. }, _frag); //
  2799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2802. }
  2803. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2804. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2805. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2806. continue
  2807. }
  2808. _content = $$("div", {
  2809. className: "U_MD_D_KO",
  2810. "onmousedown": U.UF.C.closure(function (obj) {
  2811. //防止拖动图标即打开了桌面应用
  2812. U.MD.D.click(this, obj);
  2813. }, [_ytyTeacherDeskIconInfo[i]]),
  2814. "onclick": U.UF.C.closure(function (obj) {
  2815. //防止拖动图标即打开了桌面应用
  2816. U.MD.D.click(this, obj);
  2817. }, [_ytyTeacherDeskIconInfo[i]])
  2818. }, _frag); //
  2819. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2820. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2821. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2822. }
  2823. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2824. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2825. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2826. continue
  2827. }
  2828. _content = $$("div", {
  2829. className: "U_MD_D_KO",
  2830. "onmousedown": U.UF.C.closure(function (obj) {
  2831. //防止拖动图标即打开了桌面应用
  2832. U.MD.D.click(this, obj);
  2833. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2834. "onclick": U.UF.C.closure(function (obj) {
  2835. //防止拖动图标即打开了桌面应用
  2836. U.MD.D.click(this, obj);
  2837. }, [_yunhaiTeacherDeskIconInfo[i]])
  2838. }, _frag); //
  2839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2842. } //_hkStudentDeskIconInfo
  2843. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2844. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2845. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2846. continue
  2847. }
  2848. _content = $$("div", {
  2849. className: "U_MD_D_KO",
  2850. "onmousedown": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2854. "onclick": U.UF.C.closure(function (obj) {
  2855. //防止拖动图标即打开了桌面应用
  2856. U.MD.D.click(this, obj);
  2857. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2858. }, _frag); //
  2859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2862. }
  2863. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2864. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2865. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2866. continue
  2867. }
  2868. _content = $$("div", {
  2869. className: "U_MD_D_KO",
  2870. "onmousedown": U.UF.C.closure(function (obj) {
  2871. //防止拖动图标即打开了桌面应用
  2872. U.MD.D.click(this, obj);
  2873. }, [_hkTeacherDeskIconInfo[i]]),
  2874. "onclick": U.UF.C.closure(function (obj) {
  2875. //防止拖动图标即打开了桌面应用
  2876. U.MD.D.click(this, obj);
  2877. }, [_hkTeacherDeskIconInfo[i]])
  2878. }, _frag); //
  2879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2882. }
  2883. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2884. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2885. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2886. continue
  2887. }
  2888. _content = $$("div", {
  2889. className: "U_MD_D_KO",
  2890. "onmousedown": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_hkaceTeacherDeskIconInfo[i]]),
  2894. "onclick": U.UF.C.closure(function (obj) {
  2895. //防止拖动图标即打开了桌面应用
  2896. U.MD.D.click(this, obj);
  2897. }, [_hkaceTeacherDeskIconInfo[i]])
  2898. }, _frag); //
  2899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2902. }
  2903. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2904. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2905. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2906. continue
  2907. }
  2908. _content = $$("div", {
  2909. className: "U_MD_D_KO",
  2910. "onmousedown": U.UF.C.closure(function (obj) {
  2911. //防止拖动图标即打开了桌面应用
  2912. U.MD.D.click(this, obj);
  2913. }, [_cocobizTeacherDeskIconInfo[i]]),
  2914. "onclick": U.UF.C.closure(function (obj) {
  2915. //防止拖动图标即打开了桌面应用
  2916. U.MD.D.click(this, obj);
  2917. }, [_cocobizTeacherDeskIconInfo[i]])
  2918. }, _frag); //
  2919. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2920. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2921. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2922. }
  2923. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2924. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2925. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2926. continue
  2927. }
  2928. _content = $$("div", {
  2929. className: "U_MD_D_KO",
  2930. "onmousedown": U.UF.C.closure(function (obj) {
  2931. //防止拖动图标即打开了桌面应用
  2932. U.MD.D.click(this, obj);
  2933. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2934. "onclick": U.UF.C.closure(function (obj) {
  2935. //防止拖动图标即打开了桌面应用
  2936. U.MD.D.click(this, obj);
  2937. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2938. }, _frag); //
  2939. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2940. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2941. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2942. }
  2943. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2944. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2945. _content = $$("div", {
  2946. className: "U_MD_D_KO",
  2947. "onmousedown": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_gdjgAdminDeskIconInfo[i]]),
  2951. "onclick": U.UF.C.closure(function (obj) {
  2952. //防止拖动图标即打开了桌面应用
  2953. U.MD.D.click(this, obj);
  2954. }, [_gdjgAdminDeskIconInfo[i]])
  2955. }, _frag); //
  2956. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2957. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2958. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2959. }
  2960. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2961. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2962. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2963. continue
  2964. }
  2965. _content = $$("div", {
  2966. className: "U_MD_D_KO",
  2967. "onmousedown": U.UF.C.closure(function (obj) {
  2968. //防止拖动图标即打开了桌面应用
  2969. U.MD.D.click(this, obj);
  2970. }, [_gdjgTeacherDeskIconInfo[i]]),
  2971. "onclick": U.UF.C.closure(function (obj) {
  2972. //防止拖动图标即打开了桌面应用
  2973. U.MD.D.click(this, obj);
  2974. }, [_gdjgTeacherDeskIconInfo[i]])
  2975. }, _frag); //
  2976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2979. }
  2980. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2981. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2982. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2983. continue
  2984. }
  2985. _content = $$("div", {
  2986. className: "U_MD_D_KO",
  2987. "onmousedown": U.UF.C.closure(function (obj) {
  2988. //防止拖动图标即打开了桌面应用
  2989. U.MD.D.click(this, obj);
  2990. }, [_szherTeacherDeskIconInfo[i]]),
  2991. "onclick": U.UF.C.closure(function (obj) {
  2992. //防止拖动图标即打开了桌面应用
  2993. U.MD.D.click(this, obj);
  2994. }, [_szherTeacherDeskIconInfo[i]])
  2995. }, _frag); //
  2996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2999. }
  3000. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3001. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3002. _content = $$("div", {
  3003. className: "U_MD_D_KO",
  3004. "onmousedown": U.UF.C.closure(function (obj) {
  3005. //防止拖动图标即打开了桌面应用
  3006. U.MD.D.click(this, obj);
  3007. }, [_heyuannAdminDeskIconInfo[i]]),
  3008. "onclick": U.UF.C.closure(function (obj) {
  3009. //防止拖动图标即打开了桌面应用
  3010. U.MD.D.click(this, obj);
  3011. }, [_heyuannAdminDeskIconInfo[i]])
  3012. }, _frag); //
  3013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3016. }
  3017. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3018. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3019. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3020. continue
  3021. }
  3022. _content = $$("div", {
  3023. className: "U_MD_D_KO",
  3024. "onmousedown": U.UF.C.closure(function (obj) {
  3025. //防止拖动图标即打开了桌面应用
  3026. U.MD.D.click(this, obj);
  3027. }, [_heyuanTeacherDeskIconInfo[i]]),
  3028. "onclick": U.UF.C.closure(function (obj) {
  3029. //防止拖动图标即打开了桌面应用
  3030. U.MD.D.click(this, obj);
  3031. }, [_heyuanTeacherDeskIconInfo[i]])
  3032. }, _frag); //
  3033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3036. } //
  3037. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3038. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3039. _content = $$("div", {
  3040. className: "U_MD_D_KO",
  3041. "onmousedown": U.UF.C.closure(function (obj) {
  3042. //防止拖动图标即打开了桌面应用
  3043. U.MD.D.click(this, obj);
  3044. }, [_dseiAdminDeskIconInfo[i]]),
  3045. "onclick": U.UF.C.closure(function (obj) {
  3046. //防止拖动图标即打开了桌面应用
  3047. U.MD.D.click(this, obj);
  3048. }, [_dseiAdminDeskIconInfo[i]])
  3049. }, _frag); //
  3050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3053. }
  3054. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3055. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3056. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3057. continue
  3058. }
  3059. _content = $$("div", {
  3060. className: "U_MD_D_KO",
  3061. "onmousedown": U.UF.C.closure(function (obj) {
  3062. //防止拖动图标即打开了桌面应用
  3063. U.MD.D.click(this, obj);
  3064. }, [_dseiTeacherDeskIconInfo[i]]),
  3065. "onclick": U.UF.C.closure(function (obj) {
  3066. //防止拖动图标即打开了桌面应用
  3067. U.MD.D.click(this, obj);
  3068. }, [_dseiTeacherDeskIconInfo[i]])
  3069. }, _frag); //
  3070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3073. } //
  3074. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3075. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3076. _content = $$("div", {
  3077. className: "U_MD_D_KO",
  3078. "onmousedown": U.UF.C.closure(function (obj) {
  3079. //防止拖动图标即打开了桌面应用
  3080. U.MD.D.click(this, obj);
  3081. }, [_chjyjAdminDeskIconInfo[i]]),
  3082. "onclick": U.UF.C.closure(function (obj) {
  3083. //防止拖动图标即打开了桌面应用
  3084. U.MD.D.click(this, obj);
  3085. }, [_chjyjAdminDeskIconInfo[i]])
  3086. }, _frag); //
  3087. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3090. }//
  3091. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3092. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3093. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3094. continue
  3095. }
  3096. _content = $$("div", {
  3097. className: "U_MD_D_KO",
  3098. "onmousedown": U.UF.C.closure(function (obj) {
  3099. //防止拖动图标即打开了桌面应用
  3100. U.MD.D.click(this, obj);
  3101. }, [_chjyjTeacherDeskIconInfo[i]]),
  3102. "onclick": U.UF.C.closure(function (obj) {
  3103. //防止拖动图标即打开了桌面应用
  3104. U.MD.D.click(this, obj);
  3105. }, [_chjyjTeacherDeskIconInfo[i]])
  3106. }, _frag); //
  3107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3110. }
  3111. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3112. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3113. _content = $$("div", {
  3114. className: "U_MD_D_KO",
  3115. "onmousedown": U.UF.C.closure(function (obj) {
  3116. //防止拖动图标即打开了桌面应用
  3117. U.MD.D.click(this, obj);
  3118. }, [_szjkyAdminDeskIconInfo[i]]),
  3119. "onclick": U.UF.C.closure(function (obj) {
  3120. //防止拖动图标即打开了桌面应用
  3121. U.MD.D.click(this, obj);
  3122. }, [_szjkyAdminDeskIconInfo[i]])
  3123. }, _frag); //
  3124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3127. }//
  3128. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3129. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3130. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3131. continue
  3132. }
  3133. _content = $$("div", {
  3134. className: "U_MD_D_KO",
  3135. "onmousedown": U.UF.C.closure(function (obj) {
  3136. //防止拖动图标即打开了桌面应用
  3137. U.MD.D.click(this, obj);
  3138. }, [_szjkyTeacherDeskIconInfo[i]]),
  3139. "onclick": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_szjkyTeacherDeskIconInfo[i]])
  3143. }, _frag); //
  3144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3147. }
  3148. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3149. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3150. _content = $$("div", {
  3151. className: "U_MD_D_KO",
  3152. "onmousedown": U.UF.C.closure(function (obj) {
  3153. //防止拖动图标即打开了桌面应用
  3154. U.MD.D.click(this, obj);
  3155. }, [_futianAdminDeskIconInfo[i]]),
  3156. "onclick": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_futianAdminDeskIconInfo[i]])
  3160. }, _frag); //
  3161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3164. }
  3165. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3166. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3167. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3168. continue
  3169. }
  3170. _content = $$("div", {
  3171. className: "U_MD_D_KO",
  3172. "onmousedown": U.UF.C.closure(function (obj) {
  3173. //防止拖动图标即打开了桌面应用
  3174. U.MD.D.click(this, obj);
  3175. }, [_futianTeacherDeskIconInfo[i]]),
  3176. "onclick": U.UF.C.closure(function (obj) {
  3177. //防止拖动图标即打开了桌面应用
  3178. U.MD.D.click(this, obj);
  3179. }, [_futianTeacherDeskIconInfo[i]])
  3180. }, _frag); //
  3181. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3182. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3183. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3184. }
  3185. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3186. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3187. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3188. continue
  3189. }
  3190. _content = $$("div", {
  3191. className: "U_MD_D_KO",
  3192. "onmousedown": U.UF.C.closure(function (obj) {
  3193. //防止拖动图标即打开了桌面应用
  3194. U.MD.D.click(this, obj);
  3195. }, [_MingdeTeacherDeskIcon[i]]),
  3196. "onclick": U.UF.C.closure(function (obj) {
  3197. //防止拖动图标即打开了桌面应用
  3198. U.MD.D.click(this, obj);
  3199. }, [_MingdeTeacherDeskIcon[i]])
  3200. }, _frag); //
  3201. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3202. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3203. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3204. }
  3205. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3206. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3207. _content = $$("div", {
  3208. className: "U_MD_D_KO",
  3209. "onmousedown": U.UF.C.closure(function (obj) {
  3210. //防止拖动图标即打开了桌面应用
  3211. U.MD.D.click(this, obj);
  3212. }, [_lhsAdminDesktopIconInfo[i]]),
  3213. "onclick": U.UF.C.closure(function (obj) {
  3214. //防止拖动图标即打开了桌面应用
  3215. U.MD.D.click(this, obj);
  3216. }, [_lhsAdminDesktopIconInfo[i]])
  3217. }, _frag); //
  3218. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3219. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3220. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3221. }
  3222. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3223. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3224. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3225. continue
  3226. }
  3227. _content = $$("div", {
  3228. className: "U_MD_D_KO",
  3229. "onmousedown": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_lhsteacherDesktopIconInfo[i]]),
  3233. "onclick": U.UF.C.closure(function (obj) {
  3234. //防止拖动图标即打开了桌面应用
  3235. U.MD.D.click(this, obj);
  3236. }, [_lhsteacherDesktopIconInfo[i]])
  3237. }, _frag); //
  3238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3241. }
  3242. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3243. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3244. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3245. continue
  3246. }
  3247. _content = $$("div", {
  3248. className: "U_MD_D_KO",
  3249. "onmousedown": U.UF.C.closure(function (obj) {
  3250. //防止拖动图标即打开了桌面应用
  3251. U.MD.D.click(this, obj);
  3252. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3253. "onclick": U.UF.C.closure(function (obj) {
  3254. //防止拖动图标即打开了桌面应用
  3255. U.MD.D.click(this, obj);
  3256. }, [_zhoujiateacherDesktopIconInfo[i]])
  3257. }, _frag); //
  3258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3261. }
  3262. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3263. for (i = 0; i < _hanDeskIcon.length; i++) {
  3264. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3265. continue
  3266. }
  3267. _content = $$("div", {
  3268. className: "U_MD_D_KO",
  3269. "onmousedown": U.UF.C.closure(function (obj) {
  3270. //防止拖动图标即打开了桌面应用
  3271. U.MD.D.click(this, obj);
  3272. }, [_hanDeskIcon[i]]),
  3273. "onclick": U.UF.C.closure(function (obj) {
  3274. //防止拖动图标即打开了桌面应用
  3275. U.MD.D.click(this, obj);
  3276. }, [_hanDeskIcon[i]])
  3277. }, _frag); //
  3278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3281. }
  3282. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3283. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3284. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3285. continue
  3286. }
  3287. _content = $$("div", {
  3288. className: "U_MD_D_KO",
  3289. "onmousedown": U.UF.C.closure(function (obj) {
  3290. //防止拖动图标即打开了桌面应用
  3291. U.MD.D.click(this, obj);
  3292. }, [_orgStemDeskIcon[i]]),
  3293. "onclick": U.UF.C.closure(function (obj) {
  3294. //防止拖动图标即打开了桌面应用
  3295. U.MD.D.click(this, obj);
  3296. }, [_orgStemDeskIcon[i]])
  3297. }, _frag); //
  3298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3301. }
  3302. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3303. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3304. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3305. continue
  3306. }
  3307. _content = $$("div", {
  3308. className: "U_MD_D_KO",
  3309. "onmousedown": U.UF.C.closure(function (obj) {
  3310. //防止拖动图标即打开了桌面应用
  3311. U.MD.D.click(this, obj);
  3312. }, [_szulsDeskIcon[i]]),
  3313. "onclick": U.UF.C.closure(function (obj) {
  3314. //防止拖动图标即打开了桌面应用
  3315. U.MD.D.click(this, obj);
  3316. }, [_szulsDeskIcon[i]])
  3317. }, _frag); //
  3318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3321. }
  3322. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3323. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3324. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3325. continue
  3326. }
  3327. _content = $$("div", {
  3328. className: "U_MD_D_KO",
  3329. "onmousedown": U.UF.C.closure(function (obj) {
  3330. //防止拖动图标即打开了桌面应用
  3331. U.MD.D.click(this, obj);
  3332. }, [_orgDesktopIconInfo[i]]),
  3333. "onclick": U.UF.C.closure(function (obj) {
  3334. //防止拖动图标即打开了桌面应用
  3335. U.MD.D.click(this, obj);
  3336. }, [_orgDesktopIconInfo[i]])
  3337. }, _frag); //
  3338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3341. }
  3342. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3343. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3344. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3345. continue
  3346. }
  3347. _content = $$("div", {
  3348. className: "U_MD_D_KO",
  3349. "onmousedown": U.UF.C.closure(function (obj) {
  3350. //防止拖动图标即打开了桌面应用
  3351. U.MD.D.click(this, obj);
  3352. }, [_schoolDesktopIconInfo[i]]),
  3353. "onclick": U.UF.C.closure(function (obj) {
  3354. //防止拖动图标即打开了桌面应用
  3355. U.MD.D.click(this, obj);
  3356. }, [_schoolDesktopIconInfo[i]])
  3357. }, _frag); //
  3358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3361. }
  3362. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3363. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3364. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3365. continue
  3366. }
  3367. _content = $$("div", {
  3368. className: "U_MD_D_KO",
  3369. "onmousedown": U.UF.C.closure(function (obj) {
  3370. //防止拖动图标即打开了桌面应用
  3371. U.MD.D.click(this, obj);
  3372. }, [_GMteacherDesktopIconInfo[i]]),
  3373. "onclick": U.UF.C.closure(function (obj) {
  3374. //防止拖动图标即打开了桌面应用
  3375. U.MD.D.click(this, obj);
  3376. }, [_GMteacherDesktopIconInfo[i]])
  3377. }, _frag); //
  3378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3381. }
  3382. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3383. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3384. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3385. continue
  3386. }
  3387. _content = $$("div", {
  3388. className: "U_MD_D_KO",
  3389. "onmousedown": U.UF.C.closure(function (obj) {
  3390. //防止拖动图标即打开了桌面应用
  3391. U.MD.D.click(this, obj);
  3392. }, [_SONGteacherDesktopIconInfo[i]]),
  3393. "onclick": U.UF.C.closure(function (obj) {
  3394. //防止拖动图标即打开了桌面应用
  3395. U.MD.D.click(this, obj);
  3396. }, [_SONGteacherDesktopIconInfo[i]])
  3397. }, _frag); //
  3398. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3399. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3400. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3401. }
  3402. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3403. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3404. _content = $$("div", {
  3405. className: "U_MD_D_KO",
  3406. "onmousedown": U.UF.C.closure(function (obj) {
  3407. //防止拖动图标即打开了桌面应用
  3408. U.MD.D.click(this, obj);
  3409. }, [_GMstudentDesktopIconInfo[i]]),
  3410. "onclick": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_GMstudentDesktopIconInfo[i]])
  3414. }, _frag); //
  3415. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3416. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3417. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3418. }
  3419. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3420. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3421. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3422. continue
  3423. }
  3424. _content = $$("div", {
  3425. className: "U_MD_D_KO",
  3426. "onmousedown": U.UF.C.closure(function (obj) {
  3427. //防止拖动图标即打开了桌面应用
  3428. U.MD.D.click(this, obj);
  3429. }, [_tcTeacherDeskIconInfo[i]]),
  3430. "onclick": U.UF.C.closure(function (obj) {
  3431. //防止拖动图标即打开了桌面应用
  3432. U.MD.D.click(this, obj);
  3433. }, [_tcTeacherDeskIconInfo[i]])
  3434. }, _frag); //
  3435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3438. }
  3439. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3440. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3441. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3442. continue
  3443. }
  3444. _content = $$("div", {
  3445. className: "U_MD_D_KO",
  3446. "onmousedown": U.UF.C.closure(function (obj) {
  3447. //防止拖动图标即打开了桌面应用
  3448. U.MD.D.click(this, obj);
  3449. }, [_tcOrganizerDeskIconInfo[i]]),
  3450. "onclick": U.UF.C.closure(function (obj) {
  3451. //防止拖动图标即打开了桌面应用
  3452. U.MD.D.click(this, obj);
  3453. }, [_tcOrganizerDeskIconInfo[i]])
  3454. }, _frag); //
  3455. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3456. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3457. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3458. }
  3459. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3460. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3461. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3462. continue
  3463. }
  3464. _content = $$("div", {
  3465. className: "U_MD_D_KO",
  3466. "onmousedown": U.UF.C.closure(function (obj) {
  3467. //防止拖动图标即打开了桌面应用
  3468. U.MD.D.click(this, obj);
  3469. }, [_szscTeacherDeskIconInfo[i]]),
  3470. "onclick": U.UF.C.closure(function (obj) {
  3471. //防止拖动图标即打开了桌面应用
  3472. U.MD.D.click(this, obj);
  3473. }, [_szscTeacherDeskIconInfo[i]])
  3474. }, _frag); //
  3475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3478. }
  3479. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3480. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3481. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3482. continue
  3483. }
  3484. _content = $$("div", {
  3485. className: "U_MD_D_KO",
  3486. "onmousedown": U.UF.C.closure(function (obj) {
  3487. //防止拖动图标即打开了桌面应用
  3488. U.MD.D.click(this, obj);
  3489. }, [_szscOrganizerDeskIconInfo[i]]),
  3490. "onclick": U.UF.C.closure(function (obj) {
  3491. //防止拖动图标即打开了桌面应用
  3492. U.MD.D.click(this, obj);
  3493. }, [_szscOrganizerDeskIconInfo[i]])
  3494. }, _frag); //
  3495. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3496. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3497. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3498. }
  3499. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3500. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3501. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3502. continue
  3503. }
  3504. _content = $$("div", {
  3505. className: "U_MD_D_KO",
  3506. "onmousedown": U.UF.C.closure(function (obj) {
  3507. //防止拖动图标即打开了桌面应用
  3508. U.MD.D.click(this, obj);
  3509. }, [_nsfxTeacherDeskIconInfo[i]]),
  3510. "onclick": U.UF.C.closure(function (obj) {
  3511. //防止拖动图标即打开了桌面应用
  3512. U.MD.D.click(this, obj);
  3513. }, [_nsfxTeacherDeskIconInfo[i]])
  3514. }, _frag); //
  3515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3518. }
  3519. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3520. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3521. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3522. continue
  3523. }
  3524. _content = $$("div", {
  3525. className: "U_MD_D_KO",
  3526. "onmousedown": U.UF.C.closure(function (obj) {
  3527. //防止拖动图标即打开了桌面应用
  3528. U.MD.D.click(this, obj);
  3529. }, [_stiaTeacherDeskIconInfo[i]]),
  3530. "onclick": U.UF.C.closure(function (obj) {
  3531. //防止拖动图标即打开了桌面应用
  3532. U.MD.D.click(this, obj);
  3533. }, [_stiaTeacherDeskIconInfo[i]])
  3534. }, _frag); //
  3535. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3536. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3537. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3538. }
  3539. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3540. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3541. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3542. continue
  3543. }
  3544. _content = $$("div", {
  3545. className: "U_MD_D_KO",
  3546. "onmousedown": U.UF.C.closure(function (obj) {
  3547. //防止拖动图标即打开了桌面应用
  3548. U.MD.D.click(this, obj);
  3549. }, [_szdjgTeacherDeskIconInfo[i]]),
  3550. "onclick": U.UF.C.closure(function (obj) {
  3551. //防止拖动图标即打开了桌面应用
  3552. U.MD.D.click(this, obj);
  3553. }, [_szdjgTeacherDeskIconInfo[i]])
  3554. }, _frag); //
  3555. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3556. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3557. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3558. }
  3559. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3560. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3561. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3562. continue
  3563. }
  3564. _content = $$("div", {
  3565. className: "U_MD_D_KO",
  3566. "onmousedown": U.UF.C.closure(function (obj) {
  3567. //防止拖动图标即打开了桌面应用
  3568. U.MD.D.click(this, obj);
  3569. }, [_x010607TeacherDeskIconInfo[i]]),
  3570. "onclick": U.UF.C.closure(function (obj) {
  3571. //防止拖动图标即打开了桌面应用
  3572. U.MD.D.click(this, obj);
  3573. }, [_x010607TeacherDeskIconInfo[i]])
  3574. }, _frag); //
  3575. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3576. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3577. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3578. }
  3579. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3580. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3581. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3582. continue
  3583. }
  3584. _content = $$("div", {
  3585. className: "U_MD_D_KO",
  3586. "onmousedown": U.UF.C.closure(function (obj) {
  3587. //防止拖动图标即打开了桌面应用
  3588. U.MD.D.click(this, obj);
  3589. }, [_xhlyTeacherDeskIconInfo[i]]),
  3590. "onclick": U.UF.C.closure(function (obj) {
  3591. //防止拖动图标即打开了桌面应用
  3592. U.MD.D.click(this, obj);
  3593. }, [_xhlyTeacherDeskIconInfo[i]])
  3594. }, _frag); //
  3595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3598. }
  3599. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3600. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3601. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3602. continue
  3603. }
  3604. _content = $$("div", {
  3605. className: "U_MD_D_KO",
  3606. "onmousedown": U.UF.C.closure(function (obj) {
  3607. //防止拖动图标即打开了桌面应用
  3608. U.MD.D.click(this, obj);
  3609. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3610. "onclick": U.UF.C.closure(function (obj) {
  3611. //防止拖动图标即打开了桌面应用
  3612. U.MD.D.click(this, obj);
  3613. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3614. }, _frag); //
  3615. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3616. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3617. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3618. }
  3619. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3620. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3621. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3622. continue
  3623. }
  3624. _content = $$("div", {
  3625. className: "U_MD_D_KO",
  3626. "onmousedown": U.UF.C.closure(function (obj) {
  3627. //防止拖动图标即打开了桌面应用
  3628. U.MD.D.click(this, obj);
  3629. }, [_x010503TeacherDeskIconInfo[i]]),
  3630. "onclick": U.UF.C.closure(function (obj) {
  3631. //防止拖动图标即打开了桌面应用
  3632. U.MD.D.click(this, obj);
  3633. }, [_x010503TeacherDeskIconInfo[i]])
  3634. }, _frag); //
  3635. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3636. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3637. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3638. }
  3639. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  3640. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  3641. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3642. continue
  3643. }
  3644. _content = $$("div", {
  3645. className: "U_MD_D_KO",
  3646. "onmousedown": U.UF.C.closure(function (obj) {
  3647. //防止拖动图标即打开了桌面应用
  3648. U.MD.D.click(this, obj);
  3649. }, [_x010204TeacherDeskIconInfo[i]]),
  3650. "onclick": U.UF.C.closure(function (obj) {
  3651. //防止拖动图标即打开了桌面应用
  3652. U.MD.D.click(this, obj);
  3653. }, [_x010204TeacherDeskIconInfo[i]])
  3654. }, _frag); //
  3655. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3656. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  3657. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  3658. }
  3659. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  3660. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  3661. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3662. continue
  3663. }
  3664. _content = $$("div", {
  3665. className: "U_MD_D_KO",
  3666. "onmousedown": U.UF.C.closure(function (obj) {
  3667. //防止拖动图标即打开了桌面应用
  3668. U.MD.D.click(this, obj);
  3669. }, [_trailTeacherDeskIconInfo[i]]),
  3670. "onclick": U.UF.C.closure(function (obj) {
  3671. //防止拖动图标即打开了桌面应用
  3672. U.MD.D.click(this, obj);
  3673. }, [_trailTeacherDeskIconInfo[i]])
  3674. }, _frag); //
  3675. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3676. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  3677. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  3678. }
  3679. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  3680. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  3681. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3682. continue
  3683. }
  3684. _content = $$("div", {
  3685. className: "U_MD_D_KO",
  3686. "onmousedown": U.UF.C.closure(function (obj) {
  3687. //防止拖动图标即打开了桌面应用
  3688. U.MD.D.click(this, obj);
  3689. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  3690. "onclick": U.UF.C.closure(function (obj) {
  3691. //防止拖动图标即打开了桌面应用
  3692. U.MD.D.click(this, obj);
  3693. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  3694. }, _frag); //
  3695. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3696. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  3697. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  3698. }
  3699. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3700. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3701. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3702. continue
  3703. }
  3704. _content = $$("div", {
  3705. className: "U_MD_D_KO",
  3706. "onmousedown": U.UF.C.closure(function (obj) {
  3707. //防止拖动图标即打开了桌面应用
  3708. U.MD.D.click(this, obj);
  3709. }, [_x010608TeacherDeskIconInfo[i]]),
  3710. "onclick": U.UF.C.closure(function (obj) {
  3711. //防止拖动图标即打开了桌面应用
  3712. U.MD.D.click(this, obj);
  3713. }, [_x010608TeacherDeskIconInfo[i]])
  3714. }, _frag); //
  3715. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3716. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  3717. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  3718. }
  3719. } else {
  3720. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3721. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3722. continue
  3723. }
  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. }, [_teacherDesktopIconInfo[i]]),
  3730. "onclick": U.UF.C.closure(function (obj) {
  3731. //防止拖动图标即打开了桌面应用
  3732. U.MD.D.click(this, obj);
  3733. }, [_teacherDesktopIconInfo[i]])
  3734. }, _frag); //
  3735. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3736. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3737. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3738. }
  3739. }
  3740. } else {
  3741. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3742. _content = $$("div", {
  3743. className: "U_MD_D_KO",
  3744. style: { 'width': '124px', 'height': '145px' },
  3745. "onmousedown": U.UF.C.closure(function (obj) {
  3746. //防止拖动图标即打开了桌面应用
  3747. U.MD.D.click(this, obj);
  3748. }, [_easyDesktopIconInfo[i]]),
  3749. "onclick": U.UF.C.closure(function (obj) {
  3750. //防止拖动图标即打开了桌面应用
  3751. U.MD.D.click(this, obj);
  3752. }, [_easyDesktopIconInfo[i]])
  3753. }, _frag); //
  3754. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3755. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3756. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3757. }
  3758. }
  3759. if (type == 1) {
  3760. //加载好后给图标定位
  3761. U.MD.D.iconPostion($(_frag).Child());
  3762. } else {
  3763. //加载好后给图标定位
  3764. U.MD.D.iconPostion2($(_frag).Child());
  3765. }
  3766. //把图标加载到页面
  3767. el.appendChild(_frag);
  3768. }
  3769. /**
  3770. * 显示任务栏
  3771. *
  3772. * @param {element} 桌面元素
  3773. */
  3774. U.MD.D.I.displayTaskbar = function (el) {
  3775. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3776. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3777. //任务栏位置变化
  3778. U.selectEl(el).css({ "bottom": "0px" });
  3779. //桌面位置变话
  3780. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3781. }
  3782. }
  3783. //#region 桌面图标拖动逻辑
  3784. /**
  3785. * 桌面排列图标
  3786. *
  3787. * @param {element} 桌面元素
  3788. * @param {object} 上下相距的距离
  3789. * @param {object} 左右相距的距离
  3790. * @return {object} 命名空间
  3791. */
  3792. U.MD.D.iconPostion = function (childs, top, left) {
  3793. var i; //用于循环处理
  3794. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3795. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3796. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3797. for (i = 0; i < childs.length; i++) {
  3798. //如果竖排top超过了范围处理
  3799. if (top + 95 > US.height - 10) {
  3800. //left超过了页面范围处理,则向上重叠打印处理
  3801. if ((left + 180) > US.width) {
  3802. top -= 110;
  3803. left -= 90;
  3804. }
  3805. //没有超过范围,那么left+90添加到下一个竖排打印
  3806. else {
  3807. left += 90;
  3808. top = 15;
  3809. };
  3810. }
  3811. //给图标的位置赋值
  3812. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3813. if (i < childs.length - 1) {
  3814. //页面图标每次向下加95
  3815. top += 95;
  3816. }
  3817. }
  3818. //返回最后调用的图标的位置
  3819. return [top, left];
  3820. }
  3821. /**
  3822. * 桌面排列图标
  3823. *
  3824. * @param {element} 桌面元素
  3825. * @param {object} 上下相距的距离
  3826. * @param {object} 左右相距的距离
  3827. * @return {object} 命名空间
  3828. */
  3829. U.MD.D.iconPostion2 = function (childs, top, left) {
  3830. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3831. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3832. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3833. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3834. for (i = 0; i < childs.length; i++) {
  3835. //如果竖排top超过了范围处理
  3836. if (left + 150 > US.width - 10) {
  3837. //left超过了页面范围处理,则向上重叠打印处理
  3838. if ((top + 180) > US.Height) {
  3839. top -= 150;
  3840. left -= 150;
  3841. }
  3842. //没有超过范围,那么left+90添加到下一个竖排打印
  3843. else {
  3844. top += 150;
  3845. left = ol;
  3846. };
  3847. }
  3848. //给图标的位置赋值
  3849. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3850. if (i < childs.length - 1) {
  3851. //页面图标每次向下加95
  3852. left += 150;
  3853. }
  3854. }
  3855. //返回最后调用的图标的位置
  3856. return [top, left];
  3857. }
  3858. /**
  3859. * 桌面点击事件逻辑
  3860. *
  3861. * @param {element} 桌面元素
  3862. * @param {object} 上下相距的距离
  3863. * @param {object} 左右相距的距离
  3864. * @return {object} 命名空间
  3865. */
  3866. U.MD.D.click = function (el, obj) {
  3867. var _buttonnumber = event.button; //点击的按钮的事件值
  3868. var _userinfo = US.userInfo;
  3869. U.UF.EV.stopBubble(); //阻止向上冒泡
  3870. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3871. if (_buttonnumber < 2) {
  3872. //如果是click事件的处理
  3873. if (event.type == "click") {
  3874. //如果元素在mousemove事件中没有移动则出发click事件
  3875. if (!U.MD.D.I.IsDrag) {
  3876. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3877. U.alert("请先登录您的账号!");
  3878. setTimeout(() => {
  3879. U.MD.U.L.login();
  3880. }, 2000);
  3881. } else {
  3882. //打开应用处理
  3883. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3884. }
  3885. }
  3886. }
  3887. //如果是mouse事件的处理
  3888. else {
  3889. if (US.Config.type == '1') {
  3890. //拖动处理,添加拖动和拖动结束事件
  3891. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3892. }
  3893. }
  3894. U.MD.D.I.IsDrag = false;
  3895. }
  3896. }
  3897. /**
  3898. * 拖动的处理
  3899. *
  3900. */
  3901. U.MD.D.iconMove = function () {
  3902. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3903. U.MD.D.I.IsDrag = true;
  3904. }
  3905. /**
  3906. * 拖动结束后,这里是定位处理,以网状的形式定位
  3907. *
  3908. * @param {element} 拖动的元素
  3909. * @return {object} 命名空间
  3910. */
  3911. U.MD.D.iconUp = function (el) {
  3912. var _top = 15,
  3913. _left = 20,
  3914. _margin,
  3915. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3916. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3917. if (_positioninfo["OT"] > 15) {
  3918. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3919. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3920. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3921. }
  3922. if (_positioninfo["OL"] > 20) {
  3923. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3924. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3925. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3926. }
  3927. //while循环判断么一个重叠的元素
  3928. do {
  3929. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3930. _top = _positioninfo[0] + 95; //得到定位后的top
  3931. _left = _positioninfo[1]; //得到定位后的left
  3932. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3933. }
  3934. /**
  3935. * 判断拖动后图标是否重叠
  3936. *
  3937. * @param {element} 拖动的元素
  3938. * @param {element} 桌面所有的元素
  3939. * @param {array} 拖动元素的位置
  3940. ----------[0] 上 top
  3941. ----------[1] 左 left
  3942. * @return {object} 命名空间
  3943. */
  3944. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3945. //循环所有的图标
  3946. for (var i = 0; i < childs.length; i++) {
  3947. //判断有没有和该图标诶子重叠的元素
  3948. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3949. return childs[i]; //如果有返回
  3950. }
  3951. }
  3952. }
  3953. //#endregion
  3954. //#endregion
  3955. //#region 桌面应用
  3956. /**
  3957. * 打开应用
  3958. *
  3959. * @param {string} 类型
  3960. -----------------Disk 网盘系统
  3961. -----------------PDisk 学习系统网盘
  3962. -----------------Poto 图片
  3963. -----------------Video 视频
  3964. -----------------Music 音乐
  3965. -----------------Word word
  3966. -----------------Excel excel
  3967. -----------------Txt 记事本
  3968. -----------------PB 学习系统
  3969. -----------------Blog 朋友圈系统
  3970. -----------------FTP ftp系统
  3971. -----------------Group 好友群
  3972. -----------------SY 首页系统
  3973. -----------------Set 个人设置
  3974. -----------------XSet 系统设置
  3975. -----------------App 我们所有的app
  3976. -----------------BC c.1473.cn 平台
  3977. -----------------CWeb d.1473.cn 变成平台
  3978. -----------------其他的外联系统 我们统一用iframe打开
  3979. * @param {array} 类型
  3980. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3981. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3982. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3983. 如果第一个参数为其他,则无第二个参数
  3984. * @returns {array}
  3985. */
  3986. window.addEventListener('message', function (e) { // 监听 message 事件
  3987. // alert(e.data.type);
  3988. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3989. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3990. //3是展示全部阶段 2学生 1老师 4专家
  3991. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3992. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3993. //3是展示全部阶段 2学生 1老师 4专家
  3994. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3995. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3996. //3是展示全部阶段 2学生 1老师 4专家
  3997. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3998. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3999. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4000. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4001. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4002. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4003. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4004. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4005. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4006. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4007. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4008. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4009. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4010. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4011. //3是展示全部阶段 2学生 1老师 4专家
  4012. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4013. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4014. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4015. U.MD.D.I.selectUser();
  4016. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4017. var _formel = document.getElementById("study");
  4018. U.UF.F.windowZooming(_formel);
  4019. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4020. var _formel = document.getElementById("studyDetail");
  4021. U.UF.F.windowZooming(_formel);
  4022. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4023. var _formel = document.getElementById("studyDetail");
  4024. U.UF.F.windowZooming(_formel);
  4025. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4026. var _formel = document.getElementById("studentStudy");
  4027. U.UF.F.windowZooming(_formel);
  4028. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4029. // var _formel = document.getElementById("study");
  4030. //如果最大化了,那么就把他缩小
  4031. // if (_formel.ismaximize) {
  4032. // return;
  4033. // }
  4034. // U.UF.F.windowZooming(_formel);
  4035. // U.UF.F.topWindow(_formel);
  4036. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4037. // var _formel = document.getElementById("studyDetail");
  4038. //如果最大化了,那么就把他缩小
  4039. // if (_formel.ismaximize) {
  4040. // return;
  4041. // }
  4042. // U.UF.F.windowZooming(_formel);
  4043. // U.UF.F.topWindow(_formel);
  4044. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4045. // var _formel = document.getElementById("studentStudy");
  4046. // if (_formel.ismaximize) {
  4047. // return;
  4048. // }
  4049. // U.UF.F.windowZooming(_formel);
  4050. // U.UF.F.topWindow(_formel);
  4051. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4052. var _formel = document.getElementById("study");
  4053. // if (_formel.ismaximize) {
  4054. // return;
  4055. // }
  4056. // U.UF.F.windowZooming(_formel);
  4057. U.UF.F.topWindow(_formel);
  4058. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4059. var _formel = document.getElementById("studentIndex");
  4060. U.UF.F.windowZooming(_formel);
  4061. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4062. var _formel = document.getElementById("studyDetailS");
  4063. U.UF.F.windowZooming(_formel);
  4064. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4065. var _formel = document.getElementById("studioIndex");
  4066. U.UF.F.windowZooming(_formel);
  4067. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4068. var _formel = document.getElementById("studyDetailStudio");
  4069. U.UF.F.windowZooming(_formel);
  4070. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4071. var _formel = document.getElementById("studyDetailStudio");
  4072. U.UF.F.windowZooming(_formel);
  4073. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4074. var _formel = document.getElementById("studyDetailNT");
  4075. U.UF.F.windowZooming(_formel);
  4076. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4077. var _formel = document.getElementById("studyDetailS");
  4078. U.UF.F.windowZooming(_formel);
  4079. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4080. var _formel = document.getElementById("studyDetailS");
  4081. U.UF.F.topWindow(_formel);
  4082. } else if (e.data.tools && e.data.tools == "1") {
  4083. // U.MD.D.I.openApplication("whiteboard")
  4084. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4085. } else if (e.data.tools && e.data.tools == "2") {
  4086. U.MD.D.I.openApplication("note")
  4087. } else if (e.data.tools && e.data.tools == "3") {
  4088. // U.MD.D.I.openApplication("mind")
  4089. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4090. } else if (e.data.tools && e.data.tools == "4") {
  4091. U.MD.D.I.openApplication("investigation")
  4092. } else if (e.data.tools && e.data.tools == "6") {
  4093. // U.MD.D.I.openApplication("doc")
  4094. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4095. } else if (e.data.tools && e.data.tools == "7") {
  4096. // U.MD.D.I.openApplication("mindNetwork")
  4097. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4098. } else if (e.data.tools && e.data.tools == "8") {
  4099. U.MD.D.I.openApplication("library")
  4100. } else if (e.data.tools && e.data.tools == "17") {
  4101. U.MD.D.I.openApplication("stuLibrary")
  4102. } else if (e.data.tools && e.data.tools == "18") {
  4103. U.MD.D.I.openApplication("train")
  4104. } else if (e.data.tools && e.data.tools == "21") {
  4105. U.MD.D.I.openApplication("program")
  4106. } else if (e.data.tools && e.data.tools == "22") {
  4107. U.MD.D.I.openApplication("AIprogram2")
  4108. } else if (e.data.tools && e.data.tools == "23") {
  4109. U.MD.D.I.openApplication("Pythonprogram")
  4110. } else if (e.data.tools && e.data.tools == "24") {
  4111. U.MD.D.I.openApplication("AIprogram")
  4112. } else if (e.data.tools && e.data.tools == "25") {
  4113. U.MD.D.I.openApplication("sys")
  4114. } else if (e.data.tools && e.data.tools == "26") {
  4115. // U.MD.D.I.openApplication("courseDesign")
  4116. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4117. } else if (e.data.tools && e.data.tools == "31") {
  4118. U.MD.D.I.openApplication("netWorkPanel")
  4119. } else if (e.data.tools && e.data.tools == "32") {
  4120. U.MD.D.I.openApplication("codeEdit")
  4121. } else if (e.data.tools && e.data.tools == "57") {
  4122. U.MD.D.I.openApplication("CocoPi")
  4123. } else if (e.data.tools && e.data.tools == "63") {
  4124. U.MD.D.I.openApplication("Wood")
  4125. } else if (e.data.tools && e.data.tools == "58") {
  4126. U.MD.D.I.openApplication("car")
  4127. } else if (e.data.tools && e.data.tools == "59") {
  4128. U.MD.D.I.openApplication("lineSearch")
  4129. } else if (e.data.tools && e.data.tools == "60") {
  4130. U.MD.D.I.openApplication("deepLearning")
  4131. } else if (e.data.tools && e.data.tools == "61") {
  4132. U.MD.D.I.openApplication("allHistory")
  4133. } else if (e.data.tools && e.data.tools == "28") {
  4134. U.MD.D.I.openApplication("translation")
  4135. } else if (e.data.tools && e.data.tools == "37") {
  4136. U.MD.D.I.openApplication("mohe")
  4137. } else if (e.data.tools && e.data.tools == "38") {
  4138. U.MD.D.I.openApplication("24game")
  4139. } else if (e.data.tools && e.data.tools == "39") {
  4140. U.MD.D.I.openApplication("GeoGebra")
  4141. } else if (e.data.tools && e.data.tools == "43") {
  4142. U.MD.D.I.openApplication("studentEvaluate")
  4143. } else if (e.data.tools && e.data.tools == "44") {
  4144. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4145. } else if (e.data.tools && e.data.tools == "46") {
  4146. U.MD.D.I.openApplication("project")
  4147. } else if (e.data.tools && e.data.tools == "71") {
  4148. U.MD.D.I.openApplication("aigptCourse")
  4149. } else if (e.data.tools && e.data.tools == "1s") {
  4150. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4151. } else if (e.data.tools && e.data.tools == "3s") {
  4152. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4153. } else if (e.data.tools && e.data.tools == "6s") {
  4154. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4155. } else if (e.data.tools && e.data.tools == "1studio") {
  4156. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4157. } else if (e.data.tools && e.data.tools == "3studio") {
  4158. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4159. } else if (e.data.tools && e.data.tools == "6studio") {
  4160. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4161. } else if (e.data.tools && e.data.tools == "3y") {
  4162. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4163. } else if (e.data.tools && e.data.tools == "1y") {
  4164. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4165. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4166. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4167. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4168. U.MD.D.I.openApplication("AIAnalyse")
  4169. } else if (e.data.tools && e.data.tools == "1teacher") {
  4170. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4171. } else if (e.data.tools && e.data.tools == "3teacher") {
  4172. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4173. } else if (e.data.tools && e.data.tools == "7teacher") {
  4174. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4175. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4176. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4177. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4178. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4179. } else if (e.data.tools && e.data.tools == "1E") {
  4180. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4181. } else if (e.data.tools && e.data.tools == "3E") {
  4182. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4183. } else if (e.data.tools && e.data.tools == "57y") {
  4184. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4185. } else if (e.data.tools && e.data.tools == "57u") {
  4186. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4187. } else if (e.data.tools && e.data.tools == "57teacher") {
  4188. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4189. } else if (e.data.tools && e.data.tools == "64") {
  4190. U.MD.D.I.openApplication("AIChat")
  4191. } else if (e.data.tools && e.data.tools == "66") {
  4192. U.MD.D.I.openApplication("formulaEdi")
  4193. } else if (e.data.tools && e.data.tools == "67") {
  4194. U.MD.D.I.openApplication("molStr")
  4195. } else if (e.data.tools && e.data.tools == "68") {
  4196. U.MD.D.I.openApplication("timeAxis")
  4197. } else if (e.data.tools && e.data.tools == "openCourse") {
  4198. let _data = {
  4199. typea: e.data.typea || '',
  4200. typeb: e.data.typeb || '',
  4201. typed: e.data.typed || '',
  4202. }
  4203. U.MD.D.I.openInApplication("index", _data)
  4204. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4205. let _data = {
  4206. classid: e.data.classid || '',
  4207. }
  4208. U.MD.D.I.openInApplication("dataClass", _data)
  4209. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4210. let _data = {
  4211. cid: e.data.cid || '',
  4212. gid: e.data.gid || '',
  4213. }
  4214. U.MD.D.I.openInApplication("opencCscl", _data)
  4215. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4216. U.MD.D.I.openApplication("dataBoardTest")
  4217. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4218. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4219. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4220. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4221. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4222. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4223. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4224. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4225. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4226. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4227. }else if (e.data.tools && e.data.tools == "loginSz") {
  4228. U.MD.D.I.openInApplication("loginSz")
  4229. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4230. if($('#classroom_observation_board')[0]){
  4231. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4232. }
  4233. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4234. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4235. if($('#classroom_observation_ob_comment')[0]){
  4236. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4237. }
  4238. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4239. }
  4240. });
  4241. U.MD.D.I.selectUser = function () {
  4242. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4243. if (res.value[0].length > 0) {
  4244. US.userInfo = res.value[0][0];
  4245. $(".userName")[0].innerHTML = US.userInfo.username;
  4246. }
  4247. }, [], { "type": "GET", "withCredentials": true });
  4248. }
  4249. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4250. var _userinfo = US.userInfo, //登录用户信息
  4251. _userid = US.userInfo.userid, //登录用户id
  4252. _oid = _userinfo.organizeid,
  4253. _type = US.userInfo.type,
  4254. _org = US.userInfo.org,
  4255. _role = US.userInfo.role,
  4256. _classId = US.userInfo.classid;
  4257. if (_type == 4) {
  4258. tType = 4
  4259. }
  4260. switch (str) {
  4261. case "studyDetailNT": //无终端模式
  4262. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4263. setTimeout(() => {
  4264. U.MD.U.L.login();
  4265. }, 2000);
  4266. } else {
  4267. _formdiv = new U.UF.UI.form(
  4268. "课程详情",
  4269. $$("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 }), {
  4270. "id": "studyDetailNT",
  4271. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4272. "onresize": function () { }
  4273. }, {
  4274. closecallback: function () { }
  4275. }, { "style": { "height": "36px" } }).form; //创建窗体
  4276. _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); } }
  4277. break;
  4278. }
  4279. case "studyDetail":
  4280. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4281. setTimeout(() => {
  4282. U.MD.U.L.login();
  4283. }, 2000);
  4284. } else {
  4285. _formdiv = new U.UF.UI.form(
  4286. "课程详情",
  4287. $$("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 }), {
  4288. "id": "studyDetail",
  4289. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4290. "onresize": function () { }
  4291. }, {
  4292. closecallback: function () { }
  4293. }, { "style": { "height": "36px" } }).form; //创建窗体
  4294. _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); } }
  4295. break;
  4296. }
  4297. case "studyDetailTrain":
  4298. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4299. setTimeout(() => {
  4300. U.MD.U.L.login();
  4301. }, 2000);
  4302. } else {
  4303. _formdiv = new U.UF.UI.form(
  4304. "培训详情",
  4305. $$("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 }), {
  4306. "id": "studyDetailTrain",
  4307. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4308. "onresize": function () { }
  4309. }, {
  4310. closecallback: function () { }
  4311. }, { "style": { "height": "36px" } }).form; //创建窗体
  4312. _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); } }
  4313. break;
  4314. }
  4315. case "studyDetailS":
  4316. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4317. setTimeout(() => {
  4318. U.MD.U.L.login();
  4319. }, 2000);
  4320. } else {
  4321. _formdiv = new U.UF.UI.form(
  4322. "项目详情",
  4323. $$("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 }), {
  4324. "id": "studyDetailS",
  4325. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4326. "onresize": function () { }
  4327. }, {
  4328. closecallback: function () { }
  4329. }, { "style": { "height": "36px" } }).form; //创建窗体
  4330. _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); } }
  4331. break;
  4332. }
  4333. case "studyDetailStudio":
  4334. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4335. setTimeout(() => {
  4336. U.MD.U.L.login();
  4337. }, 2000);
  4338. } else {
  4339. _formdiv = new U.UF.UI.form(
  4340. "工作详情",
  4341. $$("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 }), {
  4342. "id": "studyDetailStudio",
  4343. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4344. "onresize": function () { }
  4345. }, {
  4346. closecallback: function () { }
  4347. }, { "style": { "height": "36px" } }).form; //创建窗体
  4348. _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); } }
  4349. break;
  4350. }
  4351. case "studyDetailS5":
  4352. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4353. setTimeout(() => {
  4354. U.MD.U.L.login();
  4355. }, 2000);
  4356. } else {
  4357. _formdiv = new U.UF.UI.form(
  4358. "项目详情",
  4359. $$("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 }), {
  4360. "id": "studyDetailS",
  4361. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4362. "onresize": function () { }
  4363. }, {
  4364. closecallback: function () { }
  4365. }, { "style": { "height": "36px" } }).form; //创建窗体
  4366. _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); } }
  4367. break;
  4368. }
  4369. case "studyDetailGM":
  4370. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4371. setTimeout(() => {
  4372. U.MD.U.L.login();
  4373. }, 2000);
  4374. } else {
  4375. _formdiv = new U.UF.UI.form(
  4376. "课程详情",
  4377. $$("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 }), {
  4378. "id": "studyDetail",
  4379. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4380. "onresize": function () { }
  4381. }, {
  4382. closecallback: function () { }
  4383. }, { "style": { "height": "36px" } }).form; //创建窗体
  4384. _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); } }
  4385. break;
  4386. }
  4387. case "hanUrl":
  4388. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4389. setTimeout(() => {
  4390. U.MD.U.L.login();
  4391. }, 2000);
  4392. } else {
  4393. _formdiv = new U.UF.UI.form(
  4394. "汉字宫",
  4395. $$("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" }), {
  4396. "id": "hanUrl",
  4397. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4398. "onresize": function () { }
  4399. }, {
  4400. closecallback: function () { }
  4401. }, { "style": { "height": "36px" } }).form; //创建窗体
  4402. _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); } }
  4403. break;
  4404. }
  4405. case "index":
  4406. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4407. setTimeout(() => {
  4408. U.MD.U.L.login();
  4409. }, 2000);
  4410. } else {
  4411. _formdiv = new U.UF.UI.form(
  4412. "课程中心",
  4413. $$("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 }), {
  4414. "id": "study",
  4415. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4416. "onresize": function () { }
  4417. }, {
  4418. closecallback: function () { }
  4419. }, { "style": { "height": "36px" } }).form; //创建窗体
  4420. _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); } }
  4421. break;
  4422. }
  4423. case "dataClass":
  4424. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4425. setTimeout(() => {
  4426. U.MD.U.L.login();
  4427. }, 2000);
  4428. } else {
  4429. _formdiv = new U.UF.UI.form(
  4430. "数据报告",
  4431. $$("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 }), {
  4432. "id": "dataClass",
  4433. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4434. "onresize": function () { }
  4435. }, {
  4436. closecallback: function () { }
  4437. }, { "style": { "height": "36px" } }).form; //创建窗体
  4438. _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); } }
  4439. break;
  4440. }
  4441. case "opencCscl":
  4442. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4443. setTimeout(() => {
  4444. U.MD.U.L.login();
  4445. }, 2000);
  4446. } else {
  4447. _formdiv = new U.UF.UI.form(
  4448. "协同建构",
  4449. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4450. "id": "futureClass",
  4451. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4452. "onresize": function () { }
  4453. }, {
  4454. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4455. }, { "style": { "height": "36px" } }).form; //创建窗体
  4456. _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); } }
  4457. break;
  4458. }
  4459. case "openCourseUpdate":
  4460. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4461. setTimeout(() => {
  4462. U.MD.U.L.login();
  4463. }, 2000);
  4464. } else {
  4465. _formdiv = new U.UF.UI.form(
  4466. "课程管理",
  4467. $$("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 }), {
  4468. "id": "openCourseUpdate",
  4469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4470. "onresize": function () { }
  4471. }, {
  4472. closecallback: function () { }
  4473. }, { "style": { "height": "36px" } }).form; //创建窗体
  4474. break;
  4475. }
  4476. case "openNewCourseUpdate":
  4477. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4478. setTimeout(() => {
  4479. U.MD.U.L.login();
  4480. }, 2000);
  4481. } else {
  4482. _formdiv = new U.UF.UI.form(
  4483. "课程管理",
  4484. $$("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 }), {
  4485. "id": "openCourseUpdate",
  4486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4487. "onresize": function () { }
  4488. }, {
  4489. closecallback: function () { }
  4490. }, { "style": { "height": "36px" } }).form; //创建窗体
  4491. break;
  4492. }
  4493. case "openCourseEUpdate":
  4494. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4495. setTimeout(() => {
  4496. U.MD.U.L.login();
  4497. }, 2000);
  4498. } else {
  4499. _formdiv = new U.UF.UI.form(
  4500. "课程管理",
  4501. $$("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 }), {
  4502. "id": "openCourseUpdate",
  4503. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4504. "onresize": function () { }
  4505. }, {
  4506. closecallback: function () { }
  4507. }, { "style": { "height": "36px" } }).form; //创建窗体
  4508. break;
  4509. }
  4510. case "openCourseAiUpdate":
  4511. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4512. setTimeout(() => {
  4513. U.MD.U.L.login();
  4514. }, 2000);
  4515. } else {
  4516. _formdiv = new U.UF.UI.form(
  4517. "课程管理",
  4518. $$("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 }), {
  4519. "id": "openCourseUpdate",
  4520. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4521. "onresize": function () { }
  4522. }, {
  4523. closecallback: function () { }
  4524. }, { "style": { "height": "36px" } }).form; //创建窗体
  4525. break;
  4526. }
  4527. case "openCourseNewUpdate":
  4528. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4529. setTimeout(() => {
  4530. U.MD.U.L.login();
  4531. }, 2000);
  4532. } else {
  4533. _formdiv = new U.UF.UI.form(
  4534. "课程管理",
  4535. $$("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 }), {
  4536. "id": "openCourseUpdate",
  4537. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4538. "onresize": function () { }
  4539. }, {
  4540. closecallback: function () { }
  4541. }, { "style": { "height": "36px" } }).form; //创建窗体
  4542. break;
  4543. }
  4544. case "inviteLoginSz":
  4545. _formdiv = new U.UF.UI.form(
  4546. "随机码登录",
  4547. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  4548. "id": "loginSz",
  4549. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4550. "onresize": function () { }
  4551. }, {
  4552. closecallback: function () { }
  4553. }, { "style": { "height": "36px" } }).form; //创建窗体
  4554. break;
  4555. case "loginSz":
  4556. _formdiv = new U.UF.UI.form(
  4557. "教师登录",
  4558. $$("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" }), {
  4559. "id": "loginSz",
  4560. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4561. "onresize": function () { }
  4562. }, {
  4563. closecallback: function () { }
  4564. }, { "style": { "height": "36px" } }).form; //创建窗体
  4565. break;
  4566. case "teacher":
  4567. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4568. setTimeout(() => {
  4569. U.MD.U.L.login();
  4570. }, 2000);
  4571. } else {
  4572. _formdiv = new U.UF.UI.form(
  4573. "教师管理",
  4574. $$("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 }), {
  4575. "id": "teacher",
  4576. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4577. "onresize": function () { }
  4578. }, {
  4579. closecallback: function () { }
  4580. }, { "style": { "height": "36px" } }).form; //创建窗体
  4581. break;
  4582. }
  4583. case "dataBoardSZArea":
  4584. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4585. setTimeout(() => {
  4586. U.MD.U.L.login();
  4587. }, 2000);
  4588. } else {
  4589. _formdiv = new U.UF.UI.form(
  4590. "综合数据看板",
  4591. $$("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 }), {
  4592. "id": "dataBoardSZArea",
  4593. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4594. "onresize": function () { }
  4595. }, {
  4596. closecallback: function () { }
  4597. }, { "style": { "height": "36px" } }).form; //创建窗体
  4598. break;
  4599. }
  4600. case "dataBoardSZCity":
  4601. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4602. setTimeout(() => {
  4603. U.MD.U.L.login();
  4604. }, 2000);
  4605. } else {
  4606. _formdiv = new U.UF.UI.form(
  4607. "综合数据看板",
  4608. $$("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 }), {
  4609. "id": "dataBoardSZCity",
  4610. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4611. "onresize": function () { }
  4612. }, {
  4613. closecallback: function () { }
  4614. }, { "style": { "height": "36px" } }).form; //创建窗体
  4615. break;
  4616. }
  4617. case "classroom_observation_board":
  4618. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4619. setTimeout(() => {
  4620. U.MD.U.L.login();
  4621. }, 2000);
  4622. } else {
  4623. _formdiv = new U.UF.UI.form(
  4624. "课堂观察",
  4625. $$("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 }), {
  4626. "id": "classroom_observation_board",
  4627. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4628. "onresize": function () { }
  4629. }, {
  4630. closecallback: function () { }
  4631. }, { "style": { "height": "36px" } }).form; //创建窗体
  4632. break;
  4633. }
  4634. case "classroom_observation_ob_comment":
  4635. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4636. setTimeout(() => {
  4637. U.MD.U.L.login();
  4638. }, 2000);
  4639. } else {
  4640. _formdiv = new U.UF.UI.form(
  4641. "课堂审核",
  4642. $$("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 }), {
  4643. "id": "classroom_observation_ob_comment",
  4644. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4645. "onresize": function () { }
  4646. }, {
  4647. closecallback: function () { }
  4648. }, { "style": { "height": "36px" } }).form; //创建窗体
  4649. break;
  4650. }
  4651. }
  4652. }
  4653. U.MD.D.I.openApplication = function (str, obj, info) {
  4654. obj = obj || {};
  4655. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4656. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4657. _userinfo = US.userInfo, //登录用户信息
  4658. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4659. _oid = obj.organizeid || _userinfo.organizeid,
  4660. _type = US.userInfo.type,
  4661. _org = US.userInfo.org,
  4662. _role = US.userInfo.role,
  4663. _classId = US.userInfo.classid,
  4664. _TscreenType = 1
  4665. _screenType = 2,
  4666. _SscreenType = 3;
  4667. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4668. return;
  4669. }
  4670. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4671. switch (str) {
  4672. case "studnetProject": //好友打开
  4673. _formdiv = new U.UF.UI.form(
  4674. "我的项目",
  4675. $$("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 }), {
  4676. "id": "studnetProject",
  4677. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4678. "onresize": function () { }
  4679. }, {
  4680. closecallback: function () { }
  4681. }, { "style": { "height": "36px" } }).form; //创建窗体
  4682. _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); } }
  4683. break;
  4684. case "studentEvaluate": //好友打开
  4685. _formdiv = new U.UF.UI.form(
  4686. "我的评价",
  4687. $$("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 }), {
  4688. "id": "studentEvaluate",
  4689. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4690. "onresize": function () { }
  4691. }, {
  4692. closecallback: function () { }
  4693. }, { "style": { "height": "36px" } }).form; //创建窗体
  4694. _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); } }
  4695. break;
  4696. case "my":
  4697. _formdiv = new U.UF.UI.form(
  4698. "我的资料",
  4699. $$("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 }), {
  4700. "id": "my",
  4701. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4702. "onresize": function () { }
  4703. }, {
  4704. closecallback: function () { }
  4705. }, { "style": { "height": "36px" } }).form; //创建窗体
  4706. _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); } }
  4707. break;
  4708. case "program":
  4709. _formdiv = new U.UF.UI.form(
  4710. "编程平台",
  4711. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4712. "id": "program",
  4713. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4714. "onresize": function () { }
  4715. }, {
  4716. closecallback: function () { }
  4717. }, { "style": { "height": "36px" } }).form; //创建窗体
  4718. _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); } }
  4719. break;
  4720. case "library":
  4721. _formdiv = new U.UF.UI.form(
  4722. "素材库",
  4723. $$("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 }), {
  4724. "id": "library",
  4725. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4726. "onresize": function () { }
  4727. }, {
  4728. closecallback: function () { }
  4729. }, { "style": { "height": "36px" } }).form; //创建窗体
  4730. _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); } }
  4731. break;
  4732. case "whiteboard":
  4733. _formdiv = new U.UF.UI.form(
  4734. "电子白板",
  4735. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4736. "id": "whiteboard",
  4737. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4738. "onresize": function () { }
  4739. }, {
  4740. closecallback: function () { }
  4741. }, { "style": { "height": "36px" } }).form; //创建窗体
  4742. _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); } }
  4743. break;
  4744. case "investigation":
  4745. _formdiv = new U.UF.UI.form(
  4746. "问卷调查",
  4747. $$("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 }), {
  4748. "id": "investigation",
  4749. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4750. "onresize": function () { }
  4751. }, {
  4752. closecallback: function () { }
  4753. }, { "style": { "height": "36px" } }).form; //创建窗体
  4754. _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); } }
  4755. break;
  4756. case "note":
  4757. _formdiv = new U.UF.UI.form(
  4758. "便签分类",
  4759. $$("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 }), {
  4760. "id": "note",
  4761. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4762. "onresize": function () { }
  4763. }, {
  4764. closecallback: function () { }
  4765. }, { "style": { "height": "36px" } }).form; //创建窗体
  4766. _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); } }
  4767. break;
  4768. // case "score":
  4769. // _formdiv = new U.UF.UI.form(
  4770. // "量规评分",
  4771. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4772. // "id": "score",
  4773. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4774. // "onresize": function() {}
  4775. // }, {
  4776. // closecallback: function() {}
  4777. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4778. // _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); } }
  4779. // break;
  4780. case "mind":
  4781. _formdiv = new U.UF.UI.form(
  4782. "思维导图",
  4783. $$("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"
  4784. "id": "mind",
  4785. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4786. "onresize": function () { }
  4787. }, {
  4788. closecallback: function () { }
  4789. }, { "style": { "height": "36px" } }).form; //创建窗体
  4790. _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); } }
  4791. break;
  4792. case "doc":
  4793. // U.MD.D.I.isRoom();
  4794. _formdiv = new U.UF.UI.form(
  4795. "协同文档",
  4796. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4797. "id": "doc",
  4798. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4799. "onresize": function () { }
  4800. }, {
  4801. closecallback: function () { }
  4802. }, { "style": { "height": "36px" } }).form; //创建窗体
  4803. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4804. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4805. // })
  4806. _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); } }
  4807. break;
  4808. case "studentStudy":
  4809. _formdiv = new U.UF.UI.form(
  4810. "课程中心",
  4811. $$("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
  4812. "id": "studentStudy",
  4813. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4814. "onresize": function () { }
  4815. }, {
  4816. closecallback: function () { }
  4817. }, { "style": { "height": "36px" } }).form; //创建窗体
  4818. _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); } }
  4819. break;
  4820. case "train": //好友打开
  4821. _formdiv = new U.UF.UI.form(
  4822. "训练平台",
  4823. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4824. "id": "train",
  4825. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4826. "onresize": function () { }
  4827. }, {
  4828. closecallback: function () { }
  4829. }, { "style": { "height": "36px" } }).form; //创建窗体
  4830. _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); } }
  4831. break;
  4832. case "mindNetwork": //好友打开
  4833. _formdiv = new U.UF.UI.form(
  4834. "思维网格",
  4835. $$("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 }), {
  4836. "id": "mindNetwork",
  4837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4838. "onresize": function () { }
  4839. }, {
  4840. closecallback: function () { }
  4841. }, { "style": { "height": "36px" } }).form; //创建窗体
  4842. _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); } }
  4843. break;
  4844. case "studentClassRoom": //好友打开
  4845. _formdiv = new U.UF.UI.form(
  4846. "实时课堂",
  4847. $$("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 }), {
  4848. "id": "studentClassRoom",
  4849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4850. "onresize": function () { }
  4851. }, {
  4852. closecallback: function () { }
  4853. }, { "style": { "height": "36px" } }).form; //创建窗体
  4854. _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); } }
  4855. setTimeout(() => {
  4856. U.UF.F.windowZooming(_formdiv)
  4857. }, 0);
  4858. break;
  4859. }
  4860. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4861. switch (str) {
  4862. case "studnetProject": //好友打开
  4863. _formdiv = new U.UF.UI.form(
  4864. "我的项目",
  4865. $$("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 }), {
  4866. "id": "studnetProject",
  4867. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4868. "onresize": function () { }
  4869. }, {
  4870. closecallback: function () { }
  4871. }, { "style": { "height": "36px" } }).form; //创建窗体
  4872. _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); } }
  4873. break;
  4874. case "studentEvaluate": //好友打开
  4875. _formdiv = new U.UF.UI.form(
  4876. "我的评价",
  4877. $$("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 }), {
  4878. "id": "studentEvaluate",
  4879. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4880. "onresize": function () { }
  4881. }, {
  4882. closecallback: function () { }
  4883. }, { "style": { "height": "36px" } }).form; //创建窗体
  4884. _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); } }
  4885. break;
  4886. case "my":
  4887. _formdiv = new U.UF.UI.form(
  4888. "我的资料",
  4889. $$("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 }), {
  4890. "id": "my",
  4891. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4892. "onresize": function () { }
  4893. }, {
  4894. closecallback: function () { }
  4895. }, { "style": { "height": "36px" } }).form; //创建窗体
  4896. _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); } }
  4897. break;
  4898. case "program":
  4899. _formdiv = new U.UF.UI.form(
  4900. "编程平台",
  4901. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4902. "id": "program",
  4903. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4904. "onresize": function () { }
  4905. }, {
  4906. closecallback: function () { }
  4907. }, { "style": { "height": "36px" } }).form; //创建窗体
  4908. _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); } }
  4909. break;
  4910. case "library":
  4911. _formdiv = new U.UF.UI.form(
  4912. "素材库",
  4913. $$("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 }), {
  4914. "id": "library",
  4915. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4916. "onresize": function () { }
  4917. }, {
  4918. closecallback: function () { }
  4919. }, { "style": { "height": "36px" } }).form; //创建窗体
  4920. _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); } }
  4921. break;
  4922. case "whiteboard":
  4923. _formdiv = new U.UF.UI.form(
  4924. "电子白板",
  4925. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4926. "id": "whiteboard",
  4927. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4928. "onresize": function () { }
  4929. }, {
  4930. closecallback: function () { }
  4931. }, { "style": { "height": "36px" } }).form; //创建窗体
  4932. _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); } }
  4933. break;
  4934. case "investigation":
  4935. _formdiv = new U.UF.UI.form(
  4936. "问卷调查",
  4937. $$("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 }), {
  4938. "id": "investigation",
  4939. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4940. "onresize": function () { }
  4941. }, {
  4942. closecallback: function () { }
  4943. }, { "style": { "height": "36px" } }).form; //创建窗体
  4944. _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); } }
  4945. break;
  4946. case "note":
  4947. _formdiv = new U.UF.UI.form(
  4948. "便签分类",
  4949. $$("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 }), {
  4950. "id": "note",
  4951. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4952. "onresize": function () { }
  4953. }, {
  4954. closecallback: function () { }
  4955. }, { "style": { "height": "36px" } }).form; //创建窗体
  4956. _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); } }
  4957. break;
  4958. // case "score":
  4959. // _formdiv = new U.UF.UI.form(
  4960. // "量规评分",
  4961. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4962. // "id": "score",
  4963. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4964. // "onresize": function() {}
  4965. // }, {
  4966. // closecallback: function() {}
  4967. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4968. // _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); } }
  4969. // break;
  4970. case "mind":
  4971. _formdiv = new U.UF.UI.form(
  4972. "思维导图",
  4973. $$("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"
  4974. "id": "mind",
  4975. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4976. "onresize": function () { }
  4977. }, {
  4978. closecallback: function () { }
  4979. }, { "style": { "height": "36px" } }).form; //创建窗体
  4980. _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); } }
  4981. break;
  4982. case "doc":
  4983. // U.MD.D.I.isRoom();
  4984. _formdiv = new U.UF.UI.form(
  4985. "协同文档",
  4986. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4987. "id": "doc",
  4988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4989. "onresize": function () { }
  4990. }, {
  4991. closecallback: function () { }
  4992. }, { "style": { "height": "36px" } }).form; //创建窗体
  4993. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4994. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4995. })
  4996. _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); } }
  4997. break;
  4998. case "train": //好友打开
  4999. _formdiv = new U.UF.UI.form(
  5000. "训练平台",
  5001. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5002. "id": "train",
  5003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5004. "onresize": function () { }
  5005. }, {
  5006. closecallback: function () { }
  5007. }, { "style": { "height": "36px" } }).form; //创建窗体
  5008. _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); } }
  5009. break;
  5010. case "studentStudy":
  5011. _formdiv = new U.UF.UI.form(
  5012. "课程中心",
  5013. $$("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
  5014. "id": "studentStudy",
  5015. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5016. "onresize": function () { }
  5017. }, {
  5018. closecallback: function () { }
  5019. }, { "style": { "height": "36px" } }).form; //创建窗体
  5020. _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); } }
  5021. break;
  5022. case "mindNetwork": //好友打开
  5023. _formdiv = new U.UF.UI.form(
  5024. "思维网格",
  5025. $$("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 }), {
  5026. "id": "mindNetwork",
  5027. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5028. "onresize": function () { }
  5029. }, {
  5030. closecallback: function () { }
  5031. }, { "style": { "height": "36px" } }).form; //创建窗体
  5032. _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); } }
  5033. break;
  5034. case "studentClassRoom": //好友打开
  5035. _formdiv = new U.UF.UI.form(
  5036. "实时课堂",
  5037. $$("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 }), {
  5038. "id": "studentClassRoom",
  5039. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5040. "onresize": function () { }
  5041. }, {
  5042. closecallback: function () { }
  5043. }, { "style": { "height": "36px" } }).form; //创建窗体
  5044. _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); } }
  5045. setTimeout(() => {
  5046. U.UF.F.windowZooming(_formdiv)
  5047. }, 0);
  5048. break;
  5049. }
  5050. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5051. //选择应用处理
  5052. switch (str) {
  5053. case "project": //好友打开
  5054. _formdiv = new U.UF.UI.form(
  5055. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5056. $$("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 }), {
  5057. "id": "project",
  5058. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5059. "onresize": function () { }
  5060. }, {
  5061. closecallback: function () { }
  5062. }, { "style": { "height": "36px" } }).form; //创建窗体
  5063. _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); } }
  5064. break;
  5065. case "student":
  5066. _formdiv = new U.UF.UI.form(
  5067. "学生管理",
  5068. $$("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 }), {
  5069. "id": "student",
  5070. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5071. "onresize": function () { }
  5072. }, {
  5073. closecallback: function () { }
  5074. }, { "style": { "height": "36px" } }).form; //创建窗体
  5075. _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); } }
  5076. break;
  5077. case "evaluate":
  5078. _formdiv = new U.UF.UI.form(
  5079. "学生评价",
  5080. $$("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 }), {
  5081. "id": "evaluate",
  5082. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5083. "onresize": function () { }
  5084. }, {
  5085. closecallback: function () { }
  5086. }, { "style": { "height": "36px" } }).form; //创建窗体
  5087. _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); } }
  5088. break;
  5089. case "sys":
  5090. _formdiv = new U.UF.UI.form(
  5091. "目标管理",
  5092. $$("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 }), {
  5093. "id": "sys",
  5094. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5095. "onresize": function () { }
  5096. }, {
  5097. closecallback: function () { }
  5098. }, { "style": { "height": "36px" } }).form; //创建窗体
  5099. _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); } }
  5100. break;
  5101. case "courseDesign":
  5102. _formdiv = new U.UF.UI.form(
  5103. "项目设计",
  5104. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5105. "id": "courseDesign",
  5106. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5107. "onresize": function () { }
  5108. }, {
  5109. closecallback: function () { }
  5110. }, { "style": { "height": "36px" } }).form; //创建窗体
  5111. _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); } }
  5112. break;
  5113. case "program":
  5114. _formdiv = new U.UF.UI.form(
  5115. "编程平台",
  5116. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5117. "id": "program",
  5118. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5119. "onresize": function () { }
  5120. }, {
  5121. closecallback: function () { }
  5122. }, { "style": { "height": "36px" } }).form; //创建窗体
  5123. _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); } }
  5124. break;
  5125. case "class":
  5126. _formdiv = new U.UF.UI.form(
  5127. "班级管理",
  5128. $$("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 }), {
  5129. "id": "class",
  5130. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5131. "onresize": function () { }
  5132. }, {
  5133. closecallback: function () { }
  5134. }, { "style": { "height": "36px" } }).form; //创建窗体
  5135. _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); } }
  5136. break;
  5137. case "Grade":
  5138. _formdiv = new U.UF.UI.form(
  5139. "年级管理",
  5140. $$("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 }), {
  5141. "id": "Grade",
  5142. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5143. "onresize": function () { }
  5144. }, {
  5145. closecallback: function () { }
  5146. }, { "style": { "height": "36px" } }).form; //创建窗体
  5147. _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); } }
  5148. break;
  5149. case "teacherOffice":
  5150. _formdiv = new U.UF.UI.form(
  5151. "教研室",
  5152. $$("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 }), {
  5153. "id": "teacherOffice",
  5154. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5155. "onresize": function () { }
  5156. }, {
  5157. closecallback: function () { }
  5158. }, { "style": { "height": "36px" } }).form; //创建窗体
  5159. _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); } }
  5160. break;
  5161. case "my":
  5162. _formdiv = new U.UF.UI.form(
  5163. "我的资料",
  5164. $$("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 }), {
  5165. "id": "my",
  5166. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5167. "onresize": function () { }
  5168. }, {
  5169. closecallback: function () { }
  5170. }, { "style": { "height": "36px" } }).form; //创建窗体
  5171. _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); } }
  5172. break;
  5173. case "notice":
  5174. _formdiv = new U.UF.UI.form(
  5175. "通知公告",
  5176. $$("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 }), {
  5177. "id": "notice",
  5178. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5179. "onresize": function () { }
  5180. }, {
  5181. closecallback: function () { }
  5182. }, { "style": { "height": "36px" } }).form; //创建窗体
  5183. _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); } }
  5184. break;
  5185. case "library":
  5186. _formdiv = new U.UF.UI.form(
  5187. "素材库",
  5188. $$("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 }), {
  5189. "id": "library",
  5190. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5191. "onresize": function () { }
  5192. }, {
  5193. closecallback: function () { }
  5194. }, { "style": { "height": "36px" } }).form; //创建窗体
  5195. _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); } }
  5196. break;
  5197. case "whiteboard":
  5198. _formdiv = new U.UF.UI.form(
  5199. "电子白板",
  5200. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5201. "id": "whiteboard",
  5202. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5203. "onresize": function () { }
  5204. }, {
  5205. closecallback: function () { }
  5206. }, { "style": { "height": "36px" } }).form; //创建窗体
  5207. _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); } }
  5208. break;
  5209. case "investigation":
  5210. _formdiv = new U.UF.UI.form(
  5211. "问卷调查",
  5212. $$("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 }), {
  5213. "id": "investigation",
  5214. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5215. "onresize": function () { }
  5216. }, {
  5217. closecallback: function () { }
  5218. }, { "style": { "height": "36px" } }).form; //创建窗体
  5219. _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); } }
  5220. break;
  5221. case "note":
  5222. _formdiv = new U.UF.UI.form(
  5223. "便签分类",
  5224. $$("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 }), {
  5225. "id": "note",
  5226. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5227. "onresize": function () { }
  5228. }, {
  5229. closecallback: function () { }
  5230. }, { "style": { "height": "36px" } }).form; //创建窗体
  5231. _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); } }
  5232. break;
  5233. // case "score":
  5234. // _formdiv = new U.UF.UI.form(
  5235. // "量规评分",
  5236. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5237. // "id": "score",
  5238. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5239. // "onresize": function() {}
  5240. // }, {
  5241. // closecallback: function() {}
  5242. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5243. // _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); } }
  5244. // break;
  5245. case "mind":
  5246. _formdiv = new U.UF.UI.form(
  5247. "思维导图",
  5248. $$("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"
  5249. "id": "mind",
  5250. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5251. "onresize": function () { }
  5252. }, {
  5253. closecallback: function () { }
  5254. }, { "style": { "height": "36px" } }).form; //创建窗体
  5255. _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); } }
  5256. break;
  5257. case "doc":
  5258. // U.MD.D.I.isRoom();
  5259. _formdiv = new U.UF.UI.form(
  5260. "协同文档",
  5261. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5262. "id": "doc",
  5263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5264. "onresize": function () { }
  5265. }, {
  5266. closecallback: function () { }
  5267. }, { "style": { "height": "36px" } }).form; //创建窗体
  5268. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5269. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5270. })
  5271. _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); } }
  5272. break;
  5273. case "study":
  5274. _formdiv = new U.UF.UI.form(
  5275. "课程中心",
  5276. $$("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
  5277. "id": "study",
  5278. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5279. "onresize": function () { }
  5280. }, {
  5281. closecallback: function () { }
  5282. }, { "style": { "height": "36px" } }).form; //创建窗体
  5283. _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); } }
  5284. break;
  5285. case "mindNetwork": //好友打开
  5286. _formdiv = new U.UF.UI.form(
  5287. "思维网格",
  5288. $$("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 }), {
  5289. "id": "mindNetwork",
  5290. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5291. "onresize": function () { }
  5292. }, {
  5293. closecallback: function () { }
  5294. }, { "style": { "height": "36px" } }).form; //创建窗体
  5295. _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); } }
  5296. break;
  5297. case "train": //好友打开
  5298. _formdiv = new U.UF.UI.form(
  5299. "训练平台",
  5300. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5301. "id": "mindNetwork",
  5302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5303. "onresize": function () { }
  5304. }, {
  5305. closecallback: function () { }
  5306. }, { "style": { "height": "36px" } }).form; //创建窗体
  5307. _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); } }
  5308. break;
  5309. case "teacherClassRoom": //好友打开
  5310. _formdiv = new U.UF.UI.form(
  5311. "实时课堂",
  5312. $$("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 }), {
  5313. "id": "teacherClassRoom",
  5314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //创建窗体
  5319. _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); } }
  5320. setTimeout(() => {
  5321. U.UF.F.windowZooming(_formdiv)
  5322. }, 0);
  5323. break;
  5324. }
  5325. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5326. switch (str) {
  5327. case "project": //好友打开
  5328. _formdiv = new U.UF.UI.form(
  5329. "课程管理",
  5330. $$("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 }), {
  5331. "id": "project",
  5332. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5333. "onresize": function () { }
  5334. }, {
  5335. closecallback: function () { }
  5336. }, { "style": { "height": "36px" } }).form; //创建窗体
  5337. _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); } }
  5338. break;
  5339. case "evaluate":
  5340. _formdiv = new U.UF.UI.form(
  5341. "学生评价",
  5342. $$("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 }), {
  5343. "id": "evaluate",
  5344. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5345. "onresize": function () { }
  5346. }, {
  5347. closecallback: function () { }
  5348. }, { "style": { "height": "36px" } }).form; //创建窗体
  5349. _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); } }
  5350. break;
  5351. case "notice":
  5352. _formdiv = new U.UF.UI.form(
  5353. "通知公告",
  5354. $$("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 }), {
  5355. "id": "notice",
  5356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5357. "onresize": function () { }
  5358. }, {
  5359. closecallback: function () { }
  5360. }, { "style": { "height": "36px" } }).form; //创建窗体
  5361. _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); } }
  5362. break;
  5363. case "stuLibrary":
  5364. _formdiv = new U.UF.UI.form(
  5365. "学习资料",
  5366. $$("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 }), {
  5367. "id": "stuLibrary",
  5368. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5369. "onresize": function () { }
  5370. }, {
  5371. closecallback: function () { }
  5372. }, { "style": { "height": "36px" } }).form; //创建窗体
  5373. _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); } }
  5374. break;
  5375. case "program":
  5376. _formdiv = new U.UF.UI.form(
  5377. "编程平台",
  5378. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5379. "id": "program",
  5380. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5381. "onresize": function () { }
  5382. }, {
  5383. closecallback: function () { }
  5384. }, { "style": { "height": "36px" } }).form; //创建窗体
  5385. _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); } }
  5386. break;
  5387. case "whiteboard":
  5388. _formdiv = new U.UF.UI.form(
  5389. "电子白板",
  5390. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5391. "id": "whiteboard",
  5392. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5393. "onresize": function () { }
  5394. }, {
  5395. closecallback: function () { }
  5396. }, { "style": { "height": "36px" } }).form; //创建窗体
  5397. _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); } }
  5398. break;
  5399. case "investigation":
  5400. _formdiv = new U.UF.UI.form(
  5401. "问卷调查",
  5402. $$("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 }), {
  5403. "id": "investigation",
  5404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5405. "onresize": function () { }
  5406. }, {
  5407. closecallback: function () { }
  5408. }, { "style": { "height": "36px" } }).form; //创建窗体
  5409. _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); } }
  5410. break;
  5411. case "mind":
  5412. _formdiv = new U.UF.UI.form(
  5413. "思维导图",
  5414. $$("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"
  5415. "id": "mind",
  5416. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5417. "onresize": function () { }
  5418. }, {
  5419. closecallback: function () { }
  5420. }, { "style": { "height": "36px" } }).form; //创建窗体
  5421. _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); } }
  5422. break;
  5423. case "doc":
  5424. // U.MD.D.I.isRoom();
  5425. _formdiv = new U.UF.UI.form(
  5426. "协同文档",
  5427. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5428. "id": "doc",
  5429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //创建窗体
  5434. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5435. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5436. })
  5437. _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); } }
  5438. break;
  5439. case "study":
  5440. _formdiv = new U.UF.UI.form(
  5441. "课程中心",
  5442. $$("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
  5443. "id": "study",
  5444. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //创建窗体
  5449. _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); } }
  5450. break;
  5451. case "mindNetwork": //好友打开
  5452. _formdiv = new U.UF.UI.form(
  5453. "思维网格",
  5454. $$("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 }), {
  5455. "id": "mindNetwork",
  5456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5457. "onresize": function () { }
  5458. }, {
  5459. closecallback: function () { }
  5460. }, { "style": { "height": "36px" } }).form; //创建窗体
  5461. _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); } }
  5462. break;
  5463. case "train": //好友打开
  5464. _formdiv = new U.UF.UI.form(
  5465. "训练平台",
  5466. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5467. "id": "train",
  5468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5469. "onresize": function () { }
  5470. }, {
  5471. closecallback: function () { }
  5472. }, { "style": { "height": "36px" } }).form; //创建窗体
  5473. _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); } }
  5474. break;
  5475. case "sys":
  5476. _formdiv = new U.UF.UI.form(
  5477. "目标管理",
  5478. $$("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 }), {
  5479. "id": "sys",
  5480. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5481. "onresize": function () { }
  5482. }, {
  5483. closecallback: function () { }
  5484. }, { "style": { "height": "36px" } }).form; //创建窗体
  5485. _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); } }
  5486. break;
  5487. case "courseDesign":
  5488. _formdiv = new U.UF.UI.form(
  5489. "项目设计",
  5490. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5491. "id": "courseDesign",
  5492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5493. "onresize": function () { }
  5494. }, {
  5495. closecallback: function () { }
  5496. }, { "style": { "height": "36px" } }).form; //创建窗体
  5497. _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); } }
  5498. break;
  5499. }
  5500. } else if (!_type) {
  5501. switch (str) {
  5502. case "my":
  5503. _formdiv = new U.UF.UI.form(
  5504. "我的资料",
  5505. $$("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 }), {
  5506. "id": "my",
  5507. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5508. "onresize": function () { }
  5509. }, {
  5510. closecallback: function () { }
  5511. }, { "style": { "height": "36px" } }).form; //创建窗体
  5512. _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); } }
  5513. break;
  5514. }
  5515. }
  5516. switch (str) {
  5517. // AIprogram2 AI体验 aihub.cocorobo.cn
  5518. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5519. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5520. case "formulaEdi": //公式编辑
  5521. _formdiv = new U.UF.UI.form(
  5522. "公式编辑",
  5523. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5524. "id": "formulaEdi",
  5525. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5526. "onresize": function () { }
  5527. }, {
  5528. closecallback: function () { }
  5529. }, { "style": { "height": "36px" } }).form; //创建窗体
  5530. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5531. break;
  5532. case "molStr": //分子结构
  5533. _formdiv = new U.UF.UI.form(
  5534. "分子结构",
  5535. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5536. "id": "molStr",
  5537. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5538. "onresize": function () { }
  5539. }, {
  5540. closecallback: function () { }
  5541. }, { "style": { "height": "36px" } }).form; //创建窗体
  5542. _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); } }
  5543. break;
  5544. case "timeAxis": //时间轴
  5545. _formdiv = new U.UF.UI.form(
  5546. "时间轴",
  5547. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5548. "id": "timeAxis",
  5549. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5550. "onresize": function () { }
  5551. }, {
  5552. closecallback: function () { }
  5553. }, { "style": { "height": "36px" } }).form; //创建窗体
  5554. _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); } }
  5555. break;
  5556. case "AIprogram2": //AI体验
  5557. _formdiv = new U.UF.UI.form(
  5558. "AI体验",
  5559. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5560. "id": "AIprogram2",
  5561. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5562. "onresize": function () { }
  5563. }, {
  5564. closecallback: function () { }
  5565. }, { "style": { "height": "36px" } }).form; //创建窗体
  5566. _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); } }
  5567. break;
  5568. case "Pythonprogram": //python编程
  5569. _formdiv = new U.UF.UI.form(
  5570. "Python编程",
  5571. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5572. "id": "Pythonprogram",
  5573. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5574. "onresize": function () { }
  5575. }, {
  5576. closecallback: function () { }
  5577. }, { "style": { "height": "36px" } }).form; //创建窗体
  5578. _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); } }
  5579. break;
  5580. case "AIprogram": //ai编程
  5581. _formdiv = new U.UF.UI.form(
  5582. "AI编程平台",
  5583. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5584. "id": "AIprogram",
  5585. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5586. "onresize": function () { }
  5587. }, {
  5588. closecallback: function () { }
  5589. }, { "style": { "height": "36px" } }).form; //创建窗体
  5590. _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); } }
  5591. break;
  5592. case "CocoPi": //CocoPi
  5593. _formdiv = new U.UF.UI.form(
  5594. "CocoPi",
  5595. $$("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" }), {
  5596. "id": "CocoPi",
  5597. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5598. "onresize": function () { }
  5599. }, {
  5600. closecallback: function () { }
  5601. }, { "style": { "height": "36px" } }).form; //创建窗体
  5602. _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); } }
  5603. break;
  5604. case "Wood": //Wood
  5605. _formdiv = new U.UF.UI.form(
  5606. "海龟编程",
  5607. $$("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/" }), {
  5608. "id": "Wood",
  5609. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5610. "onresize": function () { }
  5611. }, {
  5612. closecallback: function () { }
  5613. }, { "style": { "height": "36px" } }).form; //创建窗体
  5614. _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); } }
  5615. break;
  5616. case "car": //模拟驾驶
  5617. _formdiv = new U.UF.UI.form(
  5618. "模拟驾驶",
  5619. $$("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/" }), {
  5620. "id": "car",
  5621. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5622. "onresize": function () { }
  5623. }, {
  5624. closecallback: function () { }
  5625. }, { "style": { "height": "36px" } }).form; //创建窗体
  5626. _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); } }
  5627. break;
  5628. case "lineSearch": //路径搜索
  5629. _formdiv = new U.UF.UI.form(
  5630. "路径搜索",
  5631. $$("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/" }), {
  5632. "id": "lineSearch",
  5633. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5634. "onresize": function () { }
  5635. }, {
  5636. closecallback: function () { }
  5637. }, { "style": { "height": "36px" } }).form; //创建窗体
  5638. _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); } }
  5639. break;
  5640. case "deepLearning": //深度学习
  5641. _formdiv = new U.UF.UI.form(
  5642. "深度学习",
  5643. $$("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/#" }), {
  5644. "id": "deepLearning",
  5645. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5646. "onresize": function () { }
  5647. }, {
  5648. closecallback: function () { }
  5649. }, { "style": { "height": "36px" } }).form; //创建窗体
  5650. _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); } }
  5651. break;
  5652. case "allHistory": //深度学习
  5653. _formdiv = new U.UF.UI.form(
  5654. "全历史",
  5655. $$("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/" }), {
  5656. "id": "allHistory",
  5657. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5658. "onresize": function () { }
  5659. }, {
  5660. closecallback: function () { }
  5661. }, { "style": { "height": "36px" } }).form; //创建窗体
  5662. _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); } }
  5663. break;
  5664. case "chatPDF": //ai编程
  5665. _formdiv = new U.UF.UI.form(
  5666. "chatPDF",
  5667. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5668. "id": "chatPDF",
  5669. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5670. "onresize": function () { }
  5671. }, {
  5672. closecallback: function () { }
  5673. }, { "style": { "height": "36px" } }).form; //创建窗体
  5674. _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); } }
  5675. break;
  5676. case "resources": //国家教育
  5677. _formdiv = new U.UF.UI.form(
  5678. "国家教育",
  5679. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5680. "id": "resources",
  5681. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5682. "onresize": function () { }
  5683. }, {
  5684. closecallback: function () { }
  5685. }, { "style": { "height": "36px" } }).form; //创建窗体
  5686. _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); } }
  5687. break;
  5688. case "codeEdit": //源码编辑
  5689. _formdiv = new U.UF.UI.form(
  5690. "源码编辑",
  5691. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5692. "id": "codeEdit",
  5693. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5694. "onresize": function () { }
  5695. }, {
  5696. closecallback: function () { }
  5697. }, { "style": { "height": "36px" } }).form; //创建窗体
  5698. _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); } }
  5699. break; //
  5700. case "MindMap": //MindMap
  5701. _formdiv = new U.UF.UI.form(
  5702. "MindMap",
  5703. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5704. "id": "MindMap",
  5705. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5706. "onresize": function () { }
  5707. }, {
  5708. closecallback: function () { }
  5709. }, { "style": { "height": "36px" } }).form; //创建窗体
  5710. _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); } }
  5711. break;
  5712. case "netWorkPanel": //netWorkPanel
  5713. _formdiv = new U.UF.UI.form(
  5714. "netWorkPanel",
  5715. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5716. "id": "netWorkPanel",
  5717. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5718. "onresize": function () { }
  5719. }, {
  5720. closecallback: function () { }
  5721. }, { "style": { "height": "36px" } }).form; //创建窗体
  5722. _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); } }
  5723. break;
  5724. case "GeoGebra": //GeoGebra
  5725. _formdiv = new U.UF.UI.form(
  5726. "GeoGebra",
  5727. $$("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" }), {
  5728. "id": "GeoGebra",
  5729. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5730. "onresize": function () { }
  5731. }, {
  5732. closecallback: function () { }
  5733. }, { "style": { "height": "36px" } }).form; //创建窗体
  5734. _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); } }
  5735. break;
  5736. case "translation": //翻译
  5737. _formdiv = new U.UF.UI.form(
  5738. "翻译",
  5739. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5740. "id": "translation",
  5741. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5742. "onresize": function () { }
  5743. }, {
  5744. closecallback: function () { }
  5745. }, { "style": { "height": "36px" } }).form; //创建窗体
  5746. _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); } }
  5747. break;
  5748. case "mohe": //魔盒
  5749. _formdiv = new U.UF.UI.form(
  5750. "魔盒识字",
  5751. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5752. "id": "mohe",
  5753. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5754. "onresize": function () { }
  5755. }, {
  5756. closecallback: function () { }
  5757. }, { "style": { "height": "36px" } }).form; //创建窗体
  5758. _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); } }
  5759. break;
  5760. case "24game": //24点
  5761. _formdiv = new U.UF.UI.form(
  5762. "24点",
  5763. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5764. "id": "24game",
  5765. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5766. "onresize": function () { }
  5767. }, {
  5768. closecallback: function () { }
  5769. }, { "style": { "height": "36px" } }).form; //创建窗体
  5770. _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); } }
  5771. break;
  5772. case "case":
  5773. _formdiv = new U.UF.UI.form(
  5774. "课程进展",
  5775. $$("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 }), {
  5776. "id": "case",
  5777. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5778. "onresize": function () { }
  5779. }, {
  5780. closecallback: function () { }
  5781. }, { "style": { "height": "36px" } }).form; //创建窗体
  5782. _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); } }
  5783. break;
  5784. case "snf":
  5785. _formdiv = new U.UF.UI.form(
  5786. "赛诺梵",
  5787. $$("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" }), {
  5788. "id": "snf",
  5789. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5790. "onresize": function () { }
  5791. }, {
  5792. closecallback: function () { }
  5793. }, { "style": { "height": "36px" } }).form; //创建窗体
  5794. _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); } }
  5795. break;
  5796. case "hanFamily":
  5797. _formdiv = new U.UF.UI.form(
  5798. "汉字家族",
  5799. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5800. "id": "hanFamily",
  5801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5802. "onresize": function () { }
  5803. }, {
  5804. closecallback: function () { }
  5805. }, { "style": { "height": "36px" } }).form; //创建窗体
  5806. _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); } }
  5807. break;
  5808. case "hanClassics":
  5809. _formdiv = new U.UF.UI.form(
  5810. "国学经典",
  5811. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5812. "id": "hanClassics",
  5813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5814. "onresize": function () { }
  5815. }, {
  5816. closecallback: function () { }
  5817. }, { "style": { "height": "36px" } }).form; //创建窗体
  5818. _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); } }
  5819. break;
  5820. case "hanTraining":
  5821. _formdiv = new U.UF.UI.form(
  5822. "笔画训练",
  5823. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5824. "id": "hanTraining",
  5825. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5826. "onresize": function () { }
  5827. }, {
  5828. closecallback: function () { }
  5829. }, { "style": { "height": "36px" } }).form; //创建窗体
  5830. _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); } }
  5831. break;
  5832. case "hanClass":
  5833. _formdiv = new U.UF.UI.form(
  5834. "书法课堂",
  5835. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5836. "id": "hanClass",
  5837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5838. "onresize": function () { }
  5839. }, {
  5840. closecallback: function () { }
  5841. }, { "style": { "height": "36px" } }).form; //创建窗体
  5842. _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); } }
  5843. break;
  5844. case "han":
  5845. _formdiv = new U.UF.UI.form(
  5846. "汉字宫",
  5847. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5848. "id": "han",
  5849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5850. "onresize": function () { }
  5851. }, {
  5852. closecallback: function () { }
  5853. }, { "style": { "height": "36px" } }).form; //创建窗体
  5854. _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); } }
  5855. break;
  5856. case "projectGM": //课程管理
  5857. _formdiv = new U.UF.UI.form(
  5858. "课程管理",
  5859. $$("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 }), {
  5860. "id": "projectGM",
  5861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5862. "onresize": function () { }
  5863. }, {
  5864. closecallback: function () { }
  5865. }, { "style": { "height": "36px" } }).form; //创建窗体
  5866. _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); } }
  5867. break;
  5868. case "studyGM": //课程中心
  5869. _formdiv = new U.UF.UI.form(
  5870. "课程中心",
  5871. $$("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
  5872. "id": "study",
  5873. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5874. "onresize": function () { }
  5875. }, {
  5876. closecallback: function () { }
  5877. }, { "style": { "height": "36px" } }).form; //创建窗体
  5878. _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); } }
  5879. break;
  5880. // studentGM
  5881. case "studentGM": //学生管理
  5882. _formdiv = new U.UF.UI.form(
  5883. "学生管理",
  5884. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  5885. "id": "studentGM",
  5886. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5887. "onresize": function () { }
  5888. }, {
  5889. closecallback: function () { }
  5890. }, { "style": { "height": "36px" } }).form; //创建窗体
  5891. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5892. break;
  5893. case "evaluateGM": //学生评价
  5894. _formdiv = new U.UF.UI.form(
  5895. "学生评价",
  5896. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5897. "id": "evaluateGM",
  5898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5899. "onresize": function () { }
  5900. }, {
  5901. closecallback: function () { }
  5902. }, { "style": { "height": "36px" } }).form; //创建窗体
  5903. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5904. break;
  5905. // classGM
  5906. case "classGM": //班级管理
  5907. _formdiv = new U.UF.UI.form(
  5908. "班级管理",
  5909. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5910. "id": "classGM",
  5911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5912. "onresize": function () { }
  5913. }, {
  5914. closecallback: function () { }
  5915. }, { "style": { "height": "36px" } }).form; //创建窗体
  5916. _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); } }
  5917. break;
  5918. // dataGM
  5919. case "dataGM":
  5920. _formdiv = new U.UF.UI.form(
  5921. "我的资料",
  5922. $$("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 }), {
  5923. "id": "dataGM",
  5924. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5925. "onresize": function () { }
  5926. }, {
  5927. closecallback: function () { }
  5928. }, { "style": { "height": "36px" } }).form; //创建窗体
  5929. _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); } }
  5930. break;
  5931. // caseGM
  5932. case "caseGM": //课程进展
  5933. _formdiv = new U.UF.UI.form(
  5934. "课程进展",
  5935. $$("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 }), {
  5936. "id": "caseGM",
  5937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5938. "onresize": function () { }
  5939. }, {
  5940. closecallback: function () { }
  5941. }, { "style": { "height": "36px" } }).form; //创建窗体
  5942. _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); } }
  5943. break;
  5944. // meterialGM
  5945. case "meterialGM": //素材库
  5946. _formdiv = new U.UF.UI.form(
  5947. "素材库",
  5948. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  5949. "id": "meterialGM",
  5950. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5951. "onresize": function () { }
  5952. }, {
  5953. closecallback: function () { }
  5954. }, { "style": { "height": "36px" } }).form; //创建窗体
  5955. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5956. break;
  5957. // evaluateSGM
  5958. case "evaluateSGM": //我的评价
  5959. _formdiv = new U.UF.UI.form(
  5960. "我的评价",
  5961. $$("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 }), {
  5962. "id": "evaluateSGM",
  5963. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5964. "onresize": function () { }
  5965. }, {
  5966. closecallback: function () { }
  5967. }, { "style": { "height": "36px" } }).form; //创建窗体
  5968. _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); } }
  5969. break;
  5970. case "jupyter": //jupyter
  5971. _formdiv = new U.UF.UI.form(
  5972. "jupyter",
  5973. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5974. "id": "jupyter",
  5975. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5976. "onresize": function () { }
  5977. }, {
  5978. closecallback: function () { }
  5979. }, { "style": { "height": "36px" } }).form; //创建窗体
  5980. _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); } }
  5981. break;
  5982. case "number": //数字实验室
  5983. _formdiv = new U.UF.UI.form(
  5984. "数字实验室",
  5985. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5986. "id": "number",
  5987. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5988. "onresize": function () { }
  5989. }, {
  5990. closecallback: function () { }
  5991. }, { "style": { "height": "36px" } }).form; //创建窗体
  5992. _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); } }
  5993. break;
  5994. case "studentCourse": //项目管理 学生
  5995. _formdiv = new U.UF.UI.form(
  5996. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5997. $$("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 }), {
  5998. "id": "studentCourse",
  5999. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6000. "onresize": function () { }
  6001. }, {
  6002. closecallback: function () { }
  6003. }, { "style": { "height": "36px" } }).form; //创建窗体
  6004. _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); } }
  6005. break;
  6006. case "studentCourseS": //项目管理 老师
  6007. _formdiv = new U.UF.UI.form(
  6008. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6009. $$("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 }), {
  6010. "id": "studentCourseS",
  6011. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6012. "onresize": function () { }
  6013. }, {
  6014. closecallback: function () { }
  6015. }, { "style": { "height": "36px" } }).form; //创建窗体
  6016. _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); } }
  6017. break;
  6018. case "studentIndex": //项目中心
  6019. _formdiv = new U.UF.UI.form(
  6020. "项目中心",
  6021. $$("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 }), {
  6022. "id": "studentIndex",
  6023. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6024. "onresize": function () { }
  6025. }, {
  6026. closecallback: function () { }
  6027. }, { "style": { "height": "36px" } }).form; //创建窗体
  6028. _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); } }
  6029. break;
  6030. case "CaseDesignS":
  6031. _formdiv = new U.UF.UI.form(
  6032. "项目进展",
  6033. $$("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 }), {
  6034. "id": "case",
  6035. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, { "style": { "height": "36px" } }).form; //创建窗体
  6040. _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); } }
  6041. break;
  6042. case "tcStudent": //腾讯学生管理
  6043. _formdiv = new U.UF.UI.form(
  6044. "学生管理",
  6045. $$("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 }), {
  6046. "id": "tcStudent",
  6047. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6048. "onresize": function () { }
  6049. }, {
  6050. closecallback: function () { }
  6051. }, { "style": { "height": "36px" } }).form; //创建窗体
  6052. _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); } }
  6053. break;
  6054. case "tcSchool": //腾讯学校管理
  6055. _formdiv = new U.UF.UI.form(
  6056. "学校管理",
  6057. $$("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 }), {
  6058. "id": "tcSchool",
  6059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6060. "onresize": function () { }
  6061. }, {
  6062. closecallback: function () { }
  6063. }, { "style": { "height": "36px" } }).form; //创建窗体
  6064. _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); } }
  6065. break;
  6066. case "tcTeacher": //腾讯学校管理
  6067. _formdiv = new U.UF.UI.form(
  6068. "教师管理",
  6069. $$("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 }), {
  6070. "id": "tcTeacher",
  6071. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6072. "onresize": function () { }
  6073. }, {
  6074. closecallback: function () { }
  6075. }, { "style": { "height": "36px" } }).form; //创建窗体
  6076. _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); } }
  6077. break;
  6078. case "tcData": //腾讯我的资料
  6079. _formdiv = new U.UF.UI.form(
  6080. "我的资料",
  6081. $$("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 }), {
  6082. "id": "tcData",
  6083. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6084. "onresize": function () { }
  6085. }, {
  6086. closecallback: function () { }
  6087. }, { "style": { "height": "36px" } }).form; //创建窗体
  6088. _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); } }
  6089. break;
  6090. case "tcNotice": //腾讯消息通知
  6091. _formdiv = new U.UF.UI.form(
  6092. "消息通知",
  6093. $$("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 }), {
  6094. "id": "tcNotice",
  6095. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6096. "onresize": function () { }
  6097. }, {
  6098. closecallback: function () { }
  6099. }, { "style": { "height": "36px" } }).form; //创建窗体
  6100. _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); } }
  6101. break;
  6102. case "myReport": //好友打开
  6103. _formdiv = new U.UF.UI.form(
  6104. "我的评价",
  6105. $$("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 }), {
  6106. "id": "myReport",
  6107. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6108. "onresize": function () { }
  6109. }, {
  6110. closecallback: function () { }
  6111. }, { "style": { "height": "36px" } }).form; //创建窗体
  6112. _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); } }
  6113. break;
  6114. case "learnAna": //好友打开
  6115. _formdiv = new U.UF.UI.form(
  6116. "学习分析",
  6117. $$("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 }), {
  6118. "id": "learnAna",
  6119. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6120. "onresize": function () { }
  6121. }, {
  6122. closecallback: function () { }
  6123. }, { "style": { "height": "36px" } }).form; //创建窗体
  6124. _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); } }
  6125. break;
  6126. case "AIChat": //AI共创
  6127. _formdiv = new U.UF.UI.form(
  6128. "AI共创",
  6129. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6130. "id": "AIChat",
  6131. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6132. "onresize": function () { }
  6133. }, {
  6134. istop: true,
  6135. closecallback: function () { $("#aichat_icon").remove(); },
  6136. narrowcallback: function () {
  6137. if (!$("#aichat_icon")[0]) {
  6138. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6139. }
  6140. },
  6141. }, { "style": { "height": "36px" } }).form; //创建窗体
  6142. _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); } }
  6143. break;
  6144. case "ainew": //AI共创
  6145. _formdiv = new U.UF.UI.form(
  6146. "AI协同",
  6147. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6148. "id": "ainew",
  6149. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6150. "onresize": function () { }
  6151. }, {
  6152. closecallback: function () { }
  6153. }, { "style": { "height": "36px" } }).form; //创建窗体
  6154. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6155. break;
  6156. case "gpt4": //gpt4
  6157. _formdiv = new U.UF.UI.form(
  6158. "AI助手",
  6159. $$("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 }), {
  6160. "id": "gpt4",
  6161. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6162. "onresize": function () { }
  6163. }, {
  6164. closecallback: function () { }
  6165. }, { "style": { "height": "36px" } }).form; //创建窗体
  6166. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6167. break;
  6168. case "aigpt": //gpt4
  6169. _formdiv = new U.UF.UI.form(
  6170. "AI助手+",
  6171. $$("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 }), {
  6172. "id": "aigpt",
  6173. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6174. "onresize": function () { }
  6175. }, {
  6176. closecallback: function () {
  6177. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6178. }
  6179. }, { "style": { "height": "36px" } }).form; //创建窗体
  6180. _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); } }
  6181. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6182. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6183. })
  6184. break;
  6185. case "aiKnowledge": //aiKnowledge
  6186. _formdiv = new U.UF.UI.form(
  6187. "知识建构",
  6188. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6189. "id": "aiKnowledge",
  6190. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6191. "onresize": function () { }
  6192. }, {
  6193. closecallback: function () { }
  6194. }, { "style": { "height": "36px" } }).form; //创建窗体
  6195. _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); } }
  6196. break;
  6197. case "futureClass": //AI共创
  6198. _formdiv = new U.UF.UI.form(
  6199. "协同建构",
  6200. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://beta.cscl.cocorobo.cn
  6201. "id": "synergyCourse",
  6202. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6203. "onresize": function () { }
  6204. }, {
  6205. closecallback: function () {
  6206. $("iframe", _formdiv)[0].contentWindow.loginout();
  6207. }
  6208. }, { "style": { "height": "36px" } }).form; //创建窗体
  6209. _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); } }
  6210. break;
  6211. case "aiagent": //ai agent
  6212. _formdiv = new U.UF.UI.form(
  6213. "AI Agent",
  6214. $$("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" }), {
  6215. "id": "AIAgent",
  6216. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6217. "onresize": function () { }
  6218. }, {
  6219. closecallback: function () { }
  6220. }, { "style": { "height": "36px" } }).form; //创建窗体
  6221. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6222. break;
  6223. case "dataBoard": //数据看板
  6224. _formdiv = new U.UF.UI.form(
  6225. "数据看板",
  6226. $$("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 }), {
  6227. "id": "dataBoard",
  6228. "style": { "width": "100%", "height": "100%", "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/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6234. break;
  6235. case "dataBoardSies": //数据融合
  6236. _formdiv = new U.UF.UI.form(
  6237. "数据融合",
  6238. $$("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 }), {
  6239. "id": "dataBoardSies",
  6240. "style": { "width": "100%", "height": "100%", "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/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6246. break;
  6247. case "dataBoardNew": //数据看板
  6248. _formdiv = new U.UF.UI.form(
  6249. "综合看板",
  6250. $$("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 }), {
  6251. "id": "dataBoardNew",
  6252. "style": { "width": "100%", "height": "100%", "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/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6258. break;
  6259. case "dataBoardTest": //数据看板
  6260. _formdiv = new U.UF.UI.form(
  6261. "评测看板",
  6262. $$("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 }), {
  6263. "id": "dataBoardTest",
  6264. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6265. "onresize": function () { }
  6266. }, {
  6267. closecallback: function () { }
  6268. }, { "style": { "height": "36px" } }).form; //创建窗体
  6269. _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); } }
  6270. break;
  6271. case "AIAnalyse": //AI共创
  6272. _formdiv = new U.UF.UI.form(
  6273. "AI分析",
  6274. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6275. "id": "AIAnalyse",
  6276. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6277. "onresize": function () { }
  6278. }, {
  6279. closecallback: function () { }
  6280. }, { "style": { "height": "36px" } }).form; //创建窗体
  6281. _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); } }
  6282. break;
  6283. case "studioCourse": //AI共创
  6284. _formdiv = new U.UF.UI.form(
  6285. "工作管理",
  6286. $$("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 }), {
  6287. "id": "studioCourse",
  6288. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6289. "onresize": function () { }
  6290. }, {
  6291. closecallback: function () { }
  6292. }, { "style": { "height": "36px" } }).form; //创建窗体
  6293. _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); } }
  6294. break;
  6295. case "studioIndex": //AI共创
  6296. _formdiv = new U.UF.UI.form(
  6297. "工作中心",
  6298. $$("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 }), {
  6299. "id": "studioIndex",
  6300. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6301. "onresize": function () { }
  6302. }, {
  6303. closecallback: function () { }
  6304. }, { "style": { "height": "36px" } }).form; //创建窗体
  6305. _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); } }
  6306. break;
  6307. case "source":
  6308. _formdiv = new U.UF.UI.form(
  6309. "教学资源",
  6310. $$("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 }), {
  6311. "id": "source",
  6312. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6313. "onresize": function () { }
  6314. }, {
  6315. closecallback: function () { }
  6316. }, { "style": { "height": "36px" } }).form; //创建窗体
  6317. _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); } }
  6318. break;
  6319. case "testTeacher":
  6320. _formdiv = new U.UF.UI.form(
  6321. "教师管理",
  6322. $$("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 }), {
  6323. "id": "testTeacher",
  6324. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6325. "onresize": function () { }
  6326. }, {
  6327. closecallback: function () { }
  6328. }, { "style": { "height": "36px" } }).form; //创建窗体
  6329. _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); } }
  6330. break;
  6331. case "testStudent":
  6332. _formdiv = new U.UF.UI.form(
  6333. "教师中心",
  6334. $$("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 }), {
  6335. "id": "testStudent",
  6336. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6337. "onresize": function () { }
  6338. }, {
  6339. closecallback: function () { }
  6340. }, { "style": { "height": "36px" } }).form; //创建窗体
  6341. _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); } }
  6342. break;
  6343. case "testTeacherSies":
  6344. _formdiv = new U.UF.UI.form(
  6345. "教师管理",
  6346. $$("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 }), {
  6347. "id": "testTeacherSies",
  6348. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6349. "onresize": function () { }
  6350. }, {
  6351. closecallback: function () { }
  6352. }, { "style": { "height": "36px" } }).form; //创建窗体
  6353. _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); } }
  6354. break;
  6355. case "testStudentSies":
  6356. _formdiv = new U.UF.UI.form(
  6357. "教师中心",
  6358. $$("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 }), {
  6359. "id": "testStudentSies",
  6360. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6361. "onresize": function () { }
  6362. }, {
  6363. closecallback: function () { }
  6364. }, { "style": { "height": "36px" } }).form; //创建窗体
  6365. _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); } }
  6366. break;
  6367. case "ytpbl": //消息通知
  6368. _formdiv = new U.UF.UI.form(
  6369. "案例征集",
  6370. $$("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 }), {
  6371. "id": "ytpbl",
  6372. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6373. "onresize": function () { }
  6374. }, {
  6375. closecallback: function () { }
  6376. }, { "style": { "height": "36px" } }).form; //创建窗体
  6377. _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); } }
  6378. // 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");
  6379. break;
  6380. case "aiCourseResource": //人工智能窗体
  6381. _formdiv = new U.UF.UI.form(
  6382. false,
  6383. $$("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 }), {
  6384. "id": "aiCourseResource",
  6385. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6386. "onresize": function () { },
  6387. "isdrag": false,
  6388. }, {
  6389. closecallback: function () { }
  6390. }, { "style": { "height": "36px" } }).form; //创建窗体
  6391. _taskbar = ''
  6392. break;
  6393. case "szdjgCocooroboX": //图形化编程
  6394. _formdiv = new U.UF.UI.form(
  6395. "图形化编程",
  6396. $$("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" }), {
  6397. "id": "szdjgCocooroboX",
  6398. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6399. "onresize": function () { }
  6400. }, {
  6401. closecallback: function () { }
  6402. }, { "style": { "height": "36px" } }).form; //创建窗体
  6403. _taskbar = ''
  6404. break;
  6405. case "szdjgPython": //python编程
  6406. _formdiv = new U.UF.UI.form(
  6407. "Python编程",
  6408. $$("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" }), {
  6409. "id": "szdjgPython",
  6410. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6411. "onresize": function () { }
  6412. }, {
  6413. closecallback: function () { }
  6414. }, { "style": { "height": "36px" } }).form; //创建窗体
  6415. _taskbar = ''
  6416. break;
  6417. case "Record":
  6418. _formdiv = new U.UF.UI.form(
  6419. "观察记录",
  6420. $$("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 }), {
  6421. "id": "Record",
  6422. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6423. "onresize": function () { }
  6424. }, {
  6425. closecallback: function () { }
  6426. }, { "style": { "height": "36px" } }).form; //创建窗体
  6427. _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); } }
  6428. break;
  6429. case "aigptCourse":
  6430. _formdiv = new U.UF.UI.form(
  6431. "AI智能体",
  6432. $$("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' }), {
  6433. "id": "aigptCourse",
  6434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6435. "onresize": function () { }
  6436. }, {
  6437. closecallback: function () { }
  6438. }, { "style": { "height": "36px" } }).form; //创建窗体
  6439. _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); } }
  6440. break;
  6441. case "classroomObservation":
  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-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6445. "id": "classroomObservation",
  6446. "style": { "width": "90%", "height": "90%", "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/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6452. break;
  6453. case "pblCourse":
  6454. _formdiv = new U.UF.UI.form(
  6455. "学生PBL",
  6456. $$("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 }), {
  6457. "id": "pblCourse",
  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/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6464. break;
  6465. }
  6466. //U.MD.D.I.openClick(str);
  6467. //如果有任务栏信息
  6468. if (_taskbar) {
  6469. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6470. }
  6471. }
  6472. // U.MD.D.I.openClick = function(str){
  6473. // var click = '';
  6474. // switch(str){
  6475. // case 'friend':
  6476. // click = '我的好友';
  6477. // break;
  6478. // case 'domain':
  6479. // click = '域名管理';
  6480. // break;
  6481. // case 'disk':
  6482. // click = '我的云盘';
  6483. // break;
  6484. // case 'word':
  6485. // click = 'Word';
  6486. // break;
  6487. // case 'excel':
  6488. // click = 'Execl';
  6489. // break;
  6490. // case 'txt':
  6491. // click = '文本文件';
  6492. // break;
  6493. // case 'lookupFriend':
  6494. // click = '查找好友';
  6495. // break;
  6496. // case 'ftp':
  6497. // click = 'FTP';
  6498. // break;
  6499. // case 'group':
  6500. // click = '群组';
  6501. // break;
  6502. // case 'set':
  6503. // click = '我的设置';
  6504. // break;
  6505. // case 'systemSet':
  6506. // click = '系统设置';
  6507. // break;
  6508. // case 'boomYun':
  6509. // click = '互联办公';
  6510. // break;
  6511. // case 'xz':
  6512. // click = '云端下载';
  6513. // break;
  6514. // case 'client':
  6515. // click = '有思浏览器';
  6516. // break;
  6517. // case 'backEndProgramming':
  6518. // click = '在线后台编程';
  6519. // break;
  6520. // case 'frontEndProgramming':
  6521. // click = '在线前端编程';
  6522. // break;
  6523. // default: break;
  6524. // }
  6525. // if(U.MD.D.I.Ip && click){
  6526. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6527. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6528. // })
  6529. // }
  6530. // }
  6531. /**
  6532. *函数作用:ajax简易函数,使用post格式
  6533. *@param url {data} 后台地址
  6534. *@param data {data} 参数json
  6535. *@param fn {data} 回调函数
  6536. *
  6537. */
  6538. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6539. // var xhr = new XMLHttpRequest();
  6540. // xhr.open("GET",url,true);
  6541. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6542. // xhr.onreadystatechange = function(){
  6543. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6544. // fn.call(this,xhr.responseText);
  6545. // }
  6546. // };
  6547. // xhr.send();
  6548. // }
  6549. /*判断是否是内网IP*/
  6550. // U.MD.D.I.isInnerIPFn = function(str){
  6551. // var curPageUrl = str;
  6552. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6553. // curPageUrl =curPageUrl.replace(reg1,'');
  6554. // // console.log('curPageUrl-1 '+curPageUrl);
  6555. // var reg2 = /\:+/g;//替换冒号为一点
  6556. // curPageUrl =curPageUrl.replace(reg2,'.');
  6557. // // console.log('curPageUrl-2 '+curPageUrl);
  6558. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6559. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6560. // if(curPageUrl[2] != '16'){
  6561. // return ipAddress;
  6562. // }else{
  6563. // return false;
  6564. // }
  6565. // }
  6566. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6567. // //compatibility for firefox and chrome
  6568. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6569. // var pc = new myPeerConnection({
  6570. // iceServers: []
  6571. // }),
  6572. // noop = function() {},
  6573. // localIPs = {},
  6574. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6575. // key;
  6576. // function iterateIP(ip) {
  6577. // if (!localIPs[ip]) onNewIP(ip);
  6578. // localIPs[ip] = true;
  6579. // }
  6580. // //create a bogus data channel
  6581. // pc.createDataChannel("");
  6582. // // create offer and set local description
  6583. // pc.createOffer().then(function(sdp) {
  6584. // sdp.sdp.split('\n').forEach(function(line) {
  6585. // if (line.indexOf('candidate') < 0) return;
  6586. // line.match(ipRegex).forEach(iterateIP);
  6587. // });
  6588. // pc.setLocalDescription(sdp, noop, noop);
  6589. // }).catch(function(reason) {
  6590. // // An error occurred, so handle the failure to connect
  6591. // });
  6592. // //sten for candidate events
  6593. // pc.onicecandidate = function(ice) {
  6594. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6595. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6596. // };
  6597. // }
  6598. // U.MD.D.I.getUserIpBool = function(callback){
  6599. // U.MD.D.I.getUserIP(function(ip){
  6600. // alert("Got IP! :" + ip);
  6601. // });
  6602. //}
  6603. //#endregion
  6604. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6605. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6606. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6607. _userinfo = US.userInfo, //登录用户信息
  6608. _userid = US.userInfo.userid //登录用户id
  6609. let _iframe;
  6610. let _cid = cid,
  6611. _stage = stage,
  6612. _task = task,
  6613. _tool = tool;
  6614. var _jie = $$("div", {
  6615. "style": {
  6616. "position": "absolute",
  6617. "bottom": "50px",
  6618. "right": "50px",
  6619. "zIndex": "9999",
  6620. "backgroundColor": "#2268bc",
  6621. "color": "#fff",
  6622. "padding": "12px 20px",
  6623. "cursor": "pointer",
  6624. "borderRadius": "4px",
  6625. },
  6626. "innerHTML": "提交作业"
  6627. })
  6628. let aTool = ''
  6629. let _loading = document.createElement('div')
  6630. _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;"
  6631. // _loading.id = "";
  6632. let _lchild = document.createElement('div')
  6633. let _limg = document.createElement('img')
  6634. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6635. _limg.style = "width: 26px;margin-right: 10px;"
  6636. _lchild.appendChild(_limg)
  6637. let _lspan = document.createElement('span')
  6638. _lspan.innerHTML = "上传中..."
  6639. _lchild.appendChild(_lspan)
  6640. _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%);"
  6641. _loading.appendChild(_lchild)
  6642. var _box = $$('div', {
  6643. "style": {
  6644. "position": "relative",
  6645. "width": "100%",
  6646. "height": "100%",
  6647. },
  6648. })
  6649. _box.appendChild(_loading)
  6650. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6651. switch (str) {
  6652. case "whiteboard":
  6653. aTool = 1;
  6654. _iframe = $$("iframe", {
  6655. "frameborder": "no",
  6656. "border": "0",
  6657. "scrolling ": "no",
  6658. "style": {
  6659. "cssText": "border:0;width:100%;height:100%"
  6660. },
  6661. "src": "https://beta.iwb.cocorobo.cn/"
  6662. })
  6663. _box.appendChild(_iframe);
  6664. _box.appendChild(_jie);
  6665. _formdiv = new U.UF.UI.form(
  6666. "电子白板",
  6667. _box, {
  6668. "id": "whiteboard" + cid + stage + task + tool,
  6669. "style": {
  6670. "width": "90%",
  6671. "height": "90%",
  6672. "overflow": 'hidden'
  6673. },
  6674. "onresize": function () { }
  6675. }, {
  6676. closecallback: function () { }
  6677. }, {
  6678. "style": {
  6679. "height": "36px"
  6680. }
  6681. }).form; //创建窗体
  6682. _taskbar = {
  6683. "id": str + _formdiv.id,
  6684. "style": {
  6685. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6686. },
  6687. "name": "电子白板",
  6688. "forms": _formdiv,
  6689. "click": function () {
  6690. U.MD.D.I.openApplication(str, obj, info);
  6691. }
  6692. }
  6693. break;
  6694. case "mind":
  6695. aTool = 3;
  6696. _iframe = $$("iframe", {
  6697. "frameborder": "no",
  6698. "border": "0",
  6699. "scrolling ": "no",
  6700. "style": {
  6701. "cssText": "border:0;width:100%;height:100%"
  6702. },
  6703. "src": "/kityminder-editor/dist/index.html"
  6704. })
  6705. _box.appendChild(_iframe);
  6706. _box.appendChild(_jie);
  6707. _formdiv = new U.UF.UI.form(
  6708. "思维导图",
  6709. _box, { //"/jsmind/example/demo.html"
  6710. "id": "mind" + cid + stage + task + tool,
  6711. "style": {
  6712. "width": "90%",
  6713. "height": "90%",
  6714. "overflow": 'hidden'
  6715. },
  6716. "onresize": function () { }
  6717. }, {
  6718. closecallback: function () { }
  6719. }, {
  6720. "style": {
  6721. "height": "36px"
  6722. }
  6723. }).form; //创建窗体
  6724. _taskbar = {
  6725. "id": str + _formdiv.id,
  6726. "style": {
  6727. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6728. },
  6729. "name": "思维导图",
  6730. "forms": _formdiv,
  6731. "click": function () {
  6732. U.MD.D.I.openApplication(str, obj, info);
  6733. }
  6734. }
  6735. break;
  6736. case "MindMap":
  6737. aTool = 3;
  6738. _iframe = $$("iframe", {
  6739. "frameborder": "no",
  6740. "border": "0",
  6741. "scrolling ": "no",
  6742. "style": {
  6743. "cssText": "border:0;width:100%;height:100%"
  6744. },
  6745. "src": "//cloud.cocorobo.cn/mind/"
  6746. })
  6747. _box.appendChild(_iframe);
  6748. _box.appendChild(_jie);
  6749. _formdiv = new U.UF.UI.form(
  6750. "思维导图",
  6751. _box, { //"/jsmind/example/demo.html"
  6752. "id": "mind" + cid + stage + task + tool,
  6753. "style": {
  6754. "width": "90%",
  6755. "height": "90%",
  6756. "overflow": 'hidden'
  6757. },
  6758. "onresize": function () { }
  6759. }, {
  6760. closecallback: function () { }
  6761. }, {
  6762. "style": {
  6763. "height": "36px"
  6764. }
  6765. }).form; //创建窗体
  6766. _taskbar = {
  6767. "id": str + _formdiv.id,
  6768. "style": {
  6769. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6770. },
  6771. "name": "思维导图",
  6772. "forms": _formdiv,
  6773. "click": function () {
  6774. U.MD.D.I.openApplication(str, obj, info);
  6775. }
  6776. }
  6777. break;
  6778. case "doc":
  6779. aTool = 6;
  6780. _iframe = $$("iframe", {
  6781. "frameborder": "no",
  6782. "border": "0",
  6783. "scrolling ": "no",
  6784. "style": {
  6785. "cssText": "border:0;width:100%;height:100%"
  6786. },
  6787. "src": "/Office/Word/WordEditArea.htm"
  6788. })
  6789. _box.appendChild(_iframe);
  6790. _box.appendChild(_jie);
  6791. _formdiv = new U.UF.UI.form(
  6792. "协同文档",
  6793. _box, {
  6794. "id": "doc" + cid + stage + task + tool,
  6795. "style": {
  6796. "width": "90%",
  6797. "height": "90%",
  6798. "overflow": 'hidden'
  6799. },
  6800. "onresize": function () { }
  6801. }, {
  6802. closecallback: function () { }
  6803. }, {
  6804. "style": {
  6805. "height": "36px"
  6806. }
  6807. }).form; //创建窗体
  6808. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6809. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6810. })
  6811. _taskbar = {
  6812. "id": str + _formdiv.id,
  6813. "style": {
  6814. "backgroundImage": "url(/img/icon/doc.png)"
  6815. },
  6816. "name": "协同文档",
  6817. "forms": _formdiv,
  6818. "click": function () {
  6819. U.MD.D.I.openApplication(str, obj, info);
  6820. }
  6821. }
  6822. break;
  6823. case "mindNetwork": //好友打开
  6824. aTool = 7;
  6825. _iframe = $$("iframe", {
  6826. "webkitallowfullscreen": "",
  6827. "mozallowfullscreen": "",
  6828. "allowfullscreen": "",
  6829. "frameborder": "no",
  6830. "border": "0",
  6831. "scrolling ": "no",
  6832. "style": {
  6833. "cssText": "border:0; width:100%; height:100%;"
  6834. },
  6835. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6836. })
  6837. _box.appendChild(_iframe);
  6838. _box.appendChild(_jie);
  6839. _formdiv = new U.UF.UI.form(
  6840. "思维网格",
  6841. _box, {
  6842. "id": "mindNetwork" + cid + stage + task + tool,
  6843. "style": {
  6844. "width": "90%",
  6845. "height": "90%",
  6846. "overflow": 'hidden'
  6847. },
  6848. "onresize": function () { }
  6849. }, {
  6850. closecallback: function () { }
  6851. }, {
  6852. "style": {
  6853. "height": "36px"
  6854. }
  6855. }).form; //创建窗体
  6856. _taskbar = {
  6857. "id": str + _formdiv.id,
  6858. "style": {
  6859. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6860. },
  6861. "name": "思维网格",
  6862. "forms": _formdiv,
  6863. "click": function () {
  6864. U.MD.D.I.openApplication(str, obj, info);
  6865. }
  6866. }
  6867. break;
  6868. case "courseDesign":
  6869. _iframe = $$("iframe", {
  6870. "webkitallowfullscreen": "",
  6871. "mozallowfullscreen": "",
  6872. "allowfullscreen": "",
  6873. "frameborder": "no",
  6874. "border": "0",
  6875. "scrolling ": "no",
  6876. "style": {
  6877. "cssText": "border:0; width:100%; height:100%;"
  6878. },
  6879. "src": "/course-design-vue"
  6880. })
  6881. _box.appendChild(_iframe);
  6882. _box.appendChild(_jie);
  6883. _formdiv = new U.UF.UI.form(
  6884. "项目设计",
  6885. _box, {
  6886. "id": "courseDesign" + cid + stage + task + tool,
  6887. "style": {
  6888. "width": "90%",
  6889. "height": "90%",
  6890. "overflow": 'hidden'
  6891. },
  6892. "onresize": function () { }
  6893. }, {
  6894. closecallback: function () { }
  6895. }, {
  6896. "style": {
  6897. "height": "36px"
  6898. }
  6899. }).form; //创建窗体
  6900. _taskbar = {
  6901. "id": str + _formdiv.id,
  6902. "style": {
  6903. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6904. },
  6905. "name": "项目设计",
  6906. "forms": _formdiv,
  6907. "click": function () {
  6908. U.MD.D.I.openApplication(str, obj, info);
  6909. }
  6910. }
  6911. break;
  6912. }
  6913. const script1 = document.createElement("script");
  6914. script1.type = "text/javascript";
  6915. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6916. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6917. const script2 = document.createElement("script");
  6918. script2.type = "text/javascript";
  6919. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6920. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6921. const script3 = document.createElement("script");
  6922. script3.type = "text/javascript";
  6923. script3.charset = "UTF-8";
  6924. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6925. const script4 = document.createElement("script");
  6926. script4.type = "text/javascript";
  6927. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6928. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6929. if (_iframe) {
  6930. if (str == 'doc') {
  6931. _iframe = _formdiv.querySelector('iframe')
  6932. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6933. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6934. _iframe.contentWindow.document.body.appendChild(script1);
  6935. _iframe.contentWindow.document.body.appendChild(script2);
  6936. // _iframe.contentWindow.document.body.appendChild(script3);
  6937. _iframe.contentWindow.document.body.appendChild(script4);
  6938. })
  6939. if (onloadListener) {
  6940. _iframe.contentDocument.location.reload()
  6941. } else {
  6942. _iframe.contentDocument.location.reload()
  6943. }
  6944. } else if (str == 'courseDesign') {
  6945. U.UF.DL.iframeLoad(_iframe, function () {
  6946. // _iframe.contentWindow.U.MD.O.W.load();
  6947. // _iframe.contentWindow.document.body.appendChild(script1);
  6948. _iframe.contentWindow.document.body.appendChild(script2);
  6949. _iframe.contentWindow.document.body.appendChild(script4);
  6950. })
  6951. } else if (str == 'mind') {
  6952. _iframe = _formdiv.querySelector('iframe')
  6953. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6954. //
  6955. _iframe.contentWindow.document.body.appendChild(script1);
  6956. _iframe.contentWindow.document.body.appendChild(script2);
  6957. _iframe.contentWindow.document.body.appendChild(script4);
  6958. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6959. })
  6960. if (onloadListener) {
  6961. _iframe.contentDocument.location.reload()
  6962. } else {
  6963. _iframe.contentDocument.location.reload()
  6964. }
  6965. } else if (str == 'whiteboard') {
  6966. _iframe = _formdiv.querySelector('iframe')
  6967. let onloadListener = _iframe.onload = () => {
  6968. _iframe.contentWindow.document.body.appendChild(script1);
  6969. _iframe.contentWindow.document.body.appendChild(script2);
  6970. _iframe.contentWindow.document.body.appendChild(script4);
  6971. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6972. };
  6973. // if (onloadListener) {
  6974. // try {
  6975. // _iframe.src += "?cocorobo="+new Date().getTime()
  6976. // _iframe.contentWindow.document.location.reload()
  6977. // } catch (error) {
  6978. // }
  6979. // } else {
  6980. // _iframe.contentDocument.location.reload()
  6981. // }
  6982. } else {
  6983. _iframe.onload = () => {
  6984. _iframe.contentWindow.document.body.appendChild(script1);
  6985. _iframe.contentWindow.document.body.appendChild(script2);
  6986. // _iframe.contentWindow.document.body.appendChild(script3);
  6987. _iframe.contentWindow.document.body.appendChild(script4);
  6988. };
  6989. }
  6990. _jie.onclick = async () => {
  6991. let text = ''
  6992. if (aTool == 1) {
  6993. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6994. } else if (aTool == 6) {
  6995. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6996. } else if (aTool == 3) {
  6997. text = await U.MD.D.I.getEditorContent(_iframe);
  6998. }
  6999. _loading.style.display = 'flex'
  7000. console.log(_loading);
  7001. var _ajs = _iframe.contentWindow.document.createElement("script");
  7002. _ajs.type = "text/javascript";
  7003. _ajs.innerHTML =
  7004. // 'console.log(' + _loading + ');\n' +
  7005. 'var _js = document.createElement("script");\n' +
  7006. '_js.type="text/javascript";\n' +
  7007. '_js.charset="UTF-8";\n' +
  7008. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7009. "_js.onload = function(){\n" +
  7010. ' var a = document.getElementsByTagName("img")\n' +
  7011. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7012. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7013. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7014. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7015. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7016. "beforeUpload_shishi(file," +
  7017. "'" +
  7018. _userid +
  7019. "'" +
  7020. ", " +
  7021. "'" +
  7022. _cid +
  7023. "'" +
  7024. ", " +
  7025. "'" +
  7026. _stage +
  7027. "'" +
  7028. ", " +
  7029. "'" +
  7030. _task +
  7031. "'" +
  7032. ", " +
  7033. "'" +
  7034. _tool +
  7035. "'" +
  7036. ", " +
  7037. "'" +
  7038. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7039. "'" +
  7040. ", " +
  7041. "'" +
  7042. aTool +
  7043. "'" +
  7044. ", " +
  7045. "`" +
  7046. text +
  7047. "`" +
  7048. ")\n" +
  7049. " });\n" +
  7050. "}\n" +
  7051. "document.head.appendChild(_js);\n";
  7052. _iframe.contentWindow.document.head.appendChild(_ajs);
  7053. }
  7054. }
  7055. //U.MD.D.I.openClick(str);
  7056. //如果有任务栏信息
  7057. // if (_taskbar) {
  7058. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7059. // }
  7060. }
  7061. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7062. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7063. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7064. _userinfo = US.userInfo, //登录用户信息
  7065. _userid = US.userInfo.userid //登录用户id
  7066. let _iframe;
  7067. let _cid = cid,
  7068. _stage = stage,
  7069. _task = task,
  7070. _tool = tool;
  7071. var _jie = $$("div", {
  7072. "style": {
  7073. "position": "absolute",
  7074. "bottom": "50px",
  7075. "right": "50px",
  7076. "zIndex": "9999",
  7077. "backgroundColor": "#2268bc",
  7078. "color": "#fff",
  7079. "padding": "12px 20px",
  7080. "cursor": "pointer",
  7081. "borderRadius": "4px",
  7082. },
  7083. "innerHTML": "提交作业"
  7084. })
  7085. let aTool = ''
  7086. let _loading = document.createElement('div')
  7087. _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;"
  7088. // _loading.id = "";
  7089. let _lchild = document.createElement('div')
  7090. let _limg = document.createElement('img')
  7091. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7092. _limg.style = "width: 26px;margin-right: 10px;"
  7093. _lchild.appendChild(_limg)
  7094. let _lspan = document.createElement('span')
  7095. _lspan.innerHTML = "上传中..."
  7096. _lchild.appendChild(_lspan)
  7097. _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%);"
  7098. _loading.appendChild(_lchild)
  7099. let _box = $$('div', {
  7100. "style": {
  7101. "position": "relative",
  7102. "width": "100%",
  7103. "height": "100%",
  7104. },
  7105. })
  7106. _box.appendChild(_loading)
  7107. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7108. switch (str) {
  7109. case "whiteboard":
  7110. aTool = 1;
  7111. _iframe = $$("iframe", {
  7112. "frameborder": "no",
  7113. "border": "0",
  7114. "scrolling ": "no",
  7115. "style": {
  7116. "cssText": "border:0;width:100%;height:100%"
  7117. },
  7118. "src": "https://beta.iwb.cocorobo.cn/"
  7119. })
  7120. _box.appendChild(_iframe);
  7121. _box.appendChild(_jie);
  7122. _formdiv = new U.UF.UI.form(
  7123. "电子白板",
  7124. _box, {
  7125. "id": "whiteboard" + cid + stage + task + tool,
  7126. "style": {
  7127. "width": "90%",
  7128. "height": "90%",
  7129. "overflow": 'hidden'
  7130. },
  7131. "onresize": function () { }
  7132. }, {
  7133. closecallback: function () { }
  7134. }, {
  7135. "style": {
  7136. "height": "36px"
  7137. }
  7138. }).form; //创建窗体
  7139. _taskbar = {
  7140. "id": str + _formdiv.id,
  7141. "style": {
  7142. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7143. },
  7144. "name": "电子白板",
  7145. "forms": _formdiv,
  7146. "click": function () {
  7147. U.MD.D.I.openApplication(str, obj, info);
  7148. }
  7149. }
  7150. break;
  7151. case "mind":
  7152. aTool = 3;
  7153. _iframe = $$("iframe", {
  7154. "frameborder": "no",
  7155. "border": "0",
  7156. "scrolling ": "no",
  7157. "style": {
  7158. "cssText": "border:0;width:100%;height:100%"
  7159. },
  7160. "src": "/kityminder-editor/dist/index.html"
  7161. })
  7162. _box.appendChild(_iframe);
  7163. _box.appendChild(_jie);
  7164. _formdiv = new U.UF.UI.form(
  7165. "思维导图",
  7166. _box, { //"/jsmind/example/demo.html"
  7167. "id": "mind" + cid + stage + task + tool,
  7168. "style": {
  7169. "width": "90%",
  7170. "height": "90%",
  7171. "overflow": 'hidden'
  7172. },
  7173. "onresize": function () { }
  7174. }, {
  7175. closecallback: function () { }
  7176. }, {
  7177. "style": {
  7178. "height": "36px"
  7179. }
  7180. }).form; //创建窗体
  7181. _taskbar = {
  7182. "id": str + _formdiv.id,
  7183. "style": {
  7184. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7185. },
  7186. "name": "思维导图",
  7187. "forms": _formdiv,
  7188. "click": function () {
  7189. U.MD.D.I.openApplication(str, obj, info);
  7190. }
  7191. }
  7192. break;
  7193. case "MindMap":
  7194. aTool = 3;
  7195. _iframe = $$("iframe", {
  7196. "frameborder": "no",
  7197. "border": "0",
  7198. "scrolling ": "no",
  7199. "style": {
  7200. "cssText": "border:0;width:100%;height:100%"
  7201. },
  7202. "src": "//cloud.cocorobo.cn/mind/"
  7203. })
  7204. _box.appendChild(_iframe);
  7205. _box.appendChild(_jie);
  7206. _formdiv = new U.UF.UI.form(
  7207. "思维导图",
  7208. _box, { //"/jsmind/example/demo.html"
  7209. "id": "mind" + cid + stage + task + tool,
  7210. "style": {
  7211. "width": "90%",
  7212. "height": "90%",
  7213. "overflow": 'hidden'
  7214. },
  7215. "onresize": function () { }
  7216. }, {
  7217. closecallback: function () { }
  7218. }, {
  7219. "style": {
  7220. "height": "36px"
  7221. }
  7222. }).form; //创建窗体
  7223. _taskbar = {
  7224. "id": str + _formdiv.id,
  7225. "style": {
  7226. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7227. },
  7228. "name": "思维导图",
  7229. "forms": _formdiv,
  7230. "click": function () {
  7231. U.MD.D.I.openApplication(str, obj, info);
  7232. }
  7233. }
  7234. break;
  7235. case "doc":
  7236. aTool = 6;
  7237. _iframe = $$("iframe", {
  7238. "frameborder": "no",
  7239. "border": "0",
  7240. "scrolling ": "no",
  7241. "style": {
  7242. "cssText": "border:0;width:100%;height:100%"
  7243. },
  7244. "src": "/Office/Word/WordEditArea.htm"
  7245. })
  7246. _box.appendChild(_iframe);
  7247. _box.appendChild(_jie);
  7248. _formdiv = new U.UF.UI.form(
  7249. "协同文档",
  7250. _box, {
  7251. "id": "doc" + cid + stage + task + tool,
  7252. "style": {
  7253. "width": "90%",
  7254. "height": "90%",
  7255. "overflow": 'hidden'
  7256. },
  7257. "onresize": function () { }
  7258. }, {
  7259. closecallback: function () { }
  7260. }, {
  7261. "style": {
  7262. "height": "36px"
  7263. }
  7264. }).form; //创建窗体
  7265. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7266. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7267. })
  7268. _taskbar = {
  7269. "id": str + _formdiv.id,
  7270. "style": {
  7271. "backgroundImage": "url(/img/icon/doc.png)"
  7272. },
  7273. "name": "协同文档",
  7274. "forms": _formdiv,
  7275. "click": function () {
  7276. U.MD.D.I.openApplication(str, obj, info);
  7277. }
  7278. }
  7279. break;
  7280. case "mindNetwork": //好友打开
  7281. aTool = 7;
  7282. _iframe = $$("iframe", {
  7283. "webkitallowfullscreen": "",
  7284. "mozallowfullscreen": "",
  7285. "allowfullscreen": "",
  7286. "frameborder": "no",
  7287. "border": "0",
  7288. "scrolling ": "no",
  7289. "style": {
  7290. "cssText": "border:0; width:100%; height:100%;"
  7291. },
  7292. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7293. })
  7294. _box.appendChild(_iframe);
  7295. _box.appendChild(_jie);
  7296. _formdiv = new U.UF.UI.form(
  7297. "思维网格",
  7298. _box, {
  7299. "id": "mindNetwork" + cid + stage + task + tool,
  7300. "style": {
  7301. "width": "90%",
  7302. "height": "90%",
  7303. "overflow": 'hidden'
  7304. },
  7305. "onresize": function () { }
  7306. }, {
  7307. closecallback: function () { }
  7308. }, {
  7309. "style": {
  7310. "height": "36px"
  7311. }
  7312. }).form; //创建窗体
  7313. _taskbar = {
  7314. "id": str + _formdiv.id,
  7315. "style": {
  7316. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7317. },
  7318. "name": "思维网格",
  7319. "forms": _formdiv,
  7320. "click": function () {
  7321. U.MD.D.I.openApplication(str, obj, info);
  7322. }
  7323. }
  7324. break;
  7325. case "courseDesign":
  7326. _iframe = $$("iframe", {
  7327. "webkitallowfullscreen": "",
  7328. "mozallowfullscreen": "",
  7329. "allowfullscreen": "",
  7330. "frameborder": "no",
  7331. "border": "0",
  7332. "scrolling ": "no",
  7333. "style": {
  7334. "cssText": "border:0; width:100%; height:100%;"
  7335. },
  7336. "src": "/course-design-vue"
  7337. })
  7338. _box.appendChild(_iframe);
  7339. _box.appendChild(_jie);
  7340. _formdiv = new U.UF.UI.form(
  7341. "项目设计",
  7342. _box, {
  7343. "id": "courseDesign" + cid + stage + task + tool,
  7344. "style": {
  7345. "width": "90%",
  7346. "height": "90%",
  7347. "overflow": 'hidden'
  7348. },
  7349. "onresize": function () { }
  7350. }, {
  7351. closecallback: function () { }
  7352. }, {
  7353. "style": {
  7354. "height": "36px"
  7355. }
  7356. }).form; //创建窗体
  7357. _taskbar = {
  7358. "id": str + _formdiv.id,
  7359. "style": {
  7360. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7361. },
  7362. "name": "项目设计",
  7363. "forms": _formdiv,
  7364. "click": function () {
  7365. U.MD.D.I.openApplication(str, obj, info);
  7366. }
  7367. }
  7368. break;
  7369. }
  7370. const script1 = document.createElement("script");
  7371. script1.type = "text/javascript";
  7372. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7373. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7374. const script2 = document.createElement("script");
  7375. script2.type = "text/javascript";
  7376. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7377. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7378. const script3 = document.createElement("script");
  7379. script3.type = "text/javascript";
  7380. script3.charset = "UTF-8";
  7381. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7382. const script4 = document.createElement("script");
  7383. script4.type = "text/javascript";
  7384. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7385. script4.src = window.origin + "/js/Common/jietu2E.js";
  7386. if (_iframe) {
  7387. if (str == 'doc') {
  7388. _iframe = _formdiv.querySelector('iframe')
  7389. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7390. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7391. _iframe.contentWindow.document.body.appendChild(script1);
  7392. _iframe.contentWindow.document.body.appendChild(script2);
  7393. // _iframe.contentWindow.document.body.appendChild(script3);
  7394. _iframe.contentWindow.document.body.appendChild(script4);
  7395. })
  7396. if (onloadListener) {
  7397. _iframe.contentDocument.location.reload()
  7398. } else {
  7399. _iframe.contentDocument.location.reload()
  7400. }
  7401. } else if (str == 'courseDesign') {
  7402. U.UF.DL.iframeLoad(_iframe, function () {
  7403. // _iframe.contentWindow.U.MD.O.W.load();
  7404. // _iframe.contentWindow.document.body.appendChild(script1);
  7405. _iframe.contentWindow.document.body.appendChild(script2);
  7406. _iframe.contentWindow.document.body.appendChild(script4);
  7407. })
  7408. } else if (str == 'mind') {
  7409. _iframe = _formdiv.querySelector('iframe')
  7410. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7411. //
  7412. _iframe.contentWindow.document.body.appendChild(script1);
  7413. _iframe.contentWindow.document.body.appendChild(script2);
  7414. _iframe.contentWindow.document.body.appendChild(script4);
  7415. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7416. })
  7417. if (onloadListener) {
  7418. _iframe.contentDocument.location.reload()
  7419. } else {
  7420. _iframe.contentDocument.location.reload()
  7421. }
  7422. } else if (str == 'whiteboard') {
  7423. _iframe = _formdiv.querySelector('iframe')
  7424. let onloadListener = _iframe.onload = () => {
  7425. _iframe.contentWindow.document.body.appendChild(script1);
  7426. _iframe.contentWindow.document.body.appendChild(script2);
  7427. _iframe.contentWindow.document.body.appendChild(script4);
  7428. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7429. };
  7430. // if (onloadListener) {
  7431. // try {
  7432. // _iframe.src += "?cocorobo="+new Date().getTime()
  7433. // _iframe.contentWindow.document.location.reload()
  7434. // } catch (error) {
  7435. // }
  7436. // } else {
  7437. // _iframe.contentDocument.location.reload()
  7438. // }
  7439. } else {
  7440. _iframe.onload = () => {
  7441. _iframe.contentWindow.document.body.appendChild(script1);
  7442. _iframe.contentWindow.document.body.appendChild(script2);
  7443. // _iframe.contentWindow.document.body.appendChild(script3);
  7444. _iframe.contentWindow.document.body.appendChild(script4);
  7445. };
  7446. }
  7447. _jie.onclick = async () => {
  7448. let text = ''
  7449. if (aTool == 1) {
  7450. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7451. } else if (aTool == 6) {
  7452. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7453. } else if (aTool == 3) {
  7454. text = await U.MD.D.I.getEditorContent(_iframe);
  7455. }
  7456. _loading.style.display = 'flex'
  7457. console.log(_loading);
  7458. var _ajs = _iframe.contentWindow.document.createElement("script");
  7459. _ajs.type = "text/javascript";
  7460. _ajs.innerHTML =
  7461. // 'console.log(' + _loading + ');\n' +
  7462. 'var _js = document.createElement("script");\n' +
  7463. '_js.type="text/javascript";\n' +
  7464. '_js.charset="UTF-8";\n' +
  7465. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7466. "_js.onload = function(){\n" +
  7467. ' var a = document.getElementsByTagName("img")\n' +
  7468. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7469. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7470. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7471. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7472. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7473. "beforeUpload_shishi(file," +
  7474. "'" +
  7475. _userid +
  7476. "'" +
  7477. ", " +
  7478. "'" +
  7479. _cid +
  7480. "'" +
  7481. ", " +
  7482. "'" +
  7483. _stage +
  7484. "'" +
  7485. ", " +
  7486. "'" +
  7487. _task +
  7488. "'" +
  7489. ", " +
  7490. "'" +
  7491. _tool +
  7492. "'" +
  7493. ", " +
  7494. "'" +
  7495. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7496. "'" +
  7497. ", " +
  7498. "'" +
  7499. aTool +
  7500. "'" +
  7501. ", " +
  7502. "`" +
  7503. text +
  7504. "`" +
  7505. ")\n" +
  7506. " });\n" +
  7507. "}\n" +
  7508. "document.head.appendChild(_js);\n";
  7509. _iframe.contentWindow.document.head.appendChild(_ajs);
  7510. }
  7511. }
  7512. //U.MD.D.I.openClick(str);
  7513. //如果有任务栏信息
  7514. // if (_taskbar) {
  7515. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7516. // }
  7517. }
  7518. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7519. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7520. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7521. _userid = student.userid, //登录用户id
  7522. _username = student.student //用户名字
  7523. let _iframe;
  7524. let _cid = cid,
  7525. _stage = stage,
  7526. _task = task,
  7527. _tool = tool;
  7528. var _jie = $$("div", {
  7529. "style": {
  7530. "position": "absolute",
  7531. "bottom": "50px",
  7532. "right": "50px",
  7533. "zIndex": "9999",
  7534. "backgroundColor": "#2268bc",
  7535. "color": "#fff",
  7536. "padding": "12px 20px",
  7537. "cursor": "pointer",
  7538. "borderRadius": "4px",
  7539. },
  7540. "innerHTML": "提交作业"
  7541. })
  7542. let aTool = ''
  7543. let _loading = document.createElement('div')
  7544. _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;"
  7545. // _loading.id = "";
  7546. let _lchild = document.createElement('div')
  7547. let _limg = document.createElement('img')
  7548. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7549. _limg.style = "width: 26px;margin-right: 10px;"
  7550. _lchild.appendChild(_limg)
  7551. let _lspan = document.createElement('span')
  7552. _lspan.innerHTML = "上传中..."
  7553. _lchild.appendChild(_lspan)
  7554. _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%);"
  7555. _loading.appendChild(_lchild)
  7556. var _box = $$('div', {
  7557. "style": {
  7558. "position": "relative",
  7559. "width": "100%",
  7560. "height": "100%",
  7561. },
  7562. })
  7563. _box.appendChild(_loading)
  7564. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7565. switch (str) {
  7566. case "whiteboard":
  7567. aTool = 1;
  7568. _iframe = $$("iframe", {
  7569. "frameborder": "no",
  7570. "border": "0",
  7571. "scrolling ": "no",
  7572. "style": {
  7573. "cssText": "border:0;width:100%;height:100%"
  7574. },
  7575. "src": "https://beta.iwb.cocorobo.cn/"
  7576. })
  7577. _box.appendChild(_iframe);
  7578. _box.appendChild(_jie);
  7579. _formdiv = new U.UF.UI.form(
  7580. "电子白板-" + _username,
  7581. _box, {
  7582. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7583. "style": {
  7584. "width": "90%",
  7585. "height": "90%",
  7586. "overflow": 'hidden'
  7587. },
  7588. "onresize": function () { }
  7589. }, {
  7590. closecallback: function () { }
  7591. }, {
  7592. "style": {
  7593. "height": "36px"
  7594. }
  7595. }).form; //创建窗体
  7596. _taskbar = {
  7597. "id": str + _formdiv.id,
  7598. "style": {
  7599. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7600. },
  7601. "name": "电子白板",
  7602. "forms": _formdiv,
  7603. "click": function () {
  7604. U.MD.D.I.openApplication(str, obj, info);
  7605. }
  7606. }
  7607. break;
  7608. case "mind":
  7609. aTool = 3;
  7610. _iframe = $$("iframe", {
  7611. "frameborder": "no",
  7612. "border": "0",
  7613. "scrolling ": "no",
  7614. "style": {
  7615. "cssText": "border:0;width:100%;height:100%"
  7616. },
  7617. "src": "/kityminder-editor/dist/index.html"
  7618. })
  7619. _box.appendChild(_iframe);
  7620. _box.appendChild(_jie);
  7621. _formdiv = new U.UF.UI.form(
  7622. "思维导图-" + _username,
  7623. _box, { //"/jsmind/example/demo.html"
  7624. "id": "mind" + cid + stage + task + tool + _userid,
  7625. "style": {
  7626. "width": "90%",
  7627. "height": "90%",
  7628. "overflow": 'hidden'
  7629. },
  7630. "onresize": function () { }
  7631. }, {
  7632. closecallback: function () { }
  7633. }, {
  7634. "style": {
  7635. "height": "36px"
  7636. }
  7637. }).form; //创建窗体
  7638. _taskbar = {
  7639. "id": str + _formdiv.id,
  7640. "style": {
  7641. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7642. },
  7643. "name": "思维导图",
  7644. "forms": _formdiv,
  7645. "click": function () {
  7646. U.MD.D.I.openApplication(str, obj, info);
  7647. }
  7648. }
  7649. break;
  7650. case "MindMap":
  7651. aTool = 3;
  7652. _iframe = $$("iframe", {
  7653. "frameborder": "no",
  7654. "border": "0",
  7655. "scrolling ": "no",
  7656. "style": {
  7657. "cssText": "border:0;width:100%;height:100%"
  7658. },
  7659. "src": "//cloud.cocorobo.cn/mind/"
  7660. })
  7661. _box.appendChild(_iframe);
  7662. _box.appendChild(_jie);
  7663. _formdiv = new U.UF.UI.form(
  7664. "思维导图-" + _username,
  7665. _box, { //"/jsmind/example/demo.html"
  7666. "id": "mind" + cid + stage + task + tool + _userid,
  7667. "style": {
  7668. "width": "90%",
  7669. "height": "90%",
  7670. "overflow": 'hidden'
  7671. },
  7672. "onresize": function () { }
  7673. }, {
  7674. closecallback: function () { }
  7675. }, {
  7676. "style": {
  7677. "height": "36px"
  7678. }
  7679. }).form; //创建窗体
  7680. _taskbar = {
  7681. "id": str + _formdiv.id,
  7682. "style": {
  7683. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7684. },
  7685. "name": "思维导图",
  7686. "forms": _formdiv,
  7687. "click": function () {
  7688. U.MD.D.I.openApplication(str, obj, info);
  7689. }
  7690. }
  7691. break;
  7692. case "doc":
  7693. aTool = 6;
  7694. _iframe = $$("iframe", {
  7695. "frameborder": "no",
  7696. "border": "0",
  7697. "scrolling ": "no",
  7698. "style": {
  7699. "cssText": "border:0;width:100%;height:100%"
  7700. },
  7701. "src": "/Office/Word/WordEditArea.htm"
  7702. })
  7703. _box.appendChild(_iframe);
  7704. _box.appendChild(_jie);
  7705. _formdiv = new U.UF.UI.form(
  7706. "协同文档-" + _username,
  7707. _box, {
  7708. "id": "doc" + cid + stage + task + tool + _userid,
  7709. "style": {
  7710. "width": "90%",
  7711. "height": "90%",
  7712. "overflow": 'hidden'
  7713. },
  7714. "onresize": function () { }
  7715. }, {
  7716. closecallback: function () { }
  7717. }, {
  7718. "style": {
  7719. "height": "36px"
  7720. }
  7721. }).form; //创建窗体
  7722. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7723. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7724. })
  7725. _taskbar = {
  7726. "id": str + _formdiv.id,
  7727. "style": {
  7728. "backgroundImage": "url(/img/icon/doc.png)"
  7729. },
  7730. "name": "协同文档",
  7731. "forms": _formdiv,
  7732. "click": function () {
  7733. U.MD.D.I.openApplication(str, obj, info);
  7734. }
  7735. }
  7736. break;
  7737. case "mindNetwork": //好友打开
  7738. aTool = 7;
  7739. _iframe = $$("iframe", {
  7740. "webkitallowfullscreen": "",
  7741. "mozallowfullscreen": "",
  7742. "allowfullscreen": "",
  7743. "frameborder": "no",
  7744. "border": "0",
  7745. "scrolling ": "no",
  7746. "style": {
  7747. "cssText": "border:0; width:100%; height:100%;"
  7748. },
  7749. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7750. })
  7751. _box.appendChild(_iframe);
  7752. _box.appendChild(_jie);
  7753. _formdiv = new U.UF.UI.form(
  7754. "思维网格-" + _username,
  7755. _box, {
  7756. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7757. "style": {
  7758. "width": "90%",
  7759. "height": "90%",
  7760. "overflow": 'hidden'
  7761. },
  7762. "onresize": function () { }
  7763. }, {
  7764. closecallback: function () { }
  7765. }, {
  7766. "style": {
  7767. "height": "36px"
  7768. }
  7769. }).form; //创建窗体
  7770. _taskbar = {
  7771. "id": str + _formdiv.id,
  7772. "style": {
  7773. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7774. },
  7775. "name": "思维网格",
  7776. "forms": _formdiv,
  7777. "click": function () {
  7778. U.MD.D.I.openApplication(str, obj, info);
  7779. }
  7780. }
  7781. break;
  7782. case "courseDesign":
  7783. _iframe = $$("iframe", {
  7784. "webkitallowfullscreen": "",
  7785. "mozallowfullscreen": "",
  7786. "allowfullscreen": "",
  7787. "frameborder": "no",
  7788. "border": "0",
  7789. "scrolling ": "no",
  7790. "style": {
  7791. "cssText": "border:0; width:100%; height:100%;"
  7792. },
  7793. "src": "/course-design-vue"
  7794. })
  7795. _box.appendChild(_iframe);
  7796. _box.appendChild(_jie);
  7797. _formdiv = new U.UF.UI.form(
  7798. "项目设计-" + _username,
  7799. _box, {
  7800. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7801. "style": {
  7802. "width": "90%",
  7803. "height": "90%",
  7804. "overflow": 'hidden'
  7805. },
  7806. "onresize": function () { }
  7807. }, {
  7808. closecallback: function () { }
  7809. }, {
  7810. "style": {
  7811. "height": "36px"
  7812. }
  7813. }).form; //创建窗体
  7814. _taskbar = {
  7815. "id": str + _formdiv.id,
  7816. "style": {
  7817. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7818. },
  7819. "name": "项目设计",
  7820. "forms": _formdiv,
  7821. "click": function () {
  7822. U.MD.D.I.openApplication(str, obj, info);
  7823. }
  7824. }
  7825. break;
  7826. }
  7827. const script1 = document.createElement("script");
  7828. script1.type = "text/javascript";
  7829. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7830. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7831. const script2 = document.createElement("script");
  7832. script2.type = "text/javascript";
  7833. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7834. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7835. const script3 = document.createElement("script");
  7836. script3.type = "text/javascript";
  7837. script3.charset = "UTF-8";
  7838. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7839. const script4 = document.createElement("script");
  7840. script4.type = "text/javascript";
  7841. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7842. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7843. if (_iframe) {
  7844. if (str == 'doc') {
  7845. _iframe = _formdiv.querySelector('iframe')
  7846. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7847. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7848. _iframe.contentWindow.document.body.appendChild(script1);
  7849. _iframe.contentWindow.document.body.appendChild(script2);
  7850. // _iframe.contentWindow.document.body.appendChild(script3);
  7851. _iframe.contentWindow.document.body.appendChild(script4);
  7852. })
  7853. if (onloadListener) {
  7854. _iframe.contentDocument.location.reload()
  7855. } else {
  7856. _iframe.contentDocument.location.reload()
  7857. }
  7858. } else if (str == 'courseDesign') {
  7859. U.UF.DL.iframeLoad(_iframe, function () {
  7860. // _iframe.contentWindow.U.MD.O.W.load();
  7861. // _iframe.contentWindow.document.body.appendChild(script1);
  7862. _iframe.contentWindow.document.body.appendChild(script2);
  7863. _iframe.contentWindow.document.body.appendChild(script4);
  7864. })
  7865. } else if (str == 'mind') {
  7866. _iframe = _formdiv.querySelector('iframe')
  7867. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7868. //
  7869. _iframe.contentWindow.document.body.appendChild(script1);
  7870. _iframe.contentWindow.document.body.appendChild(script2);
  7871. _iframe.contentWindow.document.body.appendChild(script4);
  7872. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7873. })
  7874. if (onloadListener) {
  7875. _iframe.contentDocument.location.reload()
  7876. } else {
  7877. _iframe.contentDocument.location.reload()
  7878. }
  7879. } else if (str == 'whiteboard') {
  7880. _iframe = _formdiv.querySelector('iframe')
  7881. let onloadListener = _iframe.onload = () => {
  7882. _iframe.contentWindow.document.body.appendChild(script1);
  7883. _iframe.contentWindow.document.body.appendChild(script2);
  7884. _iframe.contentWindow.document.body.appendChild(script4);
  7885. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7886. };
  7887. // if (onloadListener) {
  7888. // try {
  7889. // _iframe.src += "?cocorobo="+new Date().getTime()
  7890. // _iframe.contentWindow.document.location.reload()
  7891. // } catch (error) {
  7892. // }
  7893. // } else {
  7894. // _iframe.contentDocument.location.reload()
  7895. // }
  7896. } else {
  7897. _iframe.onload = () => {
  7898. _iframe.contentWindow.document.body.appendChild(script1);
  7899. _iframe.contentWindow.document.body.appendChild(script2);
  7900. // _iframe.contentWindow.document.body.appendChild(script3);
  7901. _iframe.contentWindow.document.body.appendChild(script4);
  7902. };
  7903. }
  7904. _jie.onclick = async () => {
  7905. let text = ''
  7906. if (aTool == 1) {
  7907. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7908. } else if (aTool == 6) {
  7909. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7910. } else if (aTool == 3) {
  7911. text = await U.MD.D.I.getEditorContent(_iframe);
  7912. }
  7913. _loading.style.display = 'flex'
  7914. console.log(_loading);
  7915. var _ajs = _iframe.contentWindow.document.createElement("script");
  7916. _ajs.type = "text/javascript";
  7917. _ajs.innerHTML =
  7918. // 'console.log(' + _loading + ');\n' +
  7919. 'var _js = document.createElement("script");\n' +
  7920. '_js.type="text/javascript";\n' +
  7921. '_js.charset="UTF-8";\n' +
  7922. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7923. "_js.onload = function(){\n" +
  7924. ' var a = document.getElementsByTagName("img")\n' +
  7925. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7926. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7927. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7928. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7929. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7930. "beforeUpload_shishi(file," +
  7931. "'" +
  7932. _userid +
  7933. "'" +
  7934. ", " +
  7935. "'" +
  7936. _cid +
  7937. "'" +
  7938. ", " +
  7939. "'" +
  7940. _stage +
  7941. "'" +
  7942. ", " +
  7943. "'" +
  7944. _task +
  7945. "'" +
  7946. ", " +
  7947. "'" +
  7948. _tool +
  7949. "'" +
  7950. ", " +
  7951. "'" +
  7952. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7953. "'" +
  7954. ", " +
  7955. "'" +
  7956. aTool +
  7957. "'" +
  7958. ", " +
  7959. "`" +
  7960. text +
  7961. "`" +
  7962. ")\n" +
  7963. " });\n" +
  7964. "}\n" +
  7965. "document.head.appendChild(_js);\n";
  7966. _iframe.contentWindow.document.head.appendChild(_ajs);
  7967. }
  7968. }
  7969. }
  7970. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7971. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7972. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7973. _userid = student.userid, //登录用户id
  7974. _username = student.student //用户名字
  7975. let _iframe;
  7976. let _cid = cid,
  7977. _stage = stage,
  7978. _task = task,
  7979. _tool = tool;
  7980. var _jie = $$("div", {
  7981. "style": {
  7982. "position": "absolute",
  7983. "bottom": "50px",
  7984. "right": "50px",
  7985. "zIndex": "9999",
  7986. "backgroundColor": "#2268bc",
  7987. "color": "#fff",
  7988. "padding": "12px 20px",
  7989. "cursor": "pointer",
  7990. "borderRadius": "4px",
  7991. },
  7992. "innerHTML": "提交作业"
  7993. })
  7994. let aTool = ''
  7995. let _loading = document.createElement('div')
  7996. _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;"
  7997. // _loading.id = "";
  7998. let _lchild = document.createElement('div')
  7999. let _limg = document.createElement('img')
  8000. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8001. _limg.style = "width: 26px;margin-right: 10px;"
  8002. _lchild.appendChild(_limg)
  8003. let _lspan = document.createElement('span')
  8004. _lspan.innerHTML = "上传中..."
  8005. _lchild.appendChild(_lspan)
  8006. _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%);"
  8007. _loading.appendChild(_lchild)
  8008. var _box = $$('div', {
  8009. "style": {
  8010. "position": "relative",
  8011. "width": "100%",
  8012. "height": "100%",
  8013. },
  8014. })
  8015. _box.appendChild(_loading)
  8016. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8017. switch (str) {
  8018. case "whiteboard":
  8019. aTool = 1;
  8020. _iframe = $$("iframe", {
  8021. "frameborder": "no",
  8022. "border": "0",
  8023. "scrolling ": "no",
  8024. "style": {
  8025. "cssText": "border:0;width:100%;height:100%"
  8026. },
  8027. "src": "https://beta.iwb.cocorobo.cn/"
  8028. })
  8029. _box.appendChild(_iframe);
  8030. _box.appendChild(_jie);
  8031. _formdiv = new U.UF.UI.form(
  8032. "电子白板-" + _username,
  8033. _box, {
  8034. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8035. "style": {
  8036. "width": "90%",
  8037. "height": "90%",
  8038. "overflow": 'hidden'
  8039. },
  8040. "onresize": function () { }
  8041. }, {
  8042. closecallback: function () { }
  8043. }, {
  8044. "style": {
  8045. "height": "36px"
  8046. }
  8047. }).form; //创建窗体
  8048. _taskbar = {
  8049. "id": str + _formdiv.id,
  8050. "style": {
  8051. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8052. },
  8053. "name": "电子白板",
  8054. "forms": _formdiv,
  8055. "click": function () {
  8056. U.MD.D.I.openApplication(str, obj, info);
  8057. }
  8058. }
  8059. break;
  8060. case "mind":
  8061. aTool = 3;
  8062. _iframe = $$("iframe", {
  8063. "frameborder": "no",
  8064. "border": "0",
  8065. "scrolling ": "no",
  8066. "style": {
  8067. "cssText": "border:0;width:100%;height:100%"
  8068. },
  8069. "src": "/kityminder-editor/dist/index.html"
  8070. })
  8071. _box.appendChild(_iframe);
  8072. _box.appendChild(_jie);
  8073. _formdiv = new U.UF.UI.form(
  8074. "思维导图-" + _username,
  8075. _box, { //"/jsmind/example/demo.html"
  8076. "id": "mind" + cid + stage + task + tool + _userid,
  8077. "style": {
  8078. "width": "90%",
  8079. "height": "90%",
  8080. "overflow": 'hidden'
  8081. },
  8082. "onresize": function () { }
  8083. }, {
  8084. closecallback: function () { }
  8085. }, {
  8086. "style": {
  8087. "height": "36px"
  8088. }
  8089. }).form; //创建窗体
  8090. _taskbar = {
  8091. "id": str + _formdiv.id,
  8092. "style": {
  8093. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8094. },
  8095. "name": "思维导图",
  8096. "forms": _formdiv,
  8097. "click": function () {
  8098. U.MD.D.I.openApplication(str, obj, info);
  8099. }
  8100. }
  8101. break;
  8102. case "MindMap":
  8103. aTool = 3;
  8104. _iframe = $$("iframe", {
  8105. "frameborder": "no",
  8106. "border": "0",
  8107. "scrolling ": "no",
  8108. "style": {
  8109. "cssText": "border:0;width:100%;height:100%"
  8110. },
  8111. "src": "//cloud.cocorobo.cn/mind/"
  8112. })
  8113. _box.appendChild(_iframe);
  8114. _box.appendChild(_jie);
  8115. _formdiv = new U.UF.UI.form(
  8116. "思维导图-" + _username,
  8117. _box, { //"/jsmind/example/demo.html"
  8118. "id": "mind" + cid + stage + task + tool + _userid,
  8119. "style": {
  8120. "width": "90%",
  8121. "height": "90%",
  8122. "overflow": 'hidden'
  8123. },
  8124. "onresize": function () { }
  8125. }, {
  8126. closecallback: function () { }
  8127. }, {
  8128. "style": {
  8129. "height": "36px"
  8130. }
  8131. }).form; //创建窗体
  8132. _taskbar = {
  8133. "id": str + _formdiv.id,
  8134. "style": {
  8135. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8136. },
  8137. "name": "思维导图",
  8138. "forms": _formdiv,
  8139. "click": function () {
  8140. U.MD.D.I.openApplication(str, obj, info);
  8141. }
  8142. }
  8143. break;
  8144. case "doc":
  8145. aTool = 6;
  8146. _iframe = $$("iframe", {
  8147. "frameborder": "no",
  8148. "border": "0",
  8149. "scrolling ": "no",
  8150. "style": {
  8151. "cssText": "border:0;width:100%;height:100%"
  8152. },
  8153. "src": "/Office/Word/WordEditArea.htm"
  8154. })
  8155. _box.appendChild(_iframe);
  8156. _box.appendChild(_jie);
  8157. _formdiv = new U.UF.UI.form(
  8158. "协同文档-" + _username,
  8159. _box, {
  8160. "id": "doc" + cid + stage + task + tool + _userid,
  8161. "style": {
  8162. "width": "90%",
  8163. "height": "90%",
  8164. "overflow": 'hidden'
  8165. },
  8166. "onresize": function () { }
  8167. }, {
  8168. closecallback: function () { }
  8169. }, {
  8170. "style": {
  8171. "height": "36px"
  8172. }
  8173. }).form; //创建窗体
  8174. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8175. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8176. })
  8177. _taskbar = {
  8178. "id": str + _formdiv.id,
  8179. "style": {
  8180. "backgroundImage": "url(/img/icon/doc.png)"
  8181. },
  8182. "name": "协同文档",
  8183. "forms": _formdiv,
  8184. "click": function () {
  8185. U.MD.D.I.openApplication(str, obj, info);
  8186. }
  8187. }
  8188. break;
  8189. case "mindNetwork": //好友打开
  8190. aTool = 7;
  8191. _iframe = $$("iframe", {
  8192. "webkitallowfullscreen": "",
  8193. "mozallowfullscreen": "",
  8194. "allowfullscreen": "",
  8195. "frameborder": "no",
  8196. "border": "0",
  8197. "scrolling ": "no",
  8198. "style": {
  8199. "cssText": "border:0; width:100%; height:100%;"
  8200. },
  8201. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8202. })
  8203. _box.appendChild(_iframe);
  8204. _box.appendChild(_jie);
  8205. _formdiv = new U.UF.UI.form(
  8206. "思维网格-" + _username,
  8207. _box, {
  8208. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8209. "style": {
  8210. "width": "90%",
  8211. "height": "90%",
  8212. "overflow": 'hidden'
  8213. },
  8214. "onresize": function () { }
  8215. }, {
  8216. closecallback: function () { }
  8217. }, {
  8218. "style": {
  8219. "height": "36px"
  8220. }
  8221. }).form; //创建窗体
  8222. _taskbar = {
  8223. "id": str + _formdiv.id,
  8224. "style": {
  8225. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8226. },
  8227. "name": "思维网格",
  8228. "forms": _formdiv,
  8229. "click": function () {
  8230. U.MD.D.I.openApplication(str, obj, info);
  8231. }
  8232. }
  8233. break;
  8234. case "courseDesign":
  8235. _iframe = $$("iframe", {
  8236. "webkitallowfullscreen": "",
  8237. "mozallowfullscreen": "",
  8238. "allowfullscreen": "",
  8239. "frameborder": "no",
  8240. "border": "0",
  8241. "scrolling ": "no",
  8242. "style": {
  8243. "cssText": "border:0; width:100%; height:100%;"
  8244. },
  8245. "src": "/course-design-vue"
  8246. })
  8247. _box.appendChild(_iframe);
  8248. _box.appendChild(_jie);
  8249. _formdiv = new U.UF.UI.form(
  8250. "项目设计-" + _username,
  8251. _box, {
  8252. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8253. "style": {
  8254. "width": "90%",
  8255. "height": "90%",
  8256. "overflow": 'hidden'
  8257. },
  8258. "onresize": function () { }
  8259. }, {
  8260. closecallback: function () { }
  8261. }, {
  8262. "style": {
  8263. "height": "36px"
  8264. }
  8265. }).form; //创建窗体
  8266. _taskbar = {
  8267. "id": str + _formdiv.id,
  8268. "style": {
  8269. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8270. },
  8271. "name": "项目设计",
  8272. "forms": _formdiv,
  8273. "click": function () {
  8274. U.MD.D.I.openApplication(str, obj, info);
  8275. }
  8276. }
  8277. break;
  8278. }
  8279. const script1 = document.createElement("script");
  8280. script1.type = "text/javascript";
  8281. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8282. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8283. const script2 = document.createElement("script");
  8284. script2.type = "text/javascript";
  8285. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8286. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8287. const script3 = document.createElement("script");
  8288. script3.type = "text/javascript";
  8289. script3.charset = "UTF-8";
  8290. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8291. const script4 = document.createElement("script");
  8292. script4.type = "text/javascript";
  8293. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8294. script4.src = window.origin + "/js/Common/jietu2E.js";
  8295. if (_iframe) {
  8296. if (str == 'doc') {
  8297. _iframe = _formdiv.querySelector('iframe')
  8298. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8299. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8300. _iframe.contentWindow.document.body.appendChild(script1);
  8301. _iframe.contentWindow.document.body.appendChild(script2);
  8302. // _iframe.contentWindow.document.body.appendChild(script3);
  8303. _iframe.contentWindow.document.body.appendChild(script4);
  8304. })
  8305. if (onloadListener) {
  8306. _iframe.contentDocument.location.reload()
  8307. } else {
  8308. _iframe.contentDocument.location.reload()
  8309. }
  8310. } else if (str == 'courseDesign') {
  8311. U.UF.DL.iframeLoad(_iframe, function () {
  8312. // _iframe.contentWindow.U.MD.O.W.load();
  8313. // _iframe.contentWindow.document.body.appendChild(script1);
  8314. _iframe.contentWindow.document.body.appendChild(script2);
  8315. _iframe.contentWindow.document.body.appendChild(script4);
  8316. })
  8317. } else if (str == 'mind') {
  8318. _iframe = _formdiv.querySelector('iframe')
  8319. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8320. //
  8321. _iframe.contentWindow.document.body.appendChild(script1);
  8322. _iframe.contentWindow.document.body.appendChild(script2);
  8323. _iframe.contentWindow.document.body.appendChild(script4);
  8324. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8325. })
  8326. if (onloadListener) {
  8327. _iframe.contentDocument.location.reload()
  8328. } else {
  8329. _iframe.contentDocument.location.reload()
  8330. }
  8331. } else if (str == 'whiteboard') {
  8332. _iframe = _formdiv.querySelector('iframe')
  8333. let onloadListener = _iframe.onload = () => {
  8334. _iframe.contentWindow.document.body.appendChild(script1);
  8335. _iframe.contentWindow.document.body.appendChild(script2);
  8336. _iframe.contentWindow.document.body.appendChild(script4);
  8337. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8338. };
  8339. // if (onloadListener) {
  8340. // try {
  8341. // _iframe.src += "?cocorobo="+new Date().getTime()
  8342. // _iframe.contentWindow.document.location.reload()
  8343. // } catch (error) {
  8344. // }
  8345. // } else {
  8346. // _iframe.contentDocument.location.reload()
  8347. // }
  8348. } else {
  8349. _iframe.onload = () => {
  8350. _iframe.contentWindow.document.body.appendChild(script1);
  8351. _iframe.contentWindow.document.body.appendChild(script2);
  8352. // _iframe.contentWindow.document.body.appendChild(script3);
  8353. _iframe.contentWindow.document.body.appendChild(script4);
  8354. };
  8355. }
  8356. _jie.onclick = async () => {
  8357. let text = ''
  8358. if (aTool == 1) {
  8359. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8360. } else if (aTool == 6) {
  8361. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8362. } else if (aTool == 3) {
  8363. text = await U.MD.D.I.getEditorContent(_iframe);
  8364. }
  8365. _loading.style.display = 'flex'
  8366. console.log(_loading);
  8367. var _ajs = _iframe.contentWindow.document.createElement("script");
  8368. _ajs.type = "text/javascript";
  8369. _ajs.innerHTML =
  8370. // 'console.log(' + _loading + ');\n' +
  8371. 'var _js = document.createElement("script");\n' +
  8372. '_js.type="text/javascript";\n' +
  8373. '_js.charset="UTF-8";\n' +
  8374. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8375. "_js.onload = function(){\n" +
  8376. ' var a = document.getElementsByTagName("img")\n' +
  8377. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8378. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8379. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8380. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8381. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8382. "beforeUpload_shishi(file," +
  8383. "'" +
  8384. _userid +
  8385. "'" +
  8386. ", " +
  8387. "'" +
  8388. _cid +
  8389. "'" +
  8390. ", " +
  8391. "'" +
  8392. _stage +
  8393. "'" +
  8394. ", " +
  8395. "'" +
  8396. _task +
  8397. "'" +
  8398. ", " +
  8399. "'" +
  8400. _tool +
  8401. "'" +
  8402. ", " +
  8403. "'" +
  8404. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8405. "'" +
  8406. ", " +
  8407. "'" +
  8408. aTool +
  8409. "'" +
  8410. ", " +
  8411. "`" +
  8412. text +
  8413. "`" +
  8414. ")\n" +
  8415. " });\n" +
  8416. "}\n" +
  8417. "document.head.appendChild(_js);\n";
  8418. _iframe.contentWindow.document.head.appendChild(_ajs);
  8419. }
  8420. }
  8421. }
  8422. U.MD.D.I.getEditorContent = function (iframe) {
  8423. return new Promise((resolve, reject) => {
  8424. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8425. console.log(content);
  8426. resolve(content)
  8427. });
  8428. });
  8429. }
  8430. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8431. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8432. // if (res.value[0].length > 0) {
  8433. // // resolve(res.value[0][0].text);
  8434. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8435. // $(fileInput).val('');
  8436. // });
  8437. // }
  8438. // }, [], { "type": "GET", "withCredentials": true });
  8439. var xmlhttp;
  8440. var Mac, Sn, DeviceId
  8441. if (window.XMLHttpRequest) {
  8442. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8443. xmlhttp = new XMLHttpRequest();
  8444. } else {
  8445. // IE6, IE5 浏览器执行代码
  8446. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8447. }
  8448. xmlhttp.onreadystatechange = function () {
  8449. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8450. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8451. // resolve(res.value[0][0].text);
  8452. if (type == '2') {
  8453. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8454. } else if (type == '3') {
  8455. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8456. }
  8457. } else {
  8458. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8459. }
  8460. }
  8461. }
  8462. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8463. xmlhttp.send();
  8464. }
  8465. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8466. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8467. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8468. _userinfo = US.userInfo, //登录用户信息
  8469. _userid = US.userInfo.userid //登录用户id
  8470. let _iframe;
  8471. let _cid = cid,
  8472. _stage = stage,
  8473. _task = task,
  8474. _tool = tool;
  8475. var _jie = $$("div", {
  8476. "style": {
  8477. "position": "absolute",
  8478. "bottom": "50px",
  8479. "right": "50px",
  8480. "zIndex": "9999",
  8481. "backgroundColor": "#2268bc",
  8482. "color": "#fff",
  8483. "padding": "12px 20px",
  8484. "cursor": "pointer",
  8485. "borderRadius": "4px",
  8486. },
  8487. "innerHTML": "确认并提交"
  8488. })
  8489. let aTool = ''
  8490. let _loading = document.createElement('div')
  8491. _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;"
  8492. // _loading.id = "";
  8493. let _lchild = document.createElement('div')
  8494. let _limg = document.createElement('img')
  8495. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8496. _limg.style = "width: 26px;margin-right: 10px;"
  8497. _lchild.appendChild(_limg)
  8498. let _lspan = document.createElement('span')
  8499. _lspan.innerHTML = "上传中..."
  8500. _lchild.appendChild(_lspan)
  8501. _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%);"
  8502. _loading.appendChild(_lchild)
  8503. var _box = $$('div', {
  8504. "style": {
  8505. "position": "relative",
  8506. "width": "100%",
  8507. "height": "100%",
  8508. },
  8509. })
  8510. _box.appendChild(_loading)
  8511. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8512. switch (str) {
  8513. case "whiteboard":
  8514. aTool = 1;
  8515. _iframe = $$("iframe", {
  8516. "frameborder": "no",
  8517. "border": "0",
  8518. "scrolling ": "no",
  8519. "style": {
  8520. "cssText": "border:0;width:100%;height:100%"
  8521. },
  8522. "src": "https://beta.iwb.cocorobo.cn/"
  8523. })
  8524. _box.appendChild(_iframe);
  8525. _box.appendChild(_jie);
  8526. _formdiv = new U.UF.UI.form(
  8527. "电子白板",
  8528. _box, {
  8529. "id": "whiteboards" + cid + stage + task + tool,
  8530. "style": {
  8531. "width": "90%",
  8532. "height": "90%",
  8533. "overflow": 'hidden'
  8534. },
  8535. "onresize": function () { }
  8536. }, {
  8537. closecallback: function () { }
  8538. }, {
  8539. "style": {
  8540. "height": "36px"
  8541. }
  8542. }).form; //创建窗体
  8543. _taskbar = {
  8544. "id": str + _formdiv.id,
  8545. "style": {
  8546. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8547. },
  8548. "name": "电子白板",
  8549. "forms": _formdiv,
  8550. "click": function () {
  8551. U.MD.D.I.openApplication(str, obj, info);
  8552. }
  8553. }
  8554. break;
  8555. case "mind":
  8556. aTool = 3;
  8557. _iframe = $$("iframe", {
  8558. "frameborder": "no",
  8559. "border": "0",
  8560. "scrolling ": "no",
  8561. "style": {
  8562. "cssText": "border:0;width:100%;height:100%"
  8563. },
  8564. "src": "/kityminder-editor/dist/index.html"
  8565. });
  8566. _box.appendChild(_iframe);
  8567. _box.appendChild(_jie);
  8568. _formdiv = new U.UF.UI.form(
  8569. "思维导图",
  8570. _box, { //"/jsmind/example/demo.html"
  8571. "id": "minds" + cid + stage + task + tool,
  8572. "style": {
  8573. "width": "90%",
  8574. "height": "90%",
  8575. "overflow": 'hidden'
  8576. },
  8577. "onresize": function () { }
  8578. }, {
  8579. closecallback: function () { }
  8580. }, {
  8581. "style": {
  8582. "height": "36px"
  8583. }
  8584. }).form; //创建窗体
  8585. _taskbar = {
  8586. "id": str + _formdiv.id,
  8587. "style": {
  8588. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8589. },
  8590. "name": "思维导图",
  8591. "forms": _formdiv,
  8592. "click": function () {
  8593. U.MD.D.I.openApplication(str, obj, info);
  8594. }
  8595. }
  8596. break;
  8597. case "doc":
  8598. aTool = 6;
  8599. _iframe = $$("iframe", {
  8600. "frameborder": "no",
  8601. "border": "0",
  8602. "scrolling ": "no",
  8603. "style": {
  8604. "cssText": "border:0;width:100%;height:100%"
  8605. },
  8606. "src": "/Office/Word/WordEditArea.htm"
  8607. })
  8608. _box.appendChild(_iframe);
  8609. _box.appendChild(_jie);
  8610. _formdiv = new U.UF.UI.form(
  8611. "协同文档",
  8612. _box, {
  8613. "id": "docs" + cid + stage + task + tool,
  8614. "style": {
  8615. "width": "90%",
  8616. "height": "90%",
  8617. "overflow": 'hidden'
  8618. },
  8619. "onresize": function () { }
  8620. }, {
  8621. closecallback: function () { }
  8622. }, {
  8623. "style": {
  8624. "height": "36px"
  8625. }
  8626. }).form; //创建窗体
  8627. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8628. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8629. })
  8630. _taskbar = {
  8631. "id": str + _formdiv.id,
  8632. "style": {
  8633. "backgroundImage": "url(/img/icon/doc.png)"
  8634. },
  8635. "name": "协同文档",
  8636. "forms": _formdiv,
  8637. "click": function () {
  8638. U.MD.D.I.openApplication(str, obj, info);
  8639. }
  8640. }
  8641. break;
  8642. }
  8643. const script1 = document.createElement("script");
  8644. script1.type = "text/javascript";
  8645. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8646. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8647. const script2 = document.createElement("script");
  8648. script2.type = "text/javascript";
  8649. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8650. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8651. const script3 = document.createElement("script");
  8652. script3.type = "text/javascript";
  8653. script3.charset = "UTF-8";
  8654. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8655. const script4 = document.createElement("script");
  8656. script4.type = "text/javascript";
  8657. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8658. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8659. if (_iframe) {
  8660. if (str == 'doc') {
  8661. _iframe = _formdiv.querySelector('iframe')
  8662. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8663. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8664. _iframe.contentWindow.document.body.appendChild(script1);
  8665. _iframe.contentWindow.document.body.appendChild(script2);
  8666. // _iframe.contentWindow.document.body.appendChild(script3);
  8667. _iframe.contentWindow.document.body.appendChild(script4);
  8668. })
  8669. if (onloadListener) {
  8670. _iframe.contentDocument.location.reload()
  8671. } else {
  8672. _iframe.contentDocument.location.reload()
  8673. }
  8674. } else if (str == 'mind') {
  8675. _iframe = _formdiv.querySelector('iframe')
  8676. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8677. _iframe.contentWindow.document.body.appendChild(script1);
  8678. _iframe.contentWindow.document.body.appendChild(script2);
  8679. _iframe.contentWindow.document.body.appendChild(script4);
  8680. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8681. })
  8682. if (onloadListener) {
  8683. _iframe.contentDocument.location.reload()
  8684. } else {
  8685. _iframe.contentDocument.location.reload()
  8686. }
  8687. } else {
  8688. _iframe.onload = () => {
  8689. _iframe.contentWindow.document.body.appendChild(script1);
  8690. _iframe.contentWindow.document.body.appendChild(script2);
  8691. // _iframe.contentWindow.document.body.appendChild(script3);
  8692. _iframe.contentWindow.document.body.appendChild(script4);
  8693. };
  8694. }
  8695. _jie.onclick = async () => {
  8696. let text = ''
  8697. if (aTool == 6) {
  8698. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8699. } else if (aTool == 3) {
  8700. text = await U.MD.D.I.getEditorContent(_iframe);
  8701. }
  8702. _loading.style.display = 'flex'
  8703. console.log(_loading);
  8704. var _ajs = _iframe.contentWindow.document.createElement("script");
  8705. _ajs.type = "text/javascript";
  8706. _ajs.innerHTML =
  8707. // 'console.log(' + _loading + ');\n' +
  8708. 'var _js = document.createElement("script");\n' +
  8709. '_js.type="text/javascript";\n' +
  8710. '_js.charset="UTF-8";\n' +
  8711. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8712. "_js.onload = function(){\n" +
  8713. ' var a = document.getElementsByTagName("img")\n' +
  8714. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8715. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8716. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8717. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8718. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8719. "beforeUpload_shishi(file," +
  8720. "'" +
  8721. _userid +
  8722. "'" +
  8723. ", " +
  8724. "'" +
  8725. _cid +
  8726. "'" +
  8727. ", " +
  8728. "'" +
  8729. _stage +
  8730. "'" +
  8731. ", " +
  8732. "'" +
  8733. _task +
  8734. "'" +
  8735. ", " +
  8736. "'" +
  8737. _tool +
  8738. "'" +
  8739. ", " +
  8740. "'" +
  8741. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8742. "'" +
  8743. ", " +
  8744. "'" +
  8745. aTool +
  8746. "'" +
  8747. ", " +
  8748. "`" +
  8749. text +
  8750. "`" +
  8751. ")\n" +
  8752. " });\n" +
  8753. "}\n" +
  8754. "document.head.appendChild(_js);\n";
  8755. _iframe.contentWindow.document.head.appendChild(_ajs);
  8756. }
  8757. }
  8758. //U.MD.D.I.openClick(str);
  8759. //如果有任务栏信息
  8760. // if (_taskbar) {
  8761. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8762. // }
  8763. }
  8764. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8765. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8766. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8767. _userinfo = US.userInfo, //登录用户信息
  8768. _userid = US.userInfo.userid //登录用户id
  8769. let _iframe;
  8770. let _cid = cid,
  8771. _stage = stage,
  8772. _task = task,
  8773. _tool = tool;
  8774. var _jie = $$("div", {
  8775. "style": {
  8776. "position": "absolute",
  8777. "bottom": "50px",
  8778. "right": "50px",
  8779. "zIndex": "9999",
  8780. "backgroundColor": "#2268bc",
  8781. "color": "#fff",
  8782. "padding": "12px 20px",
  8783. "cursor": "pointer",
  8784. "borderRadius": "4px",
  8785. },
  8786. "innerHTML": "确认并提交"
  8787. })
  8788. let aTool = ''
  8789. let _loading = document.createElement('div')
  8790. _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;"
  8791. // _loading.id = "";
  8792. let _lchild = document.createElement('div')
  8793. let _limg = document.createElement('img')
  8794. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8795. _limg.style = "width: 26px;margin-right: 10px;"
  8796. _lchild.appendChild(_limg)
  8797. let _lspan = document.createElement('span')
  8798. _lspan.innerHTML = "上传中..."
  8799. _lchild.appendChild(_lspan)
  8800. _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%);"
  8801. _loading.appendChild(_lchild)
  8802. var _box = $$('div', {
  8803. "style": {
  8804. "position": "relative",
  8805. "width": "100%",
  8806. "height": "100%",
  8807. },
  8808. })
  8809. _box.appendChild(_loading)
  8810. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8811. switch (str) {
  8812. case "whiteboard":
  8813. aTool = 1;
  8814. _iframe = $$("iframe", {
  8815. "frameborder": "no",
  8816. "border": "0",
  8817. "scrolling ": "no",
  8818. "style": {
  8819. "cssText": "border:0;width:100%;height:100%"
  8820. },
  8821. "src": "https://beta.iwb.cocorobo.cn/"
  8822. })
  8823. _box.appendChild(_iframe);
  8824. _box.appendChild(_jie);
  8825. _formdiv = new U.UF.UI.form(
  8826. "电子白板",
  8827. _box, {
  8828. "id": "whiteboards" + cid + stage + task + tool,
  8829. "style": {
  8830. "width": "90%",
  8831. "height": "90%",
  8832. "overflow": 'hidden'
  8833. },
  8834. "onresize": function () { }
  8835. }, {
  8836. closecallback: function () { }
  8837. }, {
  8838. "style": {
  8839. "height": "36px"
  8840. }
  8841. }).form; //创建窗体
  8842. _taskbar = {
  8843. "id": str + _formdiv.id,
  8844. "style": {
  8845. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8846. },
  8847. "name": "电子白板",
  8848. "forms": _formdiv,
  8849. "click": function () {
  8850. U.MD.D.I.openApplication(str, obj, info);
  8851. }
  8852. }
  8853. break;
  8854. case "mind":
  8855. aTool = 3;
  8856. _iframe = $$("iframe", {
  8857. "frameborder": "no",
  8858. "border": "0",
  8859. "scrolling ": "no",
  8860. "style": {
  8861. "cssText": "border:0;width:100%;height:100%"
  8862. },
  8863. "src": "/kityminder-editor/dist/index.html"
  8864. });
  8865. _box.appendChild(_iframe);
  8866. _box.appendChild(_jie);
  8867. _formdiv = new U.UF.UI.form(
  8868. "思维导图",
  8869. _box, { //"/jsmind/example/demo.html"
  8870. "id": "minds" + cid + stage + task + tool,
  8871. "style": {
  8872. "width": "90%",
  8873. "height": "90%",
  8874. "overflow": 'hidden'
  8875. },
  8876. "onresize": function () { }
  8877. }, {
  8878. closecallback: function () { }
  8879. }, {
  8880. "style": {
  8881. "height": "36px"
  8882. }
  8883. }).form; //创建窗体
  8884. _taskbar = {
  8885. "id": str + _formdiv.id,
  8886. "style": {
  8887. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8888. },
  8889. "name": "思维导图",
  8890. "forms": _formdiv,
  8891. "click": function () {
  8892. U.MD.D.I.openApplication(str, obj, info);
  8893. }
  8894. }
  8895. break;
  8896. case "doc":
  8897. aTool = 6;
  8898. _iframe = $$("iframe", {
  8899. "frameborder": "no",
  8900. "border": "0",
  8901. "scrolling ": "no",
  8902. "style": {
  8903. "cssText": "border:0;width:100%;height:100%"
  8904. },
  8905. "src": "/Office/Word/WordEditArea.htm"
  8906. })
  8907. _box.appendChild(_iframe);
  8908. _box.appendChild(_jie);
  8909. _formdiv = new U.UF.UI.form(
  8910. "协同文档",
  8911. _box, {
  8912. "id": "docs" + cid + stage + task + tool,
  8913. "style": {
  8914. "width": "90%",
  8915. "height": "90%",
  8916. "overflow": 'hidden'
  8917. },
  8918. "onresize": function () { }
  8919. }, {
  8920. closecallback: function () { }
  8921. }, {
  8922. "style": {
  8923. "height": "36px"
  8924. }
  8925. }).form; //创建窗体
  8926. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8927. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8928. })
  8929. _taskbar = {
  8930. "id": str + _formdiv.id,
  8931. "style": {
  8932. "backgroundImage": "url(/img/icon/doc.png)"
  8933. },
  8934. "name": "协同文档",
  8935. "forms": _formdiv,
  8936. "click": function () {
  8937. U.MD.D.I.openApplication(str, obj, info);
  8938. }
  8939. }
  8940. break;
  8941. }
  8942. const script1 = document.createElement("script");
  8943. script1.type = "text/javascript";
  8944. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8945. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8946. const script2 = document.createElement("script");
  8947. script2.type = "text/javascript";
  8948. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8949. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8950. const script3 = document.createElement("script");
  8951. script3.type = "text/javascript";
  8952. script3.charset = "UTF-8";
  8953. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8954. const script4 = document.createElement("script");
  8955. script4.type = "text/javascript";
  8956. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8957. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8958. if (_iframe) {
  8959. if (str == 'doc') {
  8960. _iframe = _formdiv.querySelector('iframe')
  8961. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8962. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8963. _iframe.contentWindow.document.body.appendChild(script1);
  8964. _iframe.contentWindow.document.body.appendChild(script2);
  8965. // _iframe.contentWindow.document.body.appendChild(script3);
  8966. _iframe.contentWindow.document.body.appendChild(script4);
  8967. })
  8968. if (onloadListener) {
  8969. _iframe.contentDocument.location.reload()
  8970. } else {
  8971. _iframe.contentDocument.location.reload()
  8972. }
  8973. } else if (str == 'mind') {
  8974. _iframe = _formdiv.querySelector('iframe')
  8975. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8976. _iframe.contentWindow.document.body.appendChild(script1);
  8977. _iframe.contentWindow.document.body.appendChild(script2);
  8978. _iframe.contentWindow.document.body.appendChild(script4);
  8979. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8980. })
  8981. if (onloadListener) {
  8982. _iframe.contentDocument.location.reload()
  8983. } else {
  8984. _iframe.contentDocument.location.reload()
  8985. }
  8986. } else {
  8987. _iframe.onload = () => {
  8988. _iframe.contentWindow.document.body.appendChild(script1);
  8989. _iframe.contentWindow.document.body.appendChild(script2);
  8990. // _iframe.contentWindow.document.body.appendChild(script3);
  8991. _iframe.contentWindow.document.body.appendChild(script4);
  8992. };
  8993. }
  8994. _jie.onclick = async () => {
  8995. let text = ''
  8996. if (aTool == 6) {
  8997. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8998. } else if (aTool == 3) {
  8999. text = await U.MD.D.I.getEditorContent(_iframe);
  9000. }
  9001. _loading.style.display = 'flex'
  9002. console.log(_loading);
  9003. var _ajs = _iframe.contentWindow.document.createElement("script");
  9004. _ajs.type = "text/javascript";
  9005. _ajs.innerHTML =
  9006. // 'console.log(' + _loading + ');\n' +
  9007. 'var _js = document.createElement("script");\n' +
  9008. '_js.type="text/javascript";\n' +
  9009. '_js.charset="UTF-8";\n' +
  9010. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9011. "_js.onload = function(){\n" +
  9012. ' var a = document.getElementsByTagName("img")\n' +
  9013. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9014. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9015. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9016. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9017. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9018. "beforeUpload_shishi(file," +
  9019. "'" +
  9020. _userid +
  9021. "'" +
  9022. ", " +
  9023. "'" +
  9024. _cid +
  9025. "'" +
  9026. ", " +
  9027. "'" +
  9028. _stage +
  9029. "'" +
  9030. ", " +
  9031. "'" +
  9032. _task +
  9033. "'" +
  9034. ", " +
  9035. "'" +
  9036. _tool +
  9037. "'" +
  9038. ", " +
  9039. "'" +
  9040. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9041. "'" +
  9042. ", " +
  9043. "'" +
  9044. aTool +
  9045. "'" +
  9046. ", " +
  9047. "`" +
  9048. text +
  9049. "`" +
  9050. ")\n" +
  9051. " });\n" +
  9052. "}\n" +
  9053. "document.head.appendChild(_js);\n";
  9054. _iframe.contentWindow.document.head.appendChild(_ajs);
  9055. }
  9056. }
  9057. //U.MD.D.I.openClick(str);
  9058. //如果有任务栏信息
  9059. // if (_taskbar) {
  9060. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9061. // }
  9062. }
  9063. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9064. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9065. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9066. _userinfo = US.userInfo, //登录用户信息
  9067. _userid = US.userInfo.userid //登录用户id
  9068. let _iframe;
  9069. let _cid = cid,
  9070. _stage = stage,
  9071. _task = task,
  9072. _tool = tool;
  9073. var _jie = $$("div", {
  9074. "style": {
  9075. "position": "absolute",
  9076. "bottom": "50px",
  9077. "right": "50px",
  9078. "zIndex": "9999",
  9079. "backgroundColor": "#2268bc",
  9080. "color": "#fff",
  9081. "padding": "12px 20px",
  9082. "cursor": "pointer",
  9083. "borderRadius": "4px",
  9084. },
  9085. "innerHTML": "上传模板"
  9086. })
  9087. let aTool = ''
  9088. let _loading = document.createElement('div')
  9089. _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;"
  9090. // _loading.id = "";
  9091. let _lchild = document.createElement('div')
  9092. let _limg = document.createElement('img')
  9093. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9094. _limg.style = "width: 26px;margin-right: 10px;"
  9095. _lchild.appendChild(_limg)
  9096. let _lspan = document.createElement('span')
  9097. _lspan.innerHTML = "上传中..."
  9098. _lchild.appendChild(_lspan)
  9099. _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%);"
  9100. _loading.appendChild(_lchild)
  9101. var _box = $$('div', {
  9102. "style": {
  9103. "position": "relative",
  9104. "width": "100%",
  9105. "height": "100%",
  9106. },
  9107. })
  9108. _box.appendChild(_loading)
  9109. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9110. switch (str) {
  9111. case "whiteboard":
  9112. aTool = 1;
  9113. _iframe = $$("iframe", {
  9114. "frameborder": "no",
  9115. "border": "0",
  9116. "scrolling ": "no",
  9117. "style": {
  9118. "cssText": "border:0;width:100%;height:100%"
  9119. },
  9120. "src": "https://beta.iwb.cocorobo.cn/"
  9121. })
  9122. _box.appendChild(_iframe);
  9123. _box.appendChild(_jie);
  9124. _formdiv = new U.UF.UI.form(
  9125. "电子白板",
  9126. _box, {
  9127. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9128. "style": {
  9129. "width": "90%",
  9130. "height": "90%",
  9131. "overflow": 'hidden'
  9132. },
  9133. "onresize": function () { }
  9134. }, {
  9135. closecallback: function () { }
  9136. }, {
  9137. "style": {
  9138. "height": "36px"
  9139. }
  9140. }).form; //创建窗体
  9141. _taskbar = {
  9142. "id": str + _formdiv.id,
  9143. "style": {
  9144. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9145. },
  9146. "name": "电子白板",
  9147. "forms": _formdiv,
  9148. "click": function () {
  9149. U.MD.D.I.openApplication(str, obj, info);
  9150. }
  9151. }
  9152. break;
  9153. case "mind":
  9154. aTool = 3;
  9155. _iframe = $$("iframe", {
  9156. "frameborder": "no",
  9157. "border": "0",
  9158. "scrolling ": "no",
  9159. "style": {
  9160. "cssText": "border:0;width:100%;height:100%"
  9161. },
  9162. "src": "/kityminder-editor/dist/index.html"
  9163. });
  9164. _box.appendChild(_iframe);
  9165. _box.appendChild(_jie);
  9166. _formdiv = new U.UF.UI.form(
  9167. "思维导图",
  9168. _box, { //"/jsmind/example/demo.html"
  9169. "id": "minds_Yu" + cid + stage + task + tool,
  9170. "style": {
  9171. "width": "90%",
  9172. "height": "90%",
  9173. "overflow": 'hidden'
  9174. },
  9175. "onresize": function () { }
  9176. }, {
  9177. closecallback: function () { }
  9178. }, {
  9179. "style": {
  9180. "height": "36px"
  9181. }
  9182. }).form; //创建窗体
  9183. _taskbar = {
  9184. "id": str + _formdiv.id,
  9185. "style": {
  9186. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9187. },
  9188. "name": "思维导图",
  9189. "forms": _formdiv,
  9190. "click": function () {
  9191. U.MD.D.I.openApplication(str, obj, info);
  9192. }
  9193. }
  9194. break;
  9195. case "doc":
  9196. aTool = 6;
  9197. _iframe = $$("iframe", {
  9198. "frameborder": "no",
  9199. "border": "0",
  9200. "scrolling ": "no",
  9201. "style": {
  9202. "cssText": "border:0;width:100%;height:100%"
  9203. },
  9204. "src": "/Office/Word/WordEditArea.htm"
  9205. })
  9206. _box.appendChild(_iframe);
  9207. _box.appendChild(_jie);
  9208. _formdiv = new U.UF.UI.form(
  9209. "协同文档",
  9210. _box, {
  9211. "id": "docs_Yu" + cid + stage + task + tool,
  9212. "style": {
  9213. "width": "90%",
  9214. "height": "90%",
  9215. "overflow": 'hidden'
  9216. },
  9217. "onresize": function () { }
  9218. }, {
  9219. closecallback: function () { }
  9220. }, {
  9221. "style": {
  9222. "height": "36px"
  9223. }
  9224. }).form; //创建窗体
  9225. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9226. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9227. })
  9228. _taskbar = {
  9229. "id": str + _formdiv.id,
  9230. "style": {
  9231. "backgroundImage": "url(/img/icon/doc.png)"
  9232. },
  9233. "name": "协同文档",
  9234. "forms": _formdiv,
  9235. "click": function () {
  9236. U.MD.D.I.openApplication(str, obj, info);
  9237. }
  9238. }
  9239. break;
  9240. case "CocoPi":
  9241. aTool = 57;
  9242. _iframe = $$("iframe", {
  9243. "allowpaymentrequest": "allowpaymentrequest",
  9244. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9245. "webkitallowfullscreen": "",
  9246. "mozallowfullscreen": "",
  9247. "frameborder": "no",
  9248. "border": "0",
  9249. "scrolling ": "no",
  9250. "style": {
  9251. "cssText": "border:0;width:100%;height:100%"
  9252. },
  9253. "src": "https://pi.cocorobo.cn/"
  9254. })
  9255. _box.appendChild(_iframe);
  9256. _box.appendChild(_jie);
  9257. _formdiv = new U.UF.UI.form(
  9258. "CocoPi",
  9259. _box, {
  9260. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9261. "style": {
  9262. "width": "90%",
  9263. "height": "90%",
  9264. "overflow": 'hidden'
  9265. },
  9266. "onresize": function () { }
  9267. }, {
  9268. closecallback: function () { }
  9269. }, {
  9270. "style": {
  9271. "height": "36px"
  9272. }
  9273. }).form; //创建窗体
  9274. _taskbar = {
  9275. "id": str + _formdiv.id,
  9276. "style": {
  9277. "backgroundImage": "url(/img/icon/cocopi.png)"
  9278. },
  9279. "name": "CocoPi",
  9280. "forms": _formdiv,
  9281. "click": function () {
  9282. U.MD.D.I.openApplication(str, obj, info);
  9283. }
  9284. }
  9285. break;
  9286. }
  9287. if (_iframe) {
  9288. if (str == 'doc') {
  9289. _iframe = _formdiv.querySelector('iframe')
  9290. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9291. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9292. })
  9293. if (onloadListener) {
  9294. _iframe.contentDocument.location.reload()
  9295. } else {
  9296. _iframe.contentDocument.location.reload()
  9297. }
  9298. } else if (str == 'mind') {
  9299. _iframe = _formdiv.querySelector('iframe')
  9300. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9301. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9302. })
  9303. if (onloadListener) {
  9304. _iframe.contentDocument.location.reload()
  9305. } else {
  9306. _iframe.contentDocument.location.reload()
  9307. }
  9308. } else if (str == 'whiteboard') {
  9309. _iframe = _formdiv.querySelector('iframe')
  9310. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9311. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9312. })
  9313. // if (onloadListener) {
  9314. // try {
  9315. // _iframe.src += "?cocorobo="+new Date().getTime()
  9316. // _iframe.contentWindow.document.location.reload()
  9317. // } catch (error) {
  9318. // }
  9319. // } else {
  9320. // _iframe.contentDocument.location.reload()
  9321. // }
  9322. } else if (str == 'CocoPi') {
  9323. _iframe = _formdiv.querySelector('iframe')
  9324. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9325. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9326. })
  9327. if (onloadListener) {
  9328. _iframe.contentDocument.location.reload()
  9329. } else {
  9330. _iframe.contentDocument.location.reload()
  9331. }
  9332. } else {
  9333. _iframe.onload = () => { };
  9334. }
  9335. _jie.onclick = async () => {
  9336. let text = ''
  9337. let type = '2'
  9338. if (aTool == 1) {
  9339. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9340. type = '3'
  9341. } else if (aTool == 6) {
  9342. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9343. type = '1'
  9344. } else if (aTool == 3) {
  9345. text = await U.MD.D.I.getEditorContent(_iframe);
  9346. type = '2'
  9347. } else if (aTool == 57) {
  9348. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9349. type = '4'
  9350. }
  9351. _loading.style.display = 'flex'
  9352. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9353. }
  9354. }
  9355. //U.MD.D.I.openClick(str);
  9356. //如果有任务栏信息
  9357. // if (_taskbar) {
  9358. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9359. // }
  9360. }
  9361. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9362. var xmlhttp;
  9363. var Mac, Sn, DeviceId
  9364. if (window.XMLHttpRequest) {
  9365. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9366. xmlhttp = new XMLHttpRequest();
  9367. } else {
  9368. // IE6, IE5 浏览器执行代码
  9369. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9370. }
  9371. xmlhttp.onreadystatechange = function () {
  9372. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9373. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9374. // resolve(res.value[0][0].text);
  9375. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9376. }
  9377. }
  9378. }
  9379. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9380. xmlhttp.send();
  9381. }
  9382. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9383. var xmlhttp;
  9384. var Mac, Sn, DeviceId
  9385. if (window.XMLHttpRequest) {
  9386. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9387. xmlhttp = new XMLHttpRequest();
  9388. } else {
  9389. // IE6, IE5 浏览器执行代码
  9390. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9391. }
  9392. xmlhttp.onreadystatechange = function () {
  9393. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9394. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9395. // resolve(res.value[0][0].text);
  9396. if (type == '2') {
  9397. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9398. } else if (type == '3') {
  9399. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9400. } else if (type == '4') {
  9401. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9402. }
  9403. } else {
  9404. if (type == '2') {
  9405. iframe.contentWindow.editor.minder.importData('json', '')
  9406. } else if (type == '3') {
  9407. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9408. } else if (type == '4') {
  9409. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9410. }
  9411. }
  9412. }
  9413. }
  9414. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9415. xmlhttp.send();
  9416. }
  9417. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9418. var xmlhttp;
  9419. var Mac, Sn, DeviceId
  9420. if (window.XMLHttpRequest) {
  9421. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9422. xmlhttp = new XMLHttpRequest();
  9423. } else {
  9424. // IE6, IE5 浏览器执行代码
  9425. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9426. }
  9427. xmlhttp.onreadystatechange = function () {
  9428. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9429. if (xmlhttp.response) {
  9430. // resolve(res.value[0][0].text);
  9431. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9432. // $(fileInput).val('');
  9433. // });
  9434. span.innerHTML = '上传成功'
  9435. setTimeout(() => {
  9436. loading.style.display = 'none'
  9437. }, 1000);
  9438. }
  9439. }
  9440. }
  9441. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9442. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9443. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9444. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9445. // 设置请求头,表示请求体的编码格式
  9446. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9447. // 设置请求体,使用url-encoded格式的数据
  9448. }
  9449. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9450. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9451. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9452. _userinfo = US.userInfo, //登录用户信息
  9453. _userid = US.userInfo.userid //登录用户id
  9454. let _iframe;
  9455. let _cid = cid,
  9456. _stage = stage,
  9457. _task = task,
  9458. _tool = tool;
  9459. var _jie = $$("div", {
  9460. "style": {
  9461. "position": "absolute",
  9462. "bottom": "50px",
  9463. "right": "50px",
  9464. "zIndex": "9999",
  9465. "backgroundColor": "#2268bc",
  9466. "color": "#fff",
  9467. "padding": "12px 20px",
  9468. "cursor": "pointer",
  9469. "borderRadius": "4px",
  9470. },
  9471. "innerHTML": "提交作业"
  9472. })
  9473. let aTool = ''
  9474. let _loading = document.createElement('div')
  9475. _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;"
  9476. // _loading.id = "";
  9477. let _lchild = document.createElement('div')
  9478. let _limg = document.createElement('img')
  9479. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9480. _limg.style = "width: 26px;margin-right: 10px;"
  9481. _lchild.appendChild(_limg)
  9482. let _lspan = document.createElement('span')
  9483. _lspan.innerHTML = "上传中..."
  9484. _lchild.appendChild(_lspan)
  9485. _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%);"
  9486. _loading.appendChild(_lchild)
  9487. var _box = $$('div', {
  9488. "style": {
  9489. "position": "relative",
  9490. "width": "100%",
  9491. "height": "100%",
  9492. },
  9493. })
  9494. _box.appendChild(_loading)
  9495. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9496. switch (str) {
  9497. case "CocoPi":
  9498. aTool = 57;
  9499. _iframe = $$("iframe", {
  9500. "allowpaymentrequest": "allowpaymentrequest",
  9501. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9502. "webkitallowfullscreen": "",
  9503. "mozallowfullscreen": "",
  9504. "frameborder": "no",
  9505. "border": "0",
  9506. "scrolling ": "no",
  9507. "style": {
  9508. "cssText": "border:0;width:100%;height:100%"
  9509. },
  9510. "src": "https://pi.cocorobo.cn/"
  9511. })
  9512. _box.appendChild(_iframe);
  9513. _box.appendChild(_jie);
  9514. _formdiv = new U.UF.UI.form(
  9515. "CocoPi",
  9516. _box, {
  9517. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9518. "style": {
  9519. "width": "90%",
  9520. "height": "90%",
  9521. "overflow": 'hidden'
  9522. },
  9523. "onresize": function () { }
  9524. }, {
  9525. closecallback: function () { }
  9526. }, {
  9527. "style": {
  9528. "height": "36px"
  9529. }
  9530. }).form; //创建窗体
  9531. _taskbar = {
  9532. "id": str + _formdiv.id,
  9533. "style": {
  9534. "backgroundImage": "url(/img/icon/cocopi.png)"
  9535. },
  9536. "name": "CocoPi",
  9537. "forms": _formdiv,
  9538. "click": function () {
  9539. U.MD.D.I.openApplication(str, obj, info);
  9540. }
  9541. }
  9542. break;
  9543. }
  9544. if (_iframe) {
  9545. if (str == 'CocoPi') {
  9546. _iframe = _formdiv.querySelector('iframe')
  9547. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9548. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9549. })
  9550. if (onloadListener) {
  9551. _iframe.contentDocument.location.reload()
  9552. } else {
  9553. _iframe.contentDocument.location.reload()
  9554. }
  9555. }
  9556. _jie.onclick = async () => {
  9557. let text = ''
  9558. if (aTool == 57) {
  9559. text = _iframe.contentWindow.getLoadXmlStr()
  9560. }
  9561. _loading.style.display = 'flex'
  9562. console.log(_loading);
  9563. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9564. _loading.style.display = 'none'
  9565. let _div = document.createElement('div')
  9566. _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;"
  9567. let _inner = document.createElement('div')
  9568. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9569. _inner.innerHTML = "上传成功"
  9570. _div.appendChild(_inner)
  9571. _iframe.contentWindow.window.document.body.appendChild(_div)
  9572. _div.onclick = () => {
  9573. _iframe.contentWindow.window.document.body.removeChild(_div)
  9574. }
  9575. setTimeout(() => {
  9576. _iframe.contentWindow.window.document.body.removeChild(_div)
  9577. }, 1000);
  9578. }, [], { "type": "POST", "withCredentials": true });
  9579. }
  9580. }
  9581. }
  9582. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9583. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9584. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9585. _userid = student.userid, //登录用户id
  9586. _username = student.student //用户名字
  9587. let _iframe;
  9588. let _cid = cid,
  9589. _stage = stage,
  9590. _task = task,
  9591. _tool = tool;
  9592. var _jie = $$("div", {
  9593. "style": {
  9594. "position": "absolute",
  9595. "bottom": "50px",
  9596. "right": "50px",
  9597. "zIndex": "9999",
  9598. "backgroundColor": "#2268bc",
  9599. "color": "#fff",
  9600. "padding": "12px 20px",
  9601. "cursor": "pointer",
  9602. "borderRadius": "4px",
  9603. },
  9604. "innerHTML": "提交作业"
  9605. })
  9606. let aTool = ''
  9607. let _loading = document.createElement('div')
  9608. _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;"
  9609. // _loading.id = "";
  9610. let _lchild = document.createElement('div')
  9611. let _limg = document.createElement('img')
  9612. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9613. _limg.style = "width: 26px;margin-right: 10px;"
  9614. _lchild.appendChild(_limg)
  9615. let _lspan = document.createElement('span')
  9616. _lspan.innerHTML = "上传中..."
  9617. _lchild.appendChild(_lspan)
  9618. _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%);"
  9619. _loading.appendChild(_lchild)
  9620. var _box = $$('div', {
  9621. "style": {
  9622. "position": "relative",
  9623. "width": "100%",
  9624. "height": "100%",
  9625. },
  9626. })
  9627. _box.appendChild(_loading)
  9628. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9629. switch (str) {
  9630. case "CocoPi":
  9631. aTool = 57;
  9632. _iframe = $$("iframe", {
  9633. "allowpaymentrequest": "allowpaymentrequest",
  9634. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9635. "webkitallowfullscreen": "",
  9636. "mozallowfullscreen": "",
  9637. "frameborder": "no",
  9638. "border": "0",
  9639. "scrolling ": "no",
  9640. "style": {
  9641. "cssText": "border:0;width:100%;height:100%"
  9642. },
  9643. "src": "https://pi.cocorobo.cn/"
  9644. })
  9645. _box.appendChild(_iframe);
  9646. _box.appendChild(_jie);
  9647. _formdiv = new U.UF.UI.form(
  9648. "CocoPi-" + _username,
  9649. _box, {
  9650. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9651. "style": {
  9652. "width": "90%",
  9653. "height": "90%",
  9654. "overflow": 'hidden'
  9655. },
  9656. "onresize": function () { }
  9657. }, {
  9658. closecallback: function () { }
  9659. }, {
  9660. "style": {
  9661. "height": "36px"
  9662. }
  9663. }).form; //创建窗体
  9664. _taskbar = {
  9665. "id": str + _formdiv.id,
  9666. "style": {
  9667. "backgroundImage": "url(/img/icon/cocopi.png)"
  9668. },
  9669. "name": "CocoPi",
  9670. "forms": _formdiv,
  9671. "click": function () {
  9672. U.MD.D.I.openApplication(str, obj, info);
  9673. }
  9674. }
  9675. break;
  9676. }
  9677. if (_iframe) {
  9678. if (str == 'CocoPi') {
  9679. _iframe = _formdiv.querySelector('iframe')
  9680. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9681. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9682. })
  9683. if (onloadListener) {
  9684. _iframe.contentDocument.location.reload()
  9685. } else {
  9686. _iframe.contentDocument.location.reload()
  9687. }
  9688. }
  9689. _jie.onclick = async () => {
  9690. let text = ''
  9691. if (aTool == 57) {
  9692. text = _iframe.contentWindow.getLoadXmlStr()
  9693. }
  9694. _loading.style.display = 'flex'
  9695. console.log(_loading);
  9696. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9697. _loading.style.display = 'none'
  9698. let _div = document.createElement('div')
  9699. _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;"
  9700. let _inner = document.createElement('div')
  9701. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9702. _inner.innerHTML = "上传成功"
  9703. _div.appendChild(_inner)
  9704. _iframe.contentWindow.window.document.body.appendChild(_div)
  9705. _div.onclick = () => {
  9706. _iframe.contentWindow.window.document.body.removeChild(_div)
  9707. }
  9708. setTimeout(() => {
  9709. _iframe.contentWindow.window.document.body.removeChild(_div)
  9710. }, 1000);
  9711. }, [], { "type": "POST", "withCredentials": true });
  9712. }
  9713. }
  9714. }
  9715. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9716. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9717. if (res.value[0].length > 0) {
  9718. if (atool == 57) {
  9719. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9720. }
  9721. } else {
  9722. if (atool == 57) {
  9723. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9724. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9725. }
  9726. }
  9727. }, [], { "type": "POST", "withCredentials": true });
  9728. }