DeskTop.js 645 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  928. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  929. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  930. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  931. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  932. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  933. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  935. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  936. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  937. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  938. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  939. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  940. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  941. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  942. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  943. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  944. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  945. ];
  946. //未来教育基地
  947. U.MD.D.I.szjkyAdminDeskIcon = [
  948. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  949. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  950. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  951. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  952. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  953. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  954. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  955. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  956. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  957. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  958. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  959. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  960. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  961. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  962. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  964. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  965. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  966. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  967. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  968. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  969. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  970. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  971. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  972. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  973. ];
  974. //未来教育基地
  975. U.MD.D.I.szjkyStudentDeskIcon = [
  976. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  977. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  979. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  980. ];
  981. //成华教育局
  982. U.MD.D.I.chjyjTeacherDeskIcon = [
  983. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  990. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  991. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  992. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  993. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  994. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  996. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  997. ];
  998. //成华教育局chjyj
  999. U.MD.D.I.chjyjAdminDeskIcon = [
  1000. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1001. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1002. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1003. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1004. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1005. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. ];
  1016. //成华教育局chjyj
  1017. U.MD.D.I.chjyjStudentDeskIcon = [
  1018. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1019. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1020. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. ];
  1023. //tpc
  1024. U.MD.D.I.tpcStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcTeacherDeskIcon = [
  1032. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1033. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //tpc
  1041. U.MD.D.I.tpcAdminDeskIcon = [
  1042. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1043. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //THU-IOE
  1051. U.MD.D.I.thuioeTeacherDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1055. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1056. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1057. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1058. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1059. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1062. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1063. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1064. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1065. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1066. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1067. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1068. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1069. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1070. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1071. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1072. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1073. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1074. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1075. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1076. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1077. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1078. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1079. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1080. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1081. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1082. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1083. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1084. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1087. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //THU-IOE
  1093. U.MD.D.I.thuioeStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //jccssyl
  1100. U.MD.D.I.jccssylTeacherDeskIcon = [
  1101. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1102. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1104. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1105. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1106. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1107. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1108. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1109. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1110. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1111. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1112. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1114. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1117. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1118. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1119. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1120. ];
  1121. //jccssyl
  1122. U.MD.D.I.jccssylStudentDeskIcon = [
  1123. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1124. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1125. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. ];
  1128. //cale
  1129. U.MD.D.I.caleTeacherDeskIcon = [
  1130. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1131. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1133. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1134. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1135. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1136. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1137. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1138. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1139. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1140. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1141. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1142. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1143. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1144. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1146. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1147. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1148. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1149. ];
  1150. //cale
  1151. U.MD.D.I.caleStudentDeskIcon = [
  1152. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1153. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1154. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1155. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1156. ];
  1157. //lqwmsgzs
  1158. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1159. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1160. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1162. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1163. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1164. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1169. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1170. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1171. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1172. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1173. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1174. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1175. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1176. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1177. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1178. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1179. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1180. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1181. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1182. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1183. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1184. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1185. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1186. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1187. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1188. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1189. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1190. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1191. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1192. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1199. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1200. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1201. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //盐田区幼儿园
  1205. U.MD.D.I.ytyTeacherDeskIcon = [
  1206. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1209. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1210. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1211. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1212. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1215. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1216. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1217. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1219. ];
  1220. //盐田区幼儿园
  1221. U.MD.D.I.ytyStudentDeskIcon = [
  1222. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1223. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. ];
  1226. //scnuai
  1227. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1228. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1229. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1233. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1234. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1235. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1236. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1237. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1239. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1240. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1241. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1243. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1244. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1245. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1246. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1247. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1248. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1249. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1250. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1251. ];
  1252. //scnuai
  1253. U.MD.D.I.scnuaiAdminDeskIcon = [
  1254. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1255. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1256. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1257. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1258. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1259. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1260. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1261. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1262. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1263. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1264. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1265. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1266. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1269. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1270. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1272. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1273. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1274. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1275. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1276. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1277. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiStudentDeskIcon = [
  1280. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1284. ];
  1285. //cocobiz
  1286. U.MD.D.I.cocobizteacherDeskIcon = [
  1287. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1288. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1290. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1291. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1292. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1293. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1294. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1295. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1296. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1297. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1298. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1299. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1300. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1301. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1302. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1303. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1304. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1305. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1306. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1307. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizStudentDeskIcon = [
  1311. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1312. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1313. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1314. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1315. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1316. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1317. ];
  1318. //xxzjky
  1319. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1320. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1321. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1322. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1323. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1324. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1325. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1326. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1327. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1328. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1329. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1330. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1331. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1332. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1333. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1334. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1335. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1337. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1338. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1339. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1340. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1344. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1345. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1346. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1347. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1348. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1349. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1350. ];
  1351. //nsfx
  1352. U.MD.D.I.nsfxTeacherDeskIcon = [
  1353. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1354. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1355. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1356. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1357. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1358. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1359. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1360. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1361. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1362. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1363. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1364. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1365. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1366. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1367. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1368. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1369. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1370. ];
  1371. //nsfx
  1372. U.MD.D.I.nsfxStudentDeskIcon = [
  1373. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1374. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1375. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1376. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //stia
  1379. U.MD.D.I.stiaTeacherDeskIcon = [
  1380. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1389. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1390. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1393. ];
  1394. //stia
  1395. U.MD.D.I.stiaStudentDeskIcon = [
  1396. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. ];
  1401. //szdjg
  1402. U.MD.D.I.szdjgTeacherDeskIcon = [
  1403. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1404. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1405. ];
  1406. //szdjg
  1407. U.MD.D.I.szdjgStudentDeskIcon = [
  1408. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1409. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1410. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1411. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. ];
  1413. //010607
  1414. U.MD.D.I.x010607TeacherDeskIcon = [
  1415. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1416. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1417. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1418. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1419. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1420. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1421. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1422. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1423. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1424. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1425. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1426. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1427. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1428. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1429. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1430. ];
  1431. //010607
  1432. U.MD.D.I.x010607StudentDeskIcon = [
  1433. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1436. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1437. ];
  1438. //010608
  1439. U.MD.D.I.x010608TeacherDeskIcon = [
  1440. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1441. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1442. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1443. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1444. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1445. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1446. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1447. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1450. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1451. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1452. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1453. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1454. ];
  1455. //010608
  1456. U.MD.D.I.x010608StudentDeskIcon = [
  1457. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1459. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1461. ];
  1462. //xhly
  1463. U.MD.D.I.xhlyTeacherDeskIcon = [
  1464. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.xhlyStudentDeskIcon = [
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. ];
  1470. //北师大
  1471. U.MD.D.I.BSDNSteacherDeskIcon = [
  1472. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1475. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1476. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSstudentDeskIcon = [
  1486. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1487. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1488. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. ];
  1491. //CUHK_EDU
  1492. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1500. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1501. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1502. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1503. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1504. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1505. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1506. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1507. ];
  1508. //CUHK_EDU
  1509. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1510. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1511. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1512. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1514. ];
  1515. //010503
  1516. U.MD.D.I.x010503TeacherDeskIcon = [
  1517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. ];
  1520. //010503
  1521. U.MD.D.I.x010503StudentDeskIcon = [
  1522. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1523. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1524. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1525. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1526. ];
  1527. //SPROUT Lab
  1528. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1529. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1531. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1532. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1535. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1536. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1537. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1538. ];
  1539. //SPROUT Lab
  1540. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1543. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1544. ];
  1545. //010204
  1546. U.MD.D.I.x010204TeacherDeskIcon = [
  1547. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1548. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. ];
  1550. //010204
  1551. U.MD.D.I.x010204StudentDeskIcon = [
  1552. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1556. ];
  1557. //trail
  1558. U.MD.D.I.trailTeacherDeskIcon = [
  1559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1561. ];
  1562. //trail
  1563. U.MD.D.I.trailStudentDeskIcon = [
  1564. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1565. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1566. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1568. ];
  1569. //010504
  1570. U.MD.D.I.x010504TeacherDeskIcon = [
  1571. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1572. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1574. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1575. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1576. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1577. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1578. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1579. ];
  1580. //010504
  1581. U.MD.D.I.x010504StudentDeskIcon = [
  1582. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //SCNUET
  1588. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1589. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1590. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1594. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1595. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1596. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1597. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1598. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1599. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1600. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1601. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1602. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1603. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1605. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1606. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1607. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1608. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1609. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1610. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1611. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1612. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1613. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1614. ];
  1615. //SCNUET
  1616. U.MD.D.I.SCNUETAdminDeskIcon = [
  1617. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1618. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1619. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1620. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1621. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1622. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1623. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1624. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1625. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1626. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1627. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1628. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1629. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1630. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1631. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1632. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1633. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1634. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1635. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1636. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1637. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1638. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1639. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1640. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1641. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1642. ];
  1643. //SCNUET
  1644. U.MD.D.I.SCNUETStudentDeskIcon = [
  1645. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1649. ];
  1650. //x020201
  1651. U.MD.D.I.x020201TeacherDeskIcon = [
  1652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1656. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1657. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1658. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1659. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1660. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1661. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1662. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1663. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1664. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1665. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1666. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1667. ];
  1668. //x020201
  1669. U.MD.D.I.x020201AdminDeskIcon = [
  1670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1674. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1675. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1676. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1677. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1678. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1679. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1680. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1681. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1682. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1683. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1684. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1685. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1686. ];
  1687. //020201
  1688. U.MD.D.I.x020201StudentDeskIcon = [
  1689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1692. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. ];
  1694. //#region 桌面初始化a
  1695. /**
  1696. * 初始化桌面的起始函数
  1697. *
  1698. */
  1699. U.MD.D.I.init = function () {
  1700. if ($("#U_MD_D_K")[0]) {
  1701. //初始化桌面图标
  1702. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1703. // var clickUrl = ':12588/requestIp.php';
  1704. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1705. // U.MD.D.I.Ip = data;
  1706. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1707. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1708. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1709. // })
  1710. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1711. // })
  1712. }
  1713. }
  1714. /**
  1715. * 模式切换
  1716. *
  1717. */
  1718. U.MD.D.I.ModeCheck = function (type) {
  1719. if (US.Config.type == type) {
  1720. return
  1721. }
  1722. US.Config.type = type
  1723. $('.U_PBL_Check .active')[0].className = ''
  1724. if (type == 1) {
  1725. $('.U_PBL_Check div')[0].className = 'active'
  1726. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1727. } else {
  1728. $('.U_PBL_Check div')[1].className = 'active'
  1729. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1730. }
  1731. //初始化桌面图标
  1732. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1733. if (type == 2) {
  1734. U.MD.D.I.openApplication("project")
  1735. }
  1736. }
  1737. /**
  1738. * 隐藏任务栏
  1739. *
  1740. * @param {element} 桌面元素
  1741. */
  1742. U.MD.D.I.hiddenTaskbar = function (el) {
  1743. //任务栏位置变小
  1744. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1745. //桌面的位置变大
  1746. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1747. }
  1748. /**
  1749. * 隐藏任务栏
  1750. *
  1751. * @param {element} 桌面元素
  1752. */
  1753. U.MD.D.I.hiddenTaskbarout = function (el) {
  1754. //任务栏位置变小
  1755. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1756. //任务栏位置变化
  1757. U.selectEl(el).css({ "bottom": "-60px" });
  1758. //桌面的位置变大
  1759. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1760. }
  1761. }
  1762. /**
  1763. * 初始化打印桌面图标
  1764. *
  1765. * @param {element} 桌面元素
  1766. */
  1767. U.MD.D.I.initDesktopIcons = function (el, type) {
  1768. var i, //用于循环
  1769. _content, //桌面图标元素
  1770. _iconcontent, //桌面图标元素
  1771. _frag = $$("frag"), //定义一个碎片元素
  1772. _type = US.userInfo.type,
  1773. _org = US.userInfo.org,
  1774. _oid = US.userInfo.organizeid,
  1775. _role = US.userInfo.role,
  1776. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1777. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1778. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1779. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1780. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1781. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1782. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1783. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1784. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1785. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1786. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1787. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1788. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1789. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1790. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1791. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1792. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1793. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1794. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1795. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1796. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1797. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1798. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1799. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1800. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1801. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1802. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1803. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1804. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1805. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1806. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1807. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1808. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1809. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1810. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1811. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1812. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1813. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1814. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1815. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1816. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1817. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1818. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1819. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1820. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1821. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1822. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1823. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1824. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1825. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1826. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1827. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1828. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1829. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1830. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1831. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1832. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1833. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1834. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1835. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1836. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1837. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1838. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1839. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1840. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1841. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1842. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1843. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1844. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1845. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1846. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1847. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1848. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1849. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1850. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1851. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1852. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1853. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1854. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1855. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1856. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1857. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1858. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1859. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1860. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1861. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1862. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1863. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1864. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1865. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1866. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1867. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1868. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1869. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1870. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1871. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1872. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1873. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1874. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1875. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1876. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1877. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1878. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1879. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1880. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1881. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1882. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1883. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5'];
  1884. 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'];
  1885. //清楚桌面图标
  1886. el.innerHTML = "";
  1887. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1888. _teacherDesktopIconInfo.push(
  1889. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1890. { "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)" } },
  1891. )
  1892. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1893. }
  1894. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1895. _teacherDesktopIconInfo.push(
  1896. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1897. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1898. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1899. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1900. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1901. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1902. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1903. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1904. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1905. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1906. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1907. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1908. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1909. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1910. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1911. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1912. )
  1913. }
  1914. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1915. _teacherDesktopIconInfo.push(
  1916. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1917. )
  1918. }
  1919. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1920. // _teacherDesktopIconInfo.push(
  1921. // )
  1922. // }
  1923. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1924. _teacherDesktopIconInfo.push(
  1925. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1926. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1927. )
  1928. }
  1929. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1930. _teacherDesktopIconInfo.push(
  1931. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1932. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1933. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1934. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1935. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1936. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1937. )
  1938. _studentDesktopIconInfo.push(
  1939. )
  1940. }
  1941. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1942. _teacherDesktopIconInfo.push(
  1943. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1944. )
  1945. _studentDesktopIconInfo.push(
  1946. )
  1947. }
  1948. //010606 组织
  1949. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  1950. _teacherDesktopIconInfo.push(
  1951. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1952. )
  1953. _studentDesktopIconInfo.push(
  1954. )
  1955. }
  1956. //麒麟二中 和 民新小学
  1957. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1958. _teacherDesktopIconInfo.push(
  1959. )
  1960. }
  1961. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1962. _teacherDesktopIconInfo.push(
  1963. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1964. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1965. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1966. )
  1967. }
  1968. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  1969. _hkTeacherDeskIconInfo.push(
  1970. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1971. )
  1972. }
  1973. //北师大附中(010601)
  1974. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1975. // _teacherDesktopIconInfo.push(
  1976. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1977. // )
  1978. // _studentDesktopIconInfo.push(
  1979. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1980. // )
  1981. // }
  1982. //樂善堂余近卿中學
  1983. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1984. _teacherDesktopIconInfo.push(
  1985. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1986. )
  1987. }
  1988. // Education Artificial Intelligence
  1989. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1990. _teacherDesktopIconInfo.push(
  1991. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1992. )
  1993. }
  1994. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1995. _teacherDesktopIconInfo.push(
  1996. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1997. )
  1998. }
  1999. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2000. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2001. _teacherDesktopIconInfo.push(
  2002. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2003. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2004. )
  2005. }
  2006. //麒麟二中
  2007. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2008. _studentDesktopIconInfo.push(
  2009. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2010. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2011. )
  2012. }
  2013. //万科双语
  2014. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2015. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2016. if (el.Name == '项目管理') {
  2017. el.Name = 'PBL项目'
  2018. }
  2019. return el
  2020. })
  2021. _studentDesktopIconInfo3.push(
  2022. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2023. )
  2024. }
  2025. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2026. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2027. return el.Name != '魔盒识字' && el.Name != '24点'
  2028. })
  2029. }
  2030. 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) {
  2031. _studentDesktopIconInfo.push(
  2032. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2033. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2034. )
  2035. }
  2036. //循环创建桌面图标
  2037. if (type == 1) {
  2038. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2039. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2040. _content = $$("div", {
  2041. className: "U_MD_D_KO",
  2042. "onmousedown": U.UF.C.closure(function (obj) {
  2043. //防止拖动图标即打开了桌面应用
  2044. U.MD.D.click(this, obj);
  2045. }, [_studentDesktopIconInfo[i]]),
  2046. "onclick": U.UF.C.closure(function (obj) {
  2047. //防止拖动图标即打开了桌面应用
  2048. U.MD.D.click(this, obj);
  2049. }, [_studentDesktopIconInfo[i]])
  2050. }, _frag); //
  2051. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2052. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2053. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2054. }
  2055. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2056. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2057. _content = $$("div", {
  2058. className: "U_MD_D_KO",
  2059. "onmousedown": U.UF.C.closure(function (obj) {
  2060. //防止拖动图标即打开了桌面应用
  2061. U.MD.D.click(this, obj);
  2062. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2063. "onclick": U.UF.C.closure(function (obj) {
  2064. //防止拖动图标即打开了桌面应用
  2065. U.MD.D.click(this, obj);
  2066. }, [_hkZJLSStudentDeskIconInfo[i]])
  2067. }, _frag); //
  2068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2071. } //
  2072. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2073. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2074. _content = $$("div", {
  2075. className: "U_MD_D_KO",
  2076. "onmousedown": U.UF.C.closure(function (obj) {
  2077. //防止拖动图标即打开了桌面应用
  2078. U.MD.D.click(this, obj);
  2079. }, [_ytyStudentDeskIconInfo[i]]),
  2080. "onclick": U.UF.C.closure(function (obj) {
  2081. //防止拖动图标即打开了桌面应用
  2082. U.MD.D.click(this, obj);
  2083. }, [_ytyStudentDeskIconInfo[i]])
  2084. }, _frag); //
  2085. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2086. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2087. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2088. } //
  2089. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2090. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2091. _content = $$("div", {
  2092. className: "U_MD_D_KO",
  2093. "onmousedown": U.UF.C.closure(function (obj) {
  2094. //防止拖动图标即打开了桌面应用
  2095. U.MD.D.click(this, obj);
  2096. }, [_jccssylStudentDeskIconInfo[i]]),
  2097. "onclick": U.UF.C.closure(function (obj) {
  2098. //防止拖动图标即打开了桌面应用
  2099. U.MD.D.click(this, obj);
  2100. }, [_jccssylStudentDeskIconInfo[i]])
  2101. }, _frag); //
  2102. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2103. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2104. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2105. }
  2106. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2107. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2108. _content = $$("div", {
  2109. className: "U_MD_D_KO",
  2110. "onmousedown": U.UF.C.closure(function (obj) {
  2111. //防止拖动图标即打开了桌面应用
  2112. U.MD.D.click(this, obj);
  2113. }, [_scnuaiStudentDeskIconInfo[i]]),
  2114. "onclick": U.UF.C.closure(function (obj) {
  2115. //防止拖动图标即打开了桌面应用
  2116. U.MD.D.click(this, obj);
  2117. }, [_scnuaiStudentDeskIconInfo[i]])
  2118. }, _frag); //
  2119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2122. }
  2123. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2124. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2125. _content = $$("div", {
  2126. className: "U_MD_D_KO",
  2127. "onmousedown": U.UF.C.closure(function (obj) {
  2128. //防止拖动图标即打开了桌面应用
  2129. U.MD.D.click(this, obj);
  2130. }, [_caleStudentDeskIconInfo[i]]),
  2131. "onclick": U.UF.C.closure(function (obj) {
  2132. //防止拖动图标即打开了桌面应用
  2133. U.MD.D.click(this, obj);
  2134. }, [_caleStudentDeskIconInfo[i]])
  2135. }, _frag); //
  2136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2139. }
  2140. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2141. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2142. _content = $$("div", {
  2143. className: "U_MD_D_KO",
  2144. "onmousedown": U.UF.C.closure(function (obj) {
  2145. //防止拖动图标即打开了桌面应用
  2146. U.MD.D.click(this, obj);
  2147. }, [_thuioeStudentDeskIconInfo[i]]),
  2148. "onclick": U.UF.C.closure(function (obj) {
  2149. //防止拖动图标即打开了桌面应用
  2150. U.MD.D.click(this, obj);
  2151. }, [_thuioeStudentDeskIconInfo[i]])
  2152. }, _frag); //
  2153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2156. }
  2157. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2158. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2159. _content = $$("div", {
  2160. className: "U_MD_D_KO",
  2161. "onmousedown": U.UF.C.closure(function (obj) {
  2162. //防止拖动图标即打开了桌面应用
  2163. U.MD.D.click(this, obj);
  2164. }, [_tpcStudentDeskIconInfo[i]]),
  2165. "onclick": U.UF.C.closure(function (obj) {
  2166. //防止拖动图标即打开了桌面应用
  2167. U.MD.D.click(this, obj);
  2168. }, [_tpcStudentDeskIconInfo[i]])
  2169. }, _frag); //
  2170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2173. } //
  2174. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2175. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2176. _content = $$("div", {
  2177. className: "U_MD_D_KO",
  2178. "onmousedown": U.UF.C.closure(function (obj) {
  2179. //防止拖动图标即打开了桌面应用
  2180. U.MD.D.click(this, obj);
  2181. }, [_chjyjStudentDeskIconInfo[i]]),
  2182. "onclick": U.UF.C.closure(function (obj) {
  2183. //防止拖动图标即打开了桌面应用
  2184. U.MD.D.click(this, obj);
  2185. }, [_chjyjStudentDeskIconInfo[i]])
  2186. }, _frag); //
  2187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2190. }
  2191. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2192. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2193. _content = $$("div", {
  2194. className: "U_MD_D_KO",
  2195. "onmousedown": U.UF.C.closure(function (obj) {
  2196. //防止拖动图标即打开了桌面应用
  2197. U.MD.D.click(this, obj);
  2198. }, [_szjkyStudentDeskIconInfo[i]]),
  2199. "onclick": U.UF.C.closure(function (obj) {
  2200. //防止拖动图标即打开了桌面应用
  2201. U.MD.D.click(this, obj);
  2202. }, [_szjkyStudentDeskIconInfo[i]])
  2203. }, _frag); //
  2204. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2205. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2206. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2207. }
  2208. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2209. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2210. _content = $$("div", {
  2211. className: "U_MD_D_KO",
  2212. "onmousedown": U.UF.C.closure(function (obj) {
  2213. //防止拖动图标即打开了桌面应用
  2214. U.MD.D.click(this, obj);
  2215. }, [_x020201StudentDeskIconInfo[i]]),
  2216. "onclick": U.UF.C.closure(function (obj) {
  2217. //防止拖动图标即打开了桌面应用
  2218. U.MD.D.click(this, obj);
  2219. }, [_x020201StudentDeskIconInfo[i]])
  2220. }, _frag); //
  2221. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2222. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2223. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2224. }
  2225. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2226. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2227. _content = $$("div", {
  2228. className: "U_MD_D_KO",
  2229. "onmousedown": U.UF.C.closure(function (obj) {
  2230. //防止拖动图标即打开了桌面应用
  2231. U.MD.D.click(this, obj);
  2232. }, [_SCNUETStudentDeskIconInfo[i]]),
  2233. "onclick": U.UF.C.closure(function (obj) {
  2234. //防止拖动图标即打开了桌面应用
  2235. U.MD.D.click(this, obj);
  2236. }, [_SCNUETStudentDeskIconInfo[i]])
  2237. }, _frag); //
  2238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2241. }
  2242. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2243. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2244. _content = $$("div", {
  2245. className: "U_MD_D_KO",
  2246. "onmousedown": U.UF.C.closure(function (obj) {
  2247. //防止拖动图标即打开了桌面应用
  2248. U.MD.D.click(this, obj);
  2249. }, [_dseiStudentDeskIconInfo[i]]),
  2250. "onclick": U.UF.C.closure(function (obj) {
  2251. //防止拖动图标即打开了桌面应用
  2252. U.MD.D.click(this, obj);
  2253. }, [_dseiStudentDeskIconInfo[i]])
  2254. }, _frag); //
  2255. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2256. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2257. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2258. }
  2259. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2260. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2261. _content = $$("div", {
  2262. className: "U_MD_D_KO",
  2263. "onmousedown": U.UF.C.closure(function (obj) {
  2264. //防止拖动图标即打开了桌面应用
  2265. U.MD.D.click(this, obj);
  2266. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2267. "onclick": U.UF.C.closure(function (obj) {
  2268. //防止拖动图标即打开了桌面应用
  2269. U.MD.D.click(this, obj);
  2270. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2271. }, _frag); //
  2272. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2275. }
  2276. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2277. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2278. _content = $$("div", {
  2279. className: "U_MD_D_KO",
  2280. "onmousedown": U.UF.C.closure(function (obj) {
  2281. //防止拖动图标即打开了桌面应用
  2282. U.MD.D.click(this, obj);
  2283. }, [_nsfxStudentDeskIconInfo[i]]),
  2284. "onclick": U.UF.C.closure(function (obj) {
  2285. //防止拖动图标即打开了桌面应用
  2286. U.MD.D.click(this, obj);
  2287. }, [_nsfxStudentDeskIconInfo[i]])
  2288. }, _frag); //
  2289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2292. }
  2293. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2294. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2295. _content = $$("div", {
  2296. className: "U_MD_D_KO",
  2297. "onmousedown": U.UF.C.closure(function (obj) {
  2298. //防止拖动图标即打开了桌面应用
  2299. U.MD.D.click(this, obj);
  2300. }, [_stiaStudentDeskIconInfo[i]]),
  2301. "onclick": U.UF.C.closure(function (obj) {
  2302. //防止拖动图标即打开了桌面应用
  2303. U.MD.D.click(this, obj);
  2304. }, [_stiaStudentDeskIconInfo[i]])
  2305. }, _frag); //
  2306. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2307. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2308. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2309. }
  2310. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2311. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2312. _content = $$("div", {
  2313. className: "U_MD_D_KO",
  2314. "onmousedown": U.UF.C.closure(function (obj) {
  2315. //防止拖动图标即打开了桌面应用
  2316. U.MD.D.click(this, obj);
  2317. }, [_szdjgStudentDeskIconInfo[i]]),
  2318. "onclick": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_szdjgStudentDeskIconInfo[i]])
  2322. }, _frag); //
  2323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2326. }
  2327. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2328. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2329. _content = $$("div", {
  2330. className: "U_MD_D_KO",
  2331. "onmousedown": U.UF.C.closure(function (obj) {
  2332. //防止拖动图标即打开了桌面应用
  2333. U.MD.D.click(this, obj);
  2334. }, [_x010607StudentDeskIconInfo[i]]),
  2335. "onclick": U.UF.C.closure(function (obj) {
  2336. //防止拖动图标即打开了桌面应用
  2337. U.MD.D.click(this, obj);
  2338. }, [_x010607StudentDeskIconInfo[i]])
  2339. }, _frag); //
  2340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2343. }
  2344. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2345. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2346. _content = $$("div", {
  2347. className: "U_MD_D_KO",
  2348. "onmousedown": U.UF.C.closure(function (obj) {
  2349. //防止拖动图标即打开了桌面应用
  2350. U.MD.D.click(this, obj);
  2351. }, [_xhlyStudentDeskIconInfo[i]]),
  2352. "onclick": U.UF.C.closure(function (obj) {
  2353. //防止拖动图标即打开了桌面应用
  2354. U.MD.D.click(this, obj);
  2355. }, [_xhlyStudentDeskIconInfo[i]])
  2356. }, _frag); //
  2357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2360. }
  2361. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2362. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2363. _content = $$("div", {
  2364. className: "U_MD_D_KO",
  2365. "onmousedown": U.UF.C.closure(function (obj) {
  2366. //防止拖动图标即打开了桌面应用
  2367. U.MD.D.click(this, obj);
  2368. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2369. "onclick": U.UF.C.closure(function (obj) {
  2370. //防止拖动图标即打开了桌面应用
  2371. U.MD.D.click(this, obj);
  2372. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2373. }, _frag); //
  2374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2377. }
  2378. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2379. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2380. _content = $$("div", {
  2381. className: "U_MD_D_KO",
  2382. "onmousedown": U.UF.C.closure(function (obj) {
  2383. //防止拖动图标即打开了桌面应用
  2384. U.MD.D.click(this, obj);
  2385. }, [_x010503StudentDeskIconInfo[i]]),
  2386. "onclick": U.UF.C.closure(function (obj) {
  2387. //防止拖动图标即打开了桌面应用
  2388. U.MD.D.click(this, obj);
  2389. }, [_x010503StudentDeskIconInfo[i]])
  2390. }, _frag); //
  2391. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2392. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2393. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2394. }
  2395. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2396. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2397. _content = $$("div", {
  2398. className: "U_MD_D_KO",
  2399. "onmousedown": U.UF.C.closure(function (obj) {
  2400. //防止拖动图标即打开了桌面应用
  2401. U.MD.D.click(this, obj);
  2402. }, [_x010504StudentDeskIconInfo[i]]),
  2403. "onclick": U.UF.C.closure(function (obj) {
  2404. //防止拖动图标即打开了桌面应用
  2405. U.MD.D.click(this, obj);
  2406. }, [_x010504StudentDeskIconInfo[i]])
  2407. }, _frag); //
  2408. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2409. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2410. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2411. }
  2412. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2413. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2414. _content = $$("div", {
  2415. className: "U_MD_D_KO",
  2416. "onmousedown": U.UF.C.closure(function (obj) {
  2417. //防止拖动图标即打开了桌面应用
  2418. U.MD.D.click(this, obj);
  2419. }, [_x010204StudentDeskIconInfo[i]]),
  2420. "onclick": U.UF.C.closure(function (obj) {
  2421. //防止拖动图标即打开了桌面应用
  2422. U.MD.D.click(this, obj);
  2423. }, [_x010204StudentDeskIconInfo[i]])
  2424. }, _frag); //
  2425. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2426. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2427. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2428. }
  2429. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2430. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2431. _content = $$("div", {
  2432. className: "U_MD_D_KO",
  2433. "onmousedown": U.UF.C.closure(function (obj) {
  2434. //防止拖动图标即打开了桌面应用
  2435. U.MD.D.click(this, obj);
  2436. }, [_trailStudentDeskIconInfo[i]]),
  2437. "onclick": U.UF.C.closure(function (obj) {
  2438. //防止拖动图标即打开了桌面应用
  2439. U.MD.D.click(this, obj);
  2440. }, [_trailStudentDeskIconInfo[i]])
  2441. }, _frag); //
  2442. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2443. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2444. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2445. }
  2446. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2447. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2448. _content = $$("div", {
  2449. className: "U_MD_D_KO",
  2450. "onmousedown": U.UF.C.closure(function (obj) {
  2451. //防止拖动图标即打开了桌面应用
  2452. U.MD.D.click(this, obj);
  2453. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2454. "onclick": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2458. }, _frag); //
  2459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2462. }
  2463. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2464. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2465. _content = $$("div", {
  2466. className: "U_MD_D_KO",
  2467. "onmousedown": U.UF.C.closure(function (obj) {
  2468. //防止拖动图标即打开了桌面应用
  2469. U.MD.D.click(this, obj);
  2470. }, [_x010608StudentDeskIconInfo[i]]),
  2471. "onclick": U.UF.C.closure(function (obj) {
  2472. //防止拖动图标即打开了桌面应用
  2473. U.MD.D.click(this, obj);
  2474. }, [_x010608StudentDeskIconInfo[i]])
  2475. }, _frag); //
  2476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2479. }
  2480. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2481. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2482. _content = $$("div", {
  2483. className: "U_MD_D_KO",
  2484. "onmousedown": U.UF.C.closure(function (obj) {
  2485. //防止拖动图标即打开了桌面应用
  2486. U.MD.D.click(this, obj);
  2487. }, [_siesStudentDeskIconInfo[i]]),
  2488. "onclick": U.UF.C.closure(function (obj) {
  2489. //防止拖动图标即打开了桌面应用
  2490. U.MD.D.click(this, obj);
  2491. }, [_siesStudentDeskIconInfo[i]])
  2492. }, _frag); //
  2493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2496. }
  2497. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2498. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2499. _content = $$("div", {
  2500. className: "U_MD_D_KO",
  2501. "onmousedown": U.UF.C.closure(function (obj) {
  2502. //防止拖动图标即打开了桌面应用
  2503. U.MD.D.click(this, obj);
  2504. }, [_guzmsStudentDeskIconInfo[i]]),
  2505. "onclick": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_guzmsStudentDeskIconInfo[i]])
  2509. }, _frag); //
  2510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2513. }
  2514. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2515. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2516. _content = $$("div", {
  2517. className: "U_MD_D_KO",
  2518. "onmousedown": U.UF.C.closure(function (obj) {
  2519. //防止拖动图标即打开了桌面应用
  2520. U.MD.D.click(this, obj);
  2521. }, [_hkStudentDeskIconInfo[i]]),
  2522. "onclick": U.UF.C.closure(function (obj) {
  2523. //防止拖动图标即打开了桌面应用
  2524. U.MD.D.click(this, obj);
  2525. }, [_hkStudentDeskIconInfo[i]])
  2526. }, _frag); //
  2527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2530. }
  2531. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2532. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2533. _content = $$("div", {
  2534. className: "U_MD_D_KO",
  2535. "onmousedown": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_hkaceStudentDeskIconInfo[i]]),
  2539. "onclick": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_hkaceStudentDeskIconInfo[i]])
  2543. }, _frag); //
  2544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2547. }
  2548. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2549. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2550. _content = $$("div", {
  2551. className: "U_MD_D_KO",
  2552. "onmousedown": U.UF.C.closure(function (obj) {
  2553. //防止拖动图标即打开了桌面应用
  2554. U.MD.D.click(this, obj);
  2555. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2556. "onclick": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_BSDNSstudentDesktopIconInfo[i]])
  2560. }, _frag); //
  2561. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2562. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2563. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2564. }
  2565. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2566. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2567. _content = $$("div", {
  2568. className: "U_MD_D_KO",
  2569. "onmousedown": U.UF.C.closure(function (obj) {
  2570. //防止拖动图标即打开了桌面应用
  2571. U.MD.D.click(this, obj);
  2572. }, [_cocobizStudentDeskIconInfo[i]]),
  2573. "onclick": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_cocobizStudentDeskIconInfo[i]])
  2577. }, _frag); //
  2578. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2579. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2580. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2581. }
  2582. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2583. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2584. _content = $$("div", {
  2585. className: "U_MD_D_KO",
  2586. "onmousedown": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2590. "onclick": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_xxzjkyStudentDeskIconInfo[i]])
  2594. }, _frag); //
  2595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2598. }
  2599. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2600. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2601. _content = $$("div", {
  2602. className: "U_MD_D_KO",
  2603. "onmousedown": U.UF.C.closure(function (obj) {
  2604. //防止拖动图标即打开了桌面应用
  2605. U.MD.D.click(this, obj);
  2606. }, [_studentDesktopIconInfo[i]]),
  2607. "onclick": U.UF.C.closure(function (obj) {
  2608. //防止拖动图标即打开了桌面应用
  2609. U.MD.D.click(this, obj);
  2610. }, [_studentDesktopIconInfo[i]])
  2611. }, _frag); //
  2612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2615. }
  2616. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2617. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. "onmousedown": U.UF.C.closure(function (obj) {
  2621. //防止拖动图标即打开了桌面应用
  2622. U.MD.D.click(this, obj);
  2623. }, [_tcStudentDeskIconInfo[i]]),
  2624. "onclick": U.UF.C.closure(function (obj) {
  2625. //防止拖动图标即打开了桌面应用
  2626. U.MD.D.click(this, obj);
  2627. }, [_tcStudentDeskIconInfo[i]])
  2628. }, _frag); //
  2629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2632. }
  2633. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2634. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2635. _content = $$("div", {
  2636. className: "U_MD_D_KO",
  2637. "onmousedown": U.UF.C.closure(function (obj) {
  2638. //防止拖动图标即打开了桌面应用
  2639. U.MD.D.click(this, obj);
  2640. }, [_szscStudentDeskIconInfo[i]]),
  2641. "onclick": U.UF.C.closure(function (obj) {
  2642. //防止拖动图标即打开了桌面应用
  2643. U.MD.D.click(this, obj);
  2644. }, [_szscStudentDeskIconInfo[i]])
  2645. }, _frag); //
  2646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2649. }
  2650. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2651. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2652. _content = $$("div", {
  2653. className: "U_MD_D_KO",
  2654. "onmousedown": U.UF.C.closure(function (obj) {
  2655. //防止拖动图标即打开了桌面应用
  2656. U.MD.D.click(this, obj);
  2657. }, [_studentDesktopIconInfo3[i]]),
  2658. "onclick": U.UF.C.closure(function (obj) {
  2659. //防止拖动图标即打开了桌面应用
  2660. U.MD.D.click(this, obj);
  2661. }, [_studentDesktopIconInfo3[i]])
  2662. }, _frag); //
  2663. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2664. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2665. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2666. }
  2667. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2668. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2669. _content = $$("div", {
  2670. className: "U_MD_D_KO",
  2671. "onmousedown": U.UF.C.closure(function (obj) {
  2672. //防止拖动图标即打开了桌面应用
  2673. U.MD.D.click(this, obj);
  2674. }, [_studentDesktopIconInfo2[i]]),
  2675. "onclick": U.UF.C.closure(function (obj) {
  2676. //防止拖动图标即打开了桌面应用
  2677. U.MD.D.click(this, obj);
  2678. }, [_studentDesktopIconInfo2[i]])
  2679. }, _frag); //
  2680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2683. }
  2684. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2685. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2686. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2687. continue
  2688. }
  2689. _content = $$("div", {
  2690. className: "U_MD_D_KO",
  2691. "onmousedown": U.UF.C.closure(function (obj) {
  2692. //防止拖动图标即打开了桌面应用
  2693. U.MD.D.click(this, obj);
  2694. }, [_wanketeacherDesktopIconInfo[i]]),
  2695. "onclick": U.UF.C.closure(function (obj) {
  2696. //防止拖动图标即打开了桌面应用
  2697. U.MD.D.click(this, obj);
  2698. }, [_wanketeacherDesktopIconInfo[i]])
  2699. }, _frag); //
  2700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2703. }
  2704. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2705. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2706. _content = $$("div", {
  2707. className: "U_MD_D_KO",
  2708. "onmousedown": U.UF.C.closure(function (obj) {
  2709. //防止拖动图标即打开了桌面应用
  2710. U.MD.D.click(this, obj);
  2711. }, [_wankeAdminDesktopIconInfo[i]]),
  2712. "onclick": U.UF.C.closure(function (obj) {
  2713. //防止拖动图标即打开了桌面应用
  2714. U.MD.D.click(this, obj);
  2715. }, [_wankeAdminDesktopIconInfo[i]])
  2716. }, _frag); //
  2717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2720. }
  2721. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2722. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2723. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2724. continue
  2725. }
  2726. _content = $$("div", {
  2727. className: "U_MD_D_KO",
  2728. "onmousedown": U.UF.C.closure(function (obj) {
  2729. //防止拖动图标即打开了桌面应用
  2730. U.MD.D.click(this, obj);
  2731. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2732. "onclick": U.UF.C.closure(function (obj) {
  2733. //防止拖动图标即打开了桌面应用
  2734. U.MD.D.click(this, obj);
  2735. }, [_scnuaiTeacherDeskIconInfo[i]])
  2736. }, _frag); //
  2737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2740. }
  2741. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2742. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2743. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2744. continue
  2745. }
  2746. _content = $$("div", {
  2747. className: "U_MD_D_KO",
  2748. "onmousedown": U.UF.C.closure(function (obj) {
  2749. //防止拖动图标即打开了桌面应用
  2750. U.MD.D.click(this, obj);
  2751. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2752. "onclick": U.UF.C.closure(function (obj) {
  2753. //防止拖动图标即打开了桌面应用
  2754. U.MD.D.click(this, obj);
  2755. }, [_BSDNSteacherDesktopIconInfo[i]])
  2756. }, _frag); //
  2757. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2758. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2759. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2760. }
  2761. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2762. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2763. _content = $$("div", {
  2764. className: "U_MD_D_KO",
  2765. "onmousedown": U.UF.C.closure(function (obj) {
  2766. //防止拖动图标即打开了桌面应用
  2767. U.MD.D.click(this, obj);
  2768. }, [_scnuaiAdminDeskIconInfo[i]]),
  2769. "onclick": U.UF.C.closure(function (obj) {
  2770. //防止拖动图标即打开了桌面应用
  2771. U.MD.D.click(this, obj);
  2772. }, [_scnuaiAdminDeskIconInfo[i]])
  2773. }, _frag); //
  2774. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2775. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2776. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2777. }
  2778. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2779. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2780. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2781. continue
  2782. }
  2783. _content = $$("div", {
  2784. className: "U_MD_D_KO",
  2785. "onmousedown": U.UF.C.closure(function (obj) {
  2786. //防止拖动图标即打开了桌面应用
  2787. U.MD.D.click(this, obj);
  2788. }, [_jccssylTeacherDeskIconInfo[i]]),
  2789. "onclick": U.UF.C.closure(function (obj) {
  2790. //防止拖动图标即打开了桌面应用
  2791. U.MD.D.click(this, obj);
  2792. }, [_jccssylTeacherDeskIconInfo[i]])
  2793. }, _frag); //
  2794. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2795. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2796. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2797. }
  2798. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2799. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2800. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2801. continue
  2802. }
  2803. _content = $$("div", {
  2804. className: "U_MD_D_KO",
  2805. "onmousedown": U.UF.C.closure(function (obj) {
  2806. //防止拖动图标即打开了桌面应用
  2807. U.MD.D.click(this, obj);
  2808. }, [_caleTeacherDeskIconInfo[i]]),
  2809. "onclick": U.UF.C.closure(function (obj) {
  2810. //防止拖动图标即打开了桌面应用
  2811. U.MD.D.click(this, obj);
  2812. }, [_caleTeacherDeskIconInfo[i]])
  2813. }, _frag); //
  2814. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2815. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2816. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2817. }
  2818. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2819. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2820. _content = $$("div", {
  2821. className: "U_MD_D_KO",
  2822. "onmousedown": U.UF.C.closure(function (obj) {
  2823. //防止拖动图标即打开了桌面应用
  2824. U.MD.D.click(this, obj);
  2825. }, [_tpcOrganizerDeskIconInfo[i]]),
  2826. "onclick": U.UF.C.closure(function (obj) {
  2827. //防止拖动图标即打开了桌面应用
  2828. U.MD.D.click(this, obj);
  2829. }, [_tpcOrganizerDeskIconInfo[i]])
  2830. }, _frag); //
  2831. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2832. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2833. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2834. }
  2835. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2836. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2837. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2838. continue
  2839. }
  2840. _content = $$("div", {
  2841. className: "U_MD_D_KO",
  2842. "onmousedown": U.UF.C.closure(function (obj) {
  2843. //防止拖动图标即打开了桌面应用
  2844. U.MD.D.click(this, obj);
  2845. }, [_tpcTeacherDeskIconInfo[i]]),
  2846. "onclick": U.UF.C.closure(function (obj) {
  2847. //防止拖动图标即打开了桌面应用
  2848. U.MD.D.click(this, obj);
  2849. }, [_tpcTeacherDeskIconInfo[i]])
  2850. }, _frag); //
  2851. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2852. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2853. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2854. }
  2855. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2856. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2857. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2858. continue
  2859. }
  2860. _content = $$("div", {
  2861. className: "U_MD_D_KO",
  2862. "onmousedown": U.UF.C.closure(function (obj) {
  2863. //防止拖动图标即打开了桌面应用
  2864. U.MD.D.click(this, obj);
  2865. }, [_teacherDesktopIconInfo2[i]]),
  2866. "onclick": U.UF.C.closure(function (obj) {
  2867. //防止拖动图标即打开了桌面应用
  2868. U.MD.D.click(this, obj);
  2869. }, [_teacherDesktopIconInfo2[i]])
  2870. }, _frag); //
  2871. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2872. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2873. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2874. }
  2875. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2876. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2877. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2878. continue
  2879. }
  2880. _content = $$("div", {
  2881. className: "U_MD_D_KO",
  2882. "onmousedown": U.UF.C.closure(function (obj) {
  2883. //防止拖动图标即打开了桌面应用
  2884. U.MD.D.click(this, obj);
  2885. }, [_thuioeTeacherDeskIconInfo[i]]),
  2886. "onclick": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_thuioeTeacherDeskIconInfo[i]])
  2890. }, _frag); //
  2891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2894. }
  2895. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2896. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2897. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2898. continue
  2899. }
  2900. _content = $$("div", {
  2901. className: "U_MD_D_KO",
  2902. "onmousedown": U.UF.C.closure(function (obj) {
  2903. //防止拖动图标即打开了桌面应用
  2904. U.MD.D.click(this, obj);
  2905. }, [_lotechTeacherDeskIconInfo[i]]),
  2906. "onclick": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_lotechTeacherDeskIconInfo[i]])
  2910. }, _frag); //
  2911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2914. }//
  2915. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2916. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2917. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2918. continue
  2919. }
  2920. _content = $$("div", {
  2921. className: "U_MD_D_KO",
  2922. "onmousedown": U.UF.C.closure(function (obj) {
  2923. //防止拖动图标即打开了桌面应用
  2924. U.MD.D.click(this, obj);
  2925. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2926. "onclick": U.UF.C.closure(function (obj) {
  2927. //防止拖动图标即打开了桌面应用
  2928. U.MD.D.click(this, obj);
  2929. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2930. }, _frag); //
  2931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2934. }
  2935. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2936. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2937. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2938. continue
  2939. }
  2940. _content = $$("div", {
  2941. className: "U_MD_D_KO",
  2942. "onmousedown": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_siesTeacherDeskIconInfo[i]]),
  2946. "onclick": U.UF.C.closure(function (obj) {
  2947. //防止拖动图标即打开了桌面应用
  2948. U.MD.D.click(this, obj);
  2949. }, [_siesTeacherDeskIconInfo[i]])
  2950. }, _frag); //
  2951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2954. }
  2955. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2956. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2957. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2958. continue
  2959. }
  2960. _content = $$("div", {
  2961. className: "U_MD_D_KO",
  2962. "onmousedown": U.UF.C.closure(function (obj) {
  2963. //防止拖动图标即打开了桌面应用
  2964. U.MD.D.click(this, obj);
  2965. }, [_guzmsTeacherDeskIconInfo[i]]),
  2966. "onclick": U.UF.C.closure(function (obj) {
  2967. //防止拖动图标即打开了桌面应用
  2968. U.MD.D.click(this, obj);
  2969. }, [_guzmsTeacherDeskIconInfo[i]])
  2970. }, _frag); //
  2971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2974. }
  2975. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2976. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2977. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2978. continue
  2979. }
  2980. _content = $$("div", {
  2981. className: "U_MD_D_KO",
  2982. "onmousedown": U.UF.C.closure(function (obj) {
  2983. //防止拖动图标即打开了桌面应用
  2984. U.MD.D.click(this, obj);
  2985. }, [_longhuaTeacherDeskIconInfo[i]]),
  2986. "onclick": U.UF.C.closure(function (obj) {
  2987. //防止拖动图标即打开了桌面应用
  2988. U.MD.D.click(this, obj);
  2989. }, [_longhuaTeacherDeskIconInfo[i]])
  2990. }, _frag); //
  2991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2994. }
  2995. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2996. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2997. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2998. continue
  2999. }
  3000. _content = $$("div", {
  3001. className: "U_MD_D_KO",
  3002. "onmousedown": U.UF.C.closure(function (obj) {
  3003. //防止拖动图标即打开了桌面应用
  3004. U.MD.D.click(this, obj);
  3005. }, [_ytyTeacherDeskIconInfo[i]]),
  3006. "onclick": U.UF.C.closure(function (obj) {
  3007. //防止拖动图标即打开了桌面应用
  3008. U.MD.D.click(this, obj);
  3009. }, [_ytyTeacherDeskIconInfo[i]])
  3010. }, _frag); //
  3011. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3012. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3013. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3014. }
  3015. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3016. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3017. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3018. continue
  3019. }
  3020. _content = $$("div", {
  3021. className: "U_MD_D_KO",
  3022. "onmousedown": U.UF.C.closure(function (obj) {
  3023. //防止拖动图标即打开了桌面应用
  3024. U.MD.D.click(this, obj);
  3025. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3026. "onclick": U.UF.C.closure(function (obj) {
  3027. //防止拖动图标即打开了桌面应用
  3028. U.MD.D.click(this, obj);
  3029. }, [_yunhaiTeacherDeskIconInfo[i]])
  3030. }, _frag); //
  3031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3034. } //_hkStudentDeskIconInfo
  3035. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3036. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3037. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3038. continue
  3039. }
  3040. _content = $$("div", {
  3041. className: "U_MD_D_KO",
  3042. "onmousedown": U.UF.C.closure(function (obj) {
  3043. //防止拖动图标即打开了桌面应用
  3044. U.MD.D.click(this, obj);
  3045. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3046. "onclick": U.UF.C.closure(function (obj) {
  3047. //防止拖动图标即打开了桌面应用
  3048. U.MD.D.click(this, obj);
  3049. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3050. }, _frag); //
  3051. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3052. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3053. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3054. }
  3055. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3056. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3057. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3058. continue
  3059. }
  3060. _content = $$("div", {
  3061. className: "U_MD_D_KO",
  3062. "onmousedown": U.UF.C.closure(function (obj) {
  3063. //防止拖动图标即打开了桌面应用
  3064. U.MD.D.click(this, obj);
  3065. }, [_hkTeacherDeskIconInfo[i]]),
  3066. "onclick": U.UF.C.closure(function (obj) {
  3067. //防止拖动图标即打开了桌面应用
  3068. U.MD.D.click(this, obj);
  3069. }, [_hkTeacherDeskIconInfo[i]])
  3070. }, _frag); //
  3071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3074. }
  3075. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3076. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3077. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3078. continue
  3079. }
  3080. _content = $$("div", {
  3081. className: "U_MD_D_KO",
  3082. "onmousedown": U.UF.C.closure(function (obj) {
  3083. //防止拖动图标即打开了桌面应用
  3084. U.MD.D.click(this, obj);
  3085. }, [_hkaceTeacherDeskIconInfo[i]]),
  3086. "onclick": U.UF.C.closure(function (obj) {
  3087. //防止拖动图标即打开了桌面应用
  3088. U.MD.D.click(this, obj);
  3089. }, [_hkaceTeacherDeskIconInfo[i]])
  3090. }, _frag); //
  3091. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3092. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3093. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3094. }
  3095. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3096. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3097. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3098. continue
  3099. }
  3100. _content = $$("div", {
  3101. className: "U_MD_D_KO",
  3102. "onmousedown": U.UF.C.closure(function (obj) {
  3103. //防止拖动图标即打开了桌面应用
  3104. U.MD.D.click(this, obj);
  3105. }, [_cocobizTeacherDeskIconInfo[i]]),
  3106. "onclick": U.UF.C.closure(function (obj) {
  3107. //防止拖动图标即打开了桌面应用
  3108. U.MD.D.click(this, obj);
  3109. }, [_cocobizTeacherDeskIconInfo[i]])
  3110. }, _frag); //
  3111. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3112. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3113. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3114. }
  3115. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3116. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3117. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3118. continue
  3119. }
  3120. _content = $$("div", {
  3121. className: "U_MD_D_KO",
  3122. "onmousedown": U.UF.C.closure(function (obj) {
  3123. //防止拖动图标即打开了桌面应用
  3124. U.MD.D.click(this, obj);
  3125. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3126. "onclick": U.UF.C.closure(function (obj) {
  3127. //防止拖动图标即打开了桌面应用
  3128. U.MD.D.click(this, obj);
  3129. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3130. }, _frag); //
  3131. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3132. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3133. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3134. }
  3135. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3136. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3137. _content = $$("div", {
  3138. className: "U_MD_D_KO",
  3139. "onmousedown": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_gdjgAdminDeskIconInfo[i]]),
  3143. "onclick": U.UF.C.closure(function (obj) {
  3144. //防止拖动图标即打开了桌面应用
  3145. U.MD.D.click(this, obj);
  3146. }, [_gdjgAdminDeskIconInfo[i]])
  3147. }, _frag); //
  3148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3151. }
  3152. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3153. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3154. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3155. continue
  3156. }
  3157. _content = $$("div", {
  3158. className: "U_MD_D_KO",
  3159. "onmousedown": U.UF.C.closure(function (obj) {
  3160. //防止拖动图标即打开了桌面应用
  3161. U.MD.D.click(this, obj);
  3162. }, [_gdjgTeacherDeskIconInfo[i]]),
  3163. "onclick": U.UF.C.closure(function (obj) {
  3164. //防止拖动图标即打开了桌面应用
  3165. U.MD.D.click(this, obj);
  3166. }, [_gdjgTeacherDeskIconInfo[i]])
  3167. }, _frag); //
  3168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3171. }
  3172. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3173. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3174. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3175. continue
  3176. }
  3177. _content = $$("div", {
  3178. className: "U_MD_D_KO",
  3179. "onmousedown": U.UF.C.closure(function (obj) {
  3180. //防止拖动图标即打开了桌面应用
  3181. U.MD.D.click(this, obj);
  3182. }, [_szherTeacherDeskIconInfo[i]]),
  3183. "onclick": U.UF.C.closure(function (obj) {
  3184. //防止拖动图标即打开了桌面应用
  3185. U.MD.D.click(this, obj);
  3186. }, [_szherTeacherDeskIconInfo[i]])
  3187. }, _frag); //
  3188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3191. }
  3192. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3193. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3194. _content = $$("div", {
  3195. className: "U_MD_D_KO",
  3196. "onmousedown": U.UF.C.closure(function (obj) {
  3197. //防止拖动图标即打开了桌面应用
  3198. U.MD.D.click(this, obj);
  3199. }, [_heyuannAdminDeskIconInfo[i]]),
  3200. "onclick": U.UF.C.closure(function (obj) {
  3201. //防止拖动图标即打开了桌面应用
  3202. U.MD.D.click(this, obj);
  3203. }, [_heyuannAdminDeskIconInfo[i]])
  3204. }, _frag); //
  3205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3208. }
  3209. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3210. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3211. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3212. continue
  3213. }
  3214. _content = $$("div", {
  3215. className: "U_MD_D_KO",
  3216. "onmousedown": U.UF.C.closure(function (obj) {
  3217. //防止拖动图标即打开了桌面应用
  3218. U.MD.D.click(this, obj);
  3219. }, [_heyuanTeacherDeskIconInfo[i]]),
  3220. "onclick": U.UF.C.closure(function (obj) {
  3221. //防止拖动图标即打开了桌面应用
  3222. U.MD.D.click(this, obj);
  3223. }, [_heyuanTeacherDeskIconInfo[i]])
  3224. }, _frag); //
  3225. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3226. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3227. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3228. } //
  3229. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3230. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3231. _content = $$("div", {
  3232. className: "U_MD_D_KO",
  3233. "onmousedown": U.UF.C.closure(function (obj) {
  3234. //防止拖动图标即打开了桌面应用
  3235. U.MD.D.click(this, obj);
  3236. }, [_dseiAdminDeskIconInfo[i]]),
  3237. "onclick": U.UF.C.closure(function (obj) {
  3238. //防止拖动图标即打开了桌面应用
  3239. U.MD.D.click(this, obj);
  3240. }, [_dseiAdminDeskIconInfo[i]])
  3241. }, _frag); //
  3242. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3243. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3244. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3245. }
  3246. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3247. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3248. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3249. continue
  3250. }
  3251. _content = $$("div", {
  3252. className: "U_MD_D_KO",
  3253. "onmousedown": U.UF.C.closure(function (obj) {
  3254. //防止拖动图标即打开了桌面应用
  3255. U.MD.D.click(this, obj);
  3256. }, [_dseiTeacherDeskIconInfo[i]]),
  3257. "onclick": U.UF.C.closure(function (obj) {
  3258. //防止拖动图标即打开了桌面应用
  3259. U.MD.D.click(this, obj);
  3260. }, [_dseiTeacherDeskIconInfo[i]])
  3261. }, _frag); //
  3262. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3263. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3264. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3265. } //
  3266. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3267. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3268. _content = $$("div", {
  3269. className: "U_MD_D_KO",
  3270. "onmousedown": U.UF.C.closure(function (obj) {
  3271. //防止拖动图标即打开了桌面应用
  3272. U.MD.D.click(this, obj);
  3273. }, [_chjyjAdminDeskIconInfo[i]]),
  3274. "onclick": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_chjyjAdminDeskIconInfo[i]])
  3278. }, _frag); //
  3279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3282. }//
  3283. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3284. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3285. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3286. continue
  3287. }
  3288. _content = $$("div", {
  3289. className: "U_MD_D_KO",
  3290. "onmousedown": U.UF.C.closure(function (obj) {
  3291. //防止拖动图标即打开了桌面应用
  3292. U.MD.D.click(this, obj);
  3293. }, [_chjyjTeacherDeskIconInfo[i]]),
  3294. "onclick": U.UF.C.closure(function (obj) {
  3295. //防止拖动图标即打开了桌面应用
  3296. U.MD.D.click(this, obj);
  3297. }, [_chjyjTeacherDeskIconInfo[i]])
  3298. }, _frag); //
  3299. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3300. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3301. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3302. }
  3303. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3304. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3305. _content = $$("div", {
  3306. className: "U_MD_D_KO",
  3307. "onmousedown": U.UF.C.closure(function (obj) {
  3308. //防止拖动图标即打开了桌面应用
  3309. U.MD.D.click(this, obj);
  3310. }, [_szjkyAdminDeskIconInfo[i]]),
  3311. "onclick": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_szjkyAdminDeskIconInfo[i]])
  3315. }, _frag); //
  3316. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3317. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3318. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3319. }//
  3320. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3321. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3322. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3323. continue
  3324. }
  3325. _content = $$("div", {
  3326. className: "U_MD_D_KO",
  3327. "onmousedown": U.UF.C.closure(function (obj) {
  3328. //防止拖动图标即打开了桌面应用
  3329. U.MD.D.click(this, obj);
  3330. }, [_szjkyTeacherDeskIconInfo[i]]),
  3331. "onclick": U.UF.C.closure(function (obj) {
  3332. //防止拖动图标即打开了桌面应用
  3333. U.MD.D.click(this, obj);
  3334. }, [_szjkyTeacherDeskIconInfo[i]])
  3335. }, _frag); //
  3336. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3337. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3338. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3339. }
  3340. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3341. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3342. _content = $$("div", {
  3343. className: "U_MD_D_KO",
  3344. "onmousedown": U.UF.C.closure(function (obj) {
  3345. //防止拖动图标即打开了桌面应用
  3346. U.MD.D.click(this, obj);
  3347. }, [_x020201AdminDeskIconInfo[i]]),
  3348. "onclick": U.UF.C.closure(function (obj) {
  3349. //防止拖动图标即打开了桌面应用
  3350. U.MD.D.click(this, obj);
  3351. }, [_x020201AdminDeskIconInfo[i]])
  3352. }, _frag); //
  3353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3356. }//
  3357. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3358. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3359. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3360. continue
  3361. }
  3362. _content = $$("div", {
  3363. className: "U_MD_D_KO",
  3364. "onmousedown": U.UF.C.closure(function (obj) {
  3365. //防止拖动图标即打开了桌面应用
  3366. U.MD.D.click(this, obj);
  3367. }, [_x020201TeacherDeskIconInfo[i]]),
  3368. "onclick": U.UF.C.closure(function (obj) {
  3369. //防止拖动图标即打开了桌面应用
  3370. U.MD.D.click(this, obj);
  3371. }, [_x020201TeacherDeskIconInfo[i]])
  3372. }, _frag); //
  3373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3376. }
  3377. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3378. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3379. _content = $$("div", {
  3380. className: "U_MD_D_KO",
  3381. "onmousedown": U.UF.C.closure(function (obj) {
  3382. //防止拖动图标即打开了桌面应用
  3383. U.MD.D.click(this, obj);
  3384. }, [_SCNUETAdminDeskIconInfo[i]]),
  3385. "onclick": U.UF.C.closure(function (obj) {
  3386. //防止拖动图标即打开了桌面应用
  3387. U.MD.D.click(this, obj);
  3388. }, [_SCNUETAdminDeskIconInfo[i]])
  3389. }, _frag); //
  3390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3393. }//
  3394. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3395. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3396. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3397. continue
  3398. }
  3399. _content = $$("div", {
  3400. className: "U_MD_D_KO",
  3401. "onmousedown": U.UF.C.closure(function (obj) {
  3402. //防止拖动图标即打开了桌面应用
  3403. U.MD.D.click(this, obj);
  3404. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3405. "onclick": U.UF.C.closure(function (obj) {
  3406. //防止拖动图标即打开了桌面应用
  3407. U.MD.D.click(this, obj);
  3408. }, [_SCNUETTeacherDeskIconInfo[i]])
  3409. }, _frag); //
  3410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3413. }
  3414. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3415. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3416. _content = $$("div", {
  3417. className: "U_MD_D_KO",
  3418. "onmousedown": U.UF.C.closure(function (obj) {
  3419. //防止拖动图标即打开了桌面应用
  3420. U.MD.D.click(this, obj);
  3421. }, [_futianAdminDeskIconInfo[i]]),
  3422. "onclick": U.UF.C.closure(function (obj) {
  3423. //防止拖动图标即打开了桌面应用
  3424. U.MD.D.click(this, obj);
  3425. }, [_futianAdminDeskIconInfo[i]])
  3426. }, _frag); //
  3427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3430. }
  3431. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3432. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3433. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3434. continue
  3435. }
  3436. _content = $$("div", {
  3437. className: "U_MD_D_KO",
  3438. "onmousedown": U.UF.C.closure(function (obj) {
  3439. //防止拖动图标即打开了桌面应用
  3440. U.MD.D.click(this, obj);
  3441. }, [_futianTeacherDeskIconInfo[i]]),
  3442. "onclick": U.UF.C.closure(function (obj) {
  3443. //防止拖动图标即打开了桌面应用
  3444. U.MD.D.click(this, obj);
  3445. }, [_futianTeacherDeskIconInfo[i]])
  3446. }, _frag); //
  3447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3450. }
  3451. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3452. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3453. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3454. continue
  3455. }
  3456. _content = $$("div", {
  3457. className: "U_MD_D_KO",
  3458. "onmousedown": U.UF.C.closure(function (obj) {
  3459. //防止拖动图标即打开了桌面应用
  3460. U.MD.D.click(this, obj);
  3461. }, [_MingdeTeacherDeskIcon[i]]),
  3462. "onclick": U.UF.C.closure(function (obj) {
  3463. //防止拖动图标即打开了桌面应用
  3464. U.MD.D.click(this, obj);
  3465. }, [_MingdeTeacherDeskIcon[i]])
  3466. }, _frag); //
  3467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3470. }
  3471. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3472. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3473. _content = $$("div", {
  3474. className: "U_MD_D_KO",
  3475. "onmousedown": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_lhsAdminDesktopIconInfo[i]]),
  3479. "onclick": U.UF.C.closure(function (obj) {
  3480. //防止拖动图标即打开了桌面应用
  3481. U.MD.D.click(this, obj);
  3482. }, [_lhsAdminDesktopIconInfo[i]])
  3483. }, _frag); //
  3484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3487. }
  3488. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3489. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3490. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3491. continue
  3492. }
  3493. _content = $$("div", {
  3494. className: "U_MD_D_KO",
  3495. "onmousedown": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_lhsteacherDesktopIconInfo[i]]),
  3499. "onclick": U.UF.C.closure(function (obj) {
  3500. //防止拖动图标即打开了桌面应用
  3501. U.MD.D.click(this, obj);
  3502. }, [_lhsteacherDesktopIconInfo[i]])
  3503. }, _frag); //
  3504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3507. }
  3508. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3509. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3510. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3511. continue
  3512. }
  3513. _content = $$("div", {
  3514. className: "U_MD_D_KO",
  3515. "onmousedown": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3519. "onclick": U.UF.C.closure(function (obj) {
  3520. //防止拖动图标即打开了桌面应用
  3521. U.MD.D.click(this, obj);
  3522. }, [_zhoujiateacherDesktopIconInfo[i]])
  3523. }, _frag); //
  3524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3527. }
  3528. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3529. for (i = 0; i < _hanDeskIcon.length; i++) {
  3530. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3531. continue
  3532. }
  3533. _content = $$("div", {
  3534. className: "U_MD_D_KO",
  3535. "onmousedown": U.UF.C.closure(function (obj) {
  3536. //防止拖动图标即打开了桌面应用
  3537. U.MD.D.click(this, obj);
  3538. }, [_hanDeskIcon[i]]),
  3539. "onclick": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_hanDeskIcon[i]])
  3543. }, _frag); //
  3544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3547. }
  3548. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3549. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3550. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3551. continue
  3552. }
  3553. _content = $$("div", {
  3554. className: "U_MD_D_KO",
  3555. "onmousedown": U.UF.C.closure(function (obj) {
  3556. //防止拖动图标即打开了桌面应用
  3557. U.MD.D.click(this, obj);
  3558. }, [_orgStemDeskIcon[i]]),
  3559. "onclick": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_orgStemDeskIcon[i]])
  3563. }, _frag); //
  3564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3567. }
  3568. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3569. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3570. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3571. continue
  3572. }
  3573. _content = $$("div", {
  3574. className: "U_MD_D_KO",
  3575. "onmousedown": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_szulsDeskIcon[i]]),
  3579. "onclick": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_szulsDeskIcon[i]])
  3583. }, _frag); //
  3584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3587. }
  3588. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3589. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3590. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3591. continue
  3592. }
  3593. _content = $$("div", {
  3594. className: "U_MD_D_KO",
  3595. "onmousedown": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_orgDesktopIconInfo[i]]),
  3599. "onclick": U.UF.C.closure(function (obj) {
  3600. //防止拖动图标即打开了桌面应用
  3601. U.MD.D.click(this, obj);
  3602. }, [_orgDesktopIconInfo[i]])
  3603. }, _frag); //
  3604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3607. }
  3608. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3609. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3610. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3611. continue
  3612. }
  3613. _content = $$("div", {
  3614. className: "U_MD_D_KO",
  3615. "onmousedown": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_schoolDesktopIconInfo[i]]),
  3619. "onclick": U.UF.C.closure(function (obj) {
  3620. //防止拖动图标即打开了桌面应用
  3621. U.MD.D.click(this, obj);
  3622. }, [_schoolDesktopIconInfo[i]])
  3623. }, _frag); //
  3624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3627. }
  3628. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3629. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3630. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3631. continue
  3632. }
  3633. _content = $$("div", {
  3634. className: "U_MD_D_KO",
  3635. "onmousedown": U.UF.C.closure(function (obj) {
  3636. //防止拖动图标即打开了桌面应用
  3637. U.MD.D.click(this, obj);
  3638. }, [_GMteacherDesktopIconInfo[i]]),
  3639. "onclick": U.UF.C.closure(function (obj) {
  3640. //防止拖动图标即打开了桌面应用
  3641. U.MD.D.click(this, obj);
  3642. }, [_GMteacherDesktopIconInfo[i]])
  3643. }, _frag); //
  3644. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3645. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3646. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3647. }
  3648. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3649. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3650. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3651. continue
  3652. }
  3653. _content = $$("div", {
  3654. className: "U_MD_D_KO",
  3655. "onmousedown": U.UF.C.closure(function (obj) {
  3656. //防止拖动图标即打开了桌面应用
  3657. U.MD.D.click(this, obj);
  3658. }, [_SONGteacherDesktopIconInfo[i]]),
  3659. "onclick": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_SONGteacherDesktopIconInfo[i]])
  3663. }, _frag); //
  3664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3667. }
  3668. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3669. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3670. _content = $$("div", {
  3671. className: "U_MD_D_KO",
  3672. "onmousedown": U.UF.C.closure(function (obj) {
  3673. //防止拖动图标即打开了桌面应用
  3674. U.MD.D.click(this, obj);
  3675. }, [_GMstudentDesktopIconInfo[i]]),
  3676. "onclick": U.UF.C.closure(function (obj) {
  3677. //防止拖动图标即打开了桌面应用
  3678. U.MD.D.click(this, obj);
  3679. }, [_GMstudentDesktopIconInfo[i]])
  3680. }, _frag); //
  3681. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3682. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3683. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3684. }
  3685. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3686. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3687. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3688. continue
  3689. }
  3690. _content = $$("div", {
  3691. className: "U_MD_D_KO",
  3692. "onmousedown": U.UF.C.closure(function (obj) {
  3693. //防止拖动图标即打开了桌面应用
  3694. U.MD.D.click(this, obj);
  3695. }, [_tcTeacherDeskIconInfo[i]]),
  3696. "onclick": U.UF.C.closure(function (obj) {
  3697. //防止拖动图标即打开了桌面应用
  3698. U.MD.D.click(this, obj);
  3699. }, [_tcTeacherDeskIconInfo[i]])
  3700. }, _frag); //
  3701. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3702. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3703. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3704. }
  3705. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3706. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3707. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3708. continue
  3709. }
  3710. _content = $$("div", {
  3711. className: "U_MD_D_KO",
  3712. "onmousedown": U.UF.C.closure(function (obj) {
  3713. //防止拖动图标即打开了桌面应用
  3714. U.MD.D.click(this, obj);
  3715. }, [_tcOrganizerDeskIconInfo[i]]),
  3716. "onclick": U.UF.C.closure(function (obj) {
  3717. //防止拖动图标即打开了桌面应用
  3718. U.MD.D.click(this, obj);
  3719. }, [_tcOrganizerDeskIconInfo[i]])
  3720. }, _frag); //
  3721. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3722. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3723. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3724. }
  3725. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3726. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3727. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3728. continue
  3729. }
  3730. _content = $$("div", {
  3731. className: "U_MD_D_KO",
  3732. "onmousedown": U.UF.C.closure(function (obj) {
  3733. //防止拖动图标即打开了桌面应用
  3734. U.MD.D.click(this, obj);
  3735. }, [_szscTeacherDeskIconInfo[i]]),
  3736. "onclick": U.UF.C.closure(function (obj) {
  3737. //防止拖动图标即打开了桌面应用
  3738. U.MD.D.click(this, obj);
  3739. }, [_szscTeacherDeskIconInfo[i]])
  3740. }, _frag); //
  3741. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3742. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3743. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3744. }
  3745. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3746. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3747. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3748. continue
  3749. }
  3750. _content = $$("div", {
  3751. className: "U_MD_D_KO",
  3752. "onmousedown": U.UF.C.closure(function (obj) {
  3753. //防止拖动图标即打开了桌面应用
  3754. U.MD.D.click(this, obj);
  3755. }, [_szscOrganizerDeskIconInfo[i]]),
  3756. "onclick": U.UF.C.closure(function (obj) {
  3757. //防止拖动图标即打开了桌面应用
  3758. U.MD.D.click(this, obj);
  3759. }, [_szscOrganizerDeskIconInfo[i]])
  3760. }, _frag); //
  3761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3764. }
  3765. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3766. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3767. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3768. continue
  3769. }
  3770. _content = $$("div", {
  3771. className: "U_MD_D_KO",
  3772. "onmousedown": U.UF.C.closure(function (obj) {
  3773. //防止拖动图标即打开了桌面应用
  3774. U.MD.D.click(this, obj);
  3775. }, [_nsfxTeacherDeskIconInfo[i]]),
  3776. "onclick": U.UF.C.closure(function (obj) {
  3777. //防止拖动图标即打开了桌面应用
  3778. U.MD.D.click(this, obj);
  3779. }, [_nsfxTeacherDeskIconInfo[i]])
  3780. }, _frag); //
  3781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3784. }
  3785. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3786. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3787. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3788. continue
  3789. }
  3790. _content = $$("div", {
  3791. className: "U_MD_D_KO",
  3792. "onmousedown": U.UF.C.closure(function (obj) {
  3793. //防止拖动图标即打开了桌面应用
  3794. U.MD.D.click(this, obj);
  3795. }, [_stiaTeacherDeskIconInfo[i]]),
  3796. "onclick": U.UF.C.closure(function (obj) {
  3797. //防止拖动图标即打开了桌面应用
  3798. U.MD.D.click(this, obj);
  3799. }, [_stiaTeacherDeskIconInfo[i]])
  3800. }, _frag); //
  3801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3804. }
  3805. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3806. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3807. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3808. continue
  3809. }
  3810. _content = $$("div", {
  3811. className: "U_MD_D_KO",
  3812. "onmousedown": U.UF.C.closure(function (obj) {
  3813. //防止拖动图标即打开了桌面应用
  3814. U.MD.D.click(this, obj);
  3815. }, [_szdjgTeacherDeskIconInfo[i]]),
  3816. "onclick": U.UF.C.closure(function (obj) {
  3817. //防止拖动图标即打开了桌面应用
  3818. U.MD.D.click(this, obj);
  3819. }, [_szdjgTeacherDeskIconInfo[i]])
  3820. }, _frag); //
  3821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3824. }
  3825. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3826. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3827. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3828. continue
  3829. }
  3830. _content = $$("div", {
  3831. className: "U_MD_D_KO",
  3832. "onmousedown": U.UF.C.closure(function (obj) {
  3833. //防止拖动图标即打开了桌面应用
  3834. U.MD.D.click(this, obj);
  3835. }, [_x010607TeacherDeskIconInfo[i]]),
  3836. "onclick": U.UF.C.closure(function (obj) {
  3837. //防止拖动图标即打开了桌面应用
  3838. U.MD.D.click(this, obj);
  3839. }, [_x010607TeacherDeskIconInfo[i]])
  3840. }, _frag); //
  3841. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3842. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3843. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3844. }
  3845. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3846. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3847. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3848. continue
  3849. }
  3850. _content = $$("div", {
  3851. className: "U_MD_D_KO",
  3852. "onmousedown": U.UF.C.closure(function (obj) {
  3853. //防止拖动图标即打开了桌面应用
  3854. U.MD.D.click(this, obj);
  3855. }, [_xhlyTeacherDeskIconInfo[i]]),
  3856. "onclick": U.UF.C.closure(function (obj) {
  3857. //防止拖动图标即打开了桌面应用
  3858. U.MD.D.click(this, obj);
  3859. }, [_xhlyTeacherDeskIconInfo[i]])
  3860. }, _frag); //
  3861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3864. }
  3865. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3866. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3867. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3868. continue
  3869. }
  3870. _content = $$("div", {
  3871. className: "U_MD_D_KO",
  3872. "onmousedown": U.UF.C.closure(function (obj) {
  3873. //防止拖动图标即打开了桌面应用
  3874. U.MD.D.click(this, obj);
  3875. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3876. "onclick": U.UF.C.closure(function (obj) {
  3877. //防止拖动图标即打开了桌面应用
  3878. U.MD.D.click(this, obj);
  3879. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3880. }, _frag); //
  3881. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3882. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3883. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3884. }
  3885. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3886. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3887. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3888. continue
  3889. }
  3890. _content = $$("div", {
  3891. className: "U_MD_D_KO",
  3892. "onmousedown": U.UF.C.closure(function (obj) {
  3893. //防止拖动图标即打开了桌面应用
  3894. U.MD.D.click(this, obj);
  3895. }, [_x010503TeacherDeskIconInfo[i]]),
  3896. "onclick": U.UF.C.closure(function (obj) {
  3897. //防止拖动图标即打开了桌面应用
  3898. U.MD.D.click(this, obj);
  3899. }, [_x010503TeacherDeskIconInfo[i]])
  3900. }, _frag); //
  3901. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3902. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3903. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3904. }
  3905. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3906. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3907. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3908. continue
  3909. }
  3910. _content = $$("div", {
  3911. className: "U_MD_D_KO",
  3912. "onmousedown": U.UF.C.closure(function (obj) {
  3913. //防止拖动图标即打开了桌面应用
  3914. U.MD.D.click(this, obj);
  3915. }, [_x010504TeacherDeskIconInfo[i]]),
  3916. "onclick": U.UF.C.closure(function (obj) {
  3917. //防止拖动图标即打开了桌面应用
  3918. U.MD.D.click(this, obj);
  3919. }, [_x010504TeacherDeskIconInfo[i]])
  3920. }, _frag); //
  3921. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3922. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  3923. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  3924. }
  3925. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  3926. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  3927. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3928. continue
  3929. }
  3930. _content = $$("div", {
  3931. className: "U_MD_D_KO",
  3932. "onmousedown": U.UF.C.closure(function (obj) {
  3933. //防止拖动图标即打开了桌面应用
  3934. U.MD.D.click(this, obj);
  3935. }, [_x010204TeacherDeskIconInfo[i]]),
  3936. "onclick": U.UF.C.closure(function (obj) {
  3937. //防止拖动图标即打开了桌面应用
  3938. U.MD.D.click(this, obj);
  3939. }, [_x010204TeacherDeskIconInfo[i]])
  3940. }, _frag); //
  3941. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3942. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  3943. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  3944. }
  3945. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  3946. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  3947. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3948. continue
  3949. }
  3950. _content = $$("div", {
  3951. className: "U_MD_D_KO",
  3952. "onmousedown": U.UF.C.closure(function (obj) {
  3953. //防止拖动图标即打开了桌面应用
  3954. U.MD.D.click(this, obj);
  3955. }, [_trailTeacherDeskIconInfo[i]]),
  3956. "onclick": U.UF.C.closure(function (obj) {
  3957. //防止拖动图标即打开了桌面应用
  3958. U.MD.D.click(this, obj);
  3959. }, [_trailTeacherDeskIconInfo[i]])
  3960. }, _frag); //
  3961. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3962. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  3963. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  3964. }
  3965. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  3966. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  3967. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3968. continue
  3969. }
  3970. _content = $$("div", {
  3971. className: "U_MD_D_KO",
  3972. "onmousedown": U.UF.C.closure(function (obj) {
  3973. //防止拖动图标即打开了桌面应用
  3974. U.MD.D.click(this, obj);
  3975. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  3976. "onclick": U.UF.C.closure(function (obj) {
  3977. //防止拖动图标即打开了桌面应用
  3978. U.MD.D.click(this, obj);
  3979. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  3980. }, _frag); //
  3981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  3983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  3984. }
  3985. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3986. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3987. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3988. continue
  3989. }
  3990. _content = $$("div", {
  3991. className: "U_MD_D_KO",
  3992. "onmousedown": U.UF.C.closure(function (obj) {
  3993. //防止拖动图标即打开了桌面应用
  3994. U.MD.D.click(this, obj);
  3995. }, [_x010608TeacherDeskIconInfo[i]]),
  3996. "onclick": U.UF.C.closure(function (obj) {
  3997. //防止拖动图标即打开了桌面应用
  3998. U.MD.D.click(this, obj);
  3999. }, [_x010608TeacherDeskIconInfo[i]])
  4000. }, _frag); //
  4001. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4002. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4003. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4004. }
  4005. } else {
  4006. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4007. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4008. continue
  4009. }
  4010. _content = $$("div", {
  4011. className: "U_MD_D_KO",
  4012. "onmousedown": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_teacherDesktopIconInfo[i]]),
  4016. "onclick": U.UF.C.closure(function (obj) {
  4017. //防止拖动图标即打开了桌面应用
  4018. U.MD.D.click(this, obj);
  4019. }, [_teacherDesktopIconInfo[i]])
  4020. }, _frag); //
  4021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4024. }
  4025. }
  4026. } else {
  4027. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4028. _content = $$("div", {
  4029. className: "U_MD_D_KO",
  4030. style: { 'width': '124px', 'height': '145px' },
  4031. "onmousedown": U.UF.C.closure(function (obj) {
  4032. //防止拖动图标即打开了桌面应用
  4033. U.MD.D.click(this, obj);
  4034. }, [_easyDesktopIconInfo[i]]),
  4035. "onclick": U.UF.C.closure(function (obj) {
  4036. //防止拖动图标即打开了桌面应用
  4037. U.MD.D.click(this, obj);
  4038. }, [_easyDesktopIconInfo[i]])
  4039. }, _frag); //
  4040. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4043. }
  4044. }
  4045. if (type == 1) {
  4046. //加载好后给图标定位
  4047. U.MD.D.iconPostion($(_frag).Child());
  4048. } else {
  4049. //加载好后给图标定位
  4050. U.MD.D.iconPostion2($(_frag).Child());
  4051. }
  4052. //把图标加载到页面
  4053. el.appendChild(_frag);
  4054. }
  4055. /**
  4056. * 显示任务栏
  4057. *
  4058. * @param {element} 桌面元素
  4059. */
  4060. U.MD.D.I.displayTaskbar = function (el) {
  4061. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4062. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4063. //任务栏位置变化
  4064. U.selectEl(el).css({ "bottom": "0px" });
  4065. //桌面位置变话
  4066. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4067. }
  4068. }
  4069. //#region 桌面图标拖动逻辑
  4070. /**
  4071. * 桌面排列图标
  4072. *
  4073. * @param {element} 桌面元素
  4074. * @param {object} 上下相距的距离
  4075. * @param {object} 左右相距的距离
  4076. * @return {object} 命名空间
  4077. */
  4078. U.MD.D.iconPostion = function (childs, top, left) {
  4079. var i; //用于循环处理
  4080. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4081. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4082. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4083. for (i = 0; i < childs.length; i++) {
  4084. //如果竖排top超过了范围处理
  4085. if (top + 95 > US.height - 10) {
  4086. //left超过了页面范围处理,则向上重叠打印处理
  4087. if ((left + 180) > US.width) {
  4088. top -= 110;
  4089. left -= 90;
  4090. }
  4091. //没有超过范围,那么left+90添加到下一个竖排打印
  4092. else {
  4093. left += 90;
  4094. top = 15;
  4095. };
  4096. }
  4097. //给图标的位置赋值
  4098. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4099. if (i < childs.length - 1) {
  4100. //页面图标每次向下加95
  4101. top += 95;
  4102. }
  4103. }
  4104. //返回最后调用的图标的位置
  4105. return [top, left];
  4106. }
  4107. /**
  4108. * 桌面排列图标
  4109. *
  4110. * @param {element} 桌面元素
  4111. * @param {object} 上下相距的距离
  4112. * @param {object} 左右相距的距离
  4113. * @return {object} 命名空间
  4114. */
  4115. U.MD.D.iconPostion2 = function (childs, top, left) {
  4116. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4117. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4118. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4119. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4120. for (i = 0; i < childs.length; i++) {
  4121. //如果竖排top超过了范围处理
  4122. if (left + 150 > US.width - 10) {
  4123. //left超过了页面范围处理,则向上重叠打印处理
  4124. if ((top + 180) > US.Height) {
  4125. top -= 150;
  4126. left -= 150;
  4127. }
  4128. //没有超过范围,那么left+90添加到下一个竖排打印
  4129. else {
  4130. top += 150;
  4131. left = ol;
  4132. };
  4133. }
  4134. //给图标的位置赋值
  4135. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4136. if (i < childs.length - 1) {
  4137. //页面图标每次向下加95
  4138. left += 150;
  4139. }
  4140. }
  4141. //返回最后调用的图标的位置
  4142. return [top, left];
  4143. }
  4144. /**
  4145. * 桌面点击事件逻辑
  4146. *
  4147. * @param {element} 桌面元素
  4148. * @param {object} 上下相距的距离
  4149. * @param {object} 左右相距的距离
  4150. * @return {object} 命名空间
  4151. */
  4152. U.MD.D.click = function (el, obj) {
  4153. var _buttonnumber = event.button; //点击的按钮的事件值
  4154. var _userinfo = US.userInfo;
  4155. U.UF.EV.stopBubble(); //阻止向上冒泡
  4156. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4157. if (_buttonnumber < 2) {
  4158. //如果是click事件的处理
  4159. if (event.type == "click") {
  4160. //如果元素在mousemove事件中没有移动则出发click事件
  4161. if (!U.MD.D.I.IsDrag) {
  4162. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4163. U.alert("请先登录您的账号!");
  4164. setTimeout(() => {
  4165. U.MD.U.L.login();
  4166. }, 2000);
  4167. } else {
  4168. //打开应用处理
  4169. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4170. }
  4171. }
  4172. }
  4173. //如果是mouse事件的处理
  4174. else {
  4175. if (US.Config.type == '1') {
  4176. //拖动处理,添加拖动和拖动结束事件
  4177. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4178. }
  4179. }
  4180. U.MD.D.I.IsDrag = false;
  4181. }
  4182. }
  4183. /**
  4184. * 拖动的处理
  4185. *
  4186. */
  4187. U.MD.D.iconMove = function () {
  4188. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4189. U.MD.D.I.IsDrag = true;
  4190. }
  4191. /**
  4192. * 拖动结束后,这里是定位处理,以网状的形式定位
  4193. *
  4194. * @param {element} 拖动的元素
  4195. * @return {object} 命名空间
  4196. */
  4197. U.MD.D.iconUp = function (el) {
  4198. var _top = 15,
  4199. _left = 20,
  4200. _margin,
  4201. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4202. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4203. if (_positioninfo["OT"] > 15) {
  4204. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4205. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4206. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4207. }
  4208. if (_positioninfo["OL"] > 20) {
  4209. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4210. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4211. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4212. }
  4213. //while循环判断么一个重叠的元素
  4214. do {
  4215. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4216. _top = _positioninfo[0] + 95; //得到定位后的top
  4217. _left = _positioninfo[1]; //得到定位后的left
  4218. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4219. }
  4220. /**
  4221. * 判断拖动后图标是否重叠
  4222. *
  4223. * @param {element} 拖动的元素
  4224. * @param {element} 桌面所有的元素
  4225. * @param {array} 拖动元素的位置
  4226. ----------[0] 上 top
  4227. ----------[1] 左 left
  4228. * @return {object} 命名空间
  4229. */
  4230. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4231. //循环所有的图标
  4232. for (var i = 0; i < childs.length; i++) {
  4233. //判断有没有和该图标诶子重叠的元素
  4234. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4235. return childs[i]; //如果有返回
  4236. }
  4237. }
  4238. }
  4239. //#endregion
  4240. //#endregion
  4241. //#region 桌面应用
  4242. /**
  4243. * 打开应用
  4244. *
  4245. * @param {string} 类型
  4246. -----------------Disk 网盘系统
  4247. -----------------PDisk 学习系统网盘
  4248. -----------------Poto 图片
  4249. -----------------Video 视频
  4250. -----------------Music 音乐
  4251. -----------------Word word
  4252. -----------------Excel excel
  4253. -----------------Txt 记事本
  4254. -----------------PB 学习系统
  4255. -----------------Blog 朋友圈系统
  4256. -----------------FTP ftp系统
  4257. -----------------Group 好友群
  4258. -----------------SY 首页系统
  4259. -----------------Set 个人设置
  4260. -----------------XSet 系统设置
  4261. -----------------App 我们所有的app
  4262. -----------------BC c.1473.cn 平台
  4263. -----------------CWeb d.1473.cn 变成平台
  4264. -----------------其他的外联系统 我们统一用iframe打开
  4265. * @param {array} 类型
  4266. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4267. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4268. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4269. 如果第一个参数为其他,则无第二个参数
  4270. * @returns {array}
  4271. */
  4272. window.addEventListener('message', function (e) { // 监听 message 事件
  4273. // alert(e.data.type);
  4274. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4275. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4276. //3是展示全部阶段 2学生 1老师 4专家
  4277. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4278. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4279. //3是展示全部阶段 2学生 1老师 4专家
  4280. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4281. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4282. //3是展示全部阶段 2学生 1老师 4专家
  4283. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4284. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4285. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4286. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4287. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4288. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4289. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4290. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4291. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4292. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4293. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4294. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4295. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4296. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4297. //3是展示全部阶段 2学生 1老师 4专家
  4298. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4299. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4300. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4301. U.MD.D.I.selectUser();
  4302. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4303. var _formel = document.getElementById("study");
  4304. U.UF.F.windowZooming(_formel);
  4305. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4306. var _formel = document.getElementById("studyDetail");
  4307. U.UF.F.windowZooming(_formel);
  4308. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4309. var _formel = document.getElementById("studyDetail");
  4310. U.UF.F.windowZooming(_formel);
  4311. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4312. var _formel = document.getElementById("studentStudy");
  4313. U.UF.F.windowZooming(_formel);
  4314. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4315. // var _formel = document.getElementById("study");
  4316. //如果最大化了,那么就把他缩小
  4317. // if (_formel.ismaximize) {
  4318. // return;
  4319. // }
  4320. // U.UF.F.windowZooming(_formel);
  4321. // U.UF.F.topWindow(_formel);
  4322. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4323. // var _formel = document.getElementById("studyDetail");
  4324. //如果最大化了,那么就把他缩小
  4325. // if (_formel.ismaximize) {
  4326. // return;
  4327. // }
  4328. // U.UF.F.windowZooming(_formel);
  4329. // U.UF.F.topWindow(_formel);
  4330. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4331. // var _formel = document.getElementById("studentStudy");
  4332. // if (_formel.ismaximize) {
  4333. // return;
  4334. // }
  4335. // U.UF.F.windowZooming(_formel);
  4336. // U.UF.F.topWindow(_formel);
  4337. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4338. var _formel = document.getElementById("study");
  4339. // if (_formel.ismaximize) {
  4340. // return;
  4341. // }
  4342. // U.UF.F.windowZooming(_formel);
  4343. U.UF.F.topWindow(_formel);
  4344. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4345. var _formel = document.getElementById("studentIndex");
  4346. U.UF.F.windowZooming(_formel);
  4347. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4348. var _formel = document.getElementById("studyDetailS");
  4349. U.UF.F.windowZooming(_formel);
  4350. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4351. var _formel = document.getElementById("studioIndex");
  4352. U.UF.F.windowZooming(_formel);
  4353. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4354. var _formel = document.getElementById("studyDetailStudio");
  4355. U.UF.F.windowZooming(_formel);
  4356. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4357. var _formel = document.getElementById("studyDetailStudio");
  4358. U.UF.F.windowZooming(_formel);
  4359. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4360. var _formel = document.getElementById("studyDetailNT");
  4361. U.UF.F.windowZooming(_formel);
  4362. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4363. var _formel = document.getElementById("studyDetailS");
  4364. U.UF.F.windowZooming(_formel);
  4365. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4366. var _formel = document.getElementById("studyDetailS");
  4367. U.UF.F.topWindow(_formel);
  4368. } else if (e.data.tools && e.data.tools == "1") {
  4369. // U.MD.D.I.openApplication("whiteboard")
  4370. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4371. } else if (e.data.tools && e.data.tools == "2") {
  4372. U.MD.D.I.openApplication("note")
  4373. } else if (e.data.tools && e.data.tools == "3") {
  4374. // U.MD.D.I.openApplication("mind")
  4375. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4376. } else if (e.data.tools && e.data.tools == "4") {
  4377. U.MD.D.I.openApplication("investigation")
  4378. } else if (e.data.tools && e.data.tools == "6") {
  4379. // U.MD.D.I.openApplication("doc")
  4380. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4381. } else if (e.data.tools && e.data.tools == "7") {
  4382. // U.MD.D.I.openApplication("mindNetwork")
  4383. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4384. } else if (e.data.tools && e.data.tools == "8") {
  4385. U.MD.D.I.openApplication("library")
  4386. } else if (e.data.tools && e.data.tools == "17") {
  4387. U.MD.D.I.openApplication("stuLibrary")
  4388. } else if (e.data.tools && e.data.tools == "18") {
  4389. U.MD.D.I.openApplication("train")
  4390. } else if (e.data.tools && e.data.tools == "21") {
  4391. U.MD.D.I.openApplication("program")
  4392. } else if (e.data.tools && e.data.tools == "22") {
  4393. U.MD.D.I.openApplication("AIprogram2")
  4394. } else if (e.data.tools && e.data.tools == "23") {
  4395. U.MD.D.I.openApplication("Pythonprogram")
  4396. } else if (e.data.tools && e.data.tools == "24") {
  4397. U.MD.D.I.openApplication("AIprogram")
  4398. } else if (e.data.tools && e.data.tools == "25") {
  4399. U.MD.D.I.openApplication("sys")
  4400. } else if (e.data.tools && e.data.tools == "26") {
  4401. // U.MD.D.I.openApplication("courseDesign")
  4402. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4403. } else if (e.data.tools && e.data.tools == "31") {
  4404. U.MD.D.I.openApplication("netWorkPanel")
  4405. } else if (e.data.tools && e.data.tools == "32") {
  4406. U.MD.D.I.openApplication("codeEdit")
  4407. } else if (e.data.tools && e.data.tools == "57") {
  4408. U.MD.D.I.openApplication("CocoPi")
  4409. } else if (e.data.tools && e.data.tools == "63") {
  4410. U.MD.D.I.openApplication("Wood")
  4411. } else if (e.data.tools && e.data.tools == "58") {
  4412. U.MD.D.I.openApplication("car")
  4413. } else if (e.data.tools && e.data.tools == "59") {
  4414. U.MD.D.I.openApplication("lineSearch")
  4415. } else if (e.data.tools && e.data.tools == "60") {
  4416. U.MD.D.I.openApplication("deepLearning")
  4417. } else if (e.data.tools && e.data.tools == "61") {
  4418. U.MD.D.I.openApplication("allHistory")
  4419. } else if (e.data.tools && e.data.tools == "28") {
  4420. U.MD.D.I.openApplication("translation")
  4421. } else if (e.data.tools && e.data.tools == "37") {
  4422. U.MD.D.I.openApplication("mohe")
  4423. } else if (e.data.tools && e.data.tools == "38") {
  4424. U.MD.D.I.openApplication("24game")
  4425. } else if (e.data.tools && e.data.tools == "39") {
  4426. U.MD.D.I.openApplication("GeoGebra")
  4427. } else if (e.data.tools && e.data.tools == "43") {
  4428. U.MD.D.I.openApplication("studentEvaluate")
  4429. } else if (e.data.tools && e.data.tools == "44") {
  4430. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4431. } else if (e.data.tools && e.data.tools == "46") {
  4432. U.MD.D.I.openApplication("project")
  4433. } else if (e.data.tools && e.data.tools == "71") {
  4434. U.MD.D.I.openApplication("aigptCourse")
  4435. } else if (e.data.tools && e.data.tools == "1s") {
  4436. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4437. } else if (e.data.tools && e.data.tools == "3s") {
  4438. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4439. } else if (e.data.tools && e.data.tools == "6s") {
  4440. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4441. } else if (e.data.tools && e.data.tools == "1studio") {
  4442. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4443. } else if (e.data.tools && e.data.tools == "3studio") {
  4444. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4445. } else if (e.data.tools && e.data.tools == "6studio") {
  4446. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4447. } else if (e.data.tools && e.data.tools == "3y") {
  4448. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4449. } else if (e.data.tools && e.data.tools == "1y") {
  4450. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4451. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4452. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4453. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4454. U.MD.D.I.openApplication("AIAnalyse")
  4455. } else if (e.data.tools && e.data.tools == "1teacher") {
  4456. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4457. } else if (e.data.tools && e.data.tools == "3teacher") {
  4458. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4459. } else if (e.data.tools && e.data.tools == "7teacher") {
  4460. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4461. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4462. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4463. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4464. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4465. } else if (e.data.tools && e.data.tools == "1E") {
  4466. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4467. } else if (e.data.tools && e.data.tools == "3E") {
  4468. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4469. } else if (e.data.tools && e.data.tools == "57y") {
  4470. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4471. } else if (e.data.tools && e.data.tools == "57u") {
  4472. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4473. } else if (e.data.tools && e.data.tools == "57teacher") {
  4474. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4475. } else if (e.data.tools && e.data.tools == "64") {
  4476. U.MD.D.I.openApplication("AIChat")
  4477. } else if (e.data.tools && e.data.tools == "66") {
  4478. U.MD.D.I.openApplication("formulaEdi")
  4479. } else if (e.data.tools && e.data.tools == "67") {
  4480. U.MD.D.I.openApplication("molStr")
  4481. } else if (e.data.tools && e.data.tools == "68") {
  4482. U.MD.D.I.openApplication("timeAxis")
  4483. } else if (e.data.tools && e.data.tools == "openCourse") {
  4484. let _data = {
  4485. typea: e.data.typea || '',
  4486. typeb: e.data.typeb || '',
  4487. typed: e.data.typed || '',
  4488. }
  4489. U.MD.D.I.openInApplication("index", _data)
  4490. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4491. let _data = {
  4492. classid: e.data.classid || '',
  4493. }
  4494. U.MD.D.I.openInApplication("dataClass", _data)
  4495. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4496. let _data = {
  4497. cid: e.data.cid || '',
  4498. gid: e.data.gid || '',
  4499. }
  4500. U.MD.D.I.openInApplication("opencCscl", _data)
  4501. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4502. U.MD.D.I.openApplication("dataBoardTest")
  4503. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4504. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4505. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4506. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4507. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4508. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4509. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4510. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4511. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4512. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4513. }else if (e.data.tools && e.data.tools == "loginSz") {
  4514. U.MD.D.I.openInApplication("loginSz")
  4515. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4516. if($('#classroom_observation_board')[0]){
  4517. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4518. }
  4519. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4520. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4521. if($('#classroom_observation_ob_comment')[0]){
  4522. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4523. }
  4524. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4525. }
  4526. });
  4527. U.MD.D.I.selectUser = function () {
  4528. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4529. if (res.value[0].length > 0) {
  4530. US.userInfo = res.value[0][0];
  4531. $(".userName")[0].innerHTML = US.userInfo.username;
  4532. }
  4533. }, [], { "type": "GET", "withCredentials": true });
  4534. }
  4535. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4536. var _userinfo = US.userInfo, //登录用户信息
  4537. _userid = US.userInfo.userid, //登录用户id
  4538. _oid = _userinfo.organizeid,
  4539. _type = US.userInfo.type,
  4540. _org = US.userInfo.org,
  4541. _role = US.userInfo.role,
  4542. _classId = US.userInfo.classid;
  4543. if (_type == 4) {
  4544. tType = 4
  4545. }
  4546. switch (str) {
  4547. case "studyDetailNT": //无终端模式
  4548. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4549. setTimeout(() => {
  4550. U.MD.U.L.login();
  4551. }, 2000);
  4552. } else {
  4553. _formdiv = new U.UF.UI.form(
  4554. "课程详情",
  4555. $$("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 }), {
  4556. "id": "studyDetailNT",
  4557. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4558. "onresize": function () { }
  4559. }, {
  4560. closecallback: function () { }
  4561. }, { "style": { "height": "36px" } }).form; //创建窗体
  4562. _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); } }
  4563. break;
  4564. }
  4565. case "studyDetail":
  4566. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4567. setTimeout(() => {
  4568. U.MD.U.L.login();
  4569. }, 2000);
  4570. } else {
  4571. _formdiv = new U.UF.UI.form(
  4572. "课程详情",
  4573. $$("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 }), {
  4574. "id": "studyDetail",
  4575. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4576. "onresize": function () { }
  4577. }, {
  4578. closecallback: function () { }
  4579. }, { "style": { "height": "36px" } }).form; //创建窗体
  4580. _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); } }
  4581. break;
  4582. }
  4583. case "studyDetailTrain":
  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-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4592. "id": "studyDetailTrain",
  4593. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4594. "onresize": function () { }
  4595. }, {
  4596. closecallback: function () { }
  4597. }, { "style": { "height": "36px" } }).form; //创建窗体
  4598. _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); } }
  4599. break;
  4600. }
  4601. case "studyDetailS":
  4602. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4603. setTimeout(() => {
  4604. U.MD.U.L.login();
  4605. }, 2000);
  4606. } else {
  4607. _formdiv = new U.UF.UI.form(
  4608. "项目详情",
  4609. $$("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 }), {
  4610. "id": "studyDetailS",
  4611. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4612. "onresize": function () { }
  4613. }, {
  4614. closecallback: function () { }
  4615. }, { "style": { "height": "36px" } }).form; //创建窗体
  4616. _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); } }
  4617. break;
  4618. }
  4619. case "studyDetailStudio":
  4620. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4621. setTimeout(() => {
  4622. U.MD.U.L.login();
  4623. }, 2000);
  4624. } else {
  4625. _formdiv = new U.UF.UI.form(
  4626. "工作详情",
  4627. $$("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 }), {
  4628. "id": "studyDetailStudio",
  4629. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4630. "onresize": function () { }
  4631. }, {
  4632. closecallback: function () { }
  4633. }, { "style": { "height": "36px" } }).form; //创建窗体
  4634. _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); } }
  4635. break;
  4636. }
  4637. case "studyDetailS5":
  4638. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4639. setTimeout(() => {
  4640. U.MD.U.L.login();
  4641. }, 2000);
  4642. } else {
  4643. _formdiv = new U.UF.UI.form(
  4644. "项目详情",
  4645. $$("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 }), {
  4646. "id": "studyDetailS",
  4647. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4648. "onresize": function () { }
  4649. }, {
  4650. closecallback: function () { }
  4651. }, { "style": { "height": "36px" } }).form; //创建窗体
  4652. _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); } }
  4653. break;
  4654. }
  4655. case "studyDetailGM":
  4656. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4657. setTimeout(() => {
  4658. U.MD.U.L.login();
  4659. }, 2000);
  4660. } else {
  4661. _formdiv = new U.UF.UI.form(
  4662. "课程详情",
  4663. $$("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 }), {
  4664. "id": "studyDetail",
  4665. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4666. "onresize": function () { }
  4667. }, {
  4668. closecallback: function () { }
  4669. }, { "style": { "height": "36px" } }).form; //创建窗体
  4670. _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); } }
  4671. break;
  4672. }
  4673. case "hanUrl":
  4674. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4675. setTimeout(() => {
  4676. U.MD.U.L.login();
  4677. }, 2000);
  4678. } else {
  4679. _formdiv = new U.UF.UI.form(
  4680. "汉字宫",
  4681. $$("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" }), {
  4682. "id": "hanUrl",
  4683. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4684. "onresize": function () { }
  4685. }, {
  4686. closecallback: function () { }
  4687. }, { "style": { "height": "36px" } }).form; //创建窗体
  4688. _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); } }
  4689. break;
  4690. }
  4691. case "index":
  4692. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4693. setTimeout(() => {
  4694. U.MD.U.L.login();
  4695. }, 2000);
  4696. } else {
  4697. _formdiv = new U.UF.UI.form(
  4698. "课程中心",
  4699. $$("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 }), {
  4700. "id": "study",
  4701. "style": { "width": "100%", "height": "100%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4707. break;
  4708. }
  4709. case "dataClass":
  4710. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4711. setTimeout(() => {
  4712. U.MD.U.L.login();
  4713. }, 2000);
  4714. } else {
  4715. _formdiv = new U.UF.UI.form(
  4716. "数据报告",
  4717. $$("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 }), {
  4718. "id": "dataClass",
  4719. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4720. "onresize": function () { }
  4721. }, {
  4722. closecallback: function () { }
  4723. }, { "style": { "height": "36px" } }).form; //创建窗体
  4724. _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); } }
  4725. break;
  4726. }
  4727. case "opencCscl":
  4728. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4729. setTimeout(() => {
  4730. U.MD.U.L.login();
  4731. }, 2000);
  4732. } else {
  4733. _formdiv = new U.UF.UI.form(
  4734. "协同建构",
  4735. $$("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 }), {
  4736. "id": "futureClass",
  4737. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4738. "onresize": function () { }
  4739. }, {
  4740. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4741. }, { "style": { "height": "36px" } }).form; //创建窗体
  4742. _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); } }
  4743. break;
  4744. }
  4745. case "openCourseUpdate":
  4746. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4747. setTimeout(() => {
  4748. U.MD.U.L.login();
  4749. }, 2000);
  4750. } else {
  4751. _formdiv = new U.UF.UI.form(
  4752. "课程管理",
  4753. $$("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 }), {
  4754. "id": "openCourseUpdate",
  4755. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4756. "onresize": function () { }
  4757. }, {
  4758. closecallback: function () { }
  4759. }, { "style": { "height": "36px" } }).form; //创建窗体
  4760. break;
  4761. }
  4762. case "openNewCourseUpdate":
  4763. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4764. setTimeout(() => {
  4765. U.MD.U.L.login();
  4766. }, 2000);
  4767. } else {
  4768. _formdiv = new U.UF.UI.form(
  4769. "课程管理",
  4770. $$("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 }), {
  4771. "id": "openCourseUpdate",
  4772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4773. "onresize": function () { }
  4774. }, {
  4775. closecallback: function () { }
  4776. }, { "style": { "height": "36px" } }).form; //创建窗体
  4777. break;
  4778. }
  4779. case "openCourseEUpdate":
  4780. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4781. setTimeout(() => {
  4782. U.MD.U.L.login();
  4783. }, 2000);
  4784. } else {
  4785. _formdiv = new U.UF.UI.form(
  4786. "课程管理",
  4787. $$("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 }), {
  4788. "id": "openCourseUpdate",
  4789. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4790. "onresize": function () { }
  4791. }, {
  4792. closecallback: function () { }
  4793. }, { "style": { "height": "36px" } }).form; //创建窗体
  4794. break;
  4795. }
  4796. case "openCourseAiUpdate":
  4797. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4798. setTimeout(() => {
  4799. U.MD.U.L.login();
  4800. }, 2000);
  4801. } else {
  4802. _formdiv = new U.UF.UI.form(
  4803. "课程管理",
  4804. $$("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 }), {
  4805. "id": "openCourseUpdate",
  4806. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4807. "onresize": function () { }
  4808. }, {
  4809. closecallback: function () { }
  4810. }, { "style": { "height": "36px" } }).form; //创建窗体
  4811. break;
  4812. }
  4813. case "openCourseNewUpdate":
  4814. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4815. setTimeout(() => {
  4816. U.MD.U.L.login();
  4817. }, 2000);
  4818. } else {
  4819. _formdiv = new U.UF.UI.form(
  4820. "课程管理",
  4821. $$("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 }), {
  4822. "id": "openCourseUpdate",
  4823. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4824. "onresize": function () { }
  4825. }, {
  4826. closecallback: function () { }
  4827. }, { "style": { "height": "36px" } }).form; //创建窗体
  4828. break;
  4829. }
  4830. case "inviteLoginSz":
  4831. _formdiv = new U.UF.UI.form(
  4832. "随机码登录",
  4833. $$("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 }), {
  4834. "id": "loginSz",
  4835. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4836. "onresize": function () { }
  4837. }, {
  4838. closecallback: function () { }
  4839. }, { "style": { "height": "36px" } }).form; //创建窗体
  4840. break;
  4841. case "loginSz":
  4842. _formdiv = new U.UF.UI.form(
  4843. "教师登录",
  4844. $$("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" }), {
  4845. "id": "loginSz",
  4846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4847. "onresize": function () { }
  4848. }, {
  4849. closecallback: function () { }
  4850. }, { "style": { "height": "36px" } }).form; //创建窗体
  4851. break;
  4852. case "teacher":
  4853. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4854. setTimeout(() => {
  4855. U.MD.U.L.login();
  4856. }, 2000);
  4857. } else {
  4858. _formdiv = new U.UF.UI.form(
  4859. "教师管理",
  4860. $$("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 }), {
  4861. "id": "teacher",
  4862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4863. "onresize": function () { }
  4864. }, {
  4865. closecallback: function () { }
  4866. }, { "style": { "height": "36px" } }).form; //创建窗体
  4867. break;
  4868. }
  4869. case "dataBoardSZArea":
  4870. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4871. setTimeout(() => {
  4872. U.MD.U.L.login();
  4873. }, 2000);
  4874. } else {
  4875. _formdiv = new U.UF.UI.form(
  4876. "综合数据看板",
  4877. $$("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 }), {
  4878. "id": "dataBoardSZArea",
  4879. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4880. "onresize": function () { }
  4881. }, {
  4882. closecallback: function () { }
  4883. }, { "style": { "height": "36px" } }).form; //创建窗体
  4884. break;
  4885. }
  4886. case "dataBoardSZCity":
  4887. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4888. setTimeout(() => {
  4889. U.MD.U.L.login();
  4890. }, 2000);
  4891. } else {
  4892. _formdiv = new U.UF.UI.form(
  4893. "综合数据看板",
  4894. $$("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 }), {
  4895. "id": "dataBoardSZCity",
  4896. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4897. "onresize": function () { }
  4898. }, {
  4899. closecallback: function () { }
  4900. }, { "style": { "height": "36px" } }).form; //创建窗体
  4901. break;
  4902. }
  4903. case "classroom_observation_board":
  4904. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4905. setTimeout(() => {
  4906. U.MD.U.L.login();
  4907. }, 2000);
  4908. } else {
  4909. _formdiv = new U.UF.UI.form(
  4910. "课堂观察",
  4911. $$("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 }), {
  4912. "id": "classroom_observation_board",
  4913. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4914. "onresize": function () { }
  4915. }, {
  4916. closecallback: function () { }
  4917. }, { "style": { "height": "36px" } }).form; //创建窗体
  4918. break;
  4919. }
  4920. case "classroom_observation_ob_comment":
  4921. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4922. setTimeout(() => {
  4923. U.MD.U.L.login();
  4924. }, 2000);
  4925. } else {
  4926. _formdiv = new U.UF.UI.form(
  4927. "课堂审核",
  4928. $$("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 }), {
  4929. "id": "classroom_observation_ob_comment",
  4930. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4931. "onresize": function () { }
  4932. }, {
  4933. closecallback: function () { }
  4934. }, { "style": { "height": "36px" } }).form; //创建窗体
  4935. break;
  4936. }
  4937. }
  4938. }
  4939. U.MD.D.I.openApplication = function (str, obj, info) {
  4940. obj = obj || {};
  4941. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4942. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4943. _userinfo = US.userInfo, //登录用户信息
  4944. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4945. _oid = obj.organizeid || _userinfo.organizeid,
  4946. _type = US.userInfo.type,
  4947. _org = US.userInfo.org,
  4948. _role = US.userInfo.role,
  4949. _classId = US.userInfo.classid,
  4950. _TscreenType = 1
  4951. _screenType = 2,
  4952. _SscreenType = 3;
  4953. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4954. return;
  4955. }
  4956. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4957. switch (str) {
  4958. case "studnetProject": //好友打开
  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 + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  4962. "id": "studnetProject",
  4963. "style": { "width": "70%", "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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4969. break;
  4970. case "studentEvaluate": //好友打开
  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": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4974. "id": "studentEvaluate",
  4975. "style": { "width": "70%", "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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4981. break;
  4982. case "my":
  4983. _formdiv = new U.UF.UI.form(
  4984. "我的资料",
  4985. $$("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 }), {
  4986. "id": "my",
  4987. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4988. "onresize": function () { }
  4989. }, {
  4990. closecallback: function () { }
  4991. }, { "style": { "height": "36px" } }).form; //创建窗体
  4992. _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); } }
  4993. break;
  4994. case "program":
  4995. _formdiv = new U.UF.UI.form(
  4996. "编程平台",
  4997. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4998. "id": "program",
  4999. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5000. "onresize": function () { }
  5001. }, {
  5002. closecallback: function () { }
  5003. }, { "style": { "height": "36px" } }).form; //创建窗体
  5004. _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); } }
  5005. break;
  5006. case "library":
  5007. _formdiv = new U.UF.UI.form(
  5008. "素材库",
  5009. $$("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 }), {
  5010. "id": "library",
  5011. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5012. "onresize": function () { }
  5013. }, {
  5014. closecallback: function () { }
  5015. }, { "style": { "height": "36px" } }).form; //创建窗体
  5016. _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); } }
  5017. break;
  5018. case "whiteboard":
  5019. _formdiv = new U.UF.UI.form(
  5020. "电子白板",
  5021. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5022. "id": "whiteboard",
  5023. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5024. "onresize": function () { }
  5025. }, {
  5026. closecallback: function () { }
  5027. }, { "style": { "height": "36px" } }).form; //创建窗体
  5028. _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); } }
  5029. break;
  5030. case "investigation":
  5031. _formdiv = new U.UF.UI.form(
  5032. "问卷调查",
  5033. $$("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 }), {
  5034. "id": "investigation",
  5035. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5036. "onresize": function () { }
  5037. }, {
  5038. closecallback: function () { }
  5039. }, { "style": { "height": "36px" } }).form; //创建窗体
  5040. _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); } }
  5041. break;
  5042. case "note":
  5043. _formdiv = new U.UF.UI.form(
  5044. "便签分类",
  5045. $$("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 }), {
  5046. "id": "note",
  5047. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5048. "onresize": function () { }
  5049. }, {
  5050. closecallback: function () { }
  5051. }, { "style": { "height": "36px" } }).form; //创建窗体
  5052. _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); } }
  5053. break;
  5054. // case "score":
  5055. // _formdiv = new U.UF.UI.form(
  5056. // "量规评分",
  5057. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5058. // "id": "score",
  5059. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5060. // "onresize": function() {}
  5061. // }, {
  5062. // closecallback: function() {}
  5063. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5064. // _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); } }
  5065. // break;
  5066. case "mind":
  5067. _formdiv = new U.UF.UI.form(
  5068. "思维导图",
  5069. $$("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"
  5070. "id": "mind",
  5071. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5072. "onresize": function () { }
  5073. }, {
  5074. closecallback: function () { }
  5075. }, { "style": { "height": "36px" } }).form; //创建窗体
  5076. _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); } }
  5077. break;
  5078. case "doc":
  5079. // U.MD.D.I.isRoom();
  5080. _formdiv = new U.UF.UI.form(
  5081. "协同文档",
  5082. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5083. "id": "doc",
  5084. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5085. "onresize": function () { }
  5086. }, {
  5087. closecallback: function () { }
  5088. }, { "style": { "height": "36px" } }).form; //创建窗体
  5089. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5090. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5091. // })
  5092. _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); } }
  5093. break;
  5094. case "studentStudy":
  5095. _formdiv = new U.UF.UI.form(
  5096. "课程中心",
  5097. $$("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
  5098. "id": "studentStudy",
  5099. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5100. "onresize": function () { }
  5101. }, {
  5102. closecallback: function () { }
  5103. }, { "style": { "height": "36px" } }).form; //创建窗体
  5104. _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); } }
  5105. break;
  5106. case "train": //好友打开
  5107. _formdiv = new U.UF.UI.form(
  5108. "训练平台",
  5109. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5110. "id": "train",
  5111. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5112. "onresize": function () { }
  5113. }, {
  5114. closecallback: function () { }
  5115. }, { "style": { "height": "36px" } }).form; //创建窗体
  5116. _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); } }
  5117. break;
  5118. case "mindNetwork": //好友打开
  5119. _formdiv = new U.UF.UI.form(
  5120. "思维网格",
  5121. $$("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 }), {
  5122. "id": "mindNetwork",
  5123. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5124. "onresize": function () { }
  5125. }, {
  5126. closecallback: function () { }
  5127. }, { "style": { "height": "36px" } }).form; //创建窗体
  5128. _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); } }
  5129. break;
  5130. case "studentClassRoom": //好友打开
  5131. _formdiv = new U.UF.UI.form(
  5132. "实时课堂",
  5133. $$("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 }), {
  5134. "id": "studentClassRoom",
  5135. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5136. "onresize": function () { }
  5137. }, {
  5138. closecallback: function () { }
  5139. }, { "style": { "height": "36px" } }).form; //创建窗体
  5140. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5141. setTimeout(() => {
  5142. U.UF.F.windowZooming(_formdiv)
  5143. }, 0);
  5144. break;
  5145. }
  5146. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5147. switch (str) {
  5148. case "studnetProject": //好友打开
  5149. _formdiv = new U.UF.UI.form(
  5150. "我的项目",
  5151. $$("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 }), {
  5152. "id": "studnetProject",
  5153. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5154. "onresize": function () { }
  5155. }, {
  5156. closecallback: function () { }
  5157. }, { "style": { "height": "36px" } }).form; //创建窗体
  5158. _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); } }
  5159. break;
  5160. case "studentEvaluate": //好友打开
  5161. _formdiv = new U.UF.UI.form(
  5162. "我的评价",
  5163. $$("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 }), {
  5164. "id": "studentEvaluate",
  5165. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5166. "onresize": function () { }
  5167. }, {
  5168. closecallback: function () { }
  5169. }, { "style": { "height": "36px" } }).form; //创建窗体
  5170. _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); } }
  5171. break;
  5172. case "my":
  5173. _formdiv = new U.UF.UI.form(
  5174. "我的资料",
  5175. $$("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 }), {
  5176. "id": "my",
  5177. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5178. "onresize": function () { }
  5179. }, {
  5180. closecallback: function () { }
  5181. }, { "style": { "height": "36px" } }).form; //创建窗体
  5182. _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); } }
  5183. break;
  5184. case "program":
  5185. _formdiv = new U.UF.UI.form(
  5186. "编程平台",
  5187. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5188. "id": "program",
  5189. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5190. "onresize": function () { }
  5191. }, {
  5192. closecallback: function () { }
  5193. }, { "style": { "height": "36px" } }).form; //创建窗体
  5194. _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); } }
  5195. break;
  5196. case "library":
  5197. _formdiv = new U.UF.UI.form(
  5198. "素材库",
  5199. $$("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 }), {
  5200. "id": "library",
  5201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5202. "onresize": function () { }
  5203. }, {
  5204. closecallback: function () { }
  5205. }, { "style": { "height": "36px" } }).form; //创建窗体
  5206. _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); } }
  5207. break;
  5208. case "whiteboard":
  5209. _formdiv = new U.UF.UI.form(
  5210. "电子白板",
  5211. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5212. "id": "whiteboard",
  5213. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5214. "onresize": function () { }
  5215. }, {
  5216. closecallback: function () { }
  5217. }, { "style": { "height": "36px" } }).form; //创建窗体
  5218. _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); } }
  5219. break;
  5220. case "investigation":
  5221. _formdiv = new U.UF.UI.form(
  5222. "问卷调查",
  5223. $$("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 }), {
  5224. "id": "investigation",
  5225. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5226. "onresize": function () { }
  5227. }, {
  5228. closecallback: function () { }
  5229. }, { "style": { "height": "36px" } }).form; //创建窗体
  5230. _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); } }
  5231. break;
  5232. case "note":
  5233. _formdiv = new U.UF.UI.form(
  5234. "便签分类",
  5235. $$("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 }), {
  5236. "id": "note",
  5237. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5238. "onresize": function () { }
  5239. }, {
  5240. closecallback: function () { }
  5241. }, { "style": { "height": "36px" } }).form; //创建窗体
  5242. _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); } }
  5243. break;
  5244. // case "score":
  5245. // _formdiv = new U.UF.UI.form(
  5246. // "量规评分",
  5247. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5248. // "id": "score",
  5249. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5250. // "onresize": function() {}
  5251. // }, {
  5252. // closecallback: function() {}
  5253. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5254. // _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); } }
  5255. // break;
  5256. case "mind":
  5257. _formdiv = new U.UF.UI.form(
  5258. "思维导图",
  5259. $$("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"
  5260. "id": "mind",
  5261. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5262. "onresize": function () { }
  5263. }, {
  5264. closecallback: function () { }
  5265. }, { "style": { "height": "36px" } }).form; //创建窗体
  5266. _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); } }
  5267. break;
  5268. case "doc":
  5269. // U.MD.D.I.isRoom();
  5270. _formdiv = new U.UF.UI.form(
  5271. "协同文档",
  5272. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5273. "id": "doc",
  5274. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5275. "onresize": function () { }
  5276. }, {
  5277. closecallback: function () { }
  5278. }, { "style": { "height": "36px" } }).form; //创建窗体
  5279. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5280. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5281. })
  5282. _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); } }
  5283. break;
  5284. case "train": //好友打开
  5285. _formdiv = new U.UF.UI.form(
  5286. "训练平台",
  5287. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5288. "id": "train",
  5289. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5290. "onresize": function () { }
  5291. }, {
  5292. closecallback: function () { }
  5293. }, { "style": { "height": "36px" } }).form; //创建窗体
  5294. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5295. break;
  5296. case "studentStudy":
  5297. _formdiv = new U.UF.UI.form(
  5298. "课程中心",
  5299. $$("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
  5300. "id": "studentStudy",
  5301. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5302. "onresize": function () { }
  5303. }, {
  5304. closecallback: function () { }
  5305. }, { "style": { "height": "36px" } }).form; //创建窗体
  5306. _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); } }
  5307. break;
  5308. case "mindNetwork": //好友打开
  5309. _formdiv = new U.UF.UI.form(
  5310. "思维网格",
  5311. $$("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 }), {
  5312. "id": "mindNetwork",
  5313. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5314. "onresize": function () { }
  5315. }, {
  5316. closecallback: function () { }
  5317. }, { "style": { "height": "36px" } }).form; //创建窗体
  5318. _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); } }
  5319. break;
  5320. case "studentClassRoom": //好友打开
  5321. _formdiv = new U.UF.UI.form(
  5322. "实时课堂",
  5323. $$("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 }), {
  5324. "id": "studentClassRoom",
  5325. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5326. "onresize": function () { }
  5327. }, {
  5328. closecallback: function () { }
  5329. }, { "style": { "height": "36px" } }).form; //创建窗体
  5330. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5331. setTimeout(() => {
  5332. U.UF.F.windowZooming(_formdiv)
  5333. }, 0);
  5334. break;
  5335. }
  5336. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5337. //选择应用处理
  5338. switch (str) {
  5339. case "project": //好友打开
  5340. _formdiv = new U.UF.UI.form(
  5341. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5342. $$("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 }), {
  5343. "id": "project",
  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/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5350. break;
  5351. case "student":
  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/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  5355. "id": "student",
  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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5362. break;
  5363. case "evaluate":
  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/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5367. "id": "evaluate",
  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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5374. break;
  5375. case "sys":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5379. "id": "sys",
  5380. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5386. break;
  5387. case "courseDesign":
  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": "/course-design-vue" }), {
  5391. "id": "courseDesign",
  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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5398. break;
  5399. case "program":
  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": "https://x.cocorobo.cn" }), {
  5403. "id": "program",
  5404. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5410. break;
  5411. case "class":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5415. "id": "class",
  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/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5422. break;
  5423. case "Grade":
  5424. _formdiv = new U.UF.UI.form(
  5425. "年级管理",
  5426. $$("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 }), {
  5427. "id": "Grade",
  5428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5429. "onresize": function () { }
  5430. }, {
  5431. closecallback: function () { }
  5432. }, { "style": { "height": "36px" } }).form; //创建窗体
  5433. _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); } }
  5434. break;
  5435. case "teacherOffice":
  5436. _formdiv = new U.UF.UI.form(
  5437. "教研室",
  5438. $$("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 }), {
  5439. "id": "teacherOffice",
  5440. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5441. "onresize": function () { }
  5442. }, {
  5443. closecallback: function () { }
  5444. }, { "style": { "height": "36px" } }).form; //创建窗体
  5445. _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); } }
  5446. break;
  5447. case "my":
  5448. _formdiv = new U.UF.UI.form(
  5449. "我的资料",
  5450. $$("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 }), {
  5451. "id": "my",
  5452. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5453. "onresize": function () { }
  5454. }, {
  5455. closecallback: function () { }
  5456. }, { "style": { "height": "36px" } }).form; //创建窗体
  5457. _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); } }
  5458. break;
  5459. case "notice":
  5460. _formdiv = new U.UF.UI.form(
  5461. "通知公告",
  5462. $$("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 }), {
  5463. "id": "notice",
  5464. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5465. "onresize": function () { }
  5466. }, {
  5467. closecallback: function () { }
  5468. }, { "style": { "height": "36px" } }).form; //创建窗体
  5469. _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); } }
  5470. break;
  5471. case "library":
  5472. _formdiv = new U.UF.UI.form(
  5473. "素材库",
  5474. $$("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 }), {
  5475. "id": "library",
  5476. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5477. "onresize": function () { }
  5478. }, {
  5479. closecallback: function () { }
  5480. }, { "style": { "height": "36px" } }).form; //创建窗体
  5481. _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); } }
  5482. break;
  5483. case "whiteboard":
  5484. _formdiv = new U.UF.UI.form(
  5485. "电子白板",
  5486. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5487. "id": "whiteboard",
  5488. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5489. "onresize": function () { }
  5490. }, {
  5491. closecallback: function () { }
  5492. }, { "style": { "height": "36px" } }).form; //创建窗体
  5493. _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); } }
  5494. break;
  5495. case "investigation":
  5496. _formdiv = new U.UF.UI.form(
  5497. "问卷调查",
  5498. $$("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 }), {
  5499. "id": "investigation",
  5500. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5501. "onresize": function () { }
  5502. }, {
  5503. closecallback: function () { }
  5504. }, { "style": { "height": "36px" } }).form; //创建窗体
  5505. _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); } }
  5506. break;
  5507. case "note":
  5508. _formdiv = new U.UF.UI.form(
  5509. "便签分类",
  5510. $$("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 }), {
  5511. "id": "note",
  5512. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5513. "onresize": function () { }
  5514. }, {
  5515. closecallback: function () { }
  5516. }, { "style": { "height": "36px" } }).form; //创建窗体
  5517. _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); } }
  5518. break;
  5519. // case "score":
  5520. // _formdiv = new U.UF.UI.form(
  5521. // "量规评分",
  5522. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5523. // "id": "score",
  5524. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5525. // "onresize": function() {}
  5526. // }, {
  5527. // closecallback: function() {}
  5528. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5529. // _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); } }
  5530. // break;
  5531. case "mind":
  5532. _formdiv = new U.UF.UI.form(
  5533. "思维导图",
  5534. $$("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"
  5535. "id": "mind",
  5536. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5537. "onresize": function () { }
  5538. }, {
  5539. closecallback: function () { }
  5540. }, { "style": { "height": "36px" } }).form; //创建窗体
  5541. _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); } }
  5542. break;
  5543. case "doc":
  5544. // U.MD.D.I.isRoom();
  5545. _formdiv = new U.UF.UI.form(
  5546. "协同文档",
  5547. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5548. "id": "doc",
  5549. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5550. "onresize": function () { }
  5551. }, {
  5552. closecallback: function () { }
  5553. }, { "style": { "height": "36px" } }).form; //创建窗体
  5554. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5555. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5556. })
  5557. _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); } }
  5558. break;
  5559. case "study":
  5560. _formdiv = new U.UF.UI.form(
  5561. "课程中心",
  5562. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": 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
  5563. "id": "study",
  5564. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5565. "onresize": function () { }
  5566. }, {
  5567. closecallback: function () { }
  5568. }, { "style": { "height": "36px" } }).form; //创建窗体
  5569. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5570. break;
  5571. case "mindNetwork": //好友打开
  5572. _formdiv = new U.UF.UI.form(
  5573. "思维网格",
  5574. $$("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 }), {
  5575. "id": "mindNetwork",
  5576. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5577. "onresize": function () { }
  5578. }, {
  5579. closecallback: function () { }
  5580. }, { "style": { "height": "36px" } }).form; //创建窗体
  5581. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5582. break;
  5583. case "train": //好友打开
  5584. _formdiv = new U.UF.UI.form(
  5585. "训练平台",
  5586. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5587. "id": "mindNetwork",
  5588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5589. "onresize": function () { }
  5590. }, {
  5591. closecallback: function () { }
  5592. }, { "style": { "height": "36px" } }).form; //创建窗体
  5593. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5594. break;
  5595. case "teacherClassRoom": //好友打开
  5596. _formdiv = new U.UF.UI.form(
  5597. "实时课堂",
  5598. $$("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 }), {
  5599. "id": "teacherClassRoom",
  5600. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5601. "onresize": function () { }
  5602. }, {
  5603. closecallback: function () { }
  5604. }, { "style": { "height": "36px" } }).form; //创建窗体
  5605. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5606. setTimeout(() => {
  5607. U.UF.F.windowZooming(_formdiv)
  5608. }, 0);
  5609. break;
  5610. }
  5611. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5612. switch (str) {
  5613. case "project": //好友打开
  5614. _formdiv = new U.UF.UI.form(
  5615. "课程管理",
  5616. $$("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 }), {
  5617. "id": "project",
  5618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //创建窗体
  5623. _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); } }
  5624. break;
  5625. case "evaluate":
  5626. _formdiv = new U.UF.UI.form(
  5627. "学生评价",
  5628. $$("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 }), {
  5629. "id": "evaluate",
  5630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //创建窗体
  5635. _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); } }
  5636. break;
  5637. case "notice":
  5638. _formdiv = new U.UF.UI.form(
  5639. "通知公告",
  5640. $$("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 }), {
  5641. "id": "notice",
  5642. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5643. "onresize": function () { }
  5644. }, {
  5645. closecallback: function () { }
  5646. }, { "style": { "height": "36px" } }).form; //创建窗体
  5647. _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); } }
  5648. break;
  5649. case "stuLibrary":
  5650. _formdiv = new U.UF.UI.form(
  5651. "学习资料",
  5652. $$("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 }), {
  5653. "id": "stuLibrary",
  5654. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5655. "onresize": function () { }
  5656. }, {
  5657. closecallback: function () { }
  5658. }, { "style": { "height": "36px" } }).form; //创建窗体
  5659. _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); } }
  5660. break;
  5661. case "program":
  5662. _formdiv = new U.UF.UI.form(
  5663. "编程平台",
  5664. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5665. "id": "program",
  5666. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //创建窗体
  5671. _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); } }
  5672. break;
  5673. case "whiteboard":
  5674. _formdiv = new U.UF.UI.form(
  5675. "电子白板",
  5676. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5677. "id": "whiteboard",
  5678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //创建窗体
  5683. _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); } }
  5684. break;
  5685. case "investigation":
  5686. _formdiv = new U.UF.UI.form(
  5687. "问卷调查",
  5688. $$("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 }), {
  5689. "id": "investigation",
  5690. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5691. "onresize": function () { }
  5692. }, {
  5693. closecallback: function () { }
  5694. }, { "style": { "height": "36px" } }).form; //创建窗体
  5695. _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); } }
  5696. break;
  5697. case "mind":
  5698. _formdiv = new U.UF.UI.form(
  5699. "思维导图",
  5700. $$("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"
  5701. "id": "mind",
  5702. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. _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); } }
  5708. break;
  5709. case "doc":
  5710. // U.MD.D.I.isRoom();
  5711. _formdiv = new U.UF.UI.form(
  5712. "协同文档",
  5713. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5714. "id": "doc",
  5715. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5716. "onresize": function () { }
  5717. }, {
  5718. closecallback: function () { }
  5719. }, { "style": { "height": "36px" } }).form; //创建窗体
  5720. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5721. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5722. })
  5723. _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); } }
  5724. break;
  5725. case "study":
  5726. _formdiv = new U.UF.UI.form(
  5727. "课程中心",
  5728. $$("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
  5729. "id": "study",
  5730. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5731. "onresize": function () { }
  5732. }, {
  5733. closecallback: function () { }
  5734. }, { "style": { "height": "36px" } }).form; //创建窗体
  5735. _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); } }
  5736. break;
  5737. case "mindNetwork": //好友打开
  5738. _formdiv = new U.UF.UI.form(
  5739. "思维网格",
  5740. $$("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 }), {
  5741. "id": "mindNetwork",
  5742. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5743. "onresize": function () { }
  5744. }, {
  5745. closecallback: function () { }
  5746. }, { "style": { "height": "36px" } }).form; //创建窗体
  5747. _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); } }
  5748. break;
  5749. case "train": //好友打开
  5750. _formdiv = new U.UF.UI.form(
  5751. "训练平台",
  5752. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5753. "id": "train",
  5754. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5755. "onresize": function () { }
  5756. }, {
  5757. closecallback: function () { }
  5758. }, { "style": { "height": "36px" } }).form; //创建窗体
  5759. _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); } }
  5760. break;
  5761. case "sys":
  5762. _formdiv = new U.UF.UI.form(
  5763. "目标管理",
  5764. $$("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 }), {
  5765. "id": "sys",
  5766. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5767. "onresize": function () { }
  5768. }, {
  5769. closecallback: function () { }
  5770. }, { "style": { "height": "36px" } }).form; //创建窗体
  5771. _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); } }
  5772. break;
  5773. case "courseDesign":
  5774. _formdiv = new U.UF.UI.form(
  5775. "项目设计",
  5776. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5777. "id": "courseDesign",
  5778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5779. "onresize": function () { }
  5780. }, {
  5781. closecallback: function () { }
  5782. }, { "style": { "height": "36px" } }).form; //创建窗体
  5783. _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); } }
  5784. break;
  5785. }
  5786. } else if (!_type) {
  5787. switch (str) {
  5788. case "my":
  5789. _formdiv = new U.UF.UI.form(
  5790. "我的资料",
  5791. $$("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 }), {
  5792. "id": "my",
  5793. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5794. "onresize": function () { }
  5795. }, {
  5796. closecallback: function () { }
  5797. }, { "style": { "height": "36px" } }).form; //创建窗体
  5798. _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); } }
  5799. break;
  5800. }
  5801. }
  5802. switch (str) {
  5803. // AIprogram2 AI体验 aihub.cocorobo.cn
  5804. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5805. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5806. case "formulaEdi": //公式编辑
  5807. _formdiv = new U.UF.UI.form(
  5808. "公式编辑",
  5809. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5810. "id": "formulaEdi",
  5811. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5812. "onresize": function () { }
  5813. }, {
  5814. closecallback: function () { }
  5815. }, { "style": { "height": "36px" } }).form; //创建窗体
  5816. _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); } }
  5817. break;
  5818. case "molStr": //分子结构
  5819. _formdiv = new U.UF.UI.form(
  5820. "分子结构",
  5821. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5822. "id": "molStr",
  5823. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5824. "onresize": function () { }
  5825. }, {
  5826. closecallback: function () { }
  5827. }, { "style": { "height": "36px" } }).form; //创建窗体
  5828. _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); } }
  5829. break;
  5830. case "timeAxis": //时间轴
  5831. _formdiv = new U.UF.UI.form(
  5832. "时间轴",
  5833. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5834. "id": "timeAxis",
  5835. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5836. "onresize": function () { }
  5837. }, {
  5838. closecallback: function () { }
  5839. }, { "style": { "height": "36px" } }).form; //创建窗体
  5840. _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); } }
  5841. break;
  5842. case "AIprogram2": //AI体验
  5843. _formdiv = new U.UF.UI.form(
  5844. "AI体验",
  5845. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5846. "id": "AIprogram2",
  5847. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5848. "onresize": function () { }
  5849. }, {
  5850. closecallback: function () { }
  5851. }, { "style": { "height": "36px" } }).form; //创建窗体
  5852. _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); } }
  5853. break;
  5854. case "Pythonprogram": //python编程
  5855. _formdiv = new U.UF.UI.form(
  5856. "Python编程",
  5857. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5858. "id": "Pythonprogram",
  5859. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5860. "onresize": function () { }
  5861. }, {
  5862. closecallback: function () { }
  5863. }, { "style": { "height": "36px" } }).form; //创建窗体
  5864. _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); } }
  5865. break;
  5866. case "AIprogram": //ai编程
  5867. _formdiv = new U.UF.UI.form(
  5868. "AI编程平台",
  5869. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5870. "id": "AIprogram",
  5871. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5872. "onresize": function () { }
  5873. }, {
  5874. closecallback: function () { }
  5875. }, { "style": { "height": "36px" } }).form; //创建窗体
  5876. _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); } }
  5877. break;
  5878. case "CocoPi": //CocoPi
  5879. _formdiv = new U.UF.UI.form(
  5880. "CocoPi",
  5881. $$("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" }), {
  5882. "id": "CocoPi",
  5883. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5884. "onresize": function () { }
  5885. }, {
  5886. closecallback: function () { }
  5887. }, { "style": { "height": "36px" } }).form; //创建窗体
  5888. _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); } }
  5889. break;
  5890. case "Wood": //Wood
  5891. _formdiv = new U.UF.UI.form(
  5892. "海龟编程",
  5893. $$("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/" }), {
  5894. "id": "Wood",
  5895. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5896. "onresize": function () { }
  5897. }, {
  5898. closecallback: function () { }
  5899. }, { "style": { "height": "36px" } }).form; //创建窗体
  5900. _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); } }
  5901. break;
  5902. case "car": //模拟驾驶
  5903. _formdiv = new U.UF.UI.form(
  5904. "模拟驾驶",
  5905. $$("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/" }), {
  5906. "id": "car",
  5907. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5908. "onresize": function () { }
  5909. }, {
  5910. closecallback: function () { }
  5911. }, { "style": { "height": "36px" } }).form; //创建窗体
  5912. _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); } }
  5913. break;
  5914. case "lineSearch": //路径搜索
  5915. _formdiv = new U.UF.UI.form(
  5916. "路径搜索",
  5917. $$("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/" }), {
  5918. "id": "lineSearch",
  5919. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5920. "onresize": function () { }
  5921. }, {
  5922. closecallback: function () { }
  5923. }, { "style": { "height": "36px" } }).form; //创建窗体
  5924. _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); } }
  5925. break;
  5926. case "deepLearning": //深度学习
  5927. _formdiv = new U.UF.UI.form(
  5928. "深度学习",
  5929. $$("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/#" }), {
  5930. "id": "deepLearning",
  5931. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5932. "onresize": function () { }
  5933. }, {
  5934. closecallback: function () { }
  5935. }, { "style": { "height": "36px" } }).form; //创建窗体
  5936. _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); } }
  5937. break;
  5938. case "allHistory": //深度学习
  5939. _formdiv = new U.UF.UI.form(
  5940. "全历史",
  5941. $$("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/" }), {
  5942. "id": "allHistory",
  5943. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5944. "onresize": function () { }
  5945. }, {
  5946. closecallback: function () { }
  5947. }, { "style": { "height": "36px" } }).form; //创建窗体
  5948. _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); } }
  5949. break;
  5950. case "chatPDF": //ai编程
  5951. _formdiv = new U.UF.UI.form(
  5952. "chatPDF",
  5953. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5954. "id": "chatPDF",
  5955. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5956. "onresize": function () { }
  5957. }, {
  5958. closecallback: function () { }
  5959. }, { "style": { "height": "36px" } }).form; //创建窗体
  5960. _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); } }
  5961. break;
  5962. case "resources": //国家教育
  5963. _formdiv = new U.UF.UI.form(
  5964. "国家教育",
  5965. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5966. "id": "resources",
  5967. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5968. "onresize": function () { }
  5969. }, {
  5970. closecallback: function () { }
  5971. }, { "style": { "height": "36px" } }).form; //创建窗体
  5972. _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); } }
  5973. break;
  5974. case "codeEdit": //源码编辑
  5975. _formdiv = new U.UF.UI.form(
  5976. "源码编辑",
  5977. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5978. "id": "codeEdit",
  5979. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5980. "onresize": function () { }
  5981. }, {
  5982. closecallback: function () { }
  5983. }, { "style": { "height": "36px" } }).form; //创建窗体
  5984. _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); } }
  5985. break; //
  5986. case "MindMap": //MindMap
  5987. _formdiv = new U.UF.UI.form(
  5988. "MindMap",
  5989. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5990. "id": "MindMap",
  5991. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5992. "onresize": function () { }
  5993. }, {
  5994. closecallback: function () { }
  5995. }, { "style": { "height": "36px" } }).form; //创建窗体
  5996. _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); } }
  5997. break;
  5998. case "netWorkPanel": //netWorkPanel
  5999. _formdiv = new U.UF.UI.form(
  6000. "netWorkPanel",
  6001. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6002. "id": "netWorkPanel",
  6003. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6004. "onresize": function () { }
  6005. }, {
  6006. closecallback: function () { }
  6007. }, { "style": { "height": "36px" } }).form; //创建窗体
  6008. _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); } }
  6009. break;
  6010. case "GeoGebra": //GeoGebra
  6011. _formdiv = new U.UF.UI.form(
  6012. "GeoGebra",
  6013. $$("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" }), {
  6014. "id": "GeoGebra",
  6015. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6016. "onresize": function () { }
  6017. }, {
  6018. closecallback: function () { }
  6019. }, { "style": { "height": "36px" } }).form; //创建窗体
  6020. _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); } }
  6021. break;
  6022. case "translation": //翻译
  6023. _formdiv = new U.UF.UI.form(
  6024. "翻译",
  6025. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6026. "id": "translation",
  6027. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6028. "onresize": function () { }
  6029. }, {
  6030. closecallback: function () { }
  6031. }, { "style": { "height": "36px" } }).form; //创建窗体
  6032. _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); } }
  6033. break;
  6034. case "mohe": //魔盒
  6035. _formdiv = new U.UF.UI.form(
  6036. "魔盒识字",
  6037. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6038. "id": "mohe",
  6039. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6040. "onresize": function () { }
  6041. }, {
  6042. closecallback: function () { }
  6043. }, { "style": { "height": "36px" } }).form; //创建窗体
  6044. _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); } }
  6045. break;
  6046. case "24game": //24点
  6047. _formdiv = new U.UF.UI.form(
  6048. "24点",
  6049. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6050. "id": "24game",
  6051. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6052. "onresize": function () { }
  6053. }, {
  6054. closecallback: function () { }
  6055. }, { "style": { "height": "36px" } }).form; //创建窗体
  6056. _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); } }
  6057. break;
  6058. case "case":
  6059. _formdiv = new U.UF.UI.form(
  6060. "课程进展",
  6061. $$("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 }), {
  6062. "id": "case",
  6063. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6064. "onresize": function () { }
  6065. }, {
  6066. closecallback: function () { }
  6067. }, { "style": { "height": "36px" } }).form; //创建窗体
  6068. _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); } }
  6069. break;
  6070. case "snf":
  6071. _formdiv = new U.UF.UI.form(
  6072. "赛诺梵",
  6073. $$("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" }), {
  6074. "id": "snf",
  6075. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6076. "onresize": function () { }
  6077. }, {
  6078. closecallback: function () { }
  6079. }, { "style": { "height": "36px" } }).form; //创建窗体
  6080. _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); } }
  6081. break;
  6082. case "hanFamily":
  6083. _formdiv = new U.UF.UI.form(
  6084. "汉字家族",
  6085. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6086. "id": "hanFamily",
  6087. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6088. "onresize": function () { }
  6089. }, {
  6090. closecallback: function () { }
  6091. }, { "style": { "height": "36px" } }).form; //创建窗体
  6092. _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); } }
  6093. break;
  6094. case "hanClassics":
  6095. _formdiv = new U.UF.UI.form(
  6096. "国学经典",
  6097. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6098. "id": "hanClassics",
  6099. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6100. "onresize": function () { }
  6101. }, {
  6102. closecallback: function () { }
  6103. }, { "style": { "height": "36px" } }).form; //创建窗体
  6104. _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); } }
  6105. break;
  6106. case "hanTraining":
  6107. _formdiv = new U.UF.UI.form(
  6108. "笔画训练",
  6109. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6110. "id": "hanTraining",
  6111. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6112. "onresize": function () { }
  6113. }, {
  6114. closecallback: function () { }
  6115. }, { "style": { "height": "36px" } }).form; //创建窗体
  6116. _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); } }
  6117. break;
  6118. case "hanClass":
  6119. _formdiv = new U.UF.UI.form(
  6120. "书法课堂",
  6121. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6122. "id": "hanClass",
  6123. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6124. "onresize": function () { }
  6125. }, {
  6126. closecallback: function () { }
  6127. }, { "style": { "height": "36px" } }).form; //创建窗体
  6128. _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); } }
  6129. break;
  6130. case "han":
  6131. _formdiv = new U.UF.UI.form(
  6132. "汉字宫",
  6133. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6134. "id": "han",
  6135. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6136. "onresize": function () { }
  6137. }, {
  6138. closecallback: function () { }
  6139. }, { "style": { "height": "36px" } }).form; //创建窗体
  6140. _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); } }
  6141. break;
  6142. case "projectGM": //课程管理
  6143. _formdiv = new U.UF.UI.form(
  6144. "课程管理",
  6145. $$("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 }), {
  6146. "id": "projectGM",
  6147. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6148. "onresize": function () { }
  6149. }, {
  6150. closecallback: function () { }
  6151. }, { "style": { "height": "36px" } }).form; //创建窗体
  6152. _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); } }
  6153. break;
  6154. case "studyGM": //课程中心
  6155. _formdiv = new U.UF.UI.form(
  6156. "课程中心",
  6157. $$("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
  6158. "id": "study",
  6159. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6160. "onresize": function () { }
  6161. }, {
  6162. closecallback: function () { }
  6163. }, { "style": { "height": "36px" } }).form; //创建窗体
  6164. _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); } }
  6165. break;
  6166. // studentGM
  6167. case "studentGM": //学生管理
  6168. _formdiv = new U.UF.UI.form(
  6169. "学生管理",
  6170. $$("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 }), {
  6171. "id": "studentGM",
  6172. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6173. "onresize": function () { }
  6174. }, {
  6175. closecallback: function () { }
  6176. }, { "style": { "height": "36px" } }).form; //创建窗体
  6177. _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); } }
  6178. break;
  6179. case "evaluateGM": //学生评价
  6180. _formdiv = new U.UF.UI.form(
  6181. "学生评价",
  6182. $$("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 }), {
  6183. "id": "evaluateGM",
  6184. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6185. "onresize": function () { }
  6186. }, {
  6187. closecallback: function () { }
  6188. }, { "style": { "height": "36px" } }).form; //创建窗体
  6189. _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); } }
  6190. break;
  6191. // classGM
  6192. case "classGM": //班级管理
  6193. _formdiv = new U.UF.UI.form(
  6194. "班级管理",
  6195. $$("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 }), {
  6196. "id": "classGM",
  6197. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6198. "onresize": function () { }
  6199. }, {
  6200. closecallback: function () { }
  6201. }, { "style": { "height": "36px" } }).form; //创建窗体
  6202. _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); } }
  6203. break;
  6204. // dataGM
  6205. case "dataGM":
  6206. _formdiv = new U.UF.UI.form(
  6207. "我的资料",
  6208. $$("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 }), {
  6209. "id": "dataGM",
  6210. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6211. "onresize": function () { }
  6212. }, {
  6213. closecallback: function () { }
  6214. }, { "style": { "height": "36px" } }).form; //创建窗体
  6215. _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); } }
  6216. break;
  6217. // caseGM
  6218. case "caseGM": //课程进展
  6219. _formdiv = new U.UF.UI.form(
  6220. "课程进展",
  6221. $$("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 }), {
  6222. "id": "caseGM",
  6223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6224. "onresize": function () { }
  6225. }, {
  6226. closecallback: function () { }
  6227. }, { "style": { "height": "36px" } }).form; //创建窗体
  6228. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6229. break;
  6230. // meterialGM
  6231. case "meterialGM": //素材库
  6232. _formdiv = new U.UF.UI.form(
  6233. "素材库",
  6234. $$("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 }), {
  6235. "id": "meterialGM",
  6236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6237. "onresize": function () { }
  6238. }, {
  6239. closecallback: function () { }
  6240. }, { "style": { "height": "36px" } }).form; //创建窗体
  6241. _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); } }
  6242. break;
  6243. // evaluateSGM
  6244. case "evaluateSGM": //我的评价
  6245. _formdiv = new U.UF.UI.form(
  6246. "我的评价",
  6247. $$("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 }), {
  6248. "id": "evaluateSGM",
  6249. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6250. "onresize": function () { }
  6251. }, {
  6252. closecallback: function () { }
  6253. }, { "style": { "height": "36px" } }).form; //创建窗体
  6254. _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); } }
  6255. break;
  6256. case "jupyter": //jupyter
  6257. _formdiv = new U.UF.UI.form(
  6258. "jupyter",
  6259. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6260. "id": "jupyter",
  6261. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6262. "onresize": function () { }
  6263. }, {
  6264. closecallback: function () { }
  6265. }, { "style": { "height": "36px" } }).form; //创建窗体
  6266. _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); } }
  6267. break;
  6268. case "number": //数字实验室
  6269. _formdiv = new U.UF.UI.form(
  6270. "数字实验室",
  6271. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6272. "id": "number",
  6273. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6274. "onresize": function () { }
  6275. }, {
  6276. closecallback: function () { }
  6277. }, { "style": { "height": "36px" } }).form; //创建窗体
  6278. _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); } }
  6279. break;
  6280. case "studentCourse": //项目管理 学生
  6281. _formdiv = new U.UF.UI.form(
  6282. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6283. $$("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 }), {
  6284. "id": "studentCourse",
  6285. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6286. "onresize": function () { }
  6287. }, {
  6288. closecallback: function () { }
  6289. }, { "style": { "height": "36px" } }).form; //创建窗体
  6290. _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); } }
  6291. break;
  6292. case "studentCourseS": //项目管理 老师
  6293. _formdiv = new U.UF.UI.form(
  6294. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6295. $$("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 }), {
  6296. "id": "studentCourseS",
  6297. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6298. "onresize": function () { }
  6299. }, {
  6300. closecallback: function () { }
  6301. }, { "style": { "height": "36px" } }).form; //创建窗体
  6302. _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); } }
  6303. break;
  6304. case "studentIndex": //项目中心
  6305. _formdiv = new U.UF.UI.form(
  6306. "项目中心",
  6307. $$("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 }), {
  6308. "id": "studentIndex",
  6309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6310. "onresize": function () { }
  6311. }, {
  6312. closecallback: function () { }
  6313. }, { "style": { "height": "36px" } }).form; //创建窗体
  6314. _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); } }
  6315. break;
  6316. case "CaseDesignS":
  6317. _formdiv = new U.UF.UI.form(
  6318. "项目进展",
  6319. $$("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 }), {
  6320. "id": "case",
  6321. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6322. "onresize": function () { }
  6323. }, {
  6324. closecallback: function () { }
  6325. }, { "style": { "height": "36px" } }).form; //创建窗体
  6326. _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); } }
  6327. break;
  6328. case "tcStudent": //腾讯学生管理
  6329. _formdiv = new U.UF.UI.form(
  6330. "学生管理",
  6331. $$("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 }), {
  6332. "id": "tcStudent",
  6333. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6334. "onresize": function () { }
  6335. }, {
  6336. closecallback: function () { }
  6337. }, { "style": { "height": "36px" } }).form; //创建窗体
  6338. _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); } }
  6339. break;
  6340. case "tcSchool": //腾讯学校管理
  6341. _formdiv = new U.UF.UI.form(
  6342. "学校管理",
  6343. $$("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 }), {
  6344. "id": "tcSchool",
  6345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6346. "onresize": function () { }
  6347. }, {
  6348. closecallback: function () { }
  6349. }, { "style": { "height": "36px" } }).form; //创建窗体
  6350. _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); } }
  6351. break;
  6352. case "tcTeacher": //腾讯学校管理
  6353. _formdiv = new U.UF.UI.form(
  6354. "教师管理",
  6355. $$("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 }), {
  6356. "id": "tcTeacher",
  6357. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6358. "onresize": function () { }
  6359. }, {
  6360. closecallback: function () { }
  6361. }, { "style": { "height": "36px" } }).form; //创建窗体
  6362. _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); } }
  6363. break;
  6364. case "teacher":
  6365. _formdiv = new U.UF.UI.form(
  6366. "教师管理",
  6367. $$("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 }), {
  6368. "id": "teacher",
  6369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6370. "onresize": function () { }
  6371. }, {
  6372. closecallback: function () { }
  6373. }, { "style": { "height": "36px" } }).form; //创建窗体
  6374. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6375. break;
  6376. case "tcData": //腾讯我的资料
  6377. _formdiv = new U.UF.UI.form(
  6378. "我的资料",
  6379. $$("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 }), {
  6380. "id": "tcData",
  6381. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6382. "onresize": function () { }
  6383. }, {
  6384. closecallback: function () { }
  6385. }, { "style": { "height": "36px" } }).form; //创建窗体
  6386. _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); } }
  6387. break;
  6388. case "tcNotice": //腾讯消息通知
  6389. _formdiv = new U.UF.UI.form(
  6390. "消息通知",
  6391. $$("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 }), {
  6392. "id": "tcNotice",
  6393. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6394. "onresize": function () { }
  6395. }, {
  6396. closecallback: function () { }
  6397. }, { "style": { "height": "36px" } }).form; //创建窗体
  6398. _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); } }
  6399. break;
  6400. case "myReport": //好友打开
  6401. _formdiv = new U.UF.UI.form(
  6402. "我的评价",
  6403. $$("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 }), {
  6404. "id": "myReport",
  6405. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6406. "onresize": function () { }
  6407. }, {
  6408. closecallback: function () { }
  6409. }, { "style": { "height": "36px" } }).form; //创建窗体
  6410. _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); } }
  6411. break;
  6412. case "learnAna": //好友打开
  6413. _formdiv = new U.UF.UI.form(
  6414. "学习分析",
  6415. $$("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 }), {
  6416. "id": "learnAna",
  6417. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6418. "onresize": function () { }
  6419. }, {
  6420. closecallback: function () { }
  6421. }, { "style": { "height": "36px" } }).form; //创建窗体
  6422. _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); } }
  6423. break;
  6424. case "AIChat": //AI共创
  6425. _formdiv = new U.UF.UI.form(
  6426. "AI共创",
  6427. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6428. "id": "AIChat",
  6429. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6430. "onresize": function () { }
  6431. }, {
  6432. istop: true,
  6433. closecallback: function () { $("#aichat_icon").remove(); },
  6434. narrowcallback: function () {
  6435. if (!$("#aichat_icon")[0]) {
  6436. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6437. }
  6438. },
  6439. }, { "style": { "height": "36px" } }).form; //创建窗体
  6440. _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); } }
  6441. break;
  6442. case "ainew": //AI共创
  6443. _formdiv = new U.UF.UI.form(
  6444. "AI协同",
  6445. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6446. "id": "ainew",
  6447. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6448. "onresize": function () { }
  6449. }, {
  6450. closecallback: function () { }
  6451. }, { "style": { "height": "36px" } }).form; //创建窗体
  6452. _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); } }
  6453. break;
  6454. case "gpt4": //gpt4
  6455. _formdiv = new U.UF.UI.form(
  6456. "AI助手",
  6457. $$("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 }), {
  6458. "id": "gpt4",
  6459. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6460. "onresize": function () { }
  6461. }, {
  6462. closecallback: function () { }
  6463. }, { "style": { "height": "36px" } }).form; //创建窗体
  6464. _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); } }
  6465. break;
  6466. case "aigpt": //gpt4
  6467. _formdiv = new U.UF.UI.form(
  6468. "AI助手+",
  6469. $$("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 }), {
  6470. "id": "aigpt",
  6471. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6472. "onresize": function () { }
  6473. }, {
  6474. closecallback: function () {
  6475. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6476. }
  6477. }, { "style": { "height": "36px" } }).form; //创建窗体
  6478. _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); } }
  6479. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6480. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6481. })
  6482. break;
  6483. case "aiKnowledge": //aiKnowledge
  6484. _formdiv = new U.UF.UI.form(
  6485. "知识建构",
  6486. $$("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 }), {
  6487. "id": "aiKnowledge",
  6488. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6489. "onresize": function () { }
  6490. }, {
  6491. closecallback: function () { }
  6492. }, { "style": { "height": "36px" } }).form; //创建窗体
  6493. _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); } }
  6494. break;
  6495. case "futureClass": //AI共创
  6496. _formdiv = new U.UF.UI.form(
  6497. "协同建构",
  6498. $$("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
  6499. "id": "synergyCourse",
  6500. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6501. "onresize": function () { }
  6502. }, {
  6503. closecallback: function () {
  6504. $("iframe", _formdiv)[0].contentWindow.loginout();
  6505. }
  6506. }, { "style": { "height": "36px" } }).form; //创建窗体
  6507. _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); } }
  6508. break;
  6509. case "aiagent": //ai agent
  6510. _formdiv = new U.UF.UI.form(
  6511. "AI Agent",
  6512. $$("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" }), {
  6513. "id": "AIAgent",
  6514. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6515. "onresize": function () { }
  6516. }, {
  6517. closecallback: function () { }
  6518. }, { "style": { "height": "36px" } }).form; //创建窗体
  6519. _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); } }
  6520. break;
  6521. case "dataBoard": //数据看板
  6522. _formdiv = new U.UF.UI.form(
  6523. "数据看板",
  6524. $$("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 }), {
  6525. "id": "dataBoard",
  6526. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6527. "onresize": function () { }
  6528. }, {
  6529. closecallback: function () { }
  6530. }, { "style": { "height": "36px" } }).form; //创建窗体
  6531. _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); } }
  6532. break;
  6533. case "dataBoardSies": //数据融合
  6534. _formdiv = new U.UF.UI.form(
  6535. "数据融合",
  6536. $$("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 }), {
  6537. "id": "dataBoardSies",
  6538. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6539. "onresize": function () { }
  6540. }, {
  6541. closecallback: function () { }
  6542. }, { "style": { "height": "36px" } }).form; //创建窗体
  6543. _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); } }
  6544. break;
  6545. case "dataBoardNew": //数据看板
  6546. _formdiv = new U.UF.UI.form(
  6547. "综合看板",
  6548. $$("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 }), {
  6549. "id": "dataBoardNew",
  6550. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6551. "onresize": function () { }
  6552. }, {
  6553. closecallback: function () { }
  6554. }, { "style": { "height": "36px" } }).form; //创建窗体
  6555. _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); } }
  6556. break;
  6557. case "dataBoardTest": //数据看板
  6558. _formdiv = new U.UF.UI.form(
  6559. "评测看板",
  6560. $$("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 }), {
  6561. "id": "dataBoardTest",
  6562. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6563. "onresize": function () { }
  6564. }, {
  6565. closecallback: function () { }
  6566. }, { "style": { "height": "36px" } }).form; //创建窗体
  6567. _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); } }
  6568. break;
  6569. case "AIAnalyse": //AI共创
  6570. _formdiv = new U.UF.UI.form(
  6571. "AI分析",
  6572. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6573. "id": "AIAnalyse",
  6574. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6575. "onresize": function () { }
  6576. }, {
  6577. closecallback: function () { }
  6578. }, { "style": { "height": "36px" } }).form; //创建窗体
  6579. _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); } }
  6580. break;
  6581. case "studioCourse": //AI共创
  6582. _formdiv = new U.UF.UI.form(
  6583. "工作管理",
  6584. $$("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 }), {
  6585. "id": "studioCourse",
  6586. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6587. "onresize": function () { }
  6588. }, {
  6589. closecallback: function () { }
  6590. }, { "style": { "height": "36px" } }).form; //创建窗体
  6591. _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); } }
  6592. break;
  6593. case "studioIndex": //AI共创
  6594. _formdiv = new U.UF.UI.form(
  6595. "工作中心",
  6596. $$("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 }), {
  6597. "id": "studioIndex",
  6598. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6599. "onresize": function () { }
  6600. }, {
  6601. closecallback: function () { }
  6602. }, { "style": { "height": "36px" } }).form; //创建窗体
  6603. _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); } }
  6604. break;
  6605. case "source":
  6606. _formdiv = new U.UF.UI.form(
  6607. "教学资源",
  6608. $$("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 }), {
  6609. "id": "source",
  6610. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6611. "onresize": function () { }
  6612. }, {
  6613. closecallback: function () { }
  6614. }, { "style": { "height": "36px" } }).form; //创建窗体
  6615. _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); } }
  6616. break;
  6617. case "testTeacher":
  6618. _formdiv = new U.UF.UI.form(
  6619. "教师管理",
  6620. $$("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 }), {
  6621. "id": "testTeacher",
  6622. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6623. "onresize": function () { }
  6624. }, {
  6625. closecallback: function () { }
  6626. }, { "style": { "height": "36px" } }).form; //创建窗体
  6627. _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); } }
  6628. break;
  6629. case "testStudent":
  6630. _formdiv = new U.UF.UI.form(
  6631. "教师中心",
  6632. $$("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 }), {
  6633. "id": "testStudent",
  6634. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6635. "onresize": function () { }
  6636. }, {
  6637. closecallback: function () { }
  6638. }, { "style": { "height": "36px" } }).form; //创建窗体
  6639. _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); } }
  6640. break;
  6641. case "testTeacherSies":
  6642. _formdiv = new U.UF.UI.form(
  6643. "教师管理",
  6644. $$("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 }), {
  6645. "id": "testTeacherSies",
  6646. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6647. "onresize": function () { }
  6648. }, {
  6649. closecallback: function () { }
  6650. }, { "style": { "height": "36px" } }).form; //创建窗体
  6651. _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); } }
  6652. break;
  6653. case "testStudentSies":
  6654. _formdiv = new U.UF.UI.form(
  6655. "教师中心",
  6656. $$("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 }), {
  6657. "id": "testStudentSies",
  6658. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6659. "onresize": function () { }
  6660. }, {
  6661. closecallback: function () { }
  6662. }, { "style": { "height": "36px" } }).form; //创建窗体
  6663. _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); } }
  6664. break;
  6665. case "ytpbl": //消息通知
  6666. _formdiv = new U.UF.UI.form(
  6667. "案例征集",
  6668. $$("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 }), {
  6669. "id": "ytpbl",
  6670. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6671. "onresize": function () { }
  6672. }, {
  6673. closecallback: function () { }
  6674. }, { "style": { "height": "36px" } }).form; //创建窗体
  6675. _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); } }
  6676. // 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");
  6677. break;
  6678. case "aiCourseResource": //人工智能窗体
  6679. _formdiv = new U.UF.UI.form(
  6680. false,
  6681. $$("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 }), {
  6682. "id": "aiCourseResource",
  6683. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6684. "onresize": function () { },
  6685. "isdrag": false,
  6686. }, {
  6687. closecallback: function () { }
  6688. }, { "style": { "height": "36px" } }).form; //创建窗体
  6689. _taskbar = ''
  6690. break;
  6691. case "szdjgCocooroboX": //图形化编程
  6692. _formdiv = new U.UF.UI.form(
  6693. "图形化编程",
  6694. $$("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" }), {
  6695. "id": "szdjgCocooroboX",
  6696. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6697. "onresize": function () { }
  6698. }, {
  6699. closecallback: function () { }
  6700. }, { "style": { "height": "36px" } }).form; //创建窗体
  6701. _taskbar = ''
  6702. break;
  6703. case "szdjgPython": //python编程
  6704. _formdiv = new U.UF.UI.form(
  6705. "Python编程",
  6706. $$("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" }), {
  6707. "id": "szdjgPython",
  6708. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6709. "onresize": function () { }
  6710. }, {
  6711. closecallback: function () { }
  6712. }, { "style": { "height": "36px" } }).form; //创建窗体
  6713. _taskbar = ''
  6714. break;
  6715. case "Record":
  6716. _formdiv = new U.UF.UI.form(
  6717. "观察记录",
  6718. $$("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 }), {
  6719. "id": "Record",
  6720. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6721. "onresize": function () { }
  6722. }, {
  6723. closecallback: function () { }
  6724. }, { "style": { "height": "36px" } }).form; //创建窗体
  6725. _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); } }
  6726. break;
  6727. case "aigptCourse":
  6728. _formdiv = new U.UF.UI.form(
  6729. "AI智能体",
  6730. $$("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' }), {
  6731. "id": "aigptCourse",
  6732. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6733. "onresize": function () { }
  6734. }, {
  6735. closecallback: function () { }
  6736. }, { "style": { "height": "36px" } }).form; //创建窗体
  6737. _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); } }
  6738. break;
  6739. case "classroomObservation":
  6740. _formdiv = new U.UF.UI.form(
  6741. "课堂观察",
  6742. $$("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 }), {
  6743. "id": "classroomObservation",
  6744. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6745. "onresize": function () { }
  6746. }, {
  6747. closecallback: function () { }
  6748. }, { "style": { "height": "36px" } }).form; //创建窗体
  6749. _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); } }
  6750. break;
  6751. case "pblCourse":
  6752. _formdiv = new U.UF.UI.form(
  6753. "学生PBL",
  6754. $$("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 }), {
  6755. "id": "pblCourse",
  6756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6757. "onresize": function () { }
  6758. }, {
  6759. closecallback: function () { }
  6760. }, { "style": { "height": "36px" } }).form; //创建窗体
  6761. _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); } }
  6762. break;
  6763. }
  6764. //U.MD.D.I.openClick(str);
  6765. //如果有任务栏信息
  6766. if (_taskbar) {
  6767. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6768. }
  6769. }
  6770. // U.MD.D.I.openClick = function(str){
  6771. // var click = '';
  6772. // switch(str){
  6773. // case 'friend':
  6774. // click = '我的好友';
  6775. // break;
  6776. // case 'domain':
  6777. // click = '域名管理';
  6778. // break;
  6779. // case 'disk':
  6780. // click = '我的云盘';
  6781. // break;
  6782. // case 'word':
  6783. // click = 'Word';
  6784. // break;
  6785. // case 'excel':
  6786. // click = 'Execl';
  6787. // break;
  6788. // case 'txt':
  6789. // click = '文本文件';
  6790. // break;
  6791. // case 'lookupFriend':
  6792. // click = '查找好友';
  6793. // break;
  6794. // case 'ftp':
  6795. // click = 'FTP';
  6796. // break;
  6797. // case 'group':
  6798. // click = '群组';
  6799. // break;
  6800. // case 'set':
  6801. // click = '我的设置';
  6802. // break;
  6803. // case 'systemSet':
  6804. // click = '系统设置';
  6805. // break;
  6806. // case 'boomYun':
  6807. // click = '互联办公';
  6808. // break;
  6809. // case 'xz':
  6810. // click = '云端下载';
  6811. // break;
  6812. // case 'client':
  6813. // click = '有思浏览器';
  6814. // break;
  6815. // case 'backEndProgramming':
  6816. // click = '在线后台编程';
  6817. // break;
  6818. // case 'frontEndProgramming':
  6819. // click = '在线前端编程';
  6820. // break;
  6821. // default: break;
  6822. // }
  6823. // if(U.MD.D.I.Ip && click){
  6824. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6825. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6826. // })
  6827. // }
  6828. // }
  6829. /**
  6830. *函数作用:ajax简易函数,使用post格式
  6831. *@param url {data} 后台地址
  6832. *@param data {data} 参数json
  6833. *@param fn {data} 回调函数
  6834. *
  6835. */
  6836. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6837. // var xhr = new XMLHttpRequest();
  6838. // xhr.open("GET",url,true);
  6839. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6840. // xhr.onreadystatechange = function(){
  6841. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6842. // fn.call(this,xhr.responseText);
  6843. // }
  6844. // };
  6845. // xhr.send();
  6846. // }
  6847. /*判断是否是内网IP*/
  6848. // U.MD.D.I.isInnerIPFn = function(str){
  6849. // var curPageUrl = str;
  6850. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6851. // curPageUrl =curPageUrl.replace(reg1,'');
  6852. // // console.log('curPageUrl-1 '+curPageUrl);
  6853. // var reg2 = /\:+/g;//替换冒号为一点
  6854. // curPageUrl =curPageUrl.replace(reg2,'.');
  6855. // // console.log('curPageUrl-2 '+curPageUrl);
  6856. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6857. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6858. // if(curPageUrl[2] != '16'){
  6859. // return ipAddress;
  6860. // }else{
  6861. // return false;
  6862. // }
  6863. // }
  6864. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6865. // //compatibility for firefox and chrome
  6866. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6867. // var pc = new myPeerConnection({
  6868. // iceServers: []
  6869. // }),
  6870. // noop = function() {},
  6871. // localIPs = {},
  6872. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6873. // key;
  6874. // function iterateIP(ip) {
  6875. // if (!localIPs[ip]) onNewIP(ip);
  6876. // localIPs[ip] = true;
  6877. // }
  6878. // //create a bogus data channel
  6879. // pc.createDataChannel("");
  6880. // // create offer and set local description
  6881. // pc.createOffer().then(function(sdp) {
  6882. // sdp.sdp.split('\n').forEach(function(line) {
  6883. // if (line.indexOf('candidate') < 0) return;
  6884. // line.match(ipRegex).forEach(iterateIP);
  6885. // });
  6886. // pc.setLocalDescription(sdp, noop, noop);
  6887. // }).catch(function(reason) {
  6888. // // An error occurred, so handle the failure to connect
  6889. // });
  6890. // //sten for candidate events
  6891. // pc.onicecandidate = function(ice) {
  6892. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6893. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6894. // };
  6895. // }
  6896. // U.MD.D.I.getUserIpBool = function(callback){
  6897. // U.MD.D.I.getUserIP(function(ip){
  6898. // alert("Got IP! :" + ip);
  6899. // });
  6900. //}
  6901. //#endregion
  6902. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6903. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6904. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6905. _userinfo = US.userInfo, //登录用户信息
  6906. _userid = US.userInfo.userid //登录用户id
  6907. let _iframe;
  6908. let _cid = cid,
  6909. _stage = stage,
  6910. _task = task,
  6911. _tool = tool;
  6912. var _jie = $$("div", {
  6913. "style": {
  6914. "position": "absolute",
  6915. "bottom": "50px",
  6916. "right": "50px",
  6917. "zIndex": "9999",
  6918. "backgroundColor": "#2268bc",
  6919. "color": "#fff",
  6920. "padding": "12px 20px",
  6921. "cursor": "pointer",
  6922. "borderRadius": "4px",
  6923. },
  6924. "innerHTML": "提交作业"
  6925. })
  6926. let aTool = ''
  6927. let _loading = document.createElement('div')
  6928. _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;"
  6929. // _loading.id = "";
  6930. let _lchild = document.createElement('div')
  6931. let _limg = document.createElement('img')
  6932. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6933. _limg.style = "width: 26px;margin-right: 10px;"
  6934. _lchild.appendChild(_limg)
  6935. let _lspan = document.createElement('span')
  6936. _lspan.innerHTML = "上传中..."
  6937. _lchild.appendChild(_lspan)
  6938. _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%);"
  6939. _loading.appendChild(_lchild)
  6940. var _box = $$('div', {
  6941. "style": {
  6942. "position": "relative",
  6943. "width": "100%",
  6944. "height": "100%",
  6945. },
  6946. })
  6947. _box.appendChild(_loading)
  6948. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6949. switch (str) {
  6950. case "whiteboard":
  6951. aTool = 1;
  6952. _iframe = $$("iframe", {
  6953. "frameborder": "no",
  6954. "border": "0",
  6955. "scrolling ": "no",
  6956. "style": {
  6957. "cssText": "border:0;width:100%;height:100%"
  6958. },
  6959. "src": "https://beta.iwb.cocorobo.cn/"
  6960. })
  6961. _box.appendChild(_iframe);
  6962. _box.appendChild(_jie);
  6963. _formdiv = new U.UF.UI.form(
  6964. "电子白板",
  6965. _box, {
  6966. "id": "whiteboard" + cid + stage + task + tool,
  6967. "style": {
  6968. "width": "90%",
  6969. "height": "90%",
  6970. "overflow": 'hidden'
  6971. },
  6972. "onresize": function () { }
  6973. }, {
  6974. closecallback: function () { }
  6975. }, {
  6976. "style": {
  6977. "height": "36px"
  6978. }
  6979. }).form; //创建窗体
  6980. _taskbar = {
  6981. "id": str + _formdiv.id,
  6982. "style": {
  6983. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6984. },
  6985. "name": "电子白板",
  6986. "forms": _formdiv,
  6987. "click": function () {
  6988. U.MD.D.I.openApplication(str, obj, info);
  6989. }
  6990. }
  6991. break;
  6992. case "mind":
  6993. aTool = 3;
  6994. _iframe = $$("iframe", {
  6995. "frameborder": "no",
  6996. "border": "0",
  6997. "scrolling ": "no",
  6998. "style": {
  6999. "cssText": "border:0;width:100%;height:100%"
  7000. },
  7001. "src": "/kityminder-editor/dist/index.html"
  7002. })
  7003. _box.appendChild(_iframe);
  7004. _box.appendChild(_jie);
  7005. _formdiv = new U.UF.UI.form(
  7006. "思维导图",
  7007. _box, { //"/jsmind/example/demo.html"
  7008. "id": "mind" + cid + stage + task + tool,
  7009. "style": {
  7010. "width": "90%",
  7011. "height": "90%",
  7012. "overflow": 'hidden'
  7013. },
  7014. "onresize": function () { }
  7015. }, {
  7016. closecallback: function () { }
  7017. }, {
  7018. "style": {
  7019. "height": "36px"
  7020. }
  7021. }).form; //创建窗体
  7022. _taskbar = {
  7023. "id": str + _formdiv.id,
  7024. "style": {
  7025. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7026. },
  7027. "name": "思维导图",
  7028. "forms": _formdiv,
  7029. "click": function () {
  7030. U.MD.D.I.openApplication(str, obj, info);
  7031. }
  7032. }
  7033. break;
  7034. case "MindMap":
  7035. aTool = 3;
  7036. _iframe = $$("iframe", {
  7037. "frameborder": "no",
  7038. "border": "0",
  7039. "scrolling ": "no",
  7040. "style": {
  7041. "cssText": "border:0;width:100%;height:100%"
  7042. },
  7043. "src": "//cloud.cocorobo.cn/mind/"
  7044. })
  7045. _box.appendChild(_iframe);
  7046. _box.appendChild(_jie);
  7047. _formdiv = new U.UF.UI.form(
  7048. "思维导图",
  7049. _box, { //"/jsmind/example/demo.html"
  7050. "id": "mind" + cid + stage + task + tool,
  7051. "style": {
  7052. "width": "90%",
  7053. "height": "90%",
  7054. "overflow": 'hidden'
  7055. },
  7056. "onresize": function () { }
  7057. }, {
  7058. closecallback: function () { }
  7059. }, {
  7060. "style": {
  7061. "height": "36px"
  7062. }
  7063. }).form; //创建窗体
  7064. _taskbar = {
  7065. "id": str + _formdiv.id,
  7066. "style": {
  7067. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7068. },
  7069. "name": "思维导图",
  7070. "forms": _formdiv,
  7071. "click": function () {
  7072. U.MD.D.I.openApplication(str, obj, info);
  7073. }
  7074. }
  7075. break;
  7076. case "doc":
  7077. aTool = 6;
  7078. _iframe = $$("iframe", {
  7079. "frameborder": "no",
  7080. "border": "0",
  7081. "scrolling ": "no",
  7082. "style": {
  7083. "cssText": "border:0;width:100%;height:100%"
  7084. },
  7085. "src": "/Office/Word/WordEditArea.htm"
  7086. })
  7087. _box.appendChild(_iframe);
  7088. _box.appendChild(_jie);
  7089. _formdiv = new U.UF.UI.form(
  7090. "协同文档",
  7091. _box, {
  7092. "id": "doc" + cid + stage + task + tool,
  7093. "style": {
  7094. "width": "90%",
  7095. "height": "90%",
  7096. "overflow": 'hidden'
  7097. },
  7098. "onresize": function () { }
  7099. }, {
  7100. closecallback: function () { }
  7101. }, {
  7102. "style": {
  7103. "height": "36px"
  7104. }
  7105. }).form; //创建窗体
  7106. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7107. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7108. })
  7109. _taskbar = {
  7110. "id": str + _formdiv.id,
  7111. "style": {
  7112. "backgroundImage": "url(/img/icon/doc.png)"
  7113. },
  7114. "name": "协同文档",
  7115. "forms": _formdiv,
  7116. "click": function () {
  7117. U.MD.D.I.openApplication(str, obj, info);
  7118. }
  7119. }
  7120. break;
  7121. case "mindNetwork": //好友打开
  7122. aTool = 7;
  7123. _iframe = $$("iframe", {
  7124. "webkitallowfullscreen": "",
  7125. "mozallowfullscreen": "",
  7126. "allowfullscreen": "",
  7127. "frameborder": "no",
  7128. "border": "0",
  7129. "scrolling ": "no",
  7130. "style": {
  7131. "cssText": "border:0; width:100%; height:100%;"
  7132. },
  7133. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7134. })
  7135. _box.appendChild(_iframe);
  7136. _box.appendChild(_jie);
  7137. _formdiv = new U.UF.UI.form(
  7138. "思维网格",
  7139. _box, {
  7140. "id": "mindNetwork" + cid + stage + task + tool,
  7141. "style": {
  7142. "width": "90%",
  7143. "height": "90%",
  7144. "overflow": 'hidden'
  7145. },
  7146. "onresize": function () { }
  7147. }, {
  7148. closecallback: function () { }
  7149. }, {
  7150. "style": {
  7151. "height": "36px"
  7152. }
  7153. }).form; //创建窗体
  7154. _taskbar = {
  7155. "id": str + _formdiv.id,
  7156. "style": {
  7157. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7158. },
  7159. "name": "思维网格",
  7160. "forms": _formdiv,
  7161. "click": function () {
  7162. U.MD.D.I.openApplication(str, obj, info);
  7163. }
  7164. }
  7165. break;
  7166. case "courseDesign":
  7167. _iframe = $$("iframe", {
  7168. "webkitallowfullscreen": "",
  7169. "mozallowfullscreen": "",
  7170. "allowfullscreen": "",
  7171. "frameborder": "no",
  7172. "border": "0",
  7173. "scrolling ": "no",
  7174. "style": {
  7175. "cssText": "border:0; width:100%; height:100%;"
  7176. },
  7177. "src": "/course-design-vue"
  7178. })
  7179. _box.appendChild(_iframe);
  7180. _box.appendChild(_jie);
  7181. _formdiv = new U.UF.UI.form(
  7182. "项目设计",
  7183. _box, {
  7184. "id": "courseDesign" + cid + stage + task + tool,
  7185. "style": {
  7186. "width": "90%",
  7187. "height": "90%",
  7188. "overflow": 'hidden'
  7189. },
  7190. "onresize": function () { }
  7191. }, {
  7192. closecallback: function () { }
  7193. }, {
  7194. "style": {
  7195. "height": "36px"
  7196. }
  7197. }).form; //创建窗体
  7198. _taskbar = {
  7199. "id": str + _formdiv.id,
  7200. "style": {
  7201. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7202. },
  7203. "name": "项目设计",
  7204. "forms": _formdiv,
  7205. "click": function () {
  7206. U.MD.D.I.openApplication(str, obj, info);
  7207. }
  7208. }
  7209. break;
  7210. }
  7211. const script1 = document.createElement("script");
  7212. script1.type = "text/javascript";
  7213. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7214. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7215. const script2 = document.createElement("script");
  7216. script2.type = "text/javascript";
  7217. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7218. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7219. const script3 = document.createElement("script");
  7220. script3.type = "text/javascript";
  7221. script3.charset = "UTF-8";
  7222. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7223. const script4 = document.createElement("script");
  7224. script4.type = "text/javascript";
  7225. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7226. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7227. if (_iframe) {
  7228. if (str == 'doc') {
  7229. _iframe = _formdiv.querySelector('iframe')
  7230. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7231. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7232. _iframe.contentWindow.document.body.appendChild(script1);
  7233. _iframe.contentWindow.document.body.appendChild(script2);
  7234. // _iframe.contentWindow.document.body.appendChild(script3);
  7235. _iframe.contentWindow.document.body.appendChild(script4);
  7236. })
  7237. if (onloadListener) {
  7238. _iframe.contentDocument.location.reload()
  7239. } else {
  7240. _iframe.contentDocument.location.reload()
  7241. }
  7242. } else if (str == 'courseDesign') {
  7243. U.UF.DL.iframeLoad(_iframe, function () {
  7244. // _iframe.contentWindow.U.MD.O.W.load();
  7245. // _iframe.contentWindow.document.body.appendChild(script1);
  7246. _iframe.contentWindow.document.body.appendChild(script2);
  7247. _iframe.contentWindow.document.body.appendChild(script4);
  7248. })
  7249. } else if (str == 'mind') {
  7250. _iframe = _formdiv.querySelector('iframe')
  7251. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7252. //
  7253. _iframe.contentWindow.document.body.appendChild(script1);
  7254. _iframe.contentWindow.document.body.appendChild(script2);
  7255. _iframe.contentWindow.document.body.appendChild(script4);
  7256. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7257. })
  7258. if (onloadListener) {
  7259. _iframe.contentDocument.location.reload()
  7260. } else {
  7261. _iframe.contentDocument.location.reload()
  7262. }
  7263. } else if (str == 'whiteboard') {
  7264. _iframe = _formdiv.querySelector('iframe')
  7265. let onloadListener = _iframe.onload = () => {
  7266. _iframe.contentWindow.document.body.appendChild(script1);
  7267. _iframe.contentWindow.document.body.appendChild(script2);
  7268. _iframe.contentWindow.document.body.appendChild(script4);
  7269. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7270. };
  7271. // if (onloadListener) {
  7272. // try {
  7273. // _iframe.src += "?cocorobo="+new Date().getTime()
  7274. // _iframe.contentWindow.document.location.reload()
  7275. // } catch (error) {
  7276. // }
  7277. // } else {
  7278. // _iframe.contentDocument.location.reload()
  7279. // }
  7280. } else {
  7281. _iframe.onload = () => {
  7282. _iframe.contentWindow.document.body.appendChild(script1);
  7283. _iframe.contentWindow.document.body.appendChild(script2);
  7284. // _iframe.contentWindow.document.body.appendChild(script3);
  7285. _iframe.contentWindow.document.body.appendChild(script4);
  7286. };
  7287. }
  7288. _jie.onclick = async () => {
  7289. let text = ''
  7290. if (aTool == 1) {
  7291. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7292. } else if (aTool == 6) {
  7293. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7294. } else if (aTool == 3) {
  7295. text = await U.MD.D.I.getEditorContent(_iframe);
  7296. }
  7297. _loading.style.display = 'flex'
  7298. console.log(_loading);
  7299. var _ajs = _iframe.contentWindow.document.createElement("script");
  7300. _ajs.type = "text/javascript";
  7301. _ajs.innerHTML =
  7302. // 'console.log(' + _loading + ');\n' +
  7303. 'var _js = document.createElement("script");\n' +
  7304. '_js.type="text/javascript";\n' +
  7305. '_js.charset="UTF-8";\n' +
  7306. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7307. "_js.onload = function(){\n" +
  7308. ' var a = document.getElementsByTagName("img")\n' +
  7309. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7310. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7311. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7312. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7313. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7314. "beforeUpload_shishi(file," +
  7315. "'" +
  7316. _userid +
  7317. "'" +
  7318. ", " +
  7319. "'" +
  7320. _cid +
  7321. "'" +
  7322. ", " +
  7323. "'" +
  7324. _stage +
  7325. "'" +
  7326. ", " +
  7327. "'" +
  7328. _task +
  7329. "'" +
  7330. ", " +
  7331. "'" +
  7332. _tool +
  7333. "'" +
  7334. ", " +
  7335. "'" +
  7336. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7337. "'" +
  7338. ", " +
  7339. "'" +
  7340. aTool +
  7341. "'" +
  7342. ", " +
  7343. "`" +
  7344. text +
  7345. "`" +
  7346. ")\n" +
  7347. " });\n" +
  7348. "}\n" +
  7349. "document.head.appendChild(_js);\n";
  7350. _iframe.contentWindow.document.head.appendChild(_ajs);
  7351. }
  7352. }
  7353. //U.MD.D.I.openClick(str);
  7354. //如果有任务栏信息
  7355. // if (_taskbar) {
  7356. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7357. // }
  7358. }
  7359. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7360. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7361. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7362. _userinfo = US.userInfo, //登录用户信息
  7363. _userid = US.userInfo.userid //登录用户id
  7364. let _iframe;
  7365. let _cid = cid,
  7366. _stage = stage,
  7367. _task = task,
  7368. _tool = tool;
  7369. var _jie = $$("div", {
  7370. "style": {
  7371. "position": "absolute",
  7372. "bottom": "50px",
  7373. "right": "50px",
  7374. "zIndex": "9999",
  7375. "backgroundColor": "#2268bc",
  7376. "color": "#fff",
  7377. "padding": "12px 20px",
  7378. "cursor": "pointer",
  7379. "borderRadius": "4px",
  7380. },
  7381. "innerHTML": "提交作业"
  7382. })
  7383. let aTool = ''
  7384. let _loading = document.createElement('div')
  7385. _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;"
  7386. // _loading.id = "";
  7387. let _lchild = document.createElement('div')
  7388. let _limg = document.createElement('img')
  7389. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7390. _limg.style = "width: 26px;margin-right: 10px;"
  7391. _lchild.appendChild(_limg)
  7392. let _lspan = document.createElement('span')
  7393. _lspan.innerHTML = "上传中..."
  7394. _lchild.appendChild(_lspan)
  7395. _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%);"
  7396. _loading.appendChild(_lchild)
  7397. let _box = $$('div', {
  7398. "style": {
  7399. "position": "relative",
  7400. "width": "100%",
  7401. "height": "100%",
  7402. },
  7403. })
  7404. _box.appendChild(_loading)
  7405. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7406. switch (str) {
  7407. case "whiteboard":
  7408. aTool = 1;
  7409. _iframe = $$("iframe", {
  7410. "frameborder": "no",
  7411. "border": "0",
  7412. "scrolling ": "no",
  7413. "style": {
  7414. "cssText": "border:0;width:100%;height:100%"
  7415. },
  7416. "src": "https://beta.iwb.cocorobo.cn/"
  7417. })
  7418. _box.appendChild(_iframe);
  7419. _box.appendChild(_jie);
  7420. _formdiv = new U.UF.UI.form(
  7421. "电子白板",
  7422. _box, {
  7423. "id": "whiteboard" + cid + stage + task + tool,
  7424. "style": {
  7425. "width": "90%",
  7426. "height": "90%",
  7427. "overflow": 'hidden'
  7428. },
  7429. "onresize": function () { }
  7430. }, {
  7431. closecallback: function () { }
  7432. }, {
  7433. "style": {
  7434. "height": "36px"
  7435. }
  7436. }).form; //创建窗体
  7437. _taskbar = {
  7438. "id": str + _formdiv.id,
  7439. "style": {
  7440. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7441. },
  7442. "name": "电子白板",
  7443. "forms": _formdiv,
  7444. "click": function () {
  7445. U.MD.D.I.openApplication(str, obj, info);
  7446. }
  7447. }
  7448. break;
  7449. case "mind":
  7450. aTool = 3;
  7451. _iframe = $$("iframe", {
  7452. "frameborder": "no",
  7453. "border": "0",
  7454. "scrolling ": "no",
  7455. "style": {
  7456. "cssText": "border:0;width:100%;height:100%"
  7457. },
  7458. "src": "/kityminder-editor/dist/index.html"
  7459. })
  7460. _box.appendChild(_iframe);
  7461. _box.appendChild(_jie);
  7462. _formdiv = new U.UF.UI.form(
  7463. "思维导图",
  7464. _box, { //"/jsmind/example/demo.html"
  7465. "id": "mind" + cid + stage + task + tool,
  7466. "style": {
  7467. "width": "90%",
  7468. "height": "90%",
  7469. "overflow": 'hidden'
  7470. },
  7471. "onresize": function () { }
  7472. }, {
  7473. closecallback: function () { }
  7474. }, {
  7475. "style": {
  7476. "height": "36px"
  7477. }
  7478. }).form; //创建窗体
  7479. _taskbar = {
  7480. "id": str + _formdiv.id,
  7481. "style": {
  7482. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7483. },
  7484. "name": "思维导图",
  7485. "forms": _formdiv,
  7486. "click": function () {
  7487. U.MD.D.I.openApplication(str, obj, info);
  7488. }
  7489. }
  7490. break;
  7491. case "MindMap":
  7492. aTool = 3;
  7493. _iframe = $$("iframe", {
  7494. "frameborder": "no",
  7495. "border": "0",
  7496. "scrolling ": "no",
  7497. "style": {
  7498. "cssText": "border:0;width:100%;height:100%"
  7499. },
  7500. "src": "//cloud.cocorobo.cn/mind/"
  7501. })
  7502. _box.appendChild(_iframe);
  7503. _box.appendChild(_jie);
  7504. _formdiv = new U.UF.UI.form(
  7505. "思维导图",
  7506. _box, { //"/jsmind/example/demo.html"
  7507. "id": "mind" + cid + stage + task + tool,
  7508. "style": {
  7509. "width": "90%",
  7510. "height": "90%",
  7511. "overflow": 'hidden'
  7512. },
  7513. "onresize": function () { }
  7514. }, {
  7515. closecallback: function () { }
  7516. }, {
  7517. "style": {
  7518. "height": "36px"
  7519. }
  7520. }).form; //创建窗体
  7521. _taskbar = {
  7522. "id": str + _formdiv.id,
  7523. "style": {
  7524. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7525. },
  7526. "name": "思维导图",
  7527. "forms": _formdiv,
  7528. "click": function () {
  7529. U.MD.D.I.openApplication(str, obj, info);
  7530. }
  7531. }
  7532. break;
  7533. case "doc":
  7534. aTool = 6;
  7535. _iframe = $$("iframe", {
  7536. "frameborder": "no",
  7537. "border": "0",
  7538. "scrolling ": "no",
  7539. "style": {
  7540. "cssText": "border:0;width:100%;height:100%"
  7541. },
  7542. "src": "/Office/Word/WordEditArea.htm"
  7543. })
  7544. _box.appendChild(_iframe);
  7545. _box.appendChild(_jie);
  7546. _formdiv = new U.UF.UI.form(
  7547. "协同文档",
  7548. _box, {
  7549. "id": "doc" + cid + stage + task + tool,
  7550. "style": {
  7551. "width": "90%",
  7552. "height": "90%",
  7553. "overflow": 'hidden'
  7554. },
  7555. "onresize": function () { }
  7556. }, {
  7557. closecallback: function () { }
  7558. }, {
  7559. "style": {
  7560. "height": "36px"
  7561. }
  7562. }).form; //创建窗体
  7563. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7564. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7565. })
  7566. _taskbar = {
  7567. "id": str + _formdiv.id,
  7568. "style": {
  7569. "backgroundImage": "url(/img/icon/doc.png)"
  7570. },
  7571. "name": "协同文档",
  7572. "forms": _formdiv,
  7573. "click": function () {
  7574. U.MD.D.I.openApplication(str, obj, info);
  7575. }
  7576. }
  7577. break;
  7578. case "mindNetwork": //好友打开
  7579. aTool = 7;
  7580. _iframe = $$("iframe", {
  7581. "webkitallowfullscreen": "",
  7582. "mozallowfullscreen": "",
  7583. "allowfullscreen": "",
  7584. "frameborder": "no",
  7585. "border": "0",
  7586. "scrolling ": "no",
  7587. "style": {
  7588. "cssText": "border:0; width:100%; height:100%;"
  7589. },
  7590. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7591. })
  7592. _box.appendChild(_iframe);
  7593. _box.appendChild(_jie);
  7594. _formdiv = new U.UF.UI.form(
  7595. "思维网格",
  7596. _box, {
  7597. "id": "mindNetwork" + cid + stage + task + tool,
  7598. "style": {
  7599. "width": "90%",
  7600. "height": "90%",
  7601. "overflow": 'hidden'
  7602. },
  7603. "onresize": function () { }
  7604. }, {
  7605. closecallback: function () { }
  7606. }, {
  7607. "style": {
  7608. "height": "36px"
  7609. }
  7610. }).form; //创建窗体
  7611. _taskbar = {
  7612. "id": str + _formdiv.id,
  7613. "style": {
  7614. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7615. },
  7616. "name": "思维网格",
  7617. "forms": _formdiv,
  7618. "click": function () {
  7619. U.MD.D.I.openApplication(str, obj, info);
  7620. }
  7621. }
  7622. break;
  7623. case "courseDesign":
  7624. _iframe = $$("iframe", {
  7625. "webkitallowfullscreen": "",
  7626. "mozallowfullscreen": "",
  7627. "allowfullscreen": "",
  7628. "frameborder": "no",
  7629. "border": "0",
  7630. "scrolling ": "no",
  7631. "style": {
  7632. "cssText": "border:0; width:100%; height:100%;"
  7633. },
  7634. "src": "/course-design-vue"
  7635. })
  7636. _box.appendChild(_iframe);
  7637. _box.appendChild(_jie);
  7638. _formdiv = new U.UF.UI.form(
  7639. "项目设计",
  7640. _box, {
  7641. "id": "courseDesign" + cid + stage + task + tool,
  7642. "style": {
  7643. "width": "90%",
  7644. "height": "90%",
  7645. "overflow": 'hidden'
  7646. },
  7647. "onresize": function () { }
  7648. }, {
  7649. closecallback: function () { }
  7650. }, {
  7651. "style": {
  7652. "height": "36px"
  7653. }
  7654. }).form; //创建窗体
  7655. _taskbar = {
  7656. "id": str + _formdiv.id,
  7657. "style": {
  7658. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7659. },
  7660. "name": "项目设计",
  7661. "forms": _formdiv,
  7662. "click": function () {
  7663. U.MD.D.I.openApplication(str, obj, info);
  7664. }
  7665. }
  7666. break;
  7667. }
  7668. const script1 = document.createElement("script");
  7669. script1.type = "text/javascript";
  7670. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7671. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7672. const script2 = document.createElement("script");
  7673. script2.type = "text/javascript";
  7674. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7675. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7676. const script3 = document.createElement("script");
  7677. script3.type = "text/javascript";
  7678. script3.charset = "UTF-8";
  7679. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7680. const script4 = document.createElement("script");
  7681. script4.type = "text/javascript";
  7682. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7683. script4.src = window.origin + "/js/Common/jietu2E.js";
  7684. if (_iframe) {
  7685. if (str == 'doc') {
  7686. _iframe = _formdiv.querySelector('iframe')
  7687. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7688. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7689. _iframe.contentWindow.document.body.appendChild(script1);
  7690. _iframe.contentWindow.document.body.appendChild(script2);
  7691. // _iframe.contentWindow.document.body.appendChild(script3);
  7692. _iframe.contentWindow.document.body.appendChild(script4);
  7693. })
  7694. if (onloadListener) {
  7695. _iframe.contentDocument.location.reload()
  7696. } else {
  7697. _iframe.contentDocument.location.reload()
  7698. }
  7699. } else if (str == 'courseDesign') {
  7700. U.UF.DL.iframeLoad(_iframe, function () {
  7701. // _iframe.contentWindow.U.MD.O.W.load();
  7702. // _iframe.contentWindow.document.body.appendChild(script1);
  7703. _iframe.contentWindow.document.body.appendChild(script2);
  7704. _iframe.contentWindow.document.body.appendChild(script4);
  7705. })
  7706. } else if (str == 'mind') {
  7707. _iframe = _formdiv.querySelector('iframe')
  7708. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7709. //
  7710. _iframe.contentWindow.document.body.appendChild(script1);
  7711. _iframe.contentWindow.document.body.appendChild(script2);
  7712. _iframe.contentWindow.document.body.appendChild(script4);
  7713. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7714. })
  7715. if (onloadListener) {
  7716. _iframe.contentDocument.location.reload()
  7717. } else {
  7718. _iframe.contentDocument.location.reload()
  7719. }
  7720. } else if (str == 'whiteboard') {
  7721. _iframe = _formdiv.querySelector('iframe')
  7722. let onloadListener = _iframe.onload = () => {
  7723. _iframe.contentWindow.document.body.appendChild(script1);
  7724. _iframe.contentWindow.document.body.appendChild(script2);
  7725. _iframe.contentWindow.document.body.appendChild(script4);
  7726. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7727. };
  7728. // if (onloadListener) {
  7729. // try {
  7730. // _iframe.src += "?cocorobo="+new Date().getTime()
  7731. // _iframe.contentWindow.document.location.reload()
  7732. // } catch (error) {
  7733. // }
  7734. // } else {
  7735. // _iframe.contentDocument.location.reload()
  7736. // }
  7737. } else {
  7738. _iframe.onload = () => {
  7739. _iframe.contentWindow.document.body.appendChild(script1);
  7740. _iframe.contentWindow.document.body.appendChild(script2);
  7741. // _iframe.contentWindow.document.body.appendChild(script3);
  7742. _iframe.contentWindow.document.body.appendChild(script4);
  7743. };
  7744. }
  7745. _jie.onclick = async () => {
  7746. let text = ''
  7747. if (aTool == 1) {
  7748. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7749. } else if (aTool == 6) {
  7750. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7751. } else if (aTool == 3) {
  7752. text = await U.MD.D.I.getEditorContent(_iframe);
  7753. }
  7754. _loading.style.display = 'flex'
  7755. console.log(_loading);
  7756. var _ajs = _iframe.contentWindow.document.createElement("script");
  7757. _ajs.type = "text/javascript";
  7758. _ajs.innerHTML =
  7759. // 'console.log(' + _loading + ');\n' +
  7760. 'var _js = document.createElement("script");\n' +
  7761. '_js.type="text/javascript";\n' +
  7762. '_js.charset="UTF-8";\n' +
  7763. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7764. "_js.onload = function(){\n" +
  7765. ' var a = document.getElementsByTagName("img")\n' +
  7766. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7767. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7768. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7769. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7770. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7771. "beforeUpload_shishi(file," +
  7772. "'" +
  7773. _userid +
  7774. "'" +
  7775. ", " +
  7776. "'" +
  7777. _cid +
  7778. "'" +
  7779. ", " +
  7780. "'" +
  7781. _stage +
  7782. "'" +
  7783. ", " +
  7784. "'" +
  7785. _task +
  7786. "'" +
  7787. ", " +
  7788. "'" +
  7789. _tool +
  7790. "'" +
  7791. ", " +
  7792. "'" +
  7793. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7794. "'" +
  7795. ", " +
  7796. "'" +
  7797. aTool +
  7798. "'" +
  7799. ", " +
  7800. "`" +
  7801. text +
  7802. "`" +
  7803. ")\n" +
  7804. " });\n" +
  7805. "}\n" +
  7806. "document.head.appendChild(_js);\n";
  7807. _iframe.contentWindow.document.head.appendChild(_ajs);
  7808. }
  7809. }
  7810. //U.MD.D.I.openClick(str);
  7811. //如果有任务栏信息
  7812. // if (_taskbar) {
  7813. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7814. // }
  7815. }
  7816. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7817. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7818. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7819. _userid = student.userid, //登录用户id
  7820. _username = student.student //用户名字
  7821. let _iframe;
  7822. let _cid = cid,
  7823. _stage = stage,
  7824. _task = task,
  7825. _tool = tool;
  7826. var _jie = $$("div", {
  7827. "style": {
  7828. "position": "absolute",
  7829. "bottom": "50px",
  7830. "right": "50px",
  7831. "zIndex": "9999",
  7832. "backgroundColor": "#2268bc",
  7833. "color": "#fff",
  7834. "padding": "12px 20px",
  7835. "cursor": "pointer",
  7836. "borderRadius": "4px",
  7837. },
  7838. "innerHTML": "提交作业"
  7839. })
  7840. let aTool = ''
  7841. let _loading = document.createElement('div')
  7842. _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;"
  7843. // _loading.id = "";
  7844. let _lchild = document.createElement('div')
  7845. let _limg = document.createElement('img')
  7846. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7847. _limg.style = "width: 26px;margin-right: 10px;"
  7848. _lchild.appendChild(_limg)
  7849. let _lspan = document.createElement('span')
  7850. _lspan.innerHTML = "上传中..."
  7851. _lchild.appendChild(_lspan)
  7852. _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%);"
  7853. _loading.appendChild(_lchild)
  7854. var _box = $$('div', {
  7855. "style": {
  7856. "position": "relative",
  7857. "width": "100%",
  7858. "height": "100%",
  7859. },
  7860. })
  7861. _box.appendChild(_loading)
  7862. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7863. switch (str) {
  7864. case "whiteboard":
  7865. aTool = 1;
  7866. _iframe = $$("iframe", {
  7867. "frameborder": "no",
  7868. "border": "0",
  7869. "scrolling ": "no",
  7870. "style": {
  7871. "cssText": "border:0;width:100%;height:100%"
  7872. },
  7873. "src": "https://beta.iwb.cocorobo.cn/"
  7874. })
  7875. _box.appendChild(_iframe);
  7876. _box.appendChild(_jie);
  7877. _formdiv = new U.UF.UI.form(
  7878. "电子白板-" + _username,
  7879. _box, {
  7880. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7881. "style": {
  7882. "width": "90%",
  7883. "height": "90%",
  7884. "overflow": 'hidden'
  7885. },
  7886. "onresize": function () { }
  7887. }, {
  7888. closecallback: function () { }
  7889. }, {
  7890. "style": {
  7891. "height": "36px"
  7892. }
  7893. }).form; //创建窗体
  7894. _taskbar = {
  7895. "id": str + _formdiv.id,
  7896. "style": {
  7897. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7898. },
  7899. "name": "电子白板",
  7900. "forms": _formdiv,
  7901. "click": function () {
  7902. U.MD.D.I.openApplication(str, obj, info);
  7903. }
  7904. }
  7905. break;
  7906. case "mind":
  7907. aTool = 3;
  7908. _iframe = $$("iframe", {
  7909. "frameborder": "no",
  7910. "border": "0",
  7911. "scrolling ": "no",
  7912. "style": {
  7913. "cssText": "border:0;width:100%;height:100%"
  7914. },
  7915. "src": "/kityminder-editor/dist/index.html"
  7916. })
  7917. _box.appendChild(_iframe);
  7918. _box.appendChild(_jie);
  7919. _formdiv = new U.UF.UI.form(
  7920. "思维导图-" + _username,
  7921. _box, { //"/jsmind/example/demo.html"
  7922. "id": "mind" + cid + stage + task + tool + _userid,
  7923. "style": {
  7924. "width": "90%",
  7925. "height": "90%",
  7926. "overflow": 'hidden'
  7927. },
  7928. "onresize": function () { }
  7929. }, {
  7930. closecallback: function () { }
  7931. }, {
  7932. "style": {
  7933. "height": "36px"
  7934. }
  7935. }).form; //创建窗体
  7936. _taskbar = {
  7937. "id": str + _formdiv.id,
  7938. "style": {
  7939. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7940. },
  7941. "name": "思维导图",
  7942. "forms": _formdiv,
  7943. "click": function () {
  7944. U.MD.D.I.openApplication(str, obj, info);
  7945. }
  7946. }
  7947. break;
  7948. case "MindMap":
  7949. aTool = 3;
  7950. _iframe = $$("iframe", {
  7951. "frameborder": "no",
  7952. "border": "0",
  7953. "scrolling ": "no",
  7954. "style": {
  7955. "cssText": "border:0;width:100%;height:100%"
  7956. },
  7957. "src": "//cloud.cocorobo.cn/mind/"
  7958. })
  7959. _box.appendChild(_iframe);
  7960. _box.appendChild(_jie);
  7961. _formdiv = new U.UF.UI.form(
  7962. "思维导图-" + _username,
  7963. _box, { //"/jsmind/example/demo.html"
  7964. "id": "mind" + cid + stage + task + tool + _userid,
  7965. "style": {
  7966. "width": "90%",
  7967. "height": "90%",
  7968. "overflow": 'hidden'
  7969. },
  7970. "onresize": function () { }
  7971. }, {
  7972. closecallback: function () { }
  7973. }, {
  7974. "style": {
  7975. "height": "36px"
  7976. }
  7977. }).form; //创建窗体
  7978. _taskbar = {
  7979. "id": str + _formdiv.id,
  7980. "style": {
  7981. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7982. },
  7983. "name": "思维导图",
  7984. "forms": _formdiv,
  7985. "click": function () {
  7986. U.MD.D.I.openApplication(str, obj, info);
  7987. }
  7988. }
  7989. break;
  7990. case "doc":
  7991. aTool = 6;
  7992. _iframe = $$("iframe", {
  7993. "frameborder": "no",
  7994. "border": "0",
  7995. "scrolling ": "no",
  7996. "style": {
  7997. "cssText": "border:0;width:100%;height:100%"
  7998. },
  7999. "src": "/Office/Word/WordEditArea.htm"
  8000. })
  8001. _box.appendChild(_iframe);
  8002. _box.appendChild(_jie);
  8003. _formdiv = new U.UF.UI.form(
  8004. "协同文档-" + _username,
  8005. _box, {
  8006. "id": "doc" + cid + stage + task + tool + _userid,
  8007. "style": {
  8008. "width": "90%",
  8009. "height": "90%",
  8010. "overflow": 'hidden'
  8011. },
  8012. "onresize": function () { }
  8013. }, {
  8014. closecallback: function () { }
  8015. }, {
  8016. "style": {
  8017. "height": "36px"
  8018. }
  8019. }).form; //创建窗体
  8020. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8021. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8022. })
  8023. _taskbar = {
  8024. "id": str + _formdiv.id,
  8025. "style": {
  8026. "backgroundImage": "url(/img/icon/doc.png)"
  8027. },
  8028. "name": "协同文档",
  8029. "forms": _formdiv,
  8030. "click": function () {
  8031. U.MD.D.I.openApplication(str, obj, info);
  8032. }
  8033. }
  8034. break;
  8035. case "mindNetwork": //好友打开
  8036. aTool = 7;
  8037. _iframe = $$("iframe", {
  8038. "webkitallowfullscreen": "",
  8039. "mozallowfullscreen": "",
  8040. "allowfullscreen": "",
  8041. "frameborder": "no",
  8042. "border": "0",
  8043. "scrolling ": "no",
  8044. "style": {
  8045. "cssText": "border:0; width:100%; height:100%;"
  8046. },
  8047. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8048. })
  8049. _box.appendChild(_iframe);
  8050. _box.appendChild(_jie);
  8051. _formdiv = new U.UF.UI.form(
  8052. "思维网格-" + _username,
  8053. _box, {
  8054. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8055. "style": {
  8056. "width": "90%",
  8057. "height": "90%",
  8058. "overflow": 'hidden'
  8059. },
  8060. "onresize": function () { }
  8061. }, {
  8062. closecallback: function () { }
  8063. }, {
  8064. "style": {
  8065. "height": "36px"
  8066. }
  8067. }).form; //创建窗体
  8068. _taskbar = {
  8069. "id": str + _formdiv.id,
  8070. "style": {
  8071. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8072. },
  8073. "name": "思维网格",
  8074. "forms": _formdiv,
  8075. "click": function () {
  8076. U.MD.D.I.openApplication(str, obj, info);
  8077. }
  8078. }
  8079. break;
  8080. case "courseDesign":
  8081. _iframe = $$("iframe", {
  8082. "webkitallowfullscreen": "",
  8083. "mozallowfullscreen": "",
  8084. "allowfullscreen": "",
  8085. "frameborder": "no",
  8086. "border": "0",
  8087. "scrolling ": "no",
  8088. "style": {
  8089. "cssText": "border:0; width:100%; height:100%;"
  8090. },
  8091. "src": "/course-design-vue"
  8092. })
  8093. _box.appendChild(_iframe);
  8094. _box.appendChild(_jie);
  8095. _formdiv = new U.UF.UI.form(
  8096. "项目设计-" + _username,
  8097. _box, {
  8098. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8099. "style": {
  8100. "width": "90%",
  8101. "height": "90%",
  8102. "overflow": 'hidden'
  8103. },
  8104. "onresize": function () { }
  8105. }, {
  8106. closecallback: function () { }
  8107. }, {
  8108. "style": {
  8109. "height": "36px"
  8110. }
  8111. }).form; //创建窗体
  8112. _taskbar = {
  8113. "id": str + _formdiv.id,
  8114. "style": {
  8115. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8116. },
  8117. "name": "项目设计",
  8118. "forms": _formdiv,
  8119. "click": function () {
  8120. U.MD.D.I.openApplication(str, obj, info);
  8121. }
  8122. }
  8123. break;
  8124. }
  8125. const script1 = document.createElement("script");
  8126. script1.type = "text/javascript";
  8127. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8128. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8129. const script2 = document.createElement("script");
  8130. script2.type = "text/javascript";
  8131. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8132. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8133. const script3 = document.createElement("script");
  8134. script3.type = "text/javascript";
  8135. script3.charset = "UTF-8";
  8136. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8137. const script4 = document.createElement("script");
  8138. script4.type = "text/javascript";
  8139. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8140. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8141. if (_iframe) {
  8142. if (str == 'doc') {
  8143. _iframe = _formdiv.querySelector('iframe')
  8144. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8145. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8146. _iframe.contentWindow.document.body.appendChild(script1);
  8147. _iframe.contentWindow.document.body.appendChild(script2);
  8148. // _iframe.contentWindow.document.body.appendChild(script3);
  8149. _iframe.contentWindow.document.body.appendChild(script4);
  8150. })
  8151. if (onloadListener) {
  8152. _iframe.contentDocument.location.reload()
  8153. } else {
  8154. _iframe.contentDocument.location.reload()
  8155. }
  8156. } else if (str == 'courseDesign') {
  8157. U.UF.DL.iframeLoad(_iframe, function () {
  8158. // _iframe.contentWindow.U.MD.O.W.load();
  8159. // _iframe.contentWindow.document.body.appendChild(script1);
  8160. _iframe.contentWindow.document.body.appendChild(script2);
  8161. _iframe.contentWindow.document.body.appendChild(script4);
  8162. })
  8163. } else if (str == 'mind') {
  8164. _iframe = _formdiv.querySelector('iframe')
  8165. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8166. //
  8167. _iframe.contentWindow.document.body.appendChild(script1);
  8168. _iframe.contentWindow.document.body.appendChild(script2);
  8169. _iframe.contentWindow.document.body.appendChild(script4);
  8170. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8171. })
  8172. if (onloadListener) {
  8173. _iframe.contentDocument.location.reload()
  8174. } else {
  8175. _iframe.contentDocument.location.reload()
  8176. }
  8177. } else if (str == 'whiteboard') {
  8178. _iframe = _formdiv.querySelector('iframe')
  8179. let onloadListener = _iframe.onload = () => {
  8180. _iframe.contentWindow.document.body.appendChild(script1);
  8181. _iframe.contentWindow.document.body.appendChild(script2);
  8182. _iframe.contentWindow.document.body.appendChild(script4);
  8183. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8184. };
  8185. // if (onloadListener) {
  8186. // try {
  8187. // _iframe.src += "?cocorobo="+new Date().getTime()
  8188. // _iframe.contentWindow.document.location.reload()
  8189. // } catch (error) {
  8190. // }
  8191. // } else {
  8192. // _iframe.contentDocument.location.reload()
  8193. // }
  8194. } else {
  8195. _iframe.onload = () => {
  8196. _iframe.contentWindow.document.body.appendChild(script1);
  8197. _iframe.contentWindow.document.body.appendChild(script2);
  8198. // _iframe.contentWindow.document.body.appendChild(script3);
  8199. _iframe.contentWindow.document.body.appendChild(script4);
  8200. };
  8201. }
  8202. _jie.onclick = async () => {
  8203. let text = ''
  8204. if (aTool == 1) {
  8205. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8206. } else if (aTool == 6) {
  8207. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8208. } else if (aTool == 3) {
  8209. text = await U.MD.D.I.getEditorContent(_iframe);
  8210. }
  8211. _loading.style.display = 'flex'
  8212. console.log(_loading);
  8213. var _ajs = _iframe.contentWindow.document.createElement("script");
  8214. _ajs.type = "text/javascript";
  8215. _ajs.innerHTML =
  8216. // 'console.log(' + _loading + ');\n' +
  8217. 'var _js = document.createElement("script");\n' +
  8218. '_js.type="text/javascript";\n' +
  8219. '_js.charset="UTF-8";\n' +
  8220. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8221. "_js.onload = function(){\n" +
  8222. ' var a = document.getElementsByTagName("img")\n' +
  8223. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8224. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8225. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8226. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8227. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8228. "beforeUpload_shishi(file," +
  8229. "'" +
  8230. _userid +
  8231. "'" +
  8232. ", " +
  8233. "'" +
  8234. _cid +
  8235. "'" +
  8236. ", " +
  8237. "'" +
  8238. _stage +
  8239. "'" +
  8240. ", " +
  8241. "'" +
  8242. _task +
  8243. "'" +
  8244. ", " +
  8245. "'" +
  8246. _tool +
  8247. "'" +
  8248. ", " +
  8249. "'" +
  8250. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8251. "'" +
  8252. ", " +
  8253. "'" +
  8254. aTool +
  8255. "'" +
  8256. ", " +
  8257. "`" +
  8258. text +
  8259. "`" +
  8260. ")\n" +
  8261. " });\n" +
  8262. "}\n" +
  8263. "document.head.appendChild(_js);\n";
  8264. _iframe.contentWindow.document.head.appendChild(_ajs);
  8265. }
  8266. }
  8267. }
  8268. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8269. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8270. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8271. _userid = student.userid, //登录用户id
  8272. _username = student.student //用户名字
  8273. let _iframe;
  8274. let _cid = cid,
  8275. _stage = stage,
  8276. _task = task,
  8277. _tool = tool;
  8278. var _jie = $$("div", {
  8279. "style": {
  8280. "position": "absolute",
  8281. "bottom": "50px",
  8282. "right": "50px",
  8283. "zIndex": "9999",
  8284. "backgroundColor": "#2268bc",
  8285. "color": "#fff",
  8286. "padding": "12px 20px",
  8287. "cursor": "pointer",
  8288. "borderRadius": "4px",
  8289. },
  8290. "innerHTML": "提交作业"
  8291. })
  8292. let aTool = ''
  8293. let _loading = document.createElement('div')
  8294. _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;"
  8295. // _loading.id = "";
  8296. let _lchild = document.createElement('div')
  8297. let _limg = document.createElement('img')
  8298. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8299. _limg.style = "width: 26px;margin-right: 10px;"
  8300. _lchild.appendChild(_limg)
  8301. let _lspan = document.createElement('span')
  8302. _lspan.innerHTML = "上传中..."
  8303. _lchild.appendChild(_lspan)
  8304. _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%);"
  8305. _loading.appendChild(_lchild)
  8306. var _box = $$('div', {
  8307. "style": {
  8308. "position": "relative",
  8309. "width": "100%",
  8310. "height": "100%",
  8311. },
  8312. })
  8313. _box.appendChild(_loading)
  8314. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8315. switch (str) {
  8316. case "whiteboard":
  8317. aTool = 1;
  8318. _iframe = $$("iframe", {
  8319. "frameborder": "no",
  8320. "border": "0",
  8321. "scrolling ": "no",
  8322. "style": {
  8323. "cssText": "border:0;width:100%;height:100%"
  8324. },
  8325. "src": "https://beta.iwb.cocorobo.cn/"
  8326. })
  8327. _box.appendChild(_iframe);
  8328. _box.appendChild(_jie);
  8329. _formdiv = new U.UF.UI.form(
  8330. "电子白板-" + _username,
  8331. _box, {
  8332. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8333. "style": {
  8334. "width": "90%",
  8335. "height": "90%",
  8336. "overflow": 'hidden'
  8337. },
  8338. "onresize": function () { }
  8339. }, {
  8340. closecallback: function () { }
  8341. }, {
  8342. "style": {
  8343. "height": "36px"
  8344. }
  8345. }).form; //创建窗体
  8346. _taskbar = {
  8347. "id": str + _formdiv.id,
  8348. "style": {
  8349. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8350. },
  8351. "name": "电子白板",
  8352. "forms": _formdiv,
  8353. "click": function () {
  8354. U.MD.D.I.openApplication(str, obj, info);
  8355. }
  8356. }
  8357. break;
  8358. case "mind":
  8359. aTool = 3;
  8360. _iframe = $$("iframe", {
  8361. "frameborder": "no",
  8362. "border": "0",
  8363. "scrolling ": "no",
  8364. "style": {
  8365. "cssText": "border:0;width:100%;height:100%"
  8366. },
  8367. "src": "/kityminder-editor/dist/index.html"
  8368. })
  8369. _box.appendChild(_iframe);
  8370. _box.appendChild(_jie);
  8371. _formdiv = new U.UF.UI.form(
  8372. "思维导图-" + _username,
  8373. _box, { //"/jsmind/example/demo.html"
  8374. "id": "mind" + cid + stage + task + tool + _userid,
  8375. "style": {
  8376. "width": "90%",
  8377. "height": "90%",
  8378. "overflow": 'hidden'
  8379. },
  8380. "onresize": function () { }
  8381. }, {
  8382. closecallback: function () { }
  8383. }, {
  8384. "style": {
  8385. "height": "36px"
  8386. }
  8387. }).form; //创建窗体
  8388. _taskbar = {
  8389. "id": str + _formdiv.id,
  8390. "style": {
  8391. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8392. },
  8393. "name": "思维导图",
  8394. "forms": _formdiv,
  8395. "click": function () {
  8396. U.MD.D.I.openApplication(str, obj, info);
  8397. }
  8398. }
  8399. break;
  8400. case "MindMap":
  8401. aTool = 3;
  8402. _iframe = $$("iframe", {
  8403. "frameborder": "no",
  8404. "border": "0",
  8405. "scrolling ": "no",
  8406. "style": {
  8407. "cssText": "border:0;width:100%;height:100%"
  8408. },
  8409. "src": "//cloud.cocorobo.cn/mind/"
  8410. })
  8411. _box.appendChild(_iframe);
  8412. _box.appendChild(_jie);
  8413. _formdiv = new U.UF.UI.form(
  8414. "思维导图-" + _username,
  8415. _box, { //"/jsmind/example/demo.html"
  8416. "id": "mind" + cid + stage + task + tool + _userid,
  8417. "style": {
  8418. "width": "90%",
  8419. "height": "90%",
  8420. "overflow": 'hidden'
  8421. },
  8422. "onresize": function () { }
  8423. }, {
  8424. closecallback: function () { }
  8425. }, {
  8426. "style": {
  8427. "height": "36px"
  8428. }
  8429. }).form; //创建窗体
  8430. _taskbar = {
  8431. "id": str + _formdiv.id,
  8432. "style": {
  8433. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8434. },
  8435. "name": "思维导图",
  8436. "forms": _formdiv,
  8437. "click": function () {
  8438. U.MD.D.I.openApplication(str, obj, info);
  8439. }
  8440. }
  8441. break;
  8442. case "doc":
  8443. aTool = 6;
  8444. _iframe = $$("iframe", {
  8445. "frameborder": "no",
  8446. "border": "0",
  8447. "scrolling ": "no",
  8448. "style": {
  8449. "cssText": "border:0;width:100%;height:100%"
  8450. },
  8451. "src": "/Office/Word/WordEditArea.htm"
  8452. })
  8453. _box.appendChild(_iframe);
  8454. _box.appendChild(_jie);
  8455. _formdiv = new U.UF.UI.form(
  8456. "协同文档-" + _username,
  8457. _box, {
  8458. "id": "doc" + cid + stage + task + tool + _userid,
  8459. "style": {
  8460. "width": "90%",
  8461. "height": "90%",
  8462. "overflow": 'hidden'
  8463. },
  8464. "onresize": function () { }
  8465. }, {
  8466. closecallback: function () { }
  8467. }, {
  8468. "style": {
  8469. "height": "36px"
  8470. }
  8471. }).form; //创建窗体
  8472. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8473. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8474. })
  8475. _taskbar = {
  8476. "id": str + _formdiv.id,
  8477. "style": {
  8478. "backgroundImage": "url(/img/icon/doc.png)"
  8479. },
  8480. "name": "协同文档",
  8481. "forms": _formdiv,
  8482. "click": function () {
  8483. U.MD.D.I.openApplication(str, obj, info);
  8484. }
  8485. }
  8486. break;
  8487. case "mindNetwork": //好友打开
  8488. aTool = 7;
  8489. _iframe = $$("iframe", {
  8490. "webkitallowfullscreen": "",
  8491. "mozallowfullscreen": "",
  8492. "allowfullscreen": "",
  8493. "frameborder": "no",
  8494. "border": "0",
  8495. "scrolling ": "no",
  8496. "style": {
  8497. "cssText": "border:0; width:100%; height:100%;"
  8498. },
  8499. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8500. })
  8501. _box.appendChild(_iframe);
  8502. _box.appendChild(_jie);
  8503. _formdiv = new U.UF.UI.form(
  8504. "思维网格-" + _username,
  8505. _box, {
  8506. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8507. "style": {
  8508. "width": "90%",
  8509. "height": "90%",
  8510. "overflow": 'hidden'
  8511. },
  8512. "onresize": function () { }
  8513. }, {
  8514. closecallback: function () { }
  8515. }, {
  8516. "style": {
  8517. "height": "36px"
  8518. }
  8519. }).form; //创建窗体
  8520. _taskbar = {
  8521. "id": str + _formdiv.id,
  8522. "style": {
  8523. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8524. },
  8525. "name": "思维网格",
  8526. "forms": _formdiv,
  8527. "click": function () {
  8528. U.MD.D.I.openApplication(str, obj, info);
  8529. }
  8530. }
  8531. break;
  8532. case "courseDesign":
  8533. _iframe = $$("iframe", {
  8534. "webkitallowfullscreen": "",
  8535. "mozallowfullscreen": "",
  8536. "allowfullscreen": "",
  8537. "frameborder": "no",
  8538. "border": "0",
  8539. "scrolling ": "no",
  8540. "style": {
  8541. "cssText": "border:0; width:100%; height:100%;"
  8542. },
  8543. "src": "/course-design-vue"
  8544. })
  8545. _box.appendChild(_iframe);
  8546. _box.appendChild(_jie);
  8547. _formdiv = new U.UF.UI.form(
  8548. "项目设计-" + _username,
  8549. _box, {
  8550. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8551. "style": {
  8552. "width": "90%",
  8553. "height": "90%",
  8554. "overflow": 'hidden'
  8555. },
  8556. "onresize": function () { }
  8557. }, {
  8558. closecallback: function () { }
  8559. }, {
  8560. "style": {
  8561. "height": "36px"
  8562. }
  8563. }).form; //创建窗体
  8564. _taskbar = {
  8565. "id": str + _formdiv.id,
  8566. "style": {
  8567. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8568. },
  8569. "name": "项目设计",
  8570. "forms": _formdiv,
  8571. "click": function () {
  8572. U.MD.D.I.openApplication(str, obj, info);
  8573. }
  8574. }
  8575. break;
  8576. }
  8577. const script1 = document.createElement("script");
  8578. script1.type = "text/javascript";
  8579. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8580. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8581. const script2 = document.createElement("script");
  8582. script2.type = "text/javascript";
  8583. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8584. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8585. const script3 = document.createElement("script");
  8586. script3.type = "text/javascript";
  8587. script3.charset = "UTF-8";
  8588. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8589. const script4 = document.createElement("script");
  8590. script4.type = "text/javascript";
  8591. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8592. script4.src = window.origin + "/js/Common/jietu2E.js";
  8593. if (_iframe) {
  8594. if (str == 'doc') {
  8595. _iframe = _formdiv.querySelector('iframe')
  8596. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8597. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8598. _iframe.contentWindow.document.body.appendChild(script1);
  8599. _iframe.contentWindow.document.body.appendChild(script2);
  8600. // _iframe.contentWindow.document.body.appendChild(script3);
  8601. _iframe.contentWindow.document.body.appendChild(script4);
  8602. })
  8603. if (onloadListener) {
  8604. _iframe.contentDocument.location.reload()
  8605. } else {
  8606. _iframe.contentDocument.location.reload()
  8607. }
  8608. } else if (str == 'courseDesign') {
  8609. U.UF.DL.iframeLoad(_iframe, function () {
  8610. // _iframe.contentWindow.U.MD.O.W.load();
  8611. // _iframe.contentWindow.document.body.appendChild(script1);
  8612. _iframe.contentWindow.document.body.appendChild(script2);
  8613. _iframe.contentWindow.document.body.appendChild(script4);
  8614. })
  8615. } else if (str == 'mind') {
  8616. _iframe = _formdiv.querySelector('iframe')
  8617. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8618. //
  8619. _iframe.contentWindow.document.body.appendChild(script1);
  8620. _iframe.contentWindow.document.body.appendChild(script2);
  8621. _iframe.contentWindow.document.body.appendChild(script4);
  8622. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8623. })
  8624. if (onloadListener) {
  8625. _iframe.contentDocument.location.reload()
  8626. } else {
  8627. _iframe.contentDocument.location.reload()
  8628. }
  8629. } else if (str == 'whiteboard') {
  8630. _iframe = _formdiv.querySelector('iframe')
  8631. let onloadListener = _iframe.onload = () => {
  8632. _iframe.contentWindow.document.body.appendChild(script1);
  8633. _iframe.contentWindow.document.body.appendChild(script2);
  8634. _iframe.contentWindow.document.body.appendChild(script4);
  8635. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8636. };
  8637. // if (onloadListener) {
  8638. // try {
  8639. // _iframe.src += "?cocorobo="+new Date().getTime()
  8640. // _iframe.contentWindow.document.location.reload()
  8641. // } catch (error) {
  8642. // }
  8643. // } else {
  8644. // _iframe.contentDocument.location.reload()
  8645. // }
  8646. } else {
  8647. _iframe.onload = () => {
  8648. _iframe.contentWindow.document.body.appendChild(script1);
  8649. _iframe.contentWindow.document.body.appendChild(script2);
  8650. // _iframe.contentWindow.document.body.appendChild(script3);
  8651. _iframe.contentWindow.document.body.appendChild(script4);
  8652. };
  8653. }
  8654. _jie.onclick = async () => {
  8655. let text = ''
  8656. if (aTool == 1) {
  8657. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8658. } else if (aTool == 6) {
  8659. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8660. } else if (aTool == 3) {
  8661. text = await U.MD.D.I.getEditorContent(_iframe);
  8662. }
  8663. _loading.style.display = 'flex'
  8664. console.log(_loading);
  8665. var _ajs = _iframe.contentWindow.document.createElement("script");
  8666. _ajs.type = "text/javascript";
  8667. _ajs.innerHTML =
  8668. // 'console.log(' + _loading + ');\n' +
  8669. 'var _js = document.createElement("script");\n' +
  8670. '_js.type="text/javascript";\n' +
  8671. '_js.charset="UTF-8";\n' +
  8672. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8673. "_js.onload = function(){\n" +
  8674. ' var a = document.getElementsByTagName("img")\n' +
  8675. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8676. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8677. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8678. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8679. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8680. "beforeUpload_shishi(file," +
  8681. "'" +
  8682. _userid +
  8683. "'" +
  8684. ", " +
  8685. "'" +
  8686. _cid +
  8687. "'" +
  8688. ", " +
  8689. "'" +
  8690. _stage +
  8691. "'" +
  8692. ", " +
  8693. "'" +
  8694. _task +
  8695. "'" +
  8696. ", " +
  8697. "'" +
  8698. _tool +
  8699. "'" +
  8700. ", " +
  8701. "'" +
  8702. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8703. "'" +
  8704. ", " +
  8705. "'" +
  8706. aTool +
  8707. "'" +
  8708. ", " +
  8709. "`" +
  8710. text +
  8711. "`" +
  8712. ")\n" +
  8713. " });\n" +
  8714. "}\n" +
  8715. "document.head.appendChild(_js);\n";
  8716. _iframe.contentWindow.document.head.appendChild(_ajs);
  8717. }
  8718. }
  8719. }
  8720. U.MD.D.I.getEditorContent = function (iframe) {
  8721. return new Promise((resolve, reject) => {
  8722. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8723. console.log(content);
  8724. resolve(content)
  8725. });
  8726. });
  8727. }
  8728. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8729. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8730. // if (res.value[0].length > 0) {
  8731. // // resolve(res.value[0][0].text);
  8732. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8733. // $(fileInput).val('');
  8734. // });
  8735. // }
  8736. // }, [], { "type": "GET", "withCredentials": true });
  8737. var xmlhttp;
  8738. var Mac, Sn, DeviceId
  8739. if (window.XMLHttpRequest) {
  8740. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8741. xmlhttp = new XMLHttpRequest();
  8742. } else {
  8743. // IE6, IE5 浏览器执行代码
  8744. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8745. }
  8746. xmlhttp.onreadystatechange = function () {
  8747. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8748. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8749. // resolve(res.value[0][0].text);
  8750. if (type == '2') {
  8751. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8752. } else if (type == '3') {
  8753. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8754. }
  8755. } else {
  8756. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8757. }
  8758. }
  8759. }
  8760. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8761. xmlhttp.send();
  8762. }
  8763. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8764. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8765. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8766. _userinfo = US.userInfo, //登录用户信息
  8767. _userid = US.userInfo.userid //登录用户id
  8768. let _iframe;
  8769. let _cid = cid,
  8770. _stage = stage,
  8771. _task = task,
  8772. _tool = tool;
  8773. var _jie = $$("div", {
  8774. "style": {
  8775. "position": "absolute",
  8776. "bottom": "50px",
  8777. "right": "50px",
  8778. "zIndex": "9999",
  8779. "backgroundColor": "#2268bc",
  8780. "color": "#fff",
  8781. "padding": "12px 20px",
  8782. "cursor": "pointer",
  8783. "borderRadius": "4px",
  8784. },
  8785. "innerHTML": "确认并提交"
  8786. })
  8787. let aTool = ''
  8788. let _loading = document.createElement('div')
  8789. _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;"
  8790. // _loading.id = "";
  8791. let _lchild = document.createElement('div')
  8792. let _limg = document.createElement('img')
  8793. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8794. _limg.style = "width: 26px;margin-right: 10px;"
  8795. _lchild.appendChild(_limg)
  8796. let _lspan = document.createElement('span')
  8797. _lspan.innerHTML = "上传中..."
  8798. _lchild.appendChild(_lspan)
  8799. _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%);"
  8800. _loading.appendChild(_lchild)
  8801. var _box = $$('div', {
  8802. "style": {
  8803. "position": "relative",
  8804. "width": "100%",
  8805. "height": "100%",
  8806. },
  8807. })
  8808. _box.appendChild(_loading)
  8809. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8810. switch (str) {
  8811. case "whiteboard":
  8812. aTool = 1;
  8813. _iframe = $$("iframe", {
  8814. "frameborder": "no",
  8815. "border": "0",
  8816. "scrolling ": "no",
  8817. "style": {
  8818. "cssText": "border:0;width:100%;height:100%"
  8819. },
  8820. "src": "https://beta.iwb.cocorobo.cn/"
  8821. })
  8822. _box.appendChild(_iframe);
  8823. _box.appendChild(_jie);
  8824. _formdiv = new U.UF.UI.form(
  8825. "电子白板",
  8826. _box, {
  8827. "id": "whiteboards" + cid + stage + task + tool,
  8828. "style": {
  8829. "width": "90%",
  8830. "height": "90%",
  8831. "overflow": 'hidden'
  8832. },
  8833. "onresize": function () { }
  8834. }, {
  8835. closecallback: function () { }
  8836. }, {
  8837. "style": {
  8838. "height": "36px"
  8839. }
  8840. }).form; //创建窗体
  8841. _taskbar = {
  8842. "id": str + _formdiv.id,
  8843. "style": {
  8844. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8845. },
  8846. "name": "电子白板",
  8847. "forms": _formdiv,
  8848. "click": function () {
  8849. U.MD.D.I.openApplication(str, obj, info);
  8850. }
  8851. }
  8852. break;
  8853. case "mind":
  8854. aTool = 3;
  8855. _iframe = $$("iframe", {
  8856. "frameborder": "no",
  8857. "border": "0",
  8858. "scrolling ": "no",
  8859. "style": {
  8860. "cssText": "border:0;width:100%;height:100%"
  8861. },
  8862. "src": "/kityminder-editor/dist/index.html"
  8863. });
  8864. _box.appendChild(_iframe);
  8865. _box.appendChild(_jie);
  8866. _formdiv = new U.UF.UI.form(
  8867. "思维导图",
  8868. _box, { //"/jsmind/example/demo.html"
  8869. "id": "minds" + cid + stage + task + tool,
  8870. "style": {
  8871. "width": "90%",
  8872. "height": "90%",
  8873. "overflow": 'hidden'
  8874. },
  8875. "onresize": function () { }
  8876. }, {
  8877. closecallback: function () { }
  8878. }, {
  8879. "style": {
  8880. "height": "36px"
  8881. }
  8882. }).form; //创建窗体
  8883. _taskbar = {
  8884. "id": str + _formdiv.id,
  8885. "style": {
  8886. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8887. },
  8888. "name": "思维导图",
  8889. "forms": _formdiv,
  8890. "click": function () {
  8891. U.MD.D.I.openApplication(str, obj, info);
  8892. }
  8893. }
  8894. break;
  8895. case "doc":
  8896. aTool = 6;
  8897. _iframe = $$("iframe", {
  8898. "frameborder": "no",
  8899. "border": "0",
  8900. "scrolling ": "no",
  8901. "style": {
  8902. "cssText": "border:0;width:100%;height:100%"
  8903. },
  8904. "src": "/Office/Word/WordEditArea.htm"
  8905. })
  8906. _box.appendChild(_iframe);
  8907. _box.appendChild(_jie);
  8908. _formdiv = new U.UF.UI.form(
  8909. "协同文档",
  8910. _box, {
  8911. "id": "docs" + cid + stage + task + tool,
  8912. "style": {
  8913. "width": "90%",
  8914. "height": "90%",
  8915. "overflow": 'hidden'
  8916. },
  8917. "onresize": function () { }
  8918. }, {
  8919. closecallback: function () { }
  8920. }, {
  8921. "style": {
  8922. "height": "36px"
  8923. }
  8924. }).form; //创建窗体
  8925. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8926. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8927. })
  8928. _taskbar = {
  8929. "id": str + _formdiv.id,
  8930. "style": {
  8931. "backgroundImage": "url(/img/icon/doc.png)"
  8932. },
  8933. "name": "协同文档",
  8934. "forms": _formdiv,
  8935. "click": function () {
  8936. U.MD.D.I.openApplication(str, obj, info);
  8937. }
  8938. }
  8939. break;
  8940. }
  8941. const script1 = document.createElement("script");
  8942. script1.type = "text/javascript";
  8943. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8944. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8945. const script2 = document.createElement("script");
  8946. script2.type = "text/javascript";
  8947. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8948. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8949. const script3 = document.createElement("script");
  8950. script3.type = "text/javascript";
  8951. script3.charset = "UTF-8";
  8952. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8953. const script4 = document.createElement("script");
  8954. script4.type = "text/javascript";
  8955. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8956. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8957. if (_iframe) {
  8958. if (str == 'doc') {
  8959. _iframe = _formdiv.querySelector('iframe')
  8960. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8961. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8962. _iframe.contentWindow.document.body.appendChild(script1);
  8963. _iframe.contentWindow.document.body.appendChild(script2);
  8964. // _iframe.contentWindow.document.body.appendChild(script3);
  8965. _iframe.contentWindow.document.body.appendChild(script4);
  8966. })
  8967. if (onloadListener) {
  8968. _iframe.contentDocument.location.reload()
  8969. } else {
  8970. _iframe.contentDocument.location.reload()
  8971. }
  8972. } else if (str == 'mind') {
  8973. _iframe = _formdiv.querySelector('iframe')
  8974. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8975. _iframe.contentWindow.document.body.appendChild(script1);
  8976. _iframe.contentWindow.document.body.appendChild(script2);
  8977. _iframe.contentWindow.document.body.appendChild(script4);
  8978. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8979. })
  8980. if (onloadListener) {
  8981. _iframe.contentDocument.location.reload()
  8982. } else {
  8983. _iframe.contentDocument.location.reload()
  8984. }
  8985. } else {
  8986. _iframe.onload = () => {
  8987. _iframe.contentWindow.document.body.appendChild(script1);
  8988. _iframe.contentWindow.document.body.appendChild(script2);
  8989. // _iframe.contentWindow.document.body.appendChild(script3);
  8990. _iframe.contentWindow.document.body.appendChild(script4);
  8991. };
  8992. }
  8993. _jie.onclick = async () => {
  8994. let text = ''
  8995. if (aTool == 6) {
  8996. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8997. } else if (aTool == 3) {
  8998. text = await U.MD.D.I.getEditorContent(_iframe);
  8999. }
  9000. _loading.style.display = 'flex'
  9001. console.log(_loading);
  9002. var _ajs = _iframe.contentWindow.document.createElement("script");
  9003. _ajs.type = "text/javascript";
  9004. _ajs.innerHTML =
  9005. // 'console.log(' + _loading + ');\n' +
  9006. 'var _js = document.createElement("script");\n' +
  9007. '_js.type="text/javascript";\n' +
  9008. '_js.charset="UTF-8";\n' +
  9009. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9010. "_js.onload = function(){\n" +
  9011. ' var a = document.getElementsByTagName("img")\n' +
  9012. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9013. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9014. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9015. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9016. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9017. "beforeUpload_shishi(file," +
  9018. "'" +
  9019. _userid +
  9020. "'" +
  9021. ", " +
  9022. "'" +
  9023. _cid +
  9024. "'" +
  9025. ", " +
  9026. "'" +
  9027. _stage +
  9028. "'" +
  9029. ", " +
  9030. "'" +
  9031. _task +
  9032. "'" +
  9033. ", " +
  9034. "'" +
  9035. _tool +
  9036. "'" +
  9037. ", " +
  9038. "'" +
  9039. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9040. "'" +
  9041. ", " +
  9042. "'" +
  9043. aTool +
  9044. "'" +
  9045. ", " +
  9046. "`" +
  9047. text +
  9048. "`" +
  9049. ")\n" +
  9050. " });\n" +
  9051. "}\n" +
  9052. "document.head.appendChild(_js);\n";
  9053. _iframe.contentWindow.document.head.appendChild(_ajs);
  9054. }
  9055. }
  9056. //U.MD.D.I.openClick(str);
  9057. //如果有任务栏信息
  9058. // if (_taskbar) {
  9059. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9060. // }
  9061. }
  9062. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9063. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9064. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9065. _userinfo = US.userInfo, //登录用户信息
  9066. _userid = US.userInfo.userid //登录用户id
  9067. let _iframe;
  9068. let _cid = cid,
  9069. _stage = stage,
  9070. _task = task,
  9071. _tool = tool;
  9072. var _jie = $$("div", {
  9073. "style": {
  9074. "position": "absolute",
  9075. "bottom": "50px",
  9076. "right": "50px",
  9077. "zIndex": "9999",
  9078. "backgroundColor": "#2268bc",
  9079. "color": "#fff",
  9080. "padding": "12px 20px",
  9081. "cursor": "pointer",
  9082. "borderRadius": "4px",
  9083. },
  9084. "innerHTML": "确认并提交"
  9085. })
  9086. let aTool = ''
  9087. let _loading = document.createElement('div')
  9088. _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;"
  9089. // _loading.id = "";
  9090. let _lchild = document.createElement('div')
  9091. let _limg = document.createElement('img')
  9092. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9093. _limg.style = "width: 26px;margin-right: 10px;"
  9094. _lchild.appendChild(_limg)
  9095. let _lspan = document.createElement('span')
  9096. _lspan.innerHTML = "上传中..."
  9097. _lchild.appendChild(_lspan)
  9098. _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%);"
  9099. _loading.appendChild(_lchild)
  9100. var _box = $$('div', {
  9101. "style": {
  9102. "position": "relative",
  9103. "width": "100%",
  9104. "height": "100%",
  9105. },
  9106. })
  9107. _box.appendChild(_loading)
  9108. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9109. switch (str) {
  9110. case "whiteboard":
  9111. aTool = 1;
  9112. _iframe = $$("iframe", {
  9113. "frameborder": "no",
  9114. "border": "0",
  9115. "scrolling ": "no",
  9116. "style": {
  9117. "cssText": "border:0;width:100%;height:100%"
  9118. },
  9119. "src": "https://beta.iwb.cocorobo.cn/"
  9120. })
  9121. _box.appendChild(_iframe);
  9122. _box.appendChild(_jie);
  9123. _formdiv = new U.UF.UI.form(
  9124. "电子白板",
  9125. _box, {
  9126. "id": "whiteboards" + cid + stage + task + tool,
  9127. "style": {
  9128. "width": "90%",
  9129. "height": "90%",
  9130. "overflow": 'hidden'
  9131. },
  9132. "onresize": function () { }
  9133. }, {
  9134. closecallback: function () { }
  9135. }, {
  9136. "style": {
  9137. "height": "36px"
  9138. }
  9139. }).form; //创建窗体
  9140. _taskbar = {
  9141. "id": str + _formdiv.id,
  9142. "style": {
  9143. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9144. },
  9145. "name": "电子白板",
  9146. "forms": _formdiv,
  9147. "click": function () {
  9148. U.MD.D.I.openApplication(str, obj, info);
  9149. }
  9150. }
  9151. break;
  9152. case "mind":
  9153. aTool = 3;
  9154. _iframe = $$("iframe", {
  9155. "frameborder": "no",
  9156. "border": "0",
  9157. "scrolling ": "no",
  9158. "style": {
  9159. "cssText": "border:0;width:100%;height:100%"
  9160. },
  9161. "src": "/kityminder-editor/dist/index.html"
  9162. });
  9163. _box.appendChild(_iframe);
  9164. _box.appendChild(_jie);
  9165. _formdiv = new U.UF.UI.form(
  9166. "思维导图",
  9167. _box, { //"/jsmind/example/demo.html"
  9168. "id": "minds" + cid + stage + task + tool,
  9169. "style": {
  9170. "width": "90%",
  9171. "height": "90%",
  9172. "overflow": 'hidden'
  9173. },
  9174. "onresize": function () { }
  9175. }, {
  9176. closecallback: function () { }
  9177. }, {
  9178. "style": {
  9179. "height": "36px"
  9180. }
  9181. }).form; //创建窗体
  9182. _taskbar = {
  9183. "id": str + _formdiv.id,
  9184. "style": {
  9185. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9186. },
  9187. "name": "思维导图",
  9188. "forms": _formdiv,
  9189. "click": function () {
  9190. U.MD.D.I.openApplication(str, obj, info);
  9191. }
  9192. }
  9193. break;
  9194. case "doc":
  9195. aTool = 6;
  9196. _iframe = $$("iframe", {
  9197. "frameborder": "no",
  9198. "border": "0",
  9199. "scrolling ": "no",
  9200. "style": {
  9201. "cssText": "border:0;width:100%;height:100%"
  9202. },
  9203. "src": "/Office/Word/WordEditArea.htm"
  9204. })
  9205. _box.appendChild(_iframe);
  9206. _box.appendChild(_jie);
  9207. _formdiv = new U.UF.UI.form(
  9208. "协同文档",
  9209. _box, {
  9210. "id": "docs" + cid + stage + task + tool,
  9211. "style": {
  9212. "width": "90%",
  9213. "height": "90%",
  9214. "overflow": 'hidden'
  9215. },
  9216. "onresize": function () { }
  9217. }, {
  9218. closecallback: function () { }
  9219. }, {
  9220. "style": {
  9221. "height": "36px"
  9222. }
  9223. }).form; //创建窗体
  9224. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9225. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9226. })
  9227. _taskbar = {
  9228. "id": str + _formdiv.id,
  9229. "style": {
  9230. "backgroundImage": "url(/img/icon/doc.png)"
  9231. },
  9232. "name": "协同文档",
  9233. "forms": _formdiv,
  9234. "click": function () {
  9235. U.MD.D.I.openApplication(str, obj, info);
  9236. }
  9237. }
  9238. break;
  9239. }
  9240. const script1 = document.createElement("script");
  9241. script1.type = "text/javascript";
  9242. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9243. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9244. const script2 = document.createElement("script");
  9245. script2.type = "text/javascript";
  9246. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9247. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9248. const script3 = document.createElement("script");
  9249. script3.type = "text/javascript";
  9250. script3.charset = "UTF-8";
  9251. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9252. const script4 = document.createElement("script");
  9253. script4.type = "text/javascript";
  9254. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9255. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9256. if (_iframe) {
  9257. if (str == 'doc') {
  9258. _iframe = _formdiv.querySelector('iframe')
  9259. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9260. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9261. _iframe.contentWindow.document.body.appendChild(script1);
  9262. _iframe.contentWindow.document.body.appendChild(script2);
  9263. // _iframe.contentWindow.document.body.appendChild(script3);
  9264. _iframe.contentWindow.document.body.appendChild(script4);
  9265. })
  9266. if (onloadListener) {
  9267. _iframe.contentDocument.location.reload()
  9268. } else {
  9269. _iframe.contentDocument.location.reload()
  9270. }
  9271. } else if (str == 'mind') {
  9272. _iframe = _formdiv.querySelector('iframe')
  9273. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9274. _iframe.contentWindow.document.body.appendChild(script1);
  9275. _iframe.contentWindow.document.body.appendChild(script2);
  9276. _iframe.contentWindow.document.body.appendChild(script4);
  9277. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9278. })
  9279. if (onloadListener) {
  9280. _iframe.contentDocument.location.reload()
  9281. } else {
  9282. _iframe.contentDocument.location.reload()
  9283. }
  9284. } else {
  9285. _iframe.onload = () => {
  9286. _iframe.contentWindow.document.body.appendChild(script1);
  9287. _iframe.contentWindow.document.body.appendChild(script2);
  9288. // _iframe.contentWindow.document.body.appendChild(script3);
  9289. _iframe.contentWindow.document.body.appendChild(script4);
  9290. };
  9291. }
  9292. _jie.onclick = async () => {
  9293. let text = ''
  9294. if (aTool == 6) {
  9295. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9296. } else if (aTool == 3) {
  9297. text = await U.MD.D.I.getEditorContent(_iframe);
  9298. }
  9299. _loading.style.display = 'flex'
  9300. console.log(_loading);
  9301. var _ajs = _iframe.contentWindow.document.createElement("script");
  9302. _ajs.type = "text/javascript";
  9303. _ajs.innerHTML =
  9304. // 'console.log(' + _loading + ');\n' +
  9305. 'var _js = document.createElement("script");\n' +
  9306. '_js.type="text/javascript";\n' +
  9307. '_js.charset="UTF-8";\n' +
  9308. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9309. "_js.onload = function(){\n" +
  9310. ' var a = document.getElementsByTagName("img")\n' +
  9311. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9312. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9313. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9314. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9315. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9316. "beforeUpload_shishi(file," +
  9317. "'" +
  9318. _userid +
  9319. "'" +
  9320. ", " +
  9321. "'" +
  9322. _cid +
  9323. "'" +
  9324. ", " +
  9325. "'" +
  9326. _stage +
  9327. "'" +
  9328. ", " +
  9329. "'" +
  9330. _task +
  9331. "'" +
  9332. ", " +
  9333. "'" +
  9334. _tool +
  9335. "'" +
  9336. ", " +
  9337. "'" +
  9338. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9339. "'" +
  9340. ", " +
  9341. "'" +
  9342. aTool +
  9343. "'" +
  9344. ", " +
  9345. "`" +
  9346. text +
  9347. "`" +
  9348. ")\n" +
  9349. " });\n" +
  9350. "}\n" +
  9351. "document.head.appendChild(_js);\n";
  9352. _iframe.contentWindow.document.head.appendChild(_ajs);
  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.openApplicationYu = function (str, cid, stage, task, tool) {
  9362. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9363. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9364. _userinfo = US.userInfo, //登录用户信息
  9365. _userid = US.userInfo.userid //登录用户id
  9366. let _iframe;
  9367. let _cid = cid,
  9368. _stage = stage,
  9369. _task = task,
  9370. _tool = tool;
  9371. var _jie = $$("div", {
  9372. "style": {
  9373. "position": "absolute",
  9374. "bottom": "50px",
  9375. "right": "50px",
  9376. "zIndex": "9999",
  9377. "backgroundColor": "#2268bc",
  9378. "color": "#fff",
  9379. "padding": "12px 20px",
  9380. "cursor": "pointer",
  9381. "borderRadius": "4px",
  9382. },
  9383. "innerHTML": "上传模板"
  9384. })
  9385. let aTool = ''
  9386. let _loading = document.createElement('div')
  9387. _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;"
  9388. // _loading.id = "";
  9389. let _lchild = document.createElement('div')
  9390. let _limg = document.createElement('img')
  9391. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9392. _limg.style = "width: 26px;margin-right: 10px;"
  9393. _lchild.appendChild(_limg)
  9394. let _lspan = document.createElement('span')
  9395. _lspan.innerHTML = "上传中..."
  9396. _lchild.appendChild(_lspan)
  9397. _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%);"
  9398. _loading.appendChild(_lchild)
  9399. var _box = $$('div', {
  9400. "style": {
  9401. "position": "relative",
  9402. "width": "100%",
  9403. "height": "100%",
  9404. },
  9405. })
  9406. _box.appendChild(_loading)
  9407. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9408. switch (str) {
  9409. case "whiteboard":
  9410. aTool = 1;
  9411. _iframe = $$("iframe", {
  9412. "frameborder": "no",
  9413. "border": "0",
  9414. "scrolling ": "no",
  9415. "style": {
  9416. "cssText": "border:0;width:100%;height:100%"
  9417. },
  9418. "src": "https://beta.iwb.cocorobo.cn/"
  9419. })
  9420. _box.appendChild(_iframe);
  9421. _box.appendChild(_jie);
  9422. _formdiv = new U.UF.UI.form(
  9423. "电子白板",
  9424. _box, {
  9425. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9426. "style": {
  9427. "width": "90%",
  9428. "height": "90%",
  9429. "overflow": 'hidden'
  9430. },
  9431. "onresize": function () { }
  9432. }, {
  9433. closecallback: function () { }
  9434. }, {
  9435. "style": {
  9436. "height": "36px"
  9437. }
  9438. }).form; //创建窗体
  9439. _taskbar = {
  9440. "id": str + _formdiv.id,
  9441. "style": {
  9442. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9443. },
  9444. "name": "电子白板",
  9445. "forms": _formdiv,
  9446. "click": function () {
  9447. U.MD.D.I.openApplication(str, obj, info);
  9448. }
  9449. }
  9450. break;
  9451. case "mind":
  9452. aTool = 3;
  9453. _iframe = $$("iframe", {
  9454. "frameborder": "no",
  9455. "border": "0",
  9456. "scrolling ": "no",
  9457. "style": {
  9458. "cssText": "border:0;width:100%;height:100%"
  9459. },
  9460. "src": "/kityminder-editor/dist/index.html"
  9461. });
  9462. _box.appendChild(_iframe);
  9463. _box.appendChild(_jie);
  9464. _formdiv = new U.UF.UI.form(
  9465. "思维导图",
  9466. _box, { //"/jsmind/example/demo.html"
  9467. "id": "minds_Yu" + cid + stage + task + tool,
  9468. "style": {
  9469. "width": "90%",
  9470. "height": "90%",
  9471. "overflow": 'hidden'
  9472. },
  9473. "onresize": function () { }
  9474. }, {
  9475. closecallback: function () { }
  9476. }, {
  9477. "style": {
  9478. "height": "36px"
  9479. }
  9480. }).form; //创建窗体
  9481. _taskbar = {
  9482. "id": str + _formdiv.id,
  9483. "style": {
  9484. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9485. },
  9486. "name": "思维导图",
  9487. "forms": _formdiv,
  9488. "click": function () {
  9489. U.MD.D.I.openApplication(str, obj, info);
  9490. }
  9491. }
  9492. break;
  9493. case "doc":
  9494. aTool = 6;
  9495. _iframe = $$("iframe", {
  9496. "frameborder": "no",
  9497. "border": "0",
  9498. "scrolling ": "no",
  9499. "style": {
  9500. "cssText": "border:0;width:100%;height:100%"
  9501. },
  9502. "src": "/Office/Word/WordEditArea.htm"
  9503. })
  9504. _box.appendChild(_iframe);
  9505. _box.appendChild(_jie);
  9506. _formdiv = new U.UF.UI.form(
  9507. "协同文档",
  9508. _box, {
  9509. "id": "docs_Yu" + cid + stage + task + tool,
  9510. "style": {
  9511. "width": "90%",
  9512. "height": "90%",
  9513. "overflow": 'hidden'
  9514. },
  9515. "onresize": function () { }
  9516. }, {
  9517. closecallback: function () { }
  9518. }, {
  9519. "style": {
  9520. "height": "36px"
  9521. }
  9522. }).form; //创建窗体
  9523. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9524. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9525. })
  9526. _taskbar = {
  9527. "id": str + _formdiv.id,
  9528. "style": {
  9529. "backgroundImage": "url(/img/icon/doc.png)"
  9530. },
  9531. "name": "协同文档",
  9532. "forms": _formdiv,
  9533. "click": function () {
  9534. U.MD.D.I.openApplication(str, obj, info);
  9535. }
  9536. }
  9537. break;
  9538. case "CocoPi":
  9539. aTool = 57;
  9540. _iframe = $$("iframe", {
  9541. "allowpaymentrequest": "allowpaymentrequest",
  9542. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9543. "webkitallowfullscreen": "",
  9544. "mozallowfullscreen": "",
  9545. "frameborder": "no",
  9546. "border": "0",
  9547. "scrolling ": "no",
  9548. "style": {
  9549. "cssText": "border:0;width:100%;height:100%"
  9550. },
  9551. "src": "https://pi.cocorobo.cn/"
  9552. })
  9553. _box.appendChild(_iframe);
  9554. _box.appendChild(_jie);
  9555. _formdiv = new U.UF.UI.form(
  9556. "CocoPi",
  9557. _box, {
  9558. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9559. "style": {
  9560. "width": "90%",
  9561. "height": "90%",
  9562. "overflow": 'hidden'
  9563. },
  9564. "onresize": function () { }
  9565. }, {
  9566. closecallback: function () { }
  9567. }, {
  9568. "style": {
  9569. "height": "36px"
  9570. }
  9571. }).form; //创建窗体
  9572. _taskbar = {
  9573. "id": str + _formdiv.id,
  9574. "style": {
  9575. "backgroundImage": "url(/img/icon/cocopi.png)"
  9576. },
  9577. "name": "CocoPi",
  9578. "forms": _formdiv,
  9579. "click": function () {
  9580. U.MD.D.I.openApplication(str, obj, info);
  9581. }
  9582. }
  9583. break;
  9584. }
  9585. if (_iframe) {
  9586. if (str == 'doc') {
  9587. _iframe = _formdiv.querySelector('iframe')
  9588. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9589. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9590. })
  9591. if (onloadListener) {
  9592. _iframe.contentDocument.location.reload()
  9593. } else {
  9594. _iframe.contentDocument.location.reload()
  9595. }
  9596. } else if (str == 'mind') {
  9597. _iframe = _formdiv.querySelector('iframe')
  9598. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9599. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9600. })
  9601. if (onloadListener) {
  9602. _iframe.contentDocument.location.reload()
  9603. } else {
  9604. _iframe.contentDocument.location.reload()
  9605. }
  9606. } else if (str == 'whiteboard') {
  9607. _iframe = _formdiv.querySelector('iframe')
  9608. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9609. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9610. })
  9611. // if (onloadListener) {
  9612. // try {
  9613. // _iframe.src += "?cocorobo="+new Date().getTime()
  9614. // _iframe.contentWindow.document.location.reload()
  9615. // } catch (error) {
  9616. // }
  9617. // } else {
  9618. // _iframe.contentDocument.location.reload()
  9619. // }
  9620. } else if (str == 'CocoPi') {
  9621. _iframe = _formdiv.querySelector('iframe')
  9622. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9623. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9624. })
  9625. if (onloadListener) {
  9626. _iframe.contentDocument.location.reload()
  9627. } else {
  9628. _iframe.contentDocument.location.reload()
  9629. }
  9630. } else {
  9631. _iframe.onload = () => { };
  9632. }
  9633. _jie.onclick = async () => {
  9634. let text = ''
  9635. let type = '2'
  9636. if (aTool == 1) {
  9637. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9638. type = '3'
  9639. } else if (aTool == 6) {
  9640. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9641. type = '1'
  9642. } else if (aTool == 3) {
  9643. text = await U.MD.D.I.getEditorContent(_iframe);
  9644. type = '2'
  9645. } else if (aTool == 57) {
  9646. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9647. type = '4'
  9648. }
  9649. _loading.style.display = 'flex'
  9650. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9651. }
  9652. }
  9653. //U.MD.D.I.openClick(str);
  9654. //如果有任务栏信息
  9655. // if (_taskbar) {
  9656. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9657. // }
  9658. }
  9659. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9660. var xmlhttp;
  9661. var Mac, Sn, DeviceId
  9662. if (window.XMLHttpRequest) {
  9663. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9664. xmlhttp = new XMLHttpRequest();
  9665. } else {
  9666. // IE6, IE5 浏览器执行代码
  9667. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9668. }
  9669. xmlhttp.onreadystatechange = function () {
  9670. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9671. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9672. // resolve(res.value[0][0].text);
  9673. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9674. }
  9675. }
  9676. }
  9677. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9678. xmlhttp.send();
  9679. }
  9680. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9681. var xmlhttp;
  9682. var Mac, Sn, DeviceId
  9683. if (window.XMLHttpRequest) {
  9684. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9685. xmlhttp = new XMLHttpRequest();
  9686. } else {
  9687. // IE6, IE5 浏览器执行代码
  9688. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9689. }
  9690. xmlhttp.onreadystatechange = function () {
  9691. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9692. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9693. // resolve(res.value[0][0].text);
  9694. if (type == '2') {
  9695. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9696. } else if (type == '3') {
  9697. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9698. } else if (type == '4') {
  9699. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9700. }
  9701. } else {
  9702. if (type == '2') {
  9703. iframe.contentWindow.editor.minder.importData('json', '')
  9704. } else if (type == '3') {
  9705. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9706. } else if (type == '4') {
  9707. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9708. }
  9709. }
  9710. }
  9711. }
  9712. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9713. xmlhttp.send();
  9714. }
  9715. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9716. var xmlhttp;
  9717. var Mac, Sn, DeviceId
  9718. if (window.XMLHttpRequest) {
  9719. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9720. xmlhttp = new XMLHttpRequest();
  9721. } else {
  9722. // IE6, IE5 浏览器执行代码
  9723. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9724. }
  9725. xmlhttp.onreadystatechange = function () {
  9726. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9727. if (xmlhttp.response) {
  9728. // resolve(res.value[0][0].text);
  9729. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9730. // $(fileInput).val('');
  9731. // });
  9732. span.innerHTML = '上传成功'
  9733. setTimeout(() => {
  9734. loading.style.display = 'none'
  9735. }, 1000);
  9736. }
  9737. }
  9738. }
  9739. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9740. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9741. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9742. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9743. // 设置请求头,表示请求体的编码格式
  9744. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9745. // 设置请求体,使用url-encoded格式的数据
  9746. }
  9747. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9748. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9749. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9750. _userinfo = US.userInfo, //登录用户信息
  9751. _userid = US.userInfo.userid //登录用户id
  9752. let _iframe;
  9753. let _cid = cid,
  9754. _stage = stage,
  9755. _task = task,
  9756. _tool = tool;
  9757. var _jie = $$("div", {
  9758. "style": {
  9759. "position": "absolute",
  9760. "bottom": "50px",
  9761. "right": "50px",
  9762. "zIndex": "9999",
  9763. "backgroundColor": "#2268bc",
  9764. "color": "#fff",
  9765. "padding": "12px 20px",
  9766. "cursor": "pointer",
  9767. "borderRadius": "4px",
  9768. },
  9769. "innerHTML": "提交作业"
  9770. })
  9771. let aTool = ''
  9772. let _loading = document.createElement('div')
  9773. _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;"
  9774. // _loading.id = "";
  9775. let _lchild = document.createElement('div')
  9776. let _limg = document.createElement('img')
  9777. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9778. _limg.style = "width: 26px;margin-right: 10px;"
  9779. _lchild.appendChild(_limg)
  9780. let _lspan = document.createElement('span')
  9781. _lspan.innerHTML = "上传中..."
  9782. _lchild.appendChild(_lspan)
  9783. _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%);"
  9784. _loading.appendChild(_lchild)
  9785. var _box = $$('div', {
  9786. "style": {
  9787. "position": "relative",
  9788. "width": "100%",
  9789. "height": "100%",
  9790. },
  9791. })
  9792. _box.appendChild(_loading)
  9793. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9794. switch (str) {
  9795. case "CocoPi":
  9796. aTool = 57;
  9797. _iframe = $$("iframe", {
  9798. "allowpaymentrequest": "allowpaymentrequest",
  9799. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9800. "webkitallowfullscreen": "",
  9801. "mozallowfullscreen": "",
  9802. "frameborder": "no",
  9803. "border": "0",
  9804. "scrolling ": "no",
  9805. "style": {
  9806. "cssText": "border:0;width:100%;height:100%"
  9807. },
  9808. "src": "https://pi.cocorobo.cn/"
  9809. })
  9810. _box.appendChild(_iframe);
  9811. _box.appendChild(_jie);
  9812. _formdiv = new U.UF.UI.form(
  9813. "CocoPi",
  9814. _box, {
  9815. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9816. "style": {
  9817. "width": "90%",
  9818. "height": "90%",
  9819. "overflow": 'hidden'
  9820. },
  9821. "onresize": function () { }
  9822. }, {
  9823. closecallback: function () { }
  9824. }, {
  9825. "style": {
  9826. "height": "36px"
  9827. }
  9828. }).form; //创建窗体
  9829. _taskbar = {
  9830. "id": str + _formdiv.id,
  9831. "style": {
  9832. "backgroundImage": "url(/img/icon/cocopi.png)"
  9833. },
  9834. "name": "CocoPi",
  9835. "forms": _formdiv,
  9836. "click": function () {
  9837. U.MD.D.I.openApplication(str, obj, info);
  9838. }
  9839. }
  9840. break;
  9841. }
  9842. if (_iframe) {
  9843. if (str == 'CocoPi') {
  9844. _iframe = _formdiv.querySelector('iframe')
  9845. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9846. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9847. })
  9848. if (onloadListener) {
  9849. _iframe.contentDocument.location.reload()
  9850. } else {
  9851. _iframe.contentDocument.location.reload()
  9852. }
  9853. }
  9854. _jie.onclick = async () => {
  9855. let text = ''
  9856. if (aTool == 57) {
  9857. text = _iframe.contentWindow.getLoadXmlStr()
  9858. }
  9859. _loading.style.display = 'flex'
  9860. console.log(_loading);
  9861. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9862. _loading.style.display = 'none'
  9863. let _div = document.createElement('div')
  9864. _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;"
  9865. let _inner = document.createElement('div')
  9866. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9867. _inner.innerHTML = "上传成功"
  9868. _div.appendChild(_inner)
  9869. _iframe.contentWindow.window.document.body.appendChild(_div)
  9870. _div.onclick = () => {
  9871. _iframe.contentWindow.window.document.body.removeChild(_div)
  9872. }
  9873. setTimeout(() => {
  9874. _iframe.contentWindow.window.document.body.removeChild(_div)
  9875. }, 1000);
  9876. }, [], { "type": "POST", "withCredentials": true });
  9877. }
  9878. }
  9879. }
  9880. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9881. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9882. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9883. _userid = student.userid, //登录用户id
  9884. _username = student.student //用户名字
  9885. let _iframe;
  9886. let _cid = cid,
  9887. _stage = stage,
  9888. _task = task,
  9889. _tool = tool;
  9890. var _jie = $$("div", {
  9891. "style": {
  9892. "position": "absolute",
  9893. "bottom": "50px",
  9894. "right": "50px",
  9895. "zIndex": "9999",
  9896. "backgroundColor": "#2268bc",
  9897. "color": "#fff",
  9898. "padding": "12px 20px",
  9899. "cursor": "pointer",
  9900. "borderRadius": "4px",
  9901. },
  9902. "innerHTML": "提交作业"
  9903. })
  9904. let aTool = ''
  9905. let _loading = document.createElement('div')
  9906. _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;"
  9907. // _loading.id = "";
  9908. let _lchild = document.createElement('div')
  9909. let _limg = document.createElement('img')
  9910. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9911. _limg.style = "width: 26px;margin-right: 10px;"
  9912. _lchild.appendChild(_limg)
  9913. let _lspan = document.createElement('span')
  9914. _lspan.innerHTML = "上传中..."
  9915. _lchild.appendChild(_lspan)
  9916. _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%);"
  9917. _loading.appendChild(_lchild)
  9918. var _box = $$('div', {
  9919. "style": {
  9920. "position": "relative",
  9921. "width": "100%",
  9922. "height": "100%",
  9923. },
  9924. })
  9925. _box.appendChild(_loading)
  9926. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9927. switch (str) {
  9928. case "CocoPi":
  9929. aTool = 57;
  9930. _iframe = $$("iframe", {
  9931. "allowpaymentrequest": "allowpaymentrequest",
  9932. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9933. "webkitallowfullscreen": "",
  9934. "mozallowfullscreen": "",
  9935. "frameborder": "no",
  9936. "border": "0",
  9937. "scrolling ": "no",
  9938. "style": {
  9939. "cssText": "border:0;width:100%;height:100%"
  9940. },
  9941. "src": "https://pi.cocorobo.cn/"
  9942. })
  9943. _box.appendChild(_iframe);
  9944. _box.appendChild(_jie);
  9945. _formdiv = new U.UF.UI.form(
  9946. "CocoPi-" + _username,
  9947. _box, {
  9948. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9949. "style": {
  9950. "width": "90%",
  9951. "height": "90%",
  9952. "overflow": 'hidden'
  9953. },
  9954. "onresize": function () { }
  9955. }, {
  9956. closecallback: function () { }
  9957. }, {
  9958. "style": {
  9959. "height": "36px"
  9960. }
  9961. }).form; //创建窗体
  9962. _taskbar = {
  9963. "id": str + _formdiv.id,
  9964. "style": {
  9965. "backgroundImage": "url(/img/icon/cocopi.png)"
  9966. },
  9967. "name": "CocoPi",
  9968. "forms": _formdiv,
  9969. "click": function () {
  9970. U.MD.D.I.openApplication(str, obj, info);
  9971. }
  9972. }
  9973. break;
  9974. }
  9975. if (_iframe) {
  9976. if (str == 'CocoPi') {
  9977. _iframe = _formdiv.querySelector('iframe')
  9978. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9979. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9980. })
  9981. if (onloadListener) {
  9982. _iframe.contentDocument.location.reload()
  9983. } else {
  9984. _iframe.contentDocument.location.reload()
  9985. }
  9986. }
  9987. _jie.onclick = async () => {
  9988. let text = ''
  9989. if (aTool == 57) {
  9990. text = _iframe.contentWindow.getLoadXmlStr()
  9991. }
  9992. _loading.style.display = 'flex'
  9993. console.log(_loading);
  9994. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9995. _loading.style.display = 'none'
  9996. let _div = document.createElement('div')
  9997. _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;"
  9998. let _inner = document.createElement('div')
  9999. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10000. _inner.innerHTML = "上传成功"
  10001. _div.appendChild(_inner)
  10002. _iframe.contentWindow.window.document.body.appendChild(_div)
  10003. _div.onclick = () => {
  10004. _iframe.contentWindow.window.document.body.removeChild(_div)
  10005. }
  10006. setTimeout(() => {
  10007. _iframe.contentWindow.window.document.body.removeChild(_div)
  10008. }, 1000);
  10009. }, [], { "type": "POST", "withCredentials": true });
  10010. }
  10011. }
  10012. }
  10013. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10014. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10015. if (res.value[0].length > 0) {
  10016. if (atool == 57) {
  10017. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10018. }
  10019. } else {
  10020. if (atool == 57) {
  10021. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10022. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10023. }
  10024. }
  10025. }, [], { "type": "POST", "withCredentials": true });
  10026. }