DeskTop.js 626 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. { "Name": "教研室", "Url": "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": "tcTeacher", "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. ];
  1219. //盐田区幼儿园
  1220. U.MD.D.I.ytyStudentDeskIcon = [
  1221. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1222. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1223. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1224. ];
  1225. //scnuai
  1226. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1227. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1228. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1230. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1231. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1232. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1233. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1234. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1235. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1236. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1237. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1238. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1239. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1240. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1242. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1244. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1245. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1246. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1247. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1248. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1249. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1250. ];
  1251. //scnuai
  1252. U.MD.D.I.scnuaiAdminDeskIcon = [
  1253. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1254. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1255. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1256. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1257. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1258. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1259. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1260. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1261. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1262. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1263. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1264. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1265. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1268. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1269. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1270. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1271. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1272. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1273. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1274. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1275. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1276. ];
  1277. //scnuai
  1278. U.MD.D.I.scnuaiStudentDeskIcon = [
  1279. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1280. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1281. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1282. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1283. ];
  1284. //cocobiz
  1285. U.MD.D.I.cocobizteacherDeskIcon = [
  1286. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1287. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1288. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1289. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1290. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1291. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1292. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1293. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1294. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1295. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1296. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1297. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1298. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1299. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1300. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1301. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1302. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1303. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1304. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1305. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1306. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1307. ];
  1308. //cocobiz
  1309. U.MD.D.I.cocobizStudentDeskIcon = [
  1310. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1311. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1312. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1313. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1314. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1315. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1316. ];
  1317. //xxzjky
  1318. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1319. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1320. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1321. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1322. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1323. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1324. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1325. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1326. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1327. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1328. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1329. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1330. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1331. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1332. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1333. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1334. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1335. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1336. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1337. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1338. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1339. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1340. ];
  1341. //xxzjky
  1342. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1343. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1344. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1345. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1346. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1347. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1348. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1349. ];
  1350. //nsfx
  1351. U.MD.D.I.nsfxTeacherDeskIcon = [
  1352. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1353. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1354. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1355. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1356. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1357. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1358. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1359. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1360. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1361. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1362. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1363. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1364. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1365. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1366. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1367. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1368. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1369. ];
  1370. //nsfx
  1371. U.MD.D.I.nsfxStudentDeskIcon = [
  1372. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1374. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1375. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1376. ];
  1377. //stia
  1378. U.MD.D.I.stiaTeacherDeskIcon = [
  1379. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1380. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1381. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1382. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1383. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1385. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1386. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1387. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1388. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1389. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1391. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1392. ];
  1393. //stia
  1394. U.MD.D.I.stiaStudentDeskIcon = [
  1395. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1396. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1397. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1398. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1399. ];
  1400. //szdjg
  1401. U.MD.D.I.szdjgTeacherDeskIcon = [
  1402. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1403. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1404. ];
  1405. //szdjg
  1406. U.MD.D.I.szdjgStudentDeskIcon = [
  1407. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1408. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1409. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1410. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1411. ];
  1412. //010607
  1413. U.MD.D.I.x010607TeacherDeskIcon = [
  1414. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1415. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1416. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1417. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1418. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1419. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1420. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1421. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1422. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1423. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1424. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1425. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1426. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1427. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1428. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1429. ];
  1430. //010607
  1431. U.MD.D.I.x010607StudentDeskIcon = [
  1432. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1433. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1434. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1435. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1436. ];
  1437. //010608
  1438. U.MD.D.I.x010608TeacherDeskIcon = [
  1439. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1440. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1441. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1442. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1443. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1444. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1448. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1449. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1450. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1451. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1452. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1453. ];
  1454. //010608
  1455. U.MD.D.I.x010608StudentDeskIcon = [
  1456. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1458. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1459. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1460. ];
  1461. //xhly
  1462. U.MD.D.I.xhlyTeacherDeskIcon = [
  1463. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1464. ];
  1465. //010608
  1466. U.MD.D.I.xhlyStudentDeskIcon = [
  1467. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1468. ];
  1469. //北师大
  1470. U.MD.D.I.BSDNSteacherDeskIcon = [
  1471. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1472. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1473. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1474. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1475. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1476. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1477. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1478. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1479. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1480. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1481. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1482. ];
  1483. //北师大
  1484. U.MD.D.I.BSDNSstudentDeskIcon = [
  1485. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1489. ];
  1490. //CUHK_EDU
  1491. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1492. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1493. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1494. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1495. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1496. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1497. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1498. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1499. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1500. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1501. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1502. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1503. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1504. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1505. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1506. ];
  1507. //CUHK_EDU
  1508. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1509. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1510. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1511. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1513. ];
  1514. //010503
  1515. U.MD.D.I.x010503TeacherDeskIcon = [
  1516. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1517. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1518. ];
  1519. //010503
  1520. U.MD.D.I.x010503StudentDeskIcon = [
  1521. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1522. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1523. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1524. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1525. ];
  1526. //SPROUT Lab
  1527. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1528. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1529. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1530. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1531. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1532. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1533. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1534. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1535. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1536. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1537. ];
  1538. //SPROUT Lab
  1539. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1542. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1543. ];
  1544. //010204
  1545. U.MD.D.I.x010204TeacherDeskIcon = [
  1546. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1547. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. ];
  1549. //010204
  1550. U.MD.D.I.x010204StudentDeskIcon = [
  1551. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1552. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1553. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1554. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1555. ];
  1556. //trail
  1557. U.MD.D.I.trailTeacherDeskIcon = [
  1558. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1559. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1560. ];
  1561. //trail
  1562. U.MD.D.I.trailStudentDeskIcon = [
  1563. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1564. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1565. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1566. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1567. ];
  1568. //010504
  1569. U.MD.D.I.x010504TeacherDeskIcon = [
  1570. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1571. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1572. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1573. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1574. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1575. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1576. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1577. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1578. ];
  1579. //010504
  1580. U.MD.D.I.x010504StudentDeskIcon = [
  1581. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1582. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1583. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1584. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. ];
  1586. //#region 桌面初始化a
  1587. /**
  1588. * 初始化桌面的起始函数
  1589. *
  1590. */
  1591. U.MD.D.I.init = function () {
  1592. if ($("#U_MD_D_K")[0]) {
  1593. //初始化桌面图标
  1594. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1595. // var clickUrl = ':12588/requestIp.php';
  1596. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1597. // U.MD.D.I.Ip = data;
  1598. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1599. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1600. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1601. // })
  1602. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1603. // })
  1604. }
  1605. }
  1606. /**
  1607. * 模式切换
  1608. *
  1609. */
  1610. U.MD.D.I.ModeCheck = function (type) {
  1611. if (US.Config.type == type) {
  1612. return
  1613. }
  1614. US.Config.type = type
  1615. $('.U_PBL_Check .active')[0].className = ''
  1616. if (type == 1) {
  1617. $('.U_PBL_Check div')[0].className = 'active'
  1618. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1619. } else {
  1620. $('.U_PBL_Check div')[1].className = 'active'
  1621. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1622. }
  1623. //初始化桌面图标
  1624. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1625. if (type == 2) {
  1626. U.MD.D.I.openApplication("project")
  1627. }
  1628. }
  1629. /**
  1630. * 隐藏任务栏
  1631. *
  1632. * @param {element} 桌面元素
  1633. */
  1634. U.MD.D.I.hiddenTaskbar = function (el) {
  1635. //任务栏位置变小
  1636. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1637. //桌面的位置变大
  1638. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1639. }
  1640. /**
  1641. * 隐藏任务栏
  1642. *
  1643. * @param {element} 桌面元素
  1644. */
  1645. U.MD.D.I.hiddenTaskbarout = function (el) {
  1646. //任务栏位置变小
  1647. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1648. //任务栏位置变化
  1649. U.selectEl(el).css({ "bottom": "-60px" });
  1650. //桌面的位置变大
  1651. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1652. }
  1653. }
  1654. /**
  1655. * 初始化打印桌面图标
  1656. *
  1657. * @param {element} 桌面元素
  1658. */
  1659. U.MD.D.I.initDesktopIcons = function (el, type) {
  1660. var i, //用于循环
  1661. _content, //桌面图标元素
  1662. _iconcontent, //桌面图标元素
  1663. _frag = $$("frag"), //定义一个碎片元素
  1664. _type = US.userInfo.type,
  1665. _org = US.userInfo.org,
  1666. _oid = US.userInfo.organizeid,
  1667. _role = US.userInfo.role,
  1668. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1669. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1670. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1671. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1672. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1673. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1674. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1675. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1676. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1677. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1678. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1679. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1680. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1681. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1682. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1683. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1684. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1685. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1686. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1687. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1688. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1689. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1690. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1691. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1692. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1693. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1694. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1695. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1696. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1697. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1698. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1699. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1700. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1701. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1702. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1703. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1704. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1705. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1706. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1707. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1708. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1709. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1710. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1711. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1712. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1713. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1714. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1715. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1716. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1717. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1718. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1719. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1720. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1721. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1722. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1723. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1724. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1725. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1726. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1727. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1728. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1729. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1730. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1731. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1732. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1733. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1734. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1735. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1736. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1737. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1738. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1739. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1740. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1741. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1742. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1743. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1744. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1745. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1746. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1747. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1748. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1749. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1750. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1751. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1752. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1753. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1754. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1755. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1756. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1757. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1758. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1759. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1760. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1761. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1762. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1763. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1764. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1765. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1766. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1767. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1768. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1769. 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'];
  1770. 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'];
  1771. //清楚桌面图标
  1772. el.innerHTML = "";
  1773. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1774. _teacherDesktopIconInfo.push(
  1775. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1776. { "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)" } },
  1777. )
  1778. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1779. }
  1780. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1781. _teacherDesktopIconInfo.push(
  1782. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1783. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1784. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1785. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1786. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1787. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1788. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1789. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1790. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1791. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1792. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1793. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1794. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1795. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1796. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1797. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1798. )
  1799. }
  1800. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1801. _teacherDesktopIconInfo.push(
  1802. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1803. )
  1804. }
  1805. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1806. // _teacherDesktopIconInfo.push(
  1807. // )
  1808. // }
  1809. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1810. _teacherDesktopIconInfo.push(
  1811. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1812. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1813. )
  1814. }
  1815. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1816. _teacherDesktopIconInfo.push(
  1817. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1818. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1819. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1820. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1821. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1822. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1823. )
  1824. _studentDesktopIconInfo.push(
  1825. )
  1826. }
  1827. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1828. _teacherDesktopIconInfo.push(
  1829. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1830. )
  1831. _studentDesktopIconInfo.push(
  1832. )
  1833. }
  1834. //010606 组织
  1835. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1836. _teacherDesktopIconInfo.push(
  1837. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1838. )
  1839. _studentDesktopIconInfo.push(
  1840. )
  1841. }
  1842. //麒麟二中 和 民新小学
  1843. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1844. _teacherDesktopIconInfo.push(
  1845. )
  1846. }
  1847. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1848. _teacherDesktopIconInfo.push(
  1849. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1850. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1851. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1852. )
  1853. }
  1854. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  1855. _hkTeacherDeskIconInfo.push(
  1856. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1857. )
  1858. }
  1859. //北师大附中(010601)
  1860. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1861. // _teacherDesktopIconInfo.push(
  1862. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1863. // )
  1864. // _studentDesktopIconInfo.push(
  1865. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1866. // )
  1867. // }
  1868. //樂善堂余近卿中學
  1869. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1870. _teacherDesktopIconInfo.push(
  1871. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1872. )
  1873. }
  1874. // Education Artificial Intelligence
  1875. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1876. _teacherDesktopIconInfo.push(
  1877. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1878. )
  1879. }
  1880. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1881. _teacherDesktopIconInfo.push(
  1882. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1883. )
  1884. }
  1885. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1886. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1887. _teacherDesktopIconInfo.push(
  1888. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1889. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1890. )
  1891. }
  1892. //麒麟二中
  1893. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1894. _studentDesktopIconInfo.push(
  1895. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1896. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1897. )
  1898. }
  1899. //万科双语
  1900. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1901. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1902. if (el.Name == '项目管理') {
  1903. el.Name = 'PBL项目'
  1904. }
  1905. return el
  1906. })
  1907. _studentDesktopIconInfo3.push(
  1908. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1909. )
  1910. }
  1911. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1912. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1913. return el.Name != '魔盒识字' && el.Name != '24点'
  1914. })
  1915. }
  1916. 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) {
  1917. _studentDesktopIconInfo.push(
  1918. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1919. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1920. )
  1921. }
  1922. //循环创建桌面图标
  1923. if (type == 1) {
  1924. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1925. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1926. _content = $$("div", {
  1927. className: "U_MD_D_KO",
  1928. "onmousedown": U.UF.C.closure(function (obj) {
  1929. //防止拖动图标即打开了桌面应用
  1930. U.MD.D.click(this, obj);
  1931. }, [_studentDesktopIconInfo[i]]),
  1932. "onclick": U.UF.C.closure(function (obj) {
  1933. //防止拖动图标即打开了桌面应用
  1934. U.MD.D.click(this, obj);
  1935. }, [_studentDesktopIconInfo[i]])
  1936. }, _frag); //
  1937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1940. }
  1941. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1942. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1943. _content = $$("div", {
  1944. className: "U_MD_D_KO",
  1945. "onmousedown": U.UF.C.closure(function (obj) {
  1946. //防止拖动图标即打开了桌面应用
  1947. U.MD.D.click(this, obj);
  1948. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1949. "onclick": U.UF.C.closure(function (obj) {
  1950. //防止拖动图标即打开了桌面应用
  1951. U.MD.D.click(this, obj);
  1952. }, [_hkZJLSStudentDeskIconInfo[i]])
  1953. }, _frag); //
  1954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1957. } //
  1958. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1959. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1960. _content = $$("div", {
  1961. className: "U_MD_D_KO",
  1962. "onmousedown": U.UF.C.closure(function (obj) {
  1963. //防止拖动图标即打开了桌面应用
  1964. U.MD.D.click(this, obj);
  1965. }, [_ytyStudentDeskIconInfo[i]]),
  1966. "onclick": U.UF.C.closure(function (obj) {
  1967. //防止拖动图标即打开了桌面应用
  1968. U.MD.D.click(this, obj);
  1969. }, [_ytyStudentDeskIconInfo[i]])
  1970. }, _frag); //
  1971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1974. } //
  1975. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1976. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1977. _content = $$("div", {
  1978. className: "U_MD_D_KO",
  1979. "onmousedown": U.UF.C.closure(function (obj) {
  1980. //防止拖动图标即打开了桌面应用
  1981. U.MD.D.click(this, obj);
  1982. }, [_jccssylStudentDeskIconInfo[i]]),
  1983. "onclick": U.UF.C.closure(function (obj) {
  1984. //防止拖动图标即打开了桌面应用
  1985. U.MD.D.click(this, obj);
  1986. }, [_jccssylStudentDeskIconInfo[i]])
  1987. }, _frag); //
  1988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1991. }
  1992. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1993. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1994. _content = $$("div", {
  1995. className: "U_MD_D_KO",
  1996. "onmousedown": U.UF.C.closure(function (obj) {
  1997. //防止拖动图标即打开了桌面应用
  1998. U.MD.D.click(this, obj);
  1999. }, [_scnuaiStudentDeskIconInfo[i]]),
  2000. "onclick": U.UF.C.closure(function (obj) {
  2001. //防止拖动图标即打开了桌面应用
  2002. U.MD.D.click(this, obj);
  2003. }, [_scnuaiStudentDeskIconInfo[i]])
  2004. }, _frag); //
  2005. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2006. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2007. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2008. }
  2009. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2010. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2011. _content = $$("div", {
  2012. className: "U_MD_D_KO",
  2013. "onmousedown": U.UF.C.closure(function (obj) {
  2014. //防止拖动图标即打开了桌面应用
  2015. U.MD.D.click(this, obj);
  2016. }, [_caleStudentDeskIconInfo[i]]),
  2017. "onclick": U.UF.C.closure(function (obj) {
  2018. //防止拖动图标即打开了桌面应用
  2019. U.MD.D.click(this, obj);
  2020. }, [_caleStudentDeskIconInfo[i]])
  2021. }, _frag); //
  2022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2025. }
  2026. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2027. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2028. _content = $$("div", {
  2029. className: "U_MD_D_KO",
  2030. "onmousedown": U.UF.C.closure(function (obj) {
  2031. //防止拖动图标即打开了桌面应用
  2032. U.MD.D.click(this, obj);
  2033. }, [_thuioeStudentDeskIconInfo[i]]),
  2034. "onclick": U.UF.C.closure(function (obj) {
  2035. //防止拖动图标即打开了桌面应用
  2036. U.MD.D.click(this, obj);
  2037. }, [_thuioeStudentDeskIconInfo[i]])
  2038. }, _frag); //
  2039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2042. }
  2043. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2044. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2045. _content = $$("div", {
  2046. className: "U_MD_D_KO",
  2047. "onmousedown": U.UF.C.closure(function (obj) {
  2048. //防止拖动图标即打开了桌面应用
  2049. U.MD.D.click(this, obj);
  2050. }, [_tpcStudentDeskIconInfo[i]]),
  2051. "onclick": U.UF.C.closure(function (obj) {
  2052. //防止拖动图标即打开了桌面应用
  2053. U.MD.D.click(this, obj);
  2054. }, [_tpcStudentDeskIconInfo[i]])
  2055. }, _frag); //
  2056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2059. } //
  2060. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2061. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2062. _content = $$("div", {
  2063. className: "U_MD_D_KO",
  2064. "onmousedown": U.UF.C.closure(function (obj) {
  2065. //防止拖动图标即打开了桌面应用
  2066. U.MD.D.click(this, obj);
  2067. }, [_chjyjStudentDeskIconInfo[i]]),
  2068. "onclick": U.UF.C.closure(function (obj) {
  2069. //防止拖动图标即打开了桌面应用
  2070. U.MD.D.click(this, obj);
  2071. }, [_chjyjStudentDeskIconInfo[i]])
  2072. }, _frag); //
  2073. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2074. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2075. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2076. }
  2077. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2078. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2079. _content = $$("div", {
  2080. className: "U_MD_D_KO",
  2081. "onmousedown": U.UF.C.closure(function (obj) {
  2082. //防止拖动图标即打开了桌面应用
  2083. U.MD.D.click(this, obj);
  2084. }, [_szjkyStudentDeskIconInfo[i]]),
  2085. "onclick": U.UF.C.closure(function (obj) {
  2086. //防止拖动图标即打开了桌面应用
  2087. U.MD.D.click(this, obj);
  2088. }, [_szjkyStudentDeskIconInfo[i]])
  2089. }, _frag); //
  2090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2093. }
  2094. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2095. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2096. _content = $$("div", {
  2097. className: "U_MD_D_KO",
  2098. "onmousedown": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_dseiStudentDeskIconInfo[i]]),
  2102. "onclick": U.UF.C.closure(function (obj) {
  2103. //防止拖动图标即打开了桌面应用
  2104. U.MD.D.click(this, obj);
  2105. }, [_dseiStudentDeskIconInfo[i]])
  2106. }, _frag); //
  2107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2110. }
  2111. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2112. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2113. _content = $$("div", {
  2114. className: "U_MD_D_KO",
  2115. "onmousedown": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2119. "onclick": U.UF.C.closure(function (obj) {
  2120. //防止拖动图标即打开了桌面应用
  2121. U.MD.D.click(this, obj);
  2122. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2123. }, _frag); //
  2124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2127. }
  2128. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2129. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2130. _content = $$("div", {
  2131. className: "U_MD_D_KO",
  2132. "onmousedown": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_nsfxStudentDeskIconInfo[i]]),
  2136. "onclick": U.UF.C.closure(function (obj) {
  2137. //防止拖动图标即打开了桌面应用
  2138. U.MD.D.click(this, obj);
  2139. }, [_nsfxStudentDeskIconInfo[i]])
  2140. }, _frag); //
  2141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2144. }
  2145. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2146. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2147. _content = $$("div", {
  2148. className: "U_MD_D_KO",
  2149. "onmousedown": U.UF.C.closure(function (obj) {
  2150. //防止拖动图标即打开了桌面应用
  2151. U.MD.D.click(this, obj);
  2152. }, [_stiaStudentDeskIconInfo[i]]),
  2153. "onclick": U.UF.C.closure(function (obj) {
  2154. //防止拖动图标即打开了桌面应用
  2155. U.MD.D.click(this, obj);
  2156. }, [_stiaStudentDeskIconInfo[i]])
  2157. }, _frag); //
  2158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2161. }
  2162. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2163. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2164. _content = $$("div", {
  2165. className: "U_MD_D_KO",
  2166. "onmousedown": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_szdjgStudentDeskIconInfo[i]]),
  2170. "onclick": U.UF.C.closure(function (obj) {
  2171. //防止拖动图标即打开了桌面应用
  2172. U.MD.D.click(this, obj);
  2173. }, [_szdjgStudentDeskIconInfo[i]])
  2174. }, _frag); //
  2175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2178. }
  2179. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2180. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2181. _content = $$("div", {
  2182. className: "U_MD_D_KO",
  2183. "onmousedown": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_x010607StudentDeskIconInfo[i]]),
  2187. "onclick": U.UF.C.closure(function (obj) {
  2188. //防止拖动图标即打开了桌面应用
  2189. U.MD.D.click(this, obj);
  2190. }, [_x010607StudentDeskIconInfo[i]])
  2191. }, _frag); //
  2192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2195. }
  2196. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2197. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2198. _content = $$("div", {
  2199. className: "U_MD_D_KO",
  2200. "onmousedown": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_xhlyStudentDeskIconInfo[i]]),
  2204. "onclick": U.UF.C.closure(function (obj) {
  2205. //防止拖动图标即打开了桌面应用
  2206. U.MD.D.click(this, obj);
  2207. }, [_xhlyStudentDeskIconInfo[i]])
  2208. }, _frag); //
  2209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2212. }
  2213. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2214. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2215. _content = $$("div", {
  2216. className: "U_MD_D_KO",
  2217. "onmousedown": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2221. "onclick": U.UF.C.closure(function (obj) {
  2222. //防止拖动图标即打开了桌面应用
  2223. U.MD.D.click(this, obj);
  2224. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2225. }, _frag); //
  2226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2229. }
  2230. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2231. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2232. _content = $$("div", {
  2233. className: "U_MD_D_KO",
  2234. "onmousedown": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_x010503StudentDeskIconInfo[i]]),
  2238. "onclick": U.UF.C.closure(function (obj) {
  2239. //防止拖动图标即打开了桌面应用
  2240. U.MD.D.click(this, obj);
  2241. }, [_x010503StudentDeskIconInfo[i]])
  2242. }, _frag); //
  2243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2246. }
  2247. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2248. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2249. _content = $$("div", {
  2250. className: "U_MD_D_KO",
  2251. "onmousedown": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_x010504StudentDeskIconInfo[i]]),
  2255. "onclick": U.UF.C.closure(function (obj) {
  2256. //防止拖动图标即打开了桌面应用
  2257. U.MD.D.click(this, obj);
  2258. }, [_x010504StudentDeskIconInfo[i]])
  2259. }, _frag); //
  2260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2263. }
  2264. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2265. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2266. _content = $$("div", {
  2267. className: "U_MD_D_KO",
  2268. "onmousedown": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_x010204StudentDeskIconInfo[i]]),
  2272. "onclick": U.UF.C.closure(function (obj) {
  2273. //防止拖动图标即打开了桌面应用
  2274. U.MD.D.click(this, obj);
  2275. }, [_x010204StudentDeskIconInfo[i]])
  2276. }, _frag); //
  2277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2280. }
  2281. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2282. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2283. _content = $$("div", {
  2284. className: "U_MD_D_KO",
  2285. "onmousedown": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_trailStudentDeskIconInfo[i]]),
  2289. "onclick": U.UF.C.closure(function (obj) {
  2290. //防止拖动图标即打开了桌面应用
  2291. U.MD.D.click(this, obj);
  2292. }, [_trailStudentDeskIconInfo[i]])
  2293. }, _frag); //
  2294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2297. }
  2298. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2299. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2300. _content = $$("div", {
  2301. className: "U_MD_D_KO",
  2302. "onmousedown": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2306. "onclick": U.UF.C.closure(function (obj) {
  2307. //防止拖动图标即打开了桌面应用
  2308. U.MD.D.click(this, obj);
  2309. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2310. }, _frag); //
  2311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2314. }
  2315. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2316. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2317. _content = $$("div", {
  2318. className: "U_MD_D_KO",
  2319. "onmousedown": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_x010608StudentDeskIconInfo[i]]),
  2323. "onclick": U.UF.C.closure(function (obj) {
  2324. //防止拖动图标即打开了桌面应用
  2325. U.MD.D.click(this, obj);
  2326. }, [_x010608StudentDeskIconInfo[i]])
  2327. }, _frag); //
  2328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2331. }
  2332. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2333. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2334. _content = $$("div", {
  2335. className: "U_MD_D_KO",
  2336. "onmousedown": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_siesStudentDeskIconInfo[i]]),
  2340. "onclick": U.UF.C.closure(function (obj) {
  2341. //防止拖动图标即打开了桌面应用
  2342. U.MD.D.click(this, obj);
  2343. }, [_siesStudentDeskIconInfo[i]])
  2344. }, _frag); //
  2345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2348. }
  2349. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2350. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2351. _content = $$("div", {
  2352. className: "U_MD_D_KO",
  2353. "onmousedown": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_guzmsStudentDeskIconInfo[i]]),
  2357. "onclick": U.UF.C.closure(function (obj) {
  2358. //防止拖动图标即打开了桌面应用
  2359. U.MD.D.click(this, obj);
  2360. }, [_guzmsStudentDeskIconInfo[i]])
  2361. }, _frag); //
  2362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2365. }
  2366. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2367. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2368. _content = $$("div", {
  2369. className: "U_MD_D_KO",
  2370. "onmousedown": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_hkStudentDeskIconInfo[i]]),
  2374. "onclick": U.UF.C.closure(function (obj) {
  2375. //防止拖动图标即打开了桌面应用
  2376. U.MD.D.click(this, obj);
  2377. }, [_hkStudentDeskIconInfo[i]])
  2378. }, _frag); //
  2379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2382. }
  2383. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2384. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2385. _content = $$("div", {
  2386. className: "U_MD_D_KO",
  2387. "onmousedown": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_hkaceStudentDeskIconInfo[i]]),
  2391. "onclick": U.UF.C.closure(function (obj) {
  2392. //防止拖动图标即打开了桌面应用
  2393. U.MD.D.click(this, obj);
  2394. }, [_hkaceStudentDeskIconInfo[i]])
  2395. }, _frag); //
  2396. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2397. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2398. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2399. }
  2400. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2401. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2402. _content = $$("div", {
  2403. className: "U_MD_D_KO",
  2404. "onmousedown": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2408. "onclick": U.UF.C.closure(function (obj) {
  2409. //防止拖动图标即打开了桌面应用
  2410. U.MD.D.click(this, obj);
  2411. }, [_BSDNSstudentDesktopIconInfo[i]])
  2412. }, _frag); //
  2413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2416. }
  2417. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2418. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2419. _content = $$("div", {
  2420. className: "U_MD_D_KO",
  2421. "onmousedown": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_cocobizStudentDeskIconInfo[i]]),
  2425. "onclick": U.UF.C.closure(function (obj) {
  2426. //防止拖动图标即打开了桌面应用
  2427. U.MD.D.click(this, obj);
  2428. }, [_cocobizStudentDeskIconInfo[i]])
  2429. }, _frag); //
  2430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2433. }
  2434. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2435. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2436. _content = $$("div", {
  2437. className: "U_MD_D_KO",
  2438. "onmousedown": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2442. "onclick": U.UF.C.closure(function (obj) {
  2443. //防止拖动图标即打开了桌面应用
  2444. U.MD.D.click(this, obj);
  2445. }, [_xxzjkyStudentDeskIconInfo[i]])
  2446. }, _frag); //
  2447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2450. }
  2451. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2452. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2453. _content = $$("div", {
  2454. className: "U_MD_D_KO",
  2455. "onmousedown": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_studentDesktopIconInfo[i]]),
  2459. "onclick": U.UF.C.closure(function (obj) {
  2460. //防止拖动图标即打开了桌面应用
  2461. U.MD.D.click(this, obj);
  2462. }, [_studentDesktopIconInfo[i]])
  2463. }, _frag); //
  2464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2467. }
  2468. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2469. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2470. _content = $$("div", {
  2471. className: "U_MD_D_KO",
  2472. "onmousedown": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_tcStudentDeskIconInfo[i]]),
  2476. "onclick": U.UF.C.closure(function (obj) {
  2477. //防止拖动图标即打开了桌面应用
  2478. U.MD.D.click(this, obj);
  2479. }, [_tcStudentDeskIconInfo[i]])
  2480. }, _frag); //
  2481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2484. }
  2485. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2486. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_szscStudentDeskIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_szscStudentDeskIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2503. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_studentDesktopIconInfo3[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_studentDesktopIconInfo3[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2518. }
  2519. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2520. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_studentDesktopIconInfo2[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_studentDesktopIconInfo2[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2535. }
  2536. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2537. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2538. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2539. continue
  2540. }
  2541. _content = $$("div", {
  2542. className: "U_MD_D_KO",
  2543. "onmousedown": U.UF.C.closure(function (obj) {
  2544. //防止拖动图标即打开了桌面应用
  2545. U.MD.D.click(this, obj);
  2546. }, [_wanketeacherDesktopIconInfo[i]]),
  2547. "onclick": U.UF.C.closure(function (obj) {
  2548. //防止拖动图标即打开了桌面应用
  2549. U.MD.D.click(this, obj);
  2550. }, [_wanketeacherDesktopIconInfo[i]])
  2551. }, _frag); //
  2552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2555. }
  2556. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2557. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2558. _content = $$("div", {
  2559. className: "U_MD_D_KO",
  2560. "onmousedown": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_wankeAdminDesktopIconInfo[i]]),
  2564. "onclick": U.UF.C.closure(function (obj) {
  2565. //防止拖动图标即打开了桌面应用
  2566. U.MD.D.click(this, obj);
  2567. }, [_wankeAdminDesktopIconInfo[i]])
  2568. }, _frag); //
  2569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2572. }
  2573. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2574. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2575. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2576. continue
  2577. }
  2578. _content = $$("div", {
  2579. className: "U_MD_D_KO",
  2580. "onmousedown": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2584. "onclick": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_scnuaiTeacherDeskIconInfo[i]])
  2588. }, _frag); //
  2589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2592. }
  2593. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2594. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2595. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2596. continue
  2597. }
  2598. _content = $$("div", {
  2599. className: "U_MD_D_KO",
  2600. "onmousedown": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2604. "onclick": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_BSDNSteacherDesktopIconInfo[i]])
  2608. }, _frag); //
  2609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2612. }
  2613. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2614. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2615. _content = $$("div", {
  2616. className: "U_MD_D_KO",
  2617. "onmousedown": U.UF.C.closure(function (obj) {
  2618. //防止拖动图标即打开了桌面应用
  2619. U.MD.D.click(this, obj);
  2620. }, [_scnuaiAdminDeskIconInfo[i]]),
  2621. "onclick": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_scnuaiAdminDeskIconInfo[i]])
  2625. }, _frag); //
  2626. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2627. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2628. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2629. }
  2630. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2631. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2632. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2633. continue
  2634. }
  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. }, [_jccssylTeacherDeskIconInfo[i]]),
  2641. "onclick": U.UF.C.closure(function (obj) {
  2642. //防止拖动图标即打开了桌面应用
  2643. U.MD.D.click(this, obj);
  2644. }, [_jccssylTeacherDeskIconInfo[i]])
  2645. }, _frag); //
  2646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2649. }
  2650. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2651. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2652. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2653. continue
  2654. }
  2655. _content = $$("div", {
  2656. className: "U_MD_D_KO",
  2657. "onmousedown": U.UF.C.closure(function (obj) {
  2658. //防止拖动图标即打开了桌面应用
  2659. U.MD.D.click(this, obj);
  2660. }, [_caleTeacherDeskIconInfo[i]]),
  2661. "onclick": U.UF.C.closure(function (obj) {
  2662. //防止拖动图标即打开了桌面应用
  2663. U.MD.D.click(this, obj);
  2664. }, [_caleTeacherDeskIconInfo[i]])
  2665. }, _frag); //
  2666. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2667. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2668. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2669. }
  2670. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2671. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2672. _content = $$("div", {
  2673. className: "U_MD_D_KO",
  2674. "onmousedown": U.UF.C.closure(function (obj) {
  2675. //防止拖动图标即打开了桌面应用
  2676. U.MD.D.click(this, obj);
  2677. }, [_tpcOrganizerDeskIconInfo[i]]),
  2678. "onclick": U.UF.C.closure(function (obj) {
  2679. //防止拖动图标即打开了桌面应用
  2680. U.MD.D.click(this, obj);
  2681. }, [_tpcOrganizerDeskIconInfo[i]])
  2682. }, _frag); //
  2683. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2684. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2685. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2686. }
  2687. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2688. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2689. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2690. continue
  2691. }
  2692. _content = $$("div", {
  2693. className: "U_MD_D_KO",
  2694. "onmousedown": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_tpcTeacherDeskIconInfo[i]]),
  2698. "onclick": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_tpcTeacherDeskIconInfo[i]])
  2702. }, _frag); //
  2703. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2704. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2705. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2706. }
  2707. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2708. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2709. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2710. continue
  2711. }
  2712. _content = $$("div", {
  2713. className: "U_MD_D_KO",
  2714. "onmousedown": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_teacherDesktopIconInfo2[i]]),
  2718. "onclick": U.UF.C.closure(function (obj) {
  2719. //防止拖动图标即打开了桌面应用
  2720. U.MD.D.click(this, obj);
  2721. }, [_teacherDesktopIconInfo2[i]])
  2722. }, _frag); //
  2723. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2724. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2725. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2726. }
  2727. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2728. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2729. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2730. continue
  2731. }
  2732. _content = $$("div", {
  2733. className: "U_MD_D_KO",
  2734. "onmousedown": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_thuioeTeacherDeskIconInfo[i]]),
  2738. "onclick": U.UF.C.closure(function (obj) {
  2739. //防止拖动图标即打开了桌面应用
  2740. U.MD.D.click(this, obj);
  2741. }, [_thuioeTeacherDeskIconInfo[i]])
  2742. }, _frag); //
  2743. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2744. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2745. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2746. }
  2747. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2748. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2749. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2750. continue
  2751. }
  2752. _content = $$("div", {
  2753. className: "U_MD_D_KO",
  2754. "onmousedown": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_lotechTeacherDeskIconInfo[i]]),
  2758. "onclick": U.UF.C.closure(function (obj) {
  2759. //防止拖动图标即打开了桌面应用
  2760. U.MD.D.click(this, obj);
  2761. }, [_lotechTeacherDeskIconInfo[i]])
  2762. }, _frag); //
  2763. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2764. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2765. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2766. }//
  2767. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2768. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2769. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2770. continue
  2771. }
  2772. _content = $$("div", {
  2773. className: "U_MD_D_KO",
  2774. "onmousedown": U.UF.C.closure(function (obj) {
  2775. //防止拖动图标即打开了桌面应用
  2776. U.MD.D.click(this, obj);
  2777. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2778. "onclick": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2782. }, _frag); //
  2783. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2784. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2785. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2786. }
  2787. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2788. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2789. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2790. continue
  2791. }
  2792. _content = $$("div", {
  2793. className: "U_MD_D_KO",
  2794. "onmousedown": U.UF.C.closure(function (obj) {
  2795. //防止拖动图标即打开了桌面应用
  2796. U.MD.D.click(this, obj);
  2797. }, [_siesTeacherDeskIconInfo[i]]),
  2798. "onclick": U.UF.C.closure(function (obj) {
  2799. //防止拖动图标即打开了桌面应用
  2800. U.MD.D.click(this, obj);
  2801. }, [_siesTeacherDeskIconInfo[i]])
  2802. }, _frag); //
  2803. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2804. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2805. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2806. }
  2807. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2808. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2809. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2810. continue
  2811. }
  2812. _content = $$("div", {
  2813. className: "U_MD_D_KO",
  2814. "onmousedown": U.UF.C.closure(function (obj) {
  2815. //防止拖动图标即打开了桌面应用
  2816. U.MD.D.click(this, obj);
  2817. }, [_guzmsTeacherDeskIconInfo[i]]),
  2818. "onclick": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_guzmsTeacherDeskIconInfo[i]])
  2822. }, _frag); //
  2823. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2824. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2825. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2826. }
  2827. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2828. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2829. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2830. continue
  2831. }
  2832. _content = $$("div", {
  2833. className: "U_MD_D_KO",
  2834. "onmousedown": U.UF.C.closure(function (obj) {
  2835. //防止拖动图标即打开了桌面应用
  2836. U.MD.D.click(this, obj);
  2837. }, [_longhuaTeacherDeskIconInfo[i]]),
  2838. "onclick": U.UF.C.closure(function (obj) {
  2839. //防止拖动图标即打开了桌面应用
  2840. U.MD.D.click(this, obj);
  2841. }, [_longhuaTeacherDeskIconInfo[i]])
  2842. }, _frag); //
  2843. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2844. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2845. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2846. }
  2847. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2848. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2849. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2850. continue
  2851. }
  2852. _content = $$("div", {
  2853. className: "U_MD_D_KO",
  2854. "onmousedown": U.UF.C.closure(function (obj) {
  2855. //防止拖动图标即打开了桌面应用
  2856. U.MD.D.click(this, obj);
  2857. }, [_ytyTeacherDeskIconInfo[i]]),
  2858. "onclick": U.UF.C.closure(function (obj) {
  2859. //防止拖动图标即打开了桌面应用
  2860. U.MD.D.click(this, obj);
  2861. }, [_ytyTeacherDeskIconInfo[i]])
  2862. }, _frag); //
  2863. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2866. }
  2867. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2868. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2869. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2870. continue
  2871. }
  2872. _content = $$("div", {
  2873. className: "U_MD_D_KO",
  2874. "onmousedown": U.UF.C.closure(function (obj) {
  2875. //防止拖动图标即打开了桌面应用
  2876. U.MD.D.click(this, obj);
  2877. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2878. "onclick": U.UF.C.closure(function (obj) {
  2879. //防止拖动图标即打开了桌面应用
  2880. U.MD.D.click(this, obj);
  2881. }, [_yunhaiTeacherDeskIconInfo[i]])
  2882. }, _frag); //
  2883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2886. } //_hkStudentDeskIconInfo
  2887. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2888. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2889. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2890. continue
  2891. }
  2892. _content = $$("div", {
  2893. className: "U_MD_D_KO",
  2894. "onmousedown": U.UF.C.closure(function (obj) {
  2895. //防止拖动图标即打开了桌面应用
  2896. U.MD.D.click(this, obj);
  2897. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2898. "onclick": U.UF.C.closure(function (obj) {
  2899. //防止拖动图标即打开了桌面应用
  2900. U.MD.D.click(this, obj);
  2901. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2902. }, _frag); //
  2903. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2904. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2905. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2906. }
  2907. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2908. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2909. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2910. continue
  2911. }
  2912. _content = $$("div", {
  2913. className: "U_MD_D_KO",
  2914. "onmousedown": U.UF.C.closure(function (obj) {
  2915. //防止拖动图标即打开了桌面应用
  2916. U.MD.D.click(this, obj);
  2917. }, [_hkTeacherDeskIconInfo[i]]),
  2918. "onclick": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_hkTeacherDeskIconInfo[i]])
  2922. }, _frag); //
  2923. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2924. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2925. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2926. }
  2927. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2928. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2929. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2930. continue
  2931. }
  2932. _content = $$("div", {
  2933. className: "U_MD_D_KO",
  2934. "onmousedown": U.UF.C.closure(function (obj) {
  2935. //防止拖动图标即打开了桌面应用
  2936. U.MD.D.click(this, obj);
  2937. }, [_hkaceTeacherDeskIconInfo[i]]),
  2938. "onclick": U.UF.C.closure(function (obj) {
  2939. //防止拖动图标即打开了桌面应用
  2940. U.MD.D.click(this, obj);
  2941. }, [_hkaceTeacherDeskIconInfo[i]])
  2942. }, _frag); //
  2943. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2944. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2945. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2946. }
  2947. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2948. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2949. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2950. continue
  2951. }
  2952. _content = $$("div", {
  2953. className: "U_MD_D_KO",
  2954. "onmousedown": U.UF.C.closure(function (obj) {
  2955. //防止拖动图标即打开了桌面应用
  2956. U.MD.D.click(this, obj);
  2957. }, [_cocobizTeacherDeskIconInfo[i]]),
  2958. "onclick": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_cocobizTeacherDeskIconInfo[i]])
  2962. }, _frag); //
  2963. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2964. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2965. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2966. }
  2967. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2968. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2969. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2970. continue
  2971. }
  2972. _content = $$("div", {
  2973. className: "U_MD_D_KO",
  2974. "onmousedown": U.UF.C.closure(function (obj) {
  2975. //防止拖动图标即打开了桌面应用
  2976. U.MD.D.click(this, obj);
  2977. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2978. "onclick": U.UF.C.closure(function (obj) {
  2979. //防止拖动图标即打开了桌面应用
  2980. U.MD.D.click(this, obj);
  2981. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2982. }, _frag); //
  2983. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2984. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2985. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2986. }
  2987. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2988. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2989. _content = $$("div", {
  2990. className: "U_MD_D_KO",
  2991. "onmousedown": U.UF.C.closure(function (obj) {
  2992. //防止拖动图标即打开了桌面应用
  2993. U.MD.D.click(this, obj);
  2994. }, [_gdjgAdminDeskIconInfo[i]]),
  2995. "onclick": U.UF.C.closure(function (obj) {
  2996. //防止拖动图标即打开了桌面应用
  2997. U.MD.D.click(this, obj);
  2998. }, [_gdjgAdminDeskIconInfo[i]])
  2999. }, _frag); //
  3000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3003. }
  3004. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3005. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3006. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3007. continue
  3008. }
  3009. _content = $$("div", {
  3010. className: "U_MD_D_KO",
  3011. "onmousedown": U.UF.C.closure(function (obj) {
  3012. //防止拖动图标即打开了桌面应用
  3013. U.MD.D.click(this, obj);
  3014. }, [_gdjgTeacherDeskIconInfo[i]]),
  3015. "onclick": U.UF.C.closure(function (obj) {
  3016. //防止拖动图标即打开了桌面应用
  3017. U.MD.D.click(this, obj);
  3018. }, [_gdjgTeacherDeskIconInfo[i]])
  3019. }, _frag); //
  3020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3023. }
  3024. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3025. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3026. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3027. continue
  3028. }
  3029. _content = $$("div", {
  3030. className: "U_MD_D_KO",
  3031. "onmousedown": U.UF.C.closure(function (obj) {
  3032. //防止拖动图标即打开了桌面应用
  3033. U.MD.D.click(this, obj);
  3034. }, [_szherTeacherDeskIconInfo[i]]),
  3035. "onclick": U.UF.C.closure(function (obj) {
  3036. //防止拖动图标即打开了桌面应用
  3037. U.MD.D.click(this, obj);
  3038. }, [_szherTeacherDeskIconInfo[i]])
  3039. }, _frag); //
  3040. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3043. }
  3044. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3045. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3046. _content = $$("div", {
  3047. className: "U_MD_D_KO",
  3048. "onmousedown": U.UF.C.closure(function (obj) {
  3049. //防止拖动图标即打开了桌面应用
  3050. U.MD.D.click(this, obj);
  3051. }, [_heyuannAdminDeskIconInfo[i]]),
  3052. "onclick": U.UF.C.closure(function (obj) {
  3053. //防止拖动图标即打开了桌面应用
  3054. U.MD.D.click(this, obj);
  3055. }, [_heyuannAdminDeskIconInfo[i]])
  3056. }, _frag); //
  3057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3060. }
  3061. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3062. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3063. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3064. continue
  3065. }
  3066. _content = $$("div", {
  3067. className: "U_MD_D_KO",
  3068. "onmousedown": U.UF.C.closure(function (obj) {
  3069. //防止拖动图标即打开了桌面应用
  3070. U.MD.D.click(this, obj);
  3071. }, [_heyuanTeacherDeskIconInfo[i]]),
  3072. "onclick": U.UF.C.closure(function (obj) {
  3073. //防止拖动图标即打开了桌面应用
  3074. U.MD.D.click(this, obj);
  3075. }, [_heyuanTeacherDeskIconInfo[i]])
  3076. }, _frag); //
  3077. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3078. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3079. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3080. } //
  3081. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3082. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3083. _content = $$("div", {
  3084. className: "U_MD_D_KO",
  3085. "onmousedown": U.UF.C.closure(function (obj) {
  3086. //防止拖动图标即打开了桌面应用
  3087. U.MD.D.click(this, obj);
  3088. }, [_dseiAdminDeskIconInfo[i]]),
  3089. "onclick": U.UF.C.closure(function (obj) {
  3090. //防止拖动图标即打开了桌面应用
  3091. U.MD.D.click(this, obj);
  3092. }, [_dseiAdminDeskIconInfo[i]])
  3093. }, _frag); //
  3094. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3095. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3096. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3097. }
  3098. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3099. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3100. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3101. continue
  3102. }
  3103. _content = $$("div", {
  3104. className: "U_MD_D_KO",
  3105. "onmousedown": U.UF.C.closure(function (obj) {
  3106. //防止拖动图标即打开了桌面应用
  3107. U.MD.D.click(this, obj);
  3108. }, [_dseiTeacherDeskIconInfo[i]]),
  3109. "onclick": U.UF.C.closure(function (obj) {
  3110. //防止拖动图标即打开了桌面应用
  3111. U.MD.D.click(this, obj);
  3112. }, [_dseiTeacherDeskIconInfo[i]])
  3113. }, _frag); //
  3114. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3115. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3116. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3117. } //
  3118. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3119. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  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. }, [_chjyjAdminDeskIconInfo[i]]),
  3126. "onclick": U.UF.C.closure(function (obj) {
  3127. //防止拖动图标即打开了桌面应用
  3128. U.MD.D.click(this, obj);
  3129. }, [_chjyjAdminDeskIconInfo[i]])
  3130. }, _frag); //
  3131. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3132. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3133. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3134. }//
  3135. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3136. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3137. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3138. continue
  3139. }
  3140. _content = $$("div", {
  3141. className: "U_MD_D_KO",
  3142. "onmousedown": U.UF.C.closure(function (obj) {
  3143. //防止拖动图标即打开了桌面应用
  3144. U.MD.D.click(this, obj);
  3145. }, [_chjyjTeacherDeskIconInfo[i]]),
  3146. "onclick": U.UF.C.closure(function (obj) {
  3147. //防止拖动图标即打开了桌面应用
  3148. U.MD.D.click(this, obj);
  3149. }, [_chjyjTeacherDeskIconInfo[i]])
  3150. }, _frag); //
  3151. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3152. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3153. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3154. }
  3155. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3156. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  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. }, [_szjkyAdminDeskIconInfo[i]]),
  3163. "onclick": U.UF.C.closure(function (obj) {
  3164. //防止拖动图标即打开了桌面应用
  3165. U.MD.D.click(this, obj);
  3166. }, [_szjkyAdminDeskIconInfo[i]])
  3167. }, _frag); //
  3168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3171. }//
  3172. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3173. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3174. if(_role === 0 && _szjkyTeacherDeskIconInfo[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. }, [_szjkyTeacherDeskIconInfo[i]]),
  3183. "onclick": U.UF.C.closure(function (obj) {
  3184. //防止拖动图标即打开了桌面应用
  3185. U.MD.D.click(this, obj);
  3186. }, [_szjkyTeacherDeskIconInfo[i]])
  3187. }, _frag); //
  3188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3191. }
  3192. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3193. for (i = 0; i < _futianAdminDeskIconInfo.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. }, [_futianAdminDeskIconInfo[i]]),
  3200. "onclick": U.UF.C.closure(function (obj) {
  3201. //防止拖动图标即打开了桌面应用
  3202. U.MD.D.click(this, obj);
  3203. }, [_futianAdminDeskIconInfo[i]])
  3204. }, _frag); //
  3205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3208. }
  3209. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3210. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3211. if(_role === 0 && _futianTeacherDeskIconInfo[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. }, [_futianTeacherDeskIconInfo[i]]),
  3220. "onclick": U.UF.C.closure(function (obj) {
  3221. //防止拖动图标即打开了桌面应用
  3222. U.MD.D.click(this, obj);
  3223. }, [_futianTeacherDeskIconInfo[i]])
  3224. }, _frag); //
  3225. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3226. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3227. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3228. }
  3229. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3230. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3231. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3232. continue
  3233. }
  3234. _content = $$("div", {
  3235. className: "U_MD_D_KO",
  3236. "onmousedown": U.UF.C.closure(function (obj) {
  3237. //防止拖动图标即打开了桌面应用
  3238. U.MD.D.click(this, obj);
  3239. }, [_MingdeTeacherDeskIcon[i]]),
  3240. "onclick": U.UF.C.closure(function (obj) {
  3241. //防止拖动图标即打开了桌面应用
  3242. U.MD.D.click(this, obj);
  3243. }, [_MingdeTeacherDeskIcon[i]])
  3244. }, _frag); //
  3245. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3246. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3247. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3248. }
  3249. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3250. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  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. }, [_lhsAdminDesktopIconInfo[i]]),
  3257. "onclick": U.UF.C.closure(function (obj) {
  3258. //防止拖动图标即打开了桌面应用
  3259. U.MD.D.click(this, obj);
  3260. }, [_lhsAdminDesktopIconInfo[i]])
  3261. }, _frag); //
  3262. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3263. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3264. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3265. }
  3266. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3267. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3268. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3269. continue
  3270. }
  3271. _content = $$("div", {
  3272. className: "U_MD_D_KO",
  3273. "onmousedown": U.UF.C.closure(function (obj) {
  3274. //防止拖动图标即打开了桌面应用
  3275. U.MD.D.click(this, obj);
  3276. }, [_lhsteacherDesktopIconInfo[i]]),
  3277. "onclick": U.UF.C.closure(function (obj) {
  3278. //防止拖动图标即打开了桌面应用
  3279. U.MD.D.click(this, obj);
  3280. }, [_lhsteacherDesktopIconInfo[i]])
  3281. }, _frag); //
  3282. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3283. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3284. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3285. }
  3286. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3287. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3288. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3289. continue
  3290. }
  3291. _content = $$("div", {
  3292. className: "U_MD_D_KO",
  3293. "onmousedown": U.UF.C.closure(function (obj) {
  3294. //防止拖动图标即打开了桌面应用
  3295. U.MD.D.click(this, obj);
  3296. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3297. "onclick": U.UF.C.closure(function (obj) {
  3298. //防止拖动图标即打开了桌面应用
  3299. U.MD.D.click(this, obj);
  3300. }, [_zhoujiateacherDesktopIconInfo[i]])
  3301. }, _frag); //
  3302. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3303. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3304. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3305. }
  3306. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3307. for (i = 0; i < _hanDeskIcon.length; i++) {
  3308. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3309. continue
  3310. }
  3311. _content = $$("div", {
  3312. className: "U_MD_D_KO",
  3313. "onmousedown": U.UF.C.closure(function (obj) {
  3314. //防止拖动图标即打开了桌面应用
  3315. U.MD.D.click(this, obj);
  3316. }, [_hanDeskIcon[i]]),
  3317. "onclick": U.UF.C.closure(function (obj) {
  3318. //防止拖动图标即打开了桌面应用
  3319. U.MD.D.click(this, obj);
  3320. }, [_hanDeskIcon[i]])
  3321. }, _frag); //
  3322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3325. }
  3326. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3327. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3328. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3329. continue
  3330. }
  3331. _content = $$("div", {
  3332. className: "U_MD_D_KO",
  3333. "onmousedown": U.UF.C.closure(function (obj) {
  3334. //防止拖动图标即打开了桌面应用
  3335. U.MD.D.click(this, obj);
  3336. }, [_orgStemDeskIcon[i]]),
  3337. "onclick": U.UF.C.closure(function (obj) {
  3338. //防止拖动图标即打开了桌面应用
  3339. U.MD.D.click(this, obj);
  3340. }, [_orgStemDeskIcon[i]])
  3341. }, _frag); //
  3342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3345. }
  3346. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3347. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3348. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3349. continue
  3350. }
  3351. _content = $$("div", {
  3352. className: "U_MD_D_KO",
  3353. "onmousedown": U.UF.C.closure(function (obj) {
  3354. //防止拖动图标即打开了桌面应用
  3355. U.MD.D.click(this, obj);
  3356. }, [_szulsDeskIcon[i]]),
  3357. "onclick": U.UF.C.closure(function (obj) {
  3358. //防止拖动图标即打开了桌面应用
  3359. U.MD.D.click(this, obj);
  3360. }, [_szulsDeskIcon[i]])
  3361. }, _frag); //
  3362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3365. }
  3366. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3367. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3368. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3369. continue
  3370. }
  3371. _content = $$("div", {
  3372. className: "U_MD_D_KO",
  3373. "onmousedown": U.UF.C.closure(function (obj) {
  3374. //防止拖动图标即打开了桌面应用
  3375. U.MD.D.click(this, obj);
  3376. }, [_orgDesktopIconInfo[i]]),
  3377. "onclick": U.UF.C.closure(function (obj) {
  3378. //防止拖动图标即打开了桌面应用
  3379. U.MD.D.click(this, obj);
  3380. }, [_orgDesktopIconInfo[i]])
  3381. }, _frag); //
  3382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3385. }
  3386. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3387. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3388. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3389. continue
  3390. }
  3391. _content = $$("div", {
  3392. className: "U_MD_D_KO",
  3393. "onmousedown": U.UF.C.closure(function (obj) {
  3394. //防止拖动图标即打开了桌面应用
  3395. U.MD.D.click(this, obj);
  3396. }, [_schoolDesktopIconInfo[i]]),
  3397. "onclick": U.UF.C.closure(function (obj) {
  3398. //防止拖动图标即打开了桌面应用
  3399. U.MD.D.click(this, obj);
  3400. }, [_schoolDesktopIconInfo[i]])
  3401. }, _frag); //
  3402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3405. }
  3406. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3407. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3408. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3409. continue
  3410. }
  3411. _content = $$("div", {
  3412. className: "U_MD_D_KO",
  3413. "onmousedown": U.UF.C.closure(function (obj) {
  3414. //防止拖动图标即打开了桌面应用
  3415. U.MD.D.click(this, obj);
  3416. }, [_GMteacherDesktopIconInfo[i]]),
  3417. "onclick": U.UF.C.closure(function (obj) {
  3418. //防止拖动图标即打开了桌面应用
  3419. U.MD.D.click(this, obj);
  3420. }, [_GMteacherDesktopIconInfo[i]])
  3421. }, _frag); //
  3422. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3423. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3424. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3425. }
  3426. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3427. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3428. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3429. continue
  3430. }
  3431. _content = $$("div", {
  3432. className: "U_MD_D_KO",
  3433. "onmousedown": U.UF.C.closure(function (obj) {
  3434. //防止拖动图标即打开了桌面应用
  3435. U.MD.D.click(this, obj);
  3436. }, [_SONGteacherDesktopIconInfo[i]]),
  3437. "onclick": U.UF.C.closure(function (obj) {
  3438. //防止拖动图标即打开了桌面应用
  3439. U.MD.D.click(this, obj);
  3440. }, [_SONGteacherDesktopIconInfo[i]])
  3441. }, _frag); //
  3442. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3443. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3444. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3445. }
  3446. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3447. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3448. _content = $$("div", {
  3449. className: "U_MD_D_KO",
  3450. "onmousedown": U.UF.C.closure(function (obj) {
  3451. //防止拖动图标即打开了桌面应用
  3452. U.MD.D.click(this, obj);
  3453. }, [_GMstudentDesktopIconInfo[i]]),
  3454. "onclick": U.UF.C.closure(function (obj) {
  3455. //防止拖动图标即打开了桌面应用
  3456. U.MD.D.click(this, obj);
  3457. }, [_GMstudentDesktopIconInfo[i]])
  3458. }, _frag); //
  3459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3462. }
  3463. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3464. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3465. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3466. continue
  3467. }
  3468. _content = $$("div", {
  3469. className: "U_MD_D_KO",
  3470. "onmousedown": U.UF.C.closure(function (obj) {
  3471. //防止拖动图标即打开了桌面应用
  3472. U.MD.D.click(this, obj);
  3473. }, [_tcTeacherDeskIconInfo[i]]),
  3474. "onclick": U.UF.C.closure(function (obj) {
  3475. //防止拖动图标即打开了桌面应用
  3476. U.MD.D.click(this, obj);
  3477. }, [_tcTeacherDeskIconInfo[i]])
  3478. }, _frag); //
  3479. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3480. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3481. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3482. }
  3483. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3484. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3485. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3486. continue
  3487. }
  3488. _content = $$("div", {
  3489. className: "U_MD_D_KO",
  3490. "onmousedown": U.UF.C.closure(function (obj) {
  3491. //防止拖动图标即打开了桌面应用
  3492. U.MD.D.click(this, obj);
  3493. }, [_tcOrganizerDeskIconInfo[i]]),
  3494. "onclick": U.UF.C.closure(function (obj) {
  3495. //防止拖动图标即打开了桌面应用
  3496. U.MD.D.click(this, obj);
  3497. }, [_tcOrganizerDeskIconInfo[i]])
  3498. }, _frag); //
  3499. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3500. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3501. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3502. }
  3503. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3504. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3505. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3506. continue
  3507. }
  3508. _content = $$("div", {
  3509. className: "U_MD_D_KO",
  3510. "onmousedown": U.UF.C.closure(function (obj) {
  3511. //防止拖动图标即打开了桌面应用
  3512. U.MD.D.click(this, obj);
  3513. }, [_szscTeacherDeskIconInfo[i]]),
  3514. "onclick": U.UF.C.closure(function (obj) {
  3515. //防止拖动图标即打开了桌面应用
  3516. U.MD.D.click(this, obj);
  3517. }, [_szscTeacherDeskIconInfo[i]])
  3518. }, _frag); //
  3519. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3520. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3521. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3522. }
  3523. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3524. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3525. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3526. continue
  3527. }
  3528. _content = $$("div", {
  3529. className: "U_MD_D_KO",
  3530. "onmousedown": U.UF.C.closure(function (obj) {
  3531. //防止拖动图标即打开了桌面应用
  3532. U.MD.D.click(this, obj);
  3533. }, [_szscOrganizerDeskIconInfo[i]]),
  3534. "onclick": U.UF.C.closure(function (obj) {
  3535. //防止拖动图标即打开了桌面应用
  3536. U.MD.D.click(this, obj);
  3537. }, [_szscOrganizerDeskIconInfo[i]])
  3538. }, _frag); //
  3539. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3540. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3541. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3542. }
  3543. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3544. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3545. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3546. continue
  3547. }
  3548. _content = $$("div", {
  3549. className: "U_MD_D_KO",
  3550. "onmousedown": U.UF.C.closure(function (obj) {
  3551. //防止拖动图标即打开了桌面应用
  3552. U.MD.D.click(this, obj);
  3553. }, [_nsfxTeacherDeskIconInfo[i]]),
  3554. "onclick": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_nsfxTeacherDeskIconInfo[i]])
  3558. }, _frag); //
  3559. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3560. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3561. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3562. }
  3563. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3564. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3565. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3566. continue
  3567. }
  3568. _content = $$("div", {
  3569. className: "U_MD_D_KO",
  3570. "onmousedown": U.UF.C.closure(function (obj) {
  3571. //防止拖动图标即打开了桌面应用
  3572. U.MD.D.click(this, obj);
  3573. }, [_stiaTeacherDeskIconInfo[i]]),
  3574. "onclick": U.UF.C.closure(function (obj) {
  3575. //防止拖动图标即打开了桌面应用
  3576. U.MD.D.click(this, obj);
  3577. }, [_stiaTeacherDeskIconInfo[i]])
  3578. }, _frag); //
  3579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3582. }
  3583. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3584. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3585. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3586. continue
  3587. }
  3588. _content = $$("div", {
  3589. className: "U_MD_D_KO",
  3590. "onmousedown": U.UF.C.closure(function (obj) {
  3591. //防止拖动图标即打开了桌面应用
  3592. U.MD.D.click(this, obj);
  3593. }, [_szdjgTeacherDeskIconInfo[i]]),
  3594. "onclick": U.UF.C.closure(function (obj) {
  3595. //防止拖动图标即打开了桌面应用
  3596. U.MD.D.click(this, obj);
  3597. }, [_szdjgTeacherDeskIconInfo[i]])
  3598. }, _frag); //
  3599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3602. }
  3603. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3604. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3605. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3606. continue
  3607. }
  3608. _content = $$("div", {
  3609. className: "U_MD_D_KO",
  3610. "onmousedown": U.UF.C.closure(function (obj) {
  3611. //防止拖动图标即打开了桌面应用
  3612. U.MD.D.click(this, obj);
  3613. }, [_x010607TeacherDeskIconInfo[i]]),
  3614. "onclick": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_x010607TeacherDeskIconInfo[i]])
  3618. }, _frag); //
  3619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3622. }
  3623. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3624. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3625. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3626. continue
  3627. }
  3628. _content = $$("div", {
  3629. className: "U_MD_D_KO",
  3630. "onmousedown": U.UF.C.closure(function (obj) {
  3631. //防止拖动图标即打开了桌面应用
  3632. U.MD.D.click(this, obj);
  3633. }, [_xhlyTeacherDeskIconInfo[i]]),
  3634. "onclick": U.UF.C.closure(function (obj) {
  3635. //防止拖动图标即打开了桌面应用
  3636. U.MD.D.click(this, obj);
  3637. }, [_xhlyTeacherDeskIconInfo[i]])
  3638. }, _frag); //
  3639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3642. }
  3643. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3644. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3645. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3646. continue
  3647. }
  3648. _content = $$("div", {
  3649. className: "U_MD_D_KO",
  3650. "onmousedown": U.UF.C.closure(function (obj) {
  3651. //防止拖动图标即打开了桌面应用
  3652. U.MD.D.click(this, obj);
  3653. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3654. "onclick": U.UF.C.closure(function (obj) {
  3655. //防止拖动图标即打开了桌面应用
  3656. U.MD.D.click(this, obj);
  3657. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3658. }, _frag); //
  3659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3662. }
  3663. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3664. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3665. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3666. continue
  3667. }
  3668. _content = $$("div", {
  3669. className: "U_MD_D_KO",
  3670. "onmousedown": U.UF.C.closure(function (obj) {
  3671. //防止拖动图标即打开了桌面应用
  3672. U.MD.D.click(this, obj);
  3673. }, [_x010503TeacherDeskIconInfo[i]]),
  3674. "onclick": U.UF.C.closure(function (obj) {
  3675. //防止拖动图标即打开了桌面应用
  3676. U.MD.D.click(this, obj);
  3677. }, [_x010503TeacherDeskIconInfo[i]])
  3678. }, _frag); //
  3679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3682. }
  3683. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3684. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3685. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3686. continue
  3687. }
  3688. _content = $$("div", {
  3689. className: "U_MD_D_KO",
  3690. "onmousedown": U.UF.C.closure(function (obj) {
  3691. //防止拖动图标即打开了桌面应用
  3692. U.MD.D.click(this, obj);
  3693. }, [_x010504TeacherDeskIconInfo[i]]),
  3694. "onclick": U.UF.C.closure(function (obj) {
  3695. //防止拖动图标即打开了桌面应用
  3696. U.MD.D.click(this, obj);
  3697. }, [_x010504TeacherDeskIconInfo[i]])
  3698. }, _frag); //
  3699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  3701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  3702. }
  3703. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  3704. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  3705. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3706. continue
  3707. }
  3708. _content = $$("div", {
  3709. className: "U_MD_D_KO",
  3710. "onmousedown": U.UF.C.closure(function (obj) {
  3711. //防止拖动图标即打开了桌面应用
  3712. U.MD.D.click(this, obj);
  3713. }, [_x010204TeacherDeskIconInfo[i]]),
  3714. "onclick": U.UF.C.closure(function (obj) {
  3715. //防止拖动图标即打开了桌面应用
  3716. U.MD.D.click(this, obj);
  3717. }, [_x010204TeacherDeskIconInfo[i]])
  3718. }, _frag); //
  3719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  3721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  3722. }
  3723. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  3724. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  3725. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3726. continue
  3727. }
  3728. _content = $$("div", {
  3729. className: "U_MD_D_KO",
  3730. "onmousedown": U.UF.C.closure(function (obj) {
  3731. //防止拖动图标即打开了桌面应用
  3732. U.MD.D.click(this, obj);
  3733. }, [_trailTeacherDeskIconInfo[i]]),
  3734. "onclick": U.UF.C.closure(function (obj) {
  3735. //防止拖动图标即打开了桌面应用
  3736. U.MD.D.click(this, obj);
  3737. }, [_trailTeacherDeskIconInfo[i]])
  3738. }, _frag); //
  3739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  3741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  3742. }
  3743. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  3744. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  3745. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3746. continue
  3747. }
  3748. _content = $$("div", {
  3749. className: "U_MD_D_KO",
  3750. "onmousedown": U.UF.C.closure(function (obj) {
  3751. //防止拖动图标即打开了桌面应用
  3752. U.MD.D.click(this, obj);
  3753. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  3754. "onclick": U.UF.C.closure(function (obj) {
  3755. //防止拖动图标即打开了桌面应用
  3756. U.MD.D.click(this, obj);
  3757. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  3758. }, _frag); //
  3759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  3761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  3762. }
  3763. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3764. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3765. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3766. continue
  3767. }
  3768. _content = $$("div", {
  3769. className: "U_MD_D_KO",
  3770. "onmousedown": U.UF.C.closure(function (obj) {
  3771. //防止拖动图标即打开了桌面应用
  3772. U.MD.D.click(this, obj);
  3773. }, [_x010608TeacherDeskIconInfo[i]]),
  3774. "onclick": U.UF.C.closure(function (obj) {
  3775. //防止拖动图标即打开了桌面应用
  3776. U.MD.D.click(this, obj);
  3777. }, [_x010608TeacherDeskIconInfo[i]])
  3778. }, _frag); //
  3779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  3781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  3782. }
  3783. } else {
  3784. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3785. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3786. continue
  3787. }
  3788. _content = $$("div", {
  3789. className: "U_MD_D_KO",
  3790. "onmousedown": U.UF.C.closure(function (obj) {
  3791. //防止拖动图标即打开了桌面应用
  3792. U.MD.D.click(this, obj);
  3793. }, [_teacherDesktopIconInfo[i]]),
  3794. "onclick": U.UF.C.closure(function (obj) {
  3795. //防止拖动图标即打开了桌面应用
  3796. U.MD.D.click(this, obj);
  3797. }, [_teacherDesktopIconInfo[i]])
  3798. }, _frag); //
  3799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3802. }
  3803. }
  3804. } else {
  3805. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3806. _content = $$("div", {
  3807. className: "U_MD_D_KO",
  3808. style: { 'width': '124px', 'height': '145px' },
  3809. "onmousedown": U.UF.C.closure(function (obj) {
  3810. //防止拖动图标即打开了桌面应用
  3811. U.MD.D.click(this, obj);
  3812. }, [_easyDesktopIconInfo[i]]),
  3813. "onclick": U.UF.C.closure(function (obj) {
  3814. //防止拖动图标即打开了桌面应用
  3815. U.MD.D.click(this, obj);
  3816. }, [_easyDesktopIconInfo[i]])
  3817. }, _frag); //
  3818. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3821. }
  3822. }
  3823. if (type == 1) {
  3824. //加载好后给图标定位
  3825. U.MD.D.iconPostion($(_frag).Child());
  3826. } else {
  3827. //加载好后给图标定位
  3828. U.MD.D.iconPostion2($(_frag).Child());
  3829. }
  3830. //把图标加载到页面
  3831. el.appendChild(_frag);
  3832. }
  3833. /**
  3834. * 显示任务栏
  3835. *
  3836. * @param {element} 桌面元素
  3837. */
  3838. U.MD.D.I.displayTaskbar = function (el) {
  3839. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3840. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3841. //任务栏位置变化
  3842. U.selectEl(el).css({ "bottom": "0px" });
  3843. //桌面位置变话
  3844. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3845. }
  3846. }
  3847. //#region 桌面图标拖动逻辑
  3848. /**
  3849. * 桌面排列图标
  3850. *
  3851. * @param {element} 桌面元素
  3852. * @param {object} 上下相距的距离
  3853. * @param {object} 左右相距的距离
  3854. * @return {object} 命名空间
  3855. */
  3856. U.MD.D.iconPostion = function (childs, top, left) {
  3857. var i; //用于循环处理
  3858. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3859. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3860. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3861. for (i = 0; i < childs.length; i++) {
  3862. //如果竖排top超过了范围处理
  3863. if (top + 95 > US.height - 10) {
  3864. //left超过了页面范围处理,则向上重叠打印处理
  3865. if ((left + 180) > US.width) {
  3866. top -= 110;
  3867. left -= 90;
  3868. }
  3869. //没有超过范围,那么left+90添加到下一个竖排打印
  3870. else {
  3871. left += 90;
  3872. top = 15;
  3873. };
  3874. }
  3875. //给图标的位置赋值
  3876. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3877. if (i < childs.length - 1) {
  3878. //页面图标每次向下加95
  3879. top += 95;
  3880. }
  3881. }
  3882. //返回最后调用的图标的位置
  3883. return [top, left];
  3884. }
  3885. /**
  3886. * 桌面排列图标
  3887. *
  3888. * @param {element} 桌面元素
  3889. * @param {object} 上下相距的距离
  3890. * @param {object} 左右相距的距离
  3891. * @return {object} 命名空间
  3892. */
  3893. U.MD.D.iconPostion2 = function (childs, top, left) {
  3894. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3895. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3896. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3897. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3898. for (i = 0; i < childs.length; i++) {
  3899. //如果竖排top超过了范围处理
  3900. if (left + 150 > US.width - 10) {
  3901. //left超过了页面范围处理,则向上重叠打印处理
  3902. if ((top + 180) > US.Height) {
  3903. top -= 150;
  3904. left -= 150;
  3905. }
  3906. //没有超过范围,那么left+90添加到下一个竖排打印
  3907. else {
  3908. top += 150;
  3909. left = ol;
  3910. };
  3911. }
  3912. //给图标的位置赋值
  3913. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3914. if (i < childs.length - 1) {
  3915. //页面图标每次向下加95
  3916. left += 150;
  3917. }
  3918. }
  3919. //返回最后调用的图标的位置
  3920. return [top, left];
  3921. }
  3922. /**
  3923. * 桌面点击事件逻辑
  3924. *
  3925. * @param {element} 桌面元素
  3926. * @param {object} 上下相距的距离
  3927. * @param {object} 左右相距的距离
  3928. * @return {object} 命名空间
  3929. */
  3930. U.MD.D.click = function (el, obj) {
  3931. var _buttonnumber = event.button; //点击的按钮的事件值
  3932. var _userinfo = US.userInfo;
  3933. U.UF.EV.stopBubble(); //阻止向上冒泡
  3934. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3935. if (_buttonnumber < 2) {
  3936. //如果是click事件的处理
  3937. if (event.type == "click") {
  3938. //如果元素在mousemove事件中没有移动则出发click事件
  3939. if (!U.MD.D.I.IsDrag) {
  3940. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3941. U.alert("请先登录您的账号!");
  3942. setTimeout(() => {
  3943. U.MD.U.L.login();
  3944. }, 2000);
  3945. } else {
  3946. //打开应用处理
  3947. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3948. }
  3949. }
  3950. }
  3951. //如果是mouse事件的处理
  3952. else {
  3953. if (US.Config.type == '1') {
  3954. //拖动处理,添加拖动和拖动结束事件
  3955. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3956. }
  3957. }
  3958. U.MD.D.I.IsDrag = false;
  3959. }
  3960. }
  3961. /**
  3962. * 拖动的处理
  3963. *
  3964. */
  3965. U.MD.D.iconMove = function () {
  3966. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3967. U.MD.D.I.IsDrag = true;
  3968. }
  3969. /**
  3970. * 拖动结束后,这里是定位处理,以网状的形式定位
  3971. *
  3972. * @param {element} 拖动的元素
  3973. * @return {object} 命名空间
  3974. */
  3975. U.MD.D.iconUp = function (el) {
  3976. var _top = 15,
  3977. _left = 20,
  3978. _margin,
  3979. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3980. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3981. if (_positioninfo["OT"] > 15) {
  3982. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3983. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3984. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3985. }
  3986. if (_positioninfo["OL"] > 20) {
  3987. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3988. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3989. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3990. }
  3991. //while循环判断么一个重叠的元素
  3992. do {
  3993. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3994. _top = _positioninfo[0] + 95; //得到定位后的top
  3995. _left = _positioninfo[1]; //得到定位后的left
  3996. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3997. }
  3998. /**
  3999. * 判断拖动后图标是否重叠
  4000. *
  4001. * @param {element} 拖动的元素
  4002. * @param {element} 桌面所有的元素
  4003. * @param {array} 拖动元素的位置
  4004. ----------[0] 上 top
  4005. ----------[1] 左 left
  4006. * @return {object} 命名空间
  4007. */
  4008. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4009. //循环所有的图标
  4010. for (var i = 0; i < childs.length; i++) {
  4011. //判断有没有和该图标诶子重叠的元素
  4012. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4013. return childs[i]; //如果有返回
  4014. }
  4015. }
  4016. }
  4017. //#endregion
  4018. //#endregion
  4019. //#region 桌面应用
  4020. /**
  4021. * 打开应用
  4022. *
  4023. * @param {string} 类型
  4024. -----------------Disk 网盘系统
  4025. -----------------PDisk 学习系统网盘
  4026. -----------------Poto 图片
  4027. -----------------Video 视频
  4028. -----------------Music 音乐
  4029. -----------------Word word
  4030. -----------------Excel excel
  4031. -----------------Txt 记事本
  4032. -----------------PB 学习系统
  4033. -----------------Blog 朋友圈系统
  4034. -----------------FTP ftp系统
  4035. -----------------Group 好友群
  4036. -----------------SY 首页系统
  4037. -----------------Set 个人设置
  4038. -----------------XSet 系统设置
  4039. -----------------App 我们所有的app
  4040. -----------------BC c.1473.cn 平台
  4041. -----------------CWeb d.1473.cn 变成平台
  4042. -----------------其他的外联系统 我们统一用iframe打开
  4043. * @param {array} 类型
  4044. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4045. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4046. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4047. 如果第一个参数为其他,则无第二个参数
  4048. * @returns {array}
  4049. */
  4050. window.addEventListener('message', function (e) { // 监听 message 事件
  4051. // alert(e.data.type);
  4052. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4053. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4054. //3是展示全部阶段 2学生 1老师 4专家
  4055. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4056. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4057. //3是展示全部阶段 2学生 1老师 4专家
  4058. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4059. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4060. //3是展示全部阶段 2学生 1老师 4专家
  4061. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4062. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4063. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4064. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4065. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4066. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4067. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4068. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4069. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4070. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4071. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4072. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4073. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4074. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4075. //3是展示全部阶段 2学生 1老师 4专家
  4076. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4077. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4078. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4079. U.MD.D.I.selectUser();
  4080. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4081. var _formel = document.getElementById("study");
  4082. U.UF.F.windowZooming(_formel);
  4083. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4084. var _formel = document.getElementById("studyDetail");
  4085. U.UF.F.windowZooming(_formel);
  4086. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4087. var _formel = document.getElementById("studyDetail");
  4088. U.UF.F.windowZooming(_formel);
  4089. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4090. var _formel = document.getElementById("studentStudy");
  4091. U.UF.F.windowZooming(_formel);
  4092. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4093. // var _formel = document.getElementById("study");
  4094. //如果最大化了,那么就把他缩小
  4095. // if (_formel.ismaximize) {
  4096. // return;
  4097. // }
  4098. // U.UF.F.windowZooming(_formel);
  4099. // U.UF.F.topWindow(_formel);
  4100. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4101. // var _formel = document.getElementById("studyDetail");
  4102. //如果最大化了,那么就把他缩小
  4103. // if (_formel.ismaximize) {
  4104. // return;
  4105. // }
  4106. // U.UF.F.windowZooming(_formel);
  4107. // U.UF.F.topWindow(_formel);
  4108. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4109. // var _formel = document.getElementById("studentStudy");
  4110. // if (_formel.ismaximize) {
  4111. // return;
  4112. // }
  4113. // U.UF.F.windowZooming(_formel);
  4114. // U.UF.F.topWindow(_formel);
  4115. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4116. var _formel = document.getElementById("study");
  4117. // if (_formel.ismaximize) {
  4118. // return;
  4119. // }
  4120. // U.UF.F.windowZooming(_formel);
  4121. U.UF.F.topWindow(_formel);
  4122. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4123. var _formel = document.getElementById("studentIndex");
  4124. U.UF.F.windowZooming(_formel);
  4125. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4126. var _formel = document.getElementById("studyDetailS");
  4127. U.UF.F.windowZooming(_formel);
  4128. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4129. var _formel = document.getElementById("studioIndex");
  4130. U.UF.F.windowZooming(_formel);
  4131. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4132. var _formel = document.getElementById("studyDetailStudio");
  4133. U.UF.F.windowZooming(_formel);
  4134. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4135. var _formel = document.getElementById("studyDetailStudio");
  4136. U.UF.F.windowZooming(_formel);
  4137. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4138. var _formel = document.getElementById("studyDetailNT");
  4139. U.UF.F.windowZooming(_formel);
  4140. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4141. var _formel = document.getElementById("studyDetailS");
  4142. U.UF.F.windowZooming(_formel);
  4143. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4144. var _formel = document.getElementById("studyDetailS");
  4145. U.UF.F.topWindow(_formel);
  4146. } else if (e.data.tools && e.data.tools == "1") {
  4147. // U.MD.D.I.openApplication("whiteboard")
  4148. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4149. } else if (e.data.tools && e.data.tools == "2") {
  4150. U.MD.D.I.openApplication("note")
  4151. } else if (e.data.tools && e.data.tools == "3") {
  4152. // U.MD.D.I.openApplication("mind")
  4153. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4154. } else if (e.data.tools && e.data.tools == "4") {
  4155. U.MD.D.I.openApplication("investigation")
  4156. } else if (e.data.tools && e.data.tools == "6") {
  4157. // U.MD.D.I.openApplication("doc")
  4158. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4159. } else if (e.data.tools && e.data.tools == "7") {
  4160. // U.MD.D.I.openApplication("mindNetwork")
  4161. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4162. } else if (e.data.tools && e.data.tools == "8") {
  4163. U.MD.D.I.openApplication("library")
  4164. } else if (e.data.tools && e.data.tools == "17") {
  4165. U.MD.D.I.openApplication("stuLibrary")
  4166. } else if (e.data.tools && e.data.tools == "18") {
  4167. U.MD.D.I.openApplication("train")
  4168. } else if (e.data.tools && e.data.tools == "21") {
  4169. U.MD.D.I.openApplication("program")
  4170. } else if (e.data.tools && e.data.tools == "22") {
  4171. U.MD.D.I.openApplication("AIprogram2")
  4172. } else if (e.data.tools && e.data.tools == "23") {
  4173. U.MD.D.I.openApplication("Pythonprogram")
  4174. } else if (e.data.tools && e.data.tools == "24") {
  4175. U.MD.D.I.openApplication("AIprogram")
  4176. } else if (e.data.tools && e.data.tools == "25") {
  4177. U.MD.D.I.openApplication("sys")
  4178. } else if (e.data.tools && e.data.tools == "26") {
  4179. // U.MD.D.I.openApplication("courseDesign")
  4180. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4181. } else if (e.data.tools && e.data.tools == "31") {
  4182. U.MD.D.I.openApplication("netWorkPanel")
  4183. } else if (e.data.tools && e.data.tools == "32") {
  4184. U.MD.D.I.openApplication("codeEdit")
  4185. } else if (e.data.tools && e.data.tools == "57") {
  4186. U.MD.D.I.openApplication("CocoPi")
  4187. } else if (e.data.tools && e.data.tools == "63") {
  4188. U.MD.D.I.openApplication("Wood")
  4189. } else if (e.data.tools && e.data.tools == "58") {
  4190. U.MD.D.I.openApplication("car")
  4191. } else if (e.data.tools && e.data.tools == "59") {
  4192. U.MD.D.I.openApplication("lineSearch")
  4193. } else if (e.data.tools && e.data.tools == "60") {
  4194. U.MD.D.I.openApplication("deepLearning")
  4195. } else if (e.data.tools && e.data.tools == "61") {
  4196. U.MD.D.I.openApplication("allHistory")
  4197. } else if (e.data.tools && e.data.tools == "28") {
  4198. U.MD.D.I.openApplication("translation")
  4199. } else if (e.data.tools && e.data.tools == "37") {
  4200. U.MD.D.I.openApplication("mohe")
  4201. } else if (e.data.tools && e.data.tools == "38") {
  4202. U.MD.D.I.openApplication("24game")
  4203. } else if (e.data.tools && e.data.tools == "39") {
  4204. U.MD.D.I.openApplication("GeoGebra")
  4205. } else if (e.data.tools && e.data.tools == "43") {
  4206. U.MD.D.I.openApplication("studentEvaluate")
  4207. } else if (e.data.tools && e.data.tools == "44") {
  4208. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4209. } else if (e.data.tools && e.data.tools == "46") {
  4210. U.MD.D.I.openApplication("project")
  4211. } else if (e.data.tools && e.data.tools == "71") {
  4212. U.MD.D.I.openApplication("aigptCourse")
  4213. } else if (e.data.tools && e.data.tools == "1s") {
  4214. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4215. } else if (e.data.tools && e.data.tools == "3s") {
  4216. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4217. } else if (e.data.tools && e.data.tools == "6s") {
  4218. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4219. } else if (e.data.tools && e.data.tools == "1studio") {
  4220. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4221. } else if (e.data.tools && e.data.tools == "3studio") {
  4222. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4223. } else if (e.data.tools && e.data.tools == "6studio") {
  4224. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4225. } else if (e.data.tools && e.data.tools == "3y") {
  4226. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4227. } else if (e.data.tools && e.data.tools == "1y") {
  4228. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4229. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4230. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4231. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4232. U.MD.D.I.openApplication("AIAnalyse")
  4233. } else if (e.data.tools && e.data.tools == "1teacher") {
  4234. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4235. } else if (e.data.tools && e.data.tools == "3teacher") {
  4236. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4237. } else if (e.data.tools && e.data.tools == "7teacher") {
  4238. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4239. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4240. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4241. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4242. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4243. } else if (e.data.tools && e.data.tools == "1E") {
  4244. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4245. } else if (e.data.tools && e.data.tools == "3E") {
  4246. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4247. } else if (e.data.tools && e.data.tools == "57y") {
  4248. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4249. } else if (e.data.tools && e.data.tools == "57u") {
  4250. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4251. } else if (e.data.tools && e.data.tools == "57teacher") {
  4252. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4253. } else if (e.data.tools && e.data.tools == "64") {
  4254. U.MD.D.I.openApplication("AIChat")
  4255. } else if (e.data.tools && e.data.tools == "66") {
  4256. U.MD.D.I.openApplication("formulaEdi")
  4257. } else if (e.data.tools && e.data.tools == "67") {
  4258. U.MD.D.I.openApplication("molStr")
  4259. } else if (e.data.tools && e.data.tools == "68") {
  4260. U.MD.D.I.openApplication("timeAxis")
  4261. } else if (e.data.tools && e.data.tools == "openCourse") {
  4262. let _data = {
  4263. typea: e.data.typea || '',
  4264. typeb: e.data.typeb || '',
  4265. typed: e.data.typed || '',
  4266. }
  4267. U.MD.D.I.openInApplication("index", _data)
  4268. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4269. let _data = {
  4270. classid: e.data.classid || '',
  4271. }
  4272. U.MD.D.I.openInApplication("dataClass", _data)
  4273. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4274. let _data = {
  4275. cid: e.data.cid || '',
  4276. gid: e.data.gid || '',
  4277. }
  4278. U.MD.D.I.openInApplication("opencCscl", _data)
  4279. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4280. U.MD.D.I.openApplication("dataBoardTest")
  4281. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4282. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4283. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4284. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4285. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4286. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4287. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4288. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4289. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4290. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4291. }else if (e.data.tools && e.data.tools == "loginSz") {
  4292. U.MD.D.I.openInApplication("loginSz")
  4293. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4294. if($('#classroom_observation_board')[0]){
  4295. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4296. }
  4297. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4298. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4299. if($('#classroom_observation_ob_comment')[0]){
  4300. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4301. }
  4302. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4303. }
  4304. });
  4305. U.MD.D.I.selectUser = function () {
  4306. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4307. if (res.value[0].length > 0) {
  4308. US.userInfo = res.value[0][0];
  4309. $(".userName")[0].innerHTML = US.userInfo.username;
  4310. }
  4311. }, [], { "type": "GET", "withCredentials": true });
  4312. }
  4313. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4314. var _userinfo = US.userInfo, //登录用户信息
  4315. _userid = US.userInfo.userid, //登录用户id
  4316. _oid = _userinfo.organizeid,
  4317. _type = US.userInfo.type,
  4318. _org = US.userInfo.org,
  4319. _role = US.userInfo.role,
  4320. _classId = US.userInfo.classid;
  4321. if (_type == 4) {
  4322. tType = 4
  4323. }
  4324. switch (str) {
  4325. case "studyDetailNT": //无终端模式
  4326. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4327. setTimeout(() => {
  4328. U.MD.U.L.login();
  4329. }, 2000);
  4330. } else {
  4331. _formdiv = new U.UF.UI.form(
  4332. "课程详情",
  4333. $$("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 }), {
  4334. "id": "studyDetailNT",
  4335. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4336. "onresize": function () { }
  4337. }, {
  4338. closecallback: function () { }
  4339. }, { "style": { "height": "36px" } }).form; //创建窗体
  4340. _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); } }
  4341. break;
  4342. }
  4343. case "studyDetail":
  4344. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4345. setTimeout(() => {
  4346. U.MD.U.L.login();
  4347. }, 2000);
  4348. } else {
  4349. _formdiv = new U.UF.UI.form(
  4350. "课程详情",
  4351. $$("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 }), {
  4352. "id": "studyDetail",
  4353. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4354. "onresize": function () { }
  4355. }, {
  4356. closecallback: function () { }
  4357. }, { "style": { "height": "36px" } }).form; //创建窗体
  4358. _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); } }
  4359. break;
  4360. }
  4361. case "studyDetailTrain":
  4362. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4363. setTimeout(() => {
  4364. U.MD.U.L.login();
  4365. }, 2000);
  4366. } else {
  4367. _formdiv = new U.UF.UI.form(
  4368. "培训详情",
  4369. $$("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 }), {
  4370. "id": "studyDetailTrain",
  4371. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4372. "onresize": function () { }
  4373. }, {
  4374. closecallback: function () { }
  4375. }, { "style": { "height": "36px" } }).form; //创建窗体
  4376. _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); } }
  4377. break;
  4378. }
  4379. case "studyDetailS":
  4380. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4381. setTimeout(() => {
  4382. U.MD.U.L.login();
  4383. }, 2000);
  4384. } else {
  4385. _formdiv = new U.UF.UI.form(
  4386. "项目详情",
  4387. $$("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 }), {
  4388. "id": "studyDetailS",
  4389. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4390. "onresize": function () { }
  4391. }, {
  4392. closecallback: function () { }
  4393. }, { "style": { "height": "36px" } }).form; //创建窗体
  4394. _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); } }
  4395. break;
  4396. }
  4397. case "studyDetailStudio":
  4398. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4399. setTimeout(() => {
  4400. U.MD.U.L.login();
  4401. }, 2000);
  4402. } else {
  4403. _formdiv = new U.UF.UI.form(
  4404. "工作详情",
  4405. $$("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 }), {
  4406. "id": "studyDetailStudio",
  4407. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4408. "onresize": function () { }
  4409. }, {
  4410. closecallback: function () { }
  4411. }, { "style": { "height": "36px" } }).form; //创建窗体
  4412. _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); } }
  4413. break;
  4414. }
  4415. case "studyDetailS5":
  4416. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4417. setTimeout(() => {
  4418. U.MD.U.L.login();
  4419. }, 2000);
  4420. } else {
  4421. _formdiv = new U.UF.UI.form(
  4422. "项目详情",
  4423. $$("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 }), {
  4424. "id": "studyDetailS",
  4425. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4426. "onresize": function () { }
  4427. }, {
  4428. closecallback: function () { }
  4429. }, { "style": { "height": "36px" } }).form; //创建窗体
  4430. _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); } }
  4431. break;
  4432. }
  4433. case "studyDetailGM":
  4434. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4435. setTimeout(() => {
  4436. U.MD.U.L.login();
  4437. }, 2000);
  4438. } else {
  4439. _formdiv = new U.UF.UI.form(
  4440. "课程详情",
  4441. $$("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 }), {
  4442. "id": "studyDetail",
  4443. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4444. "onresize": function () { }
  4445. }, {
  4446. closecallback: function () { }
  4447. }, { "style": { "height": "36px" } }).form; //创建窗体
  4448. _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); } }
  4449. break;
  4450. }
  4451. case "hanUrl":
  4452. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4453. setTimeout(() => {
  4454. U.MD.U.L.login();
  4455. }, 2000);
  4456. } else {
  4457. _formdiv = new U.UF.UI.form(
  4458. "汉字宫",
  4459. $$("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" }), {
  4460. "id": "hanUrl",
  4461. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4462. "onresize": function () { }
  4463. }, {
  4464. closecallback: function () { }
  4465. }, { "style": { "height": "36px" } }).form; //创建窗体
  4466. _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); } }
  4467. break;
  4468. }
  4469. case "index":
  4470. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4471. setTimeout(() => {
  4472. U.MD.U.L.login();
  4473. }, 2000);
  4474. } else {
  4475. _formdiv = new U.UF.UI.form(
  4476. "课程中心",
  4477. $$("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 }), {
  4478. "id": "study",
  4479. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4480. "onresize": function () { }
  4481. }, {
  4482. closecallback: function () { }
  4483. }, { "style": { "height": "36px" } }).form; //创建窗体
  4484. _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); } }
  4485. break;
  4486. }
  4487. case "dataClass":
  4488. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4489. setTimeout(() => {
  4490. U.MD.U.L.login();
  4491. }, 2000);
  4492. } else {
  4493. _formdiv = new U.UF.UI.form(
  4494. "数据报告",
  4495. $$("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 }), {
  4496. "id": "dataClass",
  4497. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4498. "onresize": function () { }
  4499. }, {
  4500. closecallback: function () { }
  4501. }, { "style": { "height": "36px" } }).form; //创建窗体
  4502. _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); } }
  4503. break;
  4504. }
  4505. case "opencCscl":
  4506. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4507. setTimeout(() => {
  4508. U.MD.U.L.login();
  4509. }, 2000);
  4510. } else {
  4511. _formdiv = new U.UF.UI.form(
  4512. "协同建构",
  4513. $$("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 }), {
  4514. "id": "futureClass",
  4515. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4516. "onresize": function () { }
  4517. }, {
  4518. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4519. }, { "style": { "height": "36px" } }).form; //创建窗体
  4520. _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); } }
  4521. break;
  4522. }
  4523. case "openCourseUpdate":
  4524. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4525. setTimeout(() => {
  4526. U.MD.U.L.login();
  4527. }, 2000);
  4528. } else {
  4529. _formdiv = new U.UF.UI.form(
  4530. "课程管理",
  4531. $$("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 }), {
  4532. "id": "openCourseUpdate",
  4533. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4534. "onresize": function () { }
  4535. }, {
  4536. closecallback: function () { }
  4537. }, { "style": { "height": "36px" } }).form; //创建窗体
  4538. break;
  4539. }
  4540. case "openNewCourseUpdate":
  4541. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4542. setTimeout(() => {
  4543. U.MD.U.L.login();
  4544. }, 2000);
  4545. } else {
  4546. _formdiv = new U.UF.UI.form(
  4547. "课程管理",
  4548. $$("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 }), {
  4549. "id": "openCourseUpdate",
  4550. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4551. "onresize": function () { }
  4552. }, {
  4553. closecallback: function () { }
  4554. }, { "style": { "height": "36px" } }).form; //创建窗体
  4555. break;
  4556. }
  4557. case "openCourseEUpdate":
  4558. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4559. setTimeout(() => {
  4560. U.MD.U.L.login();
  4561. }, 2000);
  4562. } else {
  4563. _formdiv = new U.UF.UI.form(
  4564. "课程管理",
  4565. $$("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 }), {
  4566. "id": "openCourseUpdate",
  4567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4568. "onresize": function () { }
  4569. }, {
  4570. closecallback: function () { }
  4571. }, { "style": { "height": "36px" } }).form; //创建窗体
  4572. break;
  4573. }
  4574. case "openCourseAiUpdate":
  4575. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4576. setTimeout(() => {
  4577. U.MD.U.L.login();
  4578. }, 2000);
  4579. } else {
  4580. _formdiv = new U.UF.UI.form(
  4581. "课程管理",
  4582. $$("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 }), {
  4583. "id": "openCourseUpdate",
  4584. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4585. "onresize": function () { }
  4586. }, {
  4587. closecallback: function () { }
  4588. }, { "style": { "height": "36px" } }).form; //创建窗体
  4589. break;
  4590. }
  4591. case "openCourseNewUpdate":
  4592. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4593. setTimeout(() => {
  4594. U.MD.U.L.login();
  4595. }, 2000);
  4596. } else {
  4597. _formdiv = new U.UF.UI.form(
  4598. "课程管理",
  4599. $$("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 }), {
  4600. "id": "openCourseUpdate",
  4601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4602. "onresize": function () { }
  4603. }, {
  4604. closecallback: function () { }
  4605. }, { "style": { "height": "36px" } }).form; //创建窗体
  4606. break;
  4607. }
  4608. case "inviteLoginSz":
  4609. _formdiv = new U.UF.UI.form(
  4610. "随机码登录",
  4611. $$("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 }), {
  4612. "id": "loginSz",
  4613. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4614. "onresize": function () { }
  4615. }, {
  4616. closecallback: function () { }
  4617. }, { "style": { "height": "36px" } }).form; //创建窗体
  4618. break;
  4619. case "loginSz":
  4620. _formdiv = new U.UF.UI.form(
  4621. "教师登录",
  4622. $$("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" }), {
  4623. "id": "loginSz",
  4624. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4625. "onresize": function () { }
  4626. }, {
  4627. closecallback: function () { }
  4628. }, { "style": { "height": "36px" } }).form; //创建窗体
  4629. break;
  4630. case "teacher":
  4631. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4632. setTimeout(() => {
  4633. U.MD.U.L.login();
  4634. }, 2000);
  4635. } else {
  4636. _formdiv = new U.UF.UI.form(
  4637. "教师管理",
  4638. $$("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 }), {
  4639. "id": "teacher",
  4640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4641. "onresize": function () { }
  4642. }, {
  4643. closecallback: function () { }
  4644. }, { "style": { "height": "36px" } }).form; //创建窗体
  4645. break;
  4646. }
  4647. case "dataBoardSZArea":
  4648. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4649. setTimeout(() => {
  4650. U.MD.U.L.login();
  4651. }, 2000);
  4652. } else {
  4653. _formdiv = new U.UF.UI.form(
  4654. "综合数据看板",
  4655. $$("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 }), {
  4656. "id": "dataBoardSZArea",
  4657. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4658. "onresize": function () { }
  4659. }, {
  4660. closecallback: function () { }
  4661. }, { "style": { "height": "36px" } }).form; //创建窗体
  4662. break;
  4663. }
  4664. case "dataBoardSZCity":
  4665. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4666. setTimeout(() => {
  4667. U.MD.U.L.login();
  4668. }, 2000);
  4669. } else {
  4670. _formdiv = new U.UF.UI.form(
  4671. "综合数据看板",
  4672. $$("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 }), {
  4673. "id": "dataBoardSZCity",
  4674. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4675. "onresize": function () { }
  4676. }, {
  4677. closecallback: function () { }
  4678. }, { "style": { "height": "36px" } }).form; //创建窗体
  4679. break;
  4680. }
  4681. case "classroom_observation_board":
  4682. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4683. setTimeout(() => {
  4684. U.MD.U.L.login();
  4685. }, 2000);
  4686. } else {
  4687. _formdiv = new U.UF.UI.form(
  4688. "课堂观察",
  4689. $$("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 }), {
  4690. "id": "classroom_observation_board",
  4691. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4692. "onresize": function () { }
  4693. }, {
  4694. closecallback: function () { }
  4695. }, { "style": { "height": "36px" } }).form; //创建窗体
  4696. break;
  4697. }
  4698. case "classroom_observation_ob_comment":
  4699. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4700. setTimeout(() => {
  4701. U.MD.U.L.login();
  4702. }, 2000);
  4703. } else {
  4704. _formdiv = new U.UF.UI.form(
  4705. "课堂审核",
  4706. $$("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 }), {
  4707. "id": "classroom_observation_ob_comment",
  4708. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4709. "onresize": function () { }
  4710. }, {
  4711. closecallback: function () { }
  4712. }, { "style": { "height": "36px" } }).form; //创建窗体
  4713. break;
  4714. }
  4715. }
  4716. }
  4717. U.MD.D.I.openApplication = function (str, obj, info) {
  4718. obj = obj || {};
  4719. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4720. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4721. _userinfo = US.userInfo, //登录用户信息
  4722. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4723. _oid = obj.organizeid || _userinfo.organizeid,
  4724. _type = US.userInfo.type,
  4725. _org = US.userInfo.org,
  4726. _role = US.userInfo.role,
  4727. _classId = US.userInfo.classid,
  4728. _TscreenType = 1
  4729. _screenType = 2,
  4730. _SscreenType = 3;
  4731. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4732. return;
  4733. }
  4734. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4735. switch (str) {
  4736. case "studnetProject": //好友打开
  4737. _formdiv = new U.UF.UI.form(
  4738. "我的项目",
  4739. $$("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 }), {
  4740. "id": "studnetProject",
  4741. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4742. "onresize": function () { }
  4743. }, {
  4744. closecallback: function () { }
  4745. }, { "style": { "height": "36px" } }).form; //创建窗体
  4746. _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); } }
  4747. break;
  4748. case "studentEvaluate": //好友打开
  4749. _formdiv = new U.UF.UI.form(
  4750. "我的评价",
  4751. $$("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 }), {
  4752. "id": "studentEvaluate",
  4753. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4754. "onresize": function () { }
  4755. }, {
  4756. closecallback: function () { }
  4757. }, { "style": { "height": "36px" } }).form; //创建窗体
  4758. _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); } }
  4759. break;
  4760. case "my":
  4761. _formdiv = new U.UF.UI.form(
  4762. "我的资料",
  4763. $$("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 }), {
  4764. "id": "my",
  4765. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4766. "onresize": function () { }
  4767. }, {
  4768. closecallback: function () { }
  4769. }, { "style": { "height": "36px" } }).form; //创建窗体
  4770. _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); } }
  4771. break;
  4772. case "program":
  4773. _formdiv = new U.UF.UI.form(
  4774. "编程平台",
  4775. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4776. "id": "program",
  4777. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4778. "onresize": function () { }
  4779. }, {
  4780. closecallback: function () { }
  4781. }, { "style": { "height": "36px" } }).form; //创建窗体
  4782. _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); } }
  4783. break;
  4784. case "library":
  4785. _formdiv = new U.UF.UI.form(
  4786. "素材库",
  4787. $$("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 }), {
  4788. "id": "library",
  4789. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4790. "onresize": function () { }
  4791. }, {
  4792. closecallback: function () { }
  4793. }, { "style": { "height": "36px" } }).form; //创建窗体
  4794. _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); } }
  4795. break;
  4796. case "whiteboard":
  4797. _formdiv = new U.UF.UI.form(
  4798. "电子白板",
  4799. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4800. "id": "whiteboard",
  4801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4802. "onresize": function () { }
  4803. }, {
  4804. closecallback: function () { }
  4805. }, { "style": { "height": "36px" } }).form; //创建窗体
  4806. _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); } }
  4807. break;
  4808. case "investigation":
  4809. _formdiv = new U.UF.UI.form(
  4810. "问卷调查",
  4811. $$("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 }), {
  4812. "id": "investigation",
  4813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4814. "onresize": function () { }
  4815. }, {
  4816. closecallback: function () { }
  4817. }, { "style": { "height": "36px" } }).form; //创建窗体
  4818. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4819. break;
  4820. case "note":
  4821. _formdiv = new U.UF.UI.form(
  4822. "便签分类",
  4823. $$("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 }), {
  4824. "id": "note",
  4825. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4826. "onresize": function () { }
  4827. }, {
  4828. closecallback: function () { }
  4829. }, { "style": { "height": "36px" } }).form; //创建窗体
  4830. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4831. break;
  4832. // case "score":
  4833. // _formdiv = new U.UF.UI.form(
  4834. // "量规评分",
  4835. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4836. // "id": "score",
  4837. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4838. // "onresize": function() {}
  4839. // }, {
  4840. // closecallback: function() {}
  4841. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4842. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4843. // break;
  4844. case "mind":
  4845. _formdiv = new U.UF.UI.form(
  4846. "思维导图",
  4847. $$("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"
  4848. "id": "mind",
  4849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4850. "onresize": function () { }
  4851. }, {
  4852. closecallback: function () { }
  4853. }, { "style": { "height": "36px" } }).form; //创建窗体
  4854. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4855. break;
  4856. case "doc":
  4857. // U.MD.D.I.isRoom();
  4858. _formdiv = new U.UF.UI.form(
  4859. "协同文档",
  4860. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4861. "id": "doc",
  4862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4863. "onresize": function () { }
  4864. }, {
  4865. closecallback: function () { }
  4866. }, { "style": { "height": "36px" } }).form; //创建窗体
  4867. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4868. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4869. // })
  4870. _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); } }
  4871. break;
  4872. case "studentStudy":
  4873. _formdiv = new U.UF.UI.form(
  4874. "课程中心",
  4875. $$("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
  4876. "id": "studentStudy",
  4877. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4878. "onresize": function () { }
  4879. }, {
  4880. closecallback: function () { }
  4881. }, { "style": { "height": "36px" } }).form; //创建窗体
  4882. _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); } }
  4883. break;
  4884. case "train": //好友打开
  4885. _formdiv = new U.UF.UI.form(
  4886. "训练平台",
  4887. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4888. "id": "train",
  4889. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4890. "onresize": function () { }
  4891. }, {
  4892. closecallback: function () { }
  4893. }, { "style": { "height": "36px" } }).form; //创建窗体
  4894. _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); } }
  4895. break;
  4896. case "mindNetwork": //好友打开
  4897. _formdiv = new U.UF.UI.form(
  4898. "思维网格",
  4899. $$("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 }), {
  4900. "id": "mindNetwork",
  4901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4902. "onresize": function () { }
  4903. }, {
  4904. closecallback: function () { }
  4905. }, { "style": { "height": "36px" } }).form; //创建窗体
  4906. _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); } }
  4907. break;
  4908. case "studentClassRoom": //好友打开
  4909. _formdiv = new U.UF.UI.form(
  4910. "实时课堂",
  4911. $$("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 }), {
  4912. "id": "studentClassRoom",
  4913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4914. "onresize": function () { }
  4915. }, {
  4916. closecallback: function () { }
  4917. }, { "style": { "height": "36px" } }).form; //创建窗体
  4918. _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); } }
  4919. setTimeout(() => {
  4920. U.UF.F.windowZooming(_formdiv)
  4921. }, 0);
  4922. break;
  4923. }
  4924. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4925. switch (str) {
  4926. case "studnetProject": //好友打开
  4927. _formdiv = new U.UF.UI.form(
  4928. "我的项目",
  4929. $$("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 }), {
  4930. "id": "studnetProject",
  4931. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4932. "onresize": function () { }
  4933. }, {
  4934. closecallback: function () { }
  4935. }, { "style": { "height": "36px" } }).form; //创建窗体
  4936. _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); } }
  4937. break;
  4938. case "studentEvaluate": //好友打开
  4939. _formdiv = new U.UF.UI.form(
  4940. "我的评价",
  4941. $$("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 }), {
  4942. "id": "studentEvaluate",
  4943. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4944. "onresize": function () { }
  4945. }, {
  4946. closecallback: function () { }
  4947. }, { "style": { "height": "36px" } }).form; //创建窗体
  4948. _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); } }
  4949. break;
  4950. case "my":
  4951. _formdiv = new U.UF.UI.form(
  4952. "我的资料",
  4953. $$("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 }), {
  4954. "id": "my",
  4955. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4956. "onresize": function () { }
  4957. }, {
  4958. closecallback: function () { }
  4959. }, { "style": { "height": "36px" } }).form; //创建窗体
  4960. _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); } }
  4961. break;
  4962. case "program":
  4963. _formdiv = new U.UF.UI.form(
  4964. "编程平台",
  4965. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4966. "id": "program",
  4967. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4968. "onresize": function () { }
  4969. }, {
  4970. closecallback: function () { }
  4971. }, { "style": { "height": "36px" } }).form; //创建窗体
  4972. _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); } }
  4973. break;
  4974. case "library":
  4975. _formdiv = new U.UF.UI.form(
  4976. "素材库",
  4977. $$("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 }), {
  4978. "id": "library",
  4979. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4980. "onresize": function () { }
  4981. }, {
  4982. closecallback: function () { }
  4983. }, { "style": { "height": "36px" } }).form; //创建窗体
  4984. _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); } }
  4985. break;
  4986. case "whiteboard":
  4987. _formdiv = new U.UF.UI.form(
  4988. "电子白板",
  4989. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4990. "id": "whiteboard",
  4991. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4992. "onresize": function () { }
  4993. }, {
  4994. closecallback: function () { }
  4995. }, { "style": { "height": "36px" } }).form; //创建窗体
  4996. _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); } }
  4997. break;
  4998. case "investigation":
  4999. _formdiv = new U.UF.UI.form(
  5000. "问卷调查",
  5001. $$("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 }), {
  5002. "id": "investigation",
  5003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5004. "onresize": function () { }
  5005. }, {
  5006. closecallback: function () { }
  5007. }, { "style": { "height": "36px" } }).form; //创建窗体
  5008. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5009. break;
  5010. case "note":
  5011. _formdiv = new U.UF.UI.form(
  5012. "便签分类",
  5013. $$("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 }), {
  5014. "id": "note",
  5015. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5016. "onresize": function () { }
  5017. }, {
  5018. closecallback: function () { }
  5019. }, { "style": { "height": "36px" } }).form; //创建窗体
  5020. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5021. break;
  5022. // case "score":
  5023. // _formdiv = new U.UF.UI.form(
  5024. // "量规评分",
  5025. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5026. // "id": "score",
  5027. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5028. // "onresize": function() {}
  5029. // }, {
  5030. // closecallback: function() {}
  5031. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5032. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5033. // break;
  5034. case "mind":
  5035. _formdiv = new U.UF.UI.form(
  5036. "思维导图",
  5037. $$("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"
  5038. "id": "mind",
  5039. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5040. "onresize": function () { }
  5041. }, {
  5042. closecallback: function () { }
  5043. }, { "style": { "height": "36px" } }).form; //创建窗体
  5044. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5045. break;
  5046. case "doc":
  5047. // U.MD.D.I.isRoom();
  5048. _formdiv = new U.UF.UI.form(
  5049. "协同文档",
  5050. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5051. "id": "doc",
  5052. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5053. "onresize": function () { }
  5054. }, {
  5055. closecallback: function () { }
  5056. }, { "style": { "height": "36px" } }).form; //创建窗体
  5057. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5058. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5059. })
  5060. _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); } }
  5061. break;
  5062. case "train": //好友打开
  5063. _formdiv = new U.UF.UI.form(
  5064. "训练平台",
  5065. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5066. "id": "train",
  5067. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5068. "onresize": function () { }
  5069. }, {
  5070. closecallback: function () { }
  5071. }, { "style": { "height": "36px" } }).form; //创建窗体
  5072. _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); } }
  5073. break;
  5074. case "studentStudy":
  5075. _formdiv = new U.UF.UI.form(
  5076. "课程中心",
  5077. $$("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
  5078. "id": "studentStudy",
  5079. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5080. "onresize": function () { }
  5081. }, {
  5082. closecallback: function () { }
  5083. }, { "style": { "height": "36px" } }).form; //创建窗体
  5084. _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); } }
  5085. break;
  5086. case "mindNetwork": //好友打开
  5087. _formdiv = new U.UF.UI.form(
  5088. "思维网格",
  5089. $$("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 }), {
  5090. "id": "mindNetwork",
  5091. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5092. "onresize": function () { }
  5093. }, {
  5094. closecallback: function () { }
  5095. }, { "style": { "height": "36px" } }).form; //创建窗体
  5096. _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); } }
  5097. break;
  5098. case "studentClassRoom": //好友打开
  5099. _formdiv = new U.UF.UI.form(
  5100. "实时课堂",
  5101. $$("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 }), {
  5102. "id": "studentClassRoom",
  5103. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5104. "onresize": function () { }
  5105. }, {
  5106. closecallback: function () { }
  5107. }, { "style": { "height": "36px" } }).form; //创建窗体
  5108. _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); } }
  5109. setTimeout(() => {
  5110. U.UF.F.windowZooming(_formdiv)
  5111. }, 0);
  5112. break;
  5113. }
  5114. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5115. //选择应用处理
  5116. switch (str) {
  5117. case "project": //好友打开
  5118. _formdiv = new U.UF.UI.form(
  5119. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5120. $$("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 }), {
  5121. "id": "project",
  5122. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5123. "onresize": function () { }
  5124. }, {
  5125. closecallback: function () { }
  5126. }, { "style": { "height": "36px" } }).form; //创建窗体
  5127. _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); } }
  5128. break;
  5129. case "student":
  5130. _formdiv = new U.UF.UI.form(
  5131. "学生管理",
  5132. $$("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 }), {
  5133. "id": "student",
  5134. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5135. "onresize": function () { }
  5136. }, {
  5137. closecallback: function () { }
  5138. }, { "style": { "height": "36px" } }).form; //创建窗体
  5139. _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); } }
  5140. break;
  5141. case "evaluate":
  5142. _formdiv = new U.UF.UI.form(
  5143. "学生评价",
  5144. $$("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 }), {
  5145. "id": "evaluate",
  5146. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5147. "onresize": function () { }
  5148. }, {
  5149. closecallback: function () { }
  5150. }, { "style": { "height": "36px" } }).form; //创建窗体
  5151. _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); } }
  5152. break;
  5153. case "sys":
  5154. _formdiv = new U.UF.UI.form(
  5155. "目标管理",
  5156. $$("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 }), {
  5157. "id": "sys",
  5158. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5159. "onresize": function () { }
  5160. }, {
  5161. closecallback: function () { }
  5162. }, { "style": { "height": "36px" } }).form; //创建窗体
  5163. _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); } }
  5164. break;
  5165. case "courseDesign":
  5166. _formdiv = new U.UF.UI.form(
  5167. "项目设计",
  5168. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5169. "id": "courseDesign",
  5170. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5171. "onresize": function () { }
  5172. }, {
  5173. closecallback: function () { }
  5174. }, { "style": { "height": "36px" } }).form; //创建窗体
  5175. _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); } }
  5176. break;
  5177. case "program":
  5178. _formdiv = new U.UF.UI.form(
  5179. "编程平台",
  5180. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5181. "id": "program",
  5182. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5183. "onresize": function () { }
  5184. }, {
  5185. closecallback: function () { }
  5186. }, { "style": { "height": "36px" } }).form; //创建窗体
  5187. _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); } }
  5188. break;
  5189. case "class":
  5190. _formdiv = new U.UF.UI.form(
  5191. "班级管理",
  5192. $$("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 }), {
  5193. "id": "class",
  5194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5195. "onresize": function () { }
  5196. }, {
  5197. closecallback: function () { }
  5198. }, { "style": { "height": "36px" } }).form; //创建窗体
  5199. _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); } }
  5200. break;
  5201. case "Grade":
  5202. _formdiv = new U.UF.UI.form(
  5203. "年级管理",
  5204. $$("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 }), {
  5205. "id": "Grade",
  5206. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5207. "onresize": function () { }
  5208. }, {
  5209. closecallback: function () { }
  5210. }, { "style": { "height": "36px" } }).form; //创建窗体
  5211. _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); } }
  5212. break;
  5213. case "teacherOffice":
  5214. _formdiv = new U.UF.UI.form(
  5215. "教研室",
  5216. $$("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 }), {
  5217. "id": "teacherOffice",
  5218. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5219. "onresize": function () { }
  5220. }, {
  5221. closecallback: function () { }
  5222. }, { "style": { "height": "36px" } }).form; //创建窗体
  5223. _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); } }
  5224. break;
  5225. case "my":
  5226. _formdiv = new U.UF.UI.form(
  5227. "我的资料",
  5228. $$("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 }), {
  5229. "id": "my",
  5230. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5231. "onresize": function () { }
  5232. }, {
  5233. closecallback: function () { }
  5234. }, { "style": { "height": "36px" } }).form; //创建窗体
  5235. _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); } }
  5236. break;
  5237. case "notice":
  5238. _formdiv = new U.UF.UI.form(
  5239. "通知公告",
  5240. $$("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 }), {
  5241. "id": "notice",
  5242. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5243. "onresize": function () { }
  5244. }, {
  5245. closecallback: function () { }
  5246. }, { "style": { "height": "36px" } }).form; //创建窗体
  5247. _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); } }
  5248. break;
  5249. case "library":
  5250. _formdiv = new U.UF.UI.form(
  5251. "素材库",
  5252. $$("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 }), {
  5253. "id": "library",
  5254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5255. "onresize": function () { }
  5256. }, {
  5257. closecallback: function () { }
  5258. }, { "style": { "height": "36px" } }).form; //创建窗体
  5259. _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); } }
  5260. break;
  5261. case "whiteboard":
  5262. _formdiv = new U.UF.UI.form(
  5263. "电子白板",
  5264. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5265. "id": "whiteboard",
  5266. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5267. "onresize": function () { }
  5268. }, {
  5269. closecallback: function () { }
  5270. }, { "style": { "height": "36px" } }).form; //创建窗体
  5271. _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); } }
  5272. break;
  5273. case "investigation":
  5274. _formdiv = new U.UF.UI.form(
  5275. "问卷调查",
  5276. $$("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 }), {
  5277. "id": "investigation",
  5278. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5279. "onresize": function () { }
  5280. }, {
  5281. closecallback: function () { }
  5282. }, { "style": { "height": "36px" } }).form; //创建窗体
  5283. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5284. break;
  5285. case "note":
  5286. _formdiv = new U.UF.UI.form(
  5287. "便签分类",
  5288. $$("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 }), {
  5289. "id": "note",
  5290. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5291. "onresize": function () { }
  5292. }, {
  5293. closecallback: function () { }
  5294. }, { "style": { "height": "36px" } }).form; //创建窗体
  5295. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5296. break;
  5297. // case "score":
  5298. // _formdiv = new U.UF.UI.form(
  5299. // "量规评分",
  5300. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5301. // "id": "score",
  5302. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5303. // "onresize": function() {}
  5304. // }, {
  5305. // closecallback: function() {}
  5306. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5307. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5308. // break;
  5309. case "mind":
  5310. _formdiv = new U.UF.UI.form(
  5311. "思维导图",
  5312. $$("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"
  5313. "id": "mind",
  5314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //创建窗体
  5319. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5320. break;
  5321. case "doc":
  5322. // U.MD.D.I.isRoom();
  5323. _formdiv = new U.UF.UI.form(
  5324. "协同文档",
  5325. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5326. "id": "doc",
  5327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5328. "onresize": function () { }
  5329. }, {
  5330. closecallback: function () { }
  5331. }, { "style": { "height": "36px" } }).form; //创建窗体
  5332. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5333. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5334. })
  5335. _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); } }
  5336. break;
  5337. case "study":
  5338. _formdiv = new U.UF.UI.form(
  5339. "课程中心",
  5340. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": 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
  5341. "id": "study",
  5342. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5343. "onresize": function () { }
  5344. }, {
  5345. closecallback: function () { }
  5346. }, { "style": { "height": "36px" } }).form; //创建窗体
  5347. _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); } }
  5348. break;
  5349. case "mindNetwork": //好友打开
  5350. _formdiv = new U.UF.UI.form(
  5351. "思维网格",
  5352. $$("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 }), {
  5353. "id": "mindNetwork",
  5354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5355. "onresize": function () { }
  5356. }, {
  5357. closecallback: function () { }
  5358. }, { "style": { "height": "36px" } }).form; //创建窗体
  5359. _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); } }
  5360. break;
  5361. case "train": //好友打开
  5362. _formdiv = new U.UF.UI.form(
  5363. "训练平台",
  5364. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5365. "id": "mindNetwork",
  5366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5367. "onresize": function () { }
  5368. }, {
  5369. closecallback: function () { }
  5370. }, { "style": { "height": "36px" } }).form; //创建窗体
  5371. _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); } }
  5372. break;
  5373. case "teacherClassRoom": //好友打开
  5374. _formdiv = new U.UF.UI.form(
  5375. "实时课堂",
  5376. $$("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 }), {
  5377. "id": "teacherClassRoom",
  5378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5379. "onresize": function () { }
  5380. }, {
  5381. closecallback: function () { }
  5382. }, { "style": { "height": "36px" } }).form; //创建窗体
  5383. _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); } }
  5384. setTimeout(() => {
  5385. U.UF.F.windowZooming(_formdiv)
  5386. }, 0);
  5387. break;
  5388. }
  5389. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5390. switch (str) {
  5391. case "project": //好友打开
  5392. _formdiv = new U.UF.UI.form(
  5393. "课程管理",
  5394. $$("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 }), {
  5395. "id": "project",
  5396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5397. "onresize": function () { }
  5398. }, {
  5399. closecallback: function () { }
  5400. }, { "style": { "height": "36px" } }).form; //创建窗体
  5401. _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); } }
  5402. break;
  5403. case "evaluate":
  5404. _formdiv = new U.UF.UI.form(
  5405. "学生评价",
  5406. $$("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 }), {
  5407. "id": "evaluate",
  5408. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5409. "onresize": function () { }
  5410. }, {
  5411. closecallback: function () { }
  5412. }, { "style": { "height": "36px" } }).form; //创建窗体
  5413. _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); } }
  5414. break;
  5415. case "notice":
  5416. _formdiv = new U.UF.UI.form(
  5417. "通知公告",
  5418. $$("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 }), {
  5419. "id": "notice",
  5420. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5421. "onresize": function () { }
  5422. }, {
  5423. closecallback: function () { }
  5424. }, { "style": { "height": "36px" } }).form; //创建窗体
  5425. _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); } }
  5426. break;
  5427. case "stuLibrary":
  5428. _formdiv = new U.UF.UI.form(
  5429. "学习资料",
  5430. $$("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 }), {
  5431. "id": "stuLibrary",
  5432. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5433. "onresize": function () { }
  5434. }, {
  5435. closecallback: function () { }
  5436. }, { "style": { "height": "36px" } }).form; //创建窗体
  5437. _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); } }
  5438. break;
  5439. case "program":
  5440. _formdiv = new U.UF.UI.form(
  5441. "编程平台",
  5442. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5443. "id": "program",
  5444. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //创建窗体
  5449. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5450. break;
  5451. case "whiteboard":
  5452. _formdiv = new U.UF.UI.form(
  5453. "电子白板",
  5454. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5455. "id": "whiteboard",
  5456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5457. "onresize": function () { }
  5458. }, {
  5459. closecallback: function () { }
  5460. }, { "style": { "height": "36px" } }).form; //创建窗体
  5461. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5462. break;
  5463. case "investigation":
  5464. _formdiv = new U.UF.UI.form(
  5465. "问卷调查",
  5466. $$("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 }), {
  5467. "id": "investigation",
  5468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5469. "onresize": function () { }
  5470. }, {
  5471. closecallback: function () { }
  5472. }, { "style": { "height": "36px" } }).form; //创建窗体
  5473. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5474. break;
  5475. case "mind":
  5476. _formdiv = new U.UF.UI.form(
  5477. "思维导图",
  5478. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5479. "id": "mind",
  5480. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5481. "onresize": function () { }
  5482. }, {
  5483. closecallback: function () { }
  5484. }, { "style": { "height": "36px" } }).form; //创建窗体
  5485. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5486. break;
  5487. case "doc":
  5488. // U.MD.D.I.isRoom();
  5489. _formdiv = new U.UF.UI.form(
  5490. "协同文档",
  5491. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5492. "id": "doc",
  5493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5494. "onresize": function () { }
  5495. }, {
  5496. closecallback: function () { }
  5497. }, { "style": { "height": "36px" } }).form; //创建窗体
  5498. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5499. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5500. })
  5501. _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); } }
  5502. break;
  5503. case "study":
  5504. _formdiv = new U.UF.UI.form(
  5505. "课程中心",
  5506. $$("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
  5507. "id": "study",
  5508. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5509. "onresize": function () { }
  5510. }, {
  5511. closecallback: function () { }
  5512. }, { "style": { "height": "36px" } }).form; //创建窗体
  5513. _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); } }
  5514. break;
  5515. case "mindNetwork": //好友打开
  5516. _formdiv = new U.UF.UI.form(
  5517. "思维网格",
  5518. $$("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 }), {
  5519. "id": "mindNetwork",
  5520. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5521. "onresize": function () { }
  5522. }, {
  5523. closecallback: function () { }
  5524. }, { "style": { "height": "36px" } }).form; //创建窗体
  5525. _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); } }
  5526. break;
  5527. case "train": //好友打开
  5528. _formdiv = new U.UF.UI.form(
  5529. "训练平台",
  5530. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5531. "id": "train",
  5532. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5533. "onresize": function () { }
  5534. }, {
  5535. closecallback: function () { }
  5536. }, { "style": { "height": "36px" } }).form; //创建窗体
  5537. _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); } }
  5538. break;
  5539. case "sys":
  5540. _formdiv = new U.UF.UI.form(
  5541. "目标管理",
  5542. $$("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 }), {
  5543. "id": "sys",
  5544. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. _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); } }
  5550. break;
  5551. case "courseDesign":
  5552. _formdiv = new U.UF.UI.form(
  5553. "项目设计",
  5554. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5555. "id": "courseDesign",
  5556. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5557. "onresize": function () { }
  5558. }, {
  5559. closecallback: function () { }
  5560. }, { "style": { "height": "36px" } }).form; //创建窗体
  5561. _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); } }
  5562. break;
  5563. }
  5564. } else if (!_type) {
  5565. switch (str) {
  5566. case "my":
  5567. _formdiv = new U.UF.UI.form(
  5568. "我的资料",
  5569. $$("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 }), {
  5570. "id": "my",
  5571. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5572. "onresize": function () { }
  5573. }, {
  5574. closecallback: function () { }
  5575. }, { "style": { "height": "36px" } }).form; //创建窗体
  5576. _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); } }
  5577. break;
  5578. }
  5579. }
  5580. switch (str) {
  5581. // AIprogram2 AI体验 aihub.cocorobo.cn
  5582. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5583. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5584. case "formulaEdi": //公式编辑
  5585. _formdiv = new U.UF.UI.form(
  5586. "公式编辑",
  5587. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5588. "id": "formulaEdi",
  5589. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5590. "onresize": function () { }
  5591. }, {
  5592. closecallback: function () { }
  5593. }, { "style": { "height": "36px" } }).form; //创建窗体
  5594. _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); } }
  5595. break;
  5596. case "molStr": //分子结构
  5597. _formdiv = new U.UF.UI.form(
  5598. "分子结构",
  5599. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5600. "id": "molStr",
  5601. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5602. "onresize": function () { }
  5603. }, {
  5604. closecallback: function () { }
  5605. }, { "style": { "height": "36px" } }).form; //创建窗体
  5606. _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); } }
  5607. break;
  5608. case "timeAxis": //时间轴
  5609. _formdiv = new U.UF.UI.form(
  5610. "时间轴",
  5611. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5612. "id": "timeAxis",
  5613. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5614. "onresize": function () { }
  5615. }, {
  5616. closecallback: function () { }
  5617. }, { "style": { "height": "36px" } }).form; //创建窗体
  5618. _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); } }
  5619. break;
  5620. case "AIprogram2": //AI体验
  5621. _formdiv = new U.UF.UI.form(
  5622. "AI体验",
  5623. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5624. "id": "AIprogram2",
  5625. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5626. "onresize": function () { }
  5627. }, {
  5628. closecallback: function () { }
  5629. }, { "style": { "height": "36px" } }).form; //创建窗体
  5630. _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); } }
  5631. break;
  5632. case "Pythonprogram": //python编程
  5633. _formdiv = new U.UF.UI.form(
  5634. "Python编程",
  5635. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5636. "id": "Pythonprogram",
  5637. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5638. "onresize": function () { }
  5639. }, {
  5640. closecallback: function () { }
  5641. }, { "style": { "height": "36px" } }).form; //创建窗体
  5642. _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); } }
  5643. break;
  5644. case "AIprogram": //ai编程
  5645. _formdiv = new U.UF.UI.form(
  5646. "AI编程平台",
  5647. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5648. "id": "AIprogram",
  5649. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5650. "onresize": function () { }
  5651. }, {
  5652. closecallback: function () { }
  5653. }, { "style": { "height": "36px" } }).form; //创建窗体
  5654. _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); } }
  5655. break;
  5656. case "CocoPi": //CocoPi
  5657. _formdiv = new U.UF.UI.form(
  5658. "CocoPi",
  5659. $$("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" }), {
  5660. "id": "CocoPi",
  5661. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5662. "onresize": function () { }
  5663. }, {
  5664. closecallback: function () { }
  5665. }, { "style": { "height": "36px" } }).form; //创建窗体
  5666. _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); } }
  5667. break;
  5668. case "Wood": //Wood
  5669. _formdiv = new U.UF.UI.form(
  5670. "海龟编程",
  5671. $$("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/" }), {
  5672. "id": "Wood",
  5673. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5674. "onresize": function () { }
  5675. }, {
  5676. closecallback: function () { }
  5677. }, { "style": { "height": "36px" } }).form; //创建窗体
  5678. _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); } }
  5679. break;
  5680. case "car": //模拟驾驶
  5681. _formdiv = new U.UF.UI.form(
  5682. "模拟驾驶",
  5683. $$("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/" }), {
  5684. "id": "car",
  5685. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5686. "onresize": function () { }
  5687. }, {
  5688. closecallback: function () { }
  5689. }, { "style": { "height": "36px" } }).form; //创建窗体
  5690. _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); } }
  5691. break;
  5692. case "lineSearch": //路径搜索
  5693. _formdiv = new U.UF.UI.form(
  5694. "路径搜索",
  5695. $$("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/" }), {
  5696. "id": "lineSearch",
  5697. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5698. "onresize": function () { }
  5699. }, {
  5700. closecallback: function () { }
  5701. }, { "style": { "height": "36px" } }).form; //创建窗体
  5702. _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); } }
  5703. break;
  5704. case "deepLearning": //深度学习
  5705. _formdiv = new U.UF.UI.form(
  5706. "深度学习",
  5707. $$("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/#" }), {
  5708. "id": "deepLearning",
  5709. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5710. "onresize": function () { }
  5711. }, {
  5712. closecallback: function () { }
  5713. }, { "style": { "height": "36px" } }).form; //创建窗体
  5714. _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); } }
  5715. break;
  5716. case "allHistory": //深度学习
  5717. _formdiv = new U.UF.UI.form(
  5718. "全历史",
  5719. $$("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/" }), {
  5720. "id": "allHistory",
  5721. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5722. "onresize": function () { }
  5723. }, {
  5724. closecallback: function () { }
  5725. }, { "style": { "height": "36px" } }).form; //创建窗体
  5726. _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); } }
  5727. break;
  5728. case "chatPDF": //ai编程
  5729. _formdiv = new U.UF.UI.form(
  5730. "chatPDF",
  5731. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5732. "id": "chatPDF",
  5733. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5734. "onresize": function () { }
  5735. }, {
  5736. closecallback: function () { }
  5737. }, { "style": { "height": "36px" } }).form; //创建窗体
  5738. _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); } }
  5739. break;
  5740. case "resources": //国家教育
  5741. _formdiv = new U.UF.UI.form(
  5742. "国家教育",
  5743. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5744. "id": "resources",
  5745. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5746. "onresize": function () { }
  5747. }, {
  5748. closecallback: function () { }
  5749. }, { "style": { "height": "36px" } }).form; //创建窗体
  5750. _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); } }
  5751. break;
  5752. case "codeEdit": //源码编辑
  5753. _formdiv = new U.UF.UI.form(
  5754. "源码编辑",
  5755. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5756. "id": "codeEdit",
  5757. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5758. "onresize": function () { }
  5759. }, {
  5760. closecallback: function () { }
  5761. }, { "style": { "height": "36px" } }).form; //创建窗体
  5762. _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); } }
  5763. break; //
  5764. case "MindMap": //MindMap
  5765. _formdiv = new U.UF.UI.form(
  5766. "MindMap",
  5767. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5768. "id": "MindMap",
  5769. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5770. "onresize": function () { }
  5771. }, {
  5772. closecallback: function () { }
  5773. }, { "style": { "height": "36px" } }).form; //创建窗体
  5774. _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); } }
  5775. break;
  5776. case "netWorkPanel": //netWorkPanel
  5777. _formdiv = new U.UF.UI.form(
  5778. "netWorkPanel",
  5779. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5780. "id": "netWorkPanel",
  5781. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5782. "onresize": function () { }
  5783. }, {
  5784. closecallback: function () { }
  5785. }, { "style": { "height": "36px" } }).form; //创建窗体
  5786. _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); } }
  5787. break;
  5788. case "GeoGebra": //GeoGebra
  5789. _formdiv = new U.UF.UI.form(
  5790. "GeoGebra",
  5791. $$("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" }), {
  5792. "id": "GeoGebra",
  5793. "style": { "width": "80%", "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/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5799. break;
  5800. case "translation": //翻译
  5801. _formdiv = new U.UF.UI.form(
  5802. "翻译",
  5803. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5804. "id": "translation",
  5805. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5806. "onresize": function () { }
  5807. }, {
  5808. closecallback: function () { }
  5809. }, { "style": { "height": "36px" } }).form; //创建窗体
  5810. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5811. break;
  5812. case "mohe": //魔盒
  5813. _formdiv = new U.UF.UI.form(
  5814. "魔盒识字",
  5815. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5816. "id": "mohe",
  5817. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5818. "onresize": function () { }
  5819. }, {
  5820. closecallback: function () { }
  5821. }, { "style": { "height": "36px" } }).form; //创建窗体
  5822. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5823. break;
  5824. case "24game": //24点
  5825. _formdiv = new U.UF.UI.form(
  5826. "24点",
  5827. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5828. "id": "24game",
  5829. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5830. "onresize": function () { }
  5831. }, {
  5832. closecallback: function () { }
  5833. }, { "style": { "height": "36px" } }).form; //创建窗体
  5834. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5835. break;
  5836. case "case":
  5837. _formdiv = new U.UF.UI.form(
  5838. "课程进展",
  5839. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5840. "id": "case",
  5841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5842. "onresize": function () { }
  5843. }, {
  5844. closecallback: function () { }
  5845. }, { "style": { "height": "36px" } }).form; //创建窗体
  5846. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5847. break;
  5848. case "snf":
  5849. _formdiv = new U.UF.UI.form(
  5850. "赛诺梵",
  5851. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  5852. "id": "snf",
  5853. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5854. "onresize": function () { }
  5855. }, {
  5856. closecallback: function () { }
  5857. }, { "style": { "height": "36px" } }).form; //创建窗体
  5858. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5859. break;
  5860. case "hanFamily":
  5861. _formdiv = new U.UF.UI.form(
  5862. "汉字家族",
  5863. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5864. "id": "hanFamily",
  5865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5866. "onresize": function () { }
  5867. }, {
  5868. closecallback: function () { }
  5869. }, { "style": { "height": "36px" } }).form; //创建窗体
  5870. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5871. break;
  5872. case "hanClassics":
  5873. _formdiv = new U.UF.UI.form(
  5874. "国学经典",
  5875. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5876. "id": "hanClassics",
  5877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5878. "onresize": function () { }
  5879. }, {
  5880. closecallback: function () { }
  5881. }, { "style": { "height": "36px" } }).form; //创建窗体
  5882. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5883. break;
  5884. case "hanTraining":
  5885. _formdiv = new U.UF.UI.form(
  5886. "笔画训练",
  5887. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5888. "id": "hanTraining",
  5889. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5890. "onresize": function () { }
  5891. }, {
  5892. closecallback: function () { }
  5893. }, { "style": { "height": "36px" } }).form; //创建窗体
  5894. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5895. break;
  5896. case "hanClass":
  5897. _formdiv = new U.UF.UI.form(
  5898. "书法课堂",
  5899. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5900. "id": "hanClass",
  5901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5902. "onresize": function () { }
  5903. }, {
  5904. closecallback: function () { }
  5905. }, { "style": { "height": "36px" } }).form; //创建窗体
  5906. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5907. break;
  5908. case "han":
  5909. _formdiv = new U.UF.UI.form(
  5910. "汉字宫",
  5911. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5912. "id": "han",
  5913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5914. "onresize": function () { }
  5915. }, {
  5916. closecallback: function () { }
  5917. }, { "style": { "height": "36px" } }).form; //创建窗体
  5918. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5919. break;
  5920. case "projectGM": //课程管理
  5921. _formdiv = new U.UF.UI.form(
  5922. "课程管理",
  5923. $$("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 }), {
  5924. "id": "projectGM",
  5925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5926. "onresize": function () { }
  5927. }, {
  5928. closecallback: function () { }
  5929. }, { "style": { "height": "36px" } }).form; //创建窗体
  5930. _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); } }
  5931. break;
  5932. case "studyGM": //课程中心
  5933. _formdiv = new U.UF.UI.form(
  5934. "课程中心",
  5935. $$("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
  5936. "id": "study",
  5937. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5938. "onresize": function () { }
  5939. }, {
  5940. closecallback: function () { }
  5941. }, { "style": { "height": "36px" } }).form; //创建窗体
  5942. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5943. break;
  5944. // studentGM
  5945. case "studentGM": //学生管理
  5946. _formdiv = new U.UF.UI.form(
  5947. "学生管理",
  5948. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  5949. "id": "studentGM",
  5950. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5951. "onresize": function () { }
  5952. }, {
  5953. closecallback: function () { }
  5954. }, { "style": { "height": "36px" } }).form; //创建窗体
  5955. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5956. break;
  5957. case "evaluateGM": //学生评价
  5958. _formdiv = new U.UF.UI.form(
  5959. "学生评价",
  5960. $$("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 }), {
  5961. "id": "evaluateGM",
  5962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5963. "onresize": function () { }
  5964. }, {
  5965. closecallback: function () { }
  5966. }, { "style": { "height": "36px" } }).form; //创建窗体
  5967. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5968. break;
  5969. // classGM
  5970. case "classGM": //班级管理
  5971. _formdiv = new U.UF.UI.form(
  5972. "班级管理",
  5973. $$("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 }), {
  5974. "id": "classGM",
  5975. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5976. "onresize": function () { }
  5977. }, {
  5978. closecallback: function () { }
  5979. }, { "style": { "height": "36px" } }).form; //创建窗体
  5980. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5981. break;
  5982. // dataGM
  5983. case "dataGM":
  5984. _formdiv = new U.UF.UI.form(
  5985. "我的资料",
  5986. $$("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 }), {
  5987. "id": "dataGM",
  5988. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5989. "onresize": function () { }
  5990. }, {
  5991. closecallback: function () { }
  5992. }, { "style": { "height": "36px" } }).form; //创建窗体
  5993. _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); } }
  5994. break;
  5995. // caseGM
  5996. case "caseGM": //课程进展
  5997. _formdiv = new U.UF.UI.form(
  5998. "课程进展",
  5999. $$("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 }), {
  6000. "id": "caseGM",
  6001. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6002. "onresize": function () { }
  6003. }, {
  6004. closecallback: function () { }
  6005. }, { "style": { "height": "36px" } }).form; //创建窗体
  6006. _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); } }
  6007. break;
  6008. // meterialGM
  6009. case "meterialGM": //素材库
  6010. _formdiv = new U.UF.UI.form(
  6011. "素材库",
  6012. $$("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 }), {
  6013. "id": "meterialGM",
  6014. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6015. "onresize": function () { }
  6016. }, {
  6017. closecallback: function () { }
  6018. }, { "style": { "height": "36px" } }).form; //创建窗体
  6019. _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); } }
  6020. break;
  6021. // evaluateSGM
  6022. case "evaluateSGM": //我的评价
  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": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6026. "id": "evaluateSGM",
  6027. "style": { "width": "70%", "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/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6033. break;
  6034. case "jupyter": //jupyter
  6035. _formdiv = new U.UF.UI.form(
  6036. "jupyter",
  6037. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6038. "id": "jupyter",
  6039. "style": { "width": "90%", "height": "90%", "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/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6045. break;
  6046. case "number": //数字实验室
  6047. _formdiv = new U.UF.UI.form(
  6048. "数字实验室",
  6049. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6050. "id": "number",
  6051. "style": { "width": "90%", "height": "90%", "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/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6057. break;
  6058. case "studentCourse": //项目管理 学生
  6059. _formdiv = new U.UF.UI.form(
  6060. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6061. $$("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 }), {
  6062. "id": "studentCourse",
  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/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6069. break;
  6070. case "studentCourseS": //项目管理 老师
  6071. _formdiv = new U.UF.UI.form(
  6072. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6073. $$("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 }), {
  6074. "id": "studentCourseS",
  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/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6081. break;
  6082. case "studentIndex": //项目中心
  6083. _formdiv = new U.UF.UI.form(
  6084. "项目中心",
  6085. $$("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 }), {
  6086. "id": "studentIndex",
  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/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6093. break;
  6094. case "CaseDesignS":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6098. "id": "case",
  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/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6105. break;
  6106. case "tcStudent": //腾讯学生管理
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6110. "id": "tcStudent",
  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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6117. break;
  6118. case "tcSchool": //腾讯学校管理
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6122. "id": "tcSchool",
  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/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6129. break;
  6130. case "tcTeacher": //腾讯学校管理
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6134. "id": "tcTeacher",
  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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6141. break;
  6142. case "tcData": //腾讯我的资料
  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/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6146. "id": "tcData",
  6147. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6153. break;
  6154. case "tcNotice": //腾讯消息通知
  6155. _formdiv = new U.UF.UI.form(
  6156. "消息通知",
  6157. $$("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 }), {
  6158. "id": "tcNotice",
  6159. "style": { "width": "90%", "height": "90%", "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/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6165. break;
  6166. case "myReport": //好友打开
  6167. _formdiv = new U.UF.UI.form(
  6168. "我的评价",
  6169. $$("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 }), {
  6170. "id": "myReport",
  6171. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6172. "onresize": function () { }
  6173. }, {
  6174. closecallback: function () { }
  6175. }, { "style": { "height": "36px" } }).form; //创建窗体
  6176. _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); } }
  6177. break;
  6178. case "learnAna": //好友打开
  6179. _formdiv = new U.UF.UI.form(
  6180. "学习分析",
  6181. $$("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 }), {
  6182. "id": "learnAna",
  6183. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6184. "onresize": function () { }
  6185. }, {
  6186. closecallback: function () { }
  6187. }, { "style": { "height": "36px" } }).form; //创建窗体
  6188. _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); } }
  6189. break;
  6190. case "AIChat": //AI共创
  6191. _formdiv = new U.UF.UI.form(
  6192. "AI共创",
  6193. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6194. "id": "AIChat",
  6195. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6196. "onresize": function () { }
  6197. }, {
  6198. istop: true,
  6199. closecallback: function () { $("#aichat_icon").remove(); },
  6200. narrowcallback: function () {
  6201. if (!$("#aichat_icon")[0]) {
  6202. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6203. }
  6204. },
  6205. }, { "style": { "height": "36px" } }).form; //创建窗体
  6206. _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); } }
  6207. break;
  6208. case "ainew": //AI共创
  6209. _formdiv = new U.UF.UI.form(
  6210. "AI协同",
  6211. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6212. "id": "ainew",
  6213. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6214. "onresize": function () { }
  6215. }, {
  6216. closecallback: function () { }
  6217. }, { "style": { "height": "36px" } }).form; //创建窗体
  6218. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6219. break;
  6220. case "gpt4": //gpt4
  6221. _formdiv = new U.UF.UI.form(
  6222. "AI助手",
  6223. $$("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 }), {
  6224. "id": "gpt4",
  6225. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6226. "onresize": function () { }
  6227. }, {
  6228. closecallback: function () { }
  6229. }, { "style": { "height": "36px" } }).form; //创建窗体
  6230. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6231. break;
  6232. case "aigpt": //gpt4
  6233. _formdiv = new U.UF.UI.form(
  6234. "AI助手+",
  6235. $$("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 }), {
  6236. "id": "aigpt",
  6237. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6238. "onresize": function () { }
  6239. }, {
  6240. closecallback: function () {
  6241. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6242. }
  6243. }, { "style": { "height": "36px" } }).form; //创建窗体
  6244. _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); } }
  6245. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6246. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6247. })
  6248. break;
  6249. case "aiKnowledge": //aiKnowledge
  6250. _formdiv = new U.UF.UI.form(
  6251. "知识建构",
  6252. $$("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 }), {
  6253. "id": "aiKnowledge",
  6254. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6255. "onresize": function () { }
  6256. }, {
  6257. closecallback: function () { }
  6258. }, { "style": { "height": "36px" } }).form; //创建窗体
  6259. _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); } }
  6260. break;
  6261. case "futureClass": //AI共创
  6262. _formdiv = new U.UF.UI.form(
  6263. "协同建构",
  6264. $$("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
  6265. "id": "synergyCourse",
  6266. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6267. "onresize": function () { }
  6268. }, {
  6269. closecallback: function () {
  6270. $("iframe", _formdiv)[0].contentWindow.loginout();
  6271. }
  6272. }, { "style": { "height": "36px" } }).form; //创建窗体
  6273. _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); } }
  6274. break;
  6275. case "aiagent": //ai agent
  6276. _formdiv = new U.UF.UI.form(
  6277. "AI Agent",
  6278. $$("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" }), {
  6279. "id": "AIAgent",
  6280. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6281. "onresize": function () { }
  6282. }, {
  6283. closecallback: function () { }
  6284. }, { "style": { "height": "36px" } }).form; //创建窗体
  6285. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6286. break;
  6287. case "dataBoard": //数据看板
  6288. _formdiv = new U.UF.UI.form(
  6289. "数据看板",
  6290. $$("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 }), {
  6291. "id": "dataBoard",
  6292. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6293. "onresize": function () { }
  6294. }, {
  6295. closecallback: function () { }
  6296. }, { "style": { "height": "36px" } }).form; //创建窗体
  6297. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6298. break;
  6299. case "dataBoardSies": //数据融合
  6300. _formdiv = new U.UF.UI.form(
  6301. "数据融合",
  6302. $$("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 }), {
  6303. "id": "dataBoardSies",
  6304. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6305. "onresize": function () { }
  6306. }, {
  6307. closecallback: function () { }
  6308. }, { "style": { "height": "36px" } }).form; //创建窗体
  6309. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6310. break;
  6311. case "dataBoardNew": //数据看板
  6312. _formdiv = new U.UF.UI.form(
  6313. "综合看板",
  6314. $$("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 }), {
  6315. "id": "dataBoardNew",
  6316. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6317. "onresize": function () { }
  6318. }, {
  6319. closecallback: function () { }
  6320. }, { "style": { "height": "36px" } }).form; //创建窗体
  6321. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6322. break;
  6323. case "dataBoardTest": //数据看板
  6324. _formdiv = new U.UF.UI.form(
  6325. "评测看板",
  6326. $$("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 }), {
  6327. "id": "dataBoardTest",
  6328. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6329. "onresize": function () { }
  6330. }, {
  6331. closecallback: function () { }
  6332. }, { "style": { "height": "36px" } }).form; //创建窗体
  6333. _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); } }
  6334. break;
  6335. case "AIAnalyse": //AI共创
  6336. _formdiv = new U.UF.UI.form(
  6337. "AI分析",
  6338. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6339. "id": "AIAnalyse",
  6340. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6341. "onresize": function () { }
  6342. }, {
  6343. closecallback: function () { }
  6344. }, { "style": { "height": "36px" } }).form; //创建窗体
  6345. _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); } }
  6346. break;
  6347. case "studioCourse": //AI共创
  6348. _formdiv = new U.UF.UI.form(
  6349. "工作管理",
  6350. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studioCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6351. "id": "studioCourse",
  6352. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6353. "onresize": function () { }
  6354. }, {
  6355. closecallback: function () { }
  6356. }, { "style": { "height": "36px" } }).form; //创建窗体
  6357. _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); } }
  6358. break;
  6359. case "studioIndex": //AI共创
  6360. _formdiv = new U.UF.UI.form(
  6361. "工作中心",
  6362. $$("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 }), {
  6363. "id": "studioIndex",
  6364. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6365. "onresize": function () { }
  6366. }, {
  6367. closecallback: function () { }
  6368. }, { "style": { "height": "36px" } }).form; //创建窗体
  6369. _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); } }
  6370. break;
  6371. case "source":
  6372. _formdiv = new U.UF.UI.form(
  6373. "教学资源",
  6374. $$("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 }), {
  6375. "id": "source",
  6376. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6377. "onresize": function () { }
  6378. }, {
  6379. closecallback: function () { }
  6380. }, { "style": { "height": "36px" } }).form; //创建窗体
  6381. _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); } }
  6382. break;
  6383. case "testTeacher":
  6384. _formdiv = new U.UF.UI.form(
  6385. "教师管理",
  6386. $$("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 }), {
  6387. "id": "testTeacher",
  6388. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6389. "onresize": function () { }
  6390. }, {
  6391. closecallback: function () { }
  6392. }, { "style": { "height": "36px" } }).form; //创建窗体
  6393. _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); } }
  6394. break;
  6395. case "testStudent":
  6396. _formdiv = new U.UF.UI.form(
  6397. "教师中心",
  6398. $$("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 }), {
  6399. "id": "testStudent",
  6400. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6401. "onresize": function () { }
  6402. }, {
  6403. closecallback: function () { }
  6404. }, { "style": { "height": "36px" } }).form; //创建窗体
  6405. _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); } }
  6406. break;
  6407. case "testTeacherSies":
  6408. _formdiv = new U.UF.UI.form(
  6409. "教师管理",
  6410. $$("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 }), {
  6411. "id": "testTeacherSies",
  6412. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6413. "onresize": function () { }
  6414. }, {
  6415. closecallback: function () { }
  6416. }, { "style": { "height": "36px" } }).form; //创建窗体
  6417. _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); } }
  6418. break;
  6419. case "testStudentSies":
  6420. _formdiv = new U.UF.UI.form(
  6421. "教师中心",
  6422. $$("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 }), {
  6423. "id": "testStudentSies",
  6424. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6425. "onresize": function () { }
  6426. }, {
  6427. closecallback: function () { }
  6428. }, { "style": { "height": "36px" } }).form; //创建窗体
  6429. _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); } }
  6430. break;
  6431. case "ytpbl": //消息通知
  6432. _formdiv = new U.UF.UI.form(
  6433. "案例征集",
  6434. $$("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 }), {
  6435. "id": "ytpbl",
  6436. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6437. "onresize": function () { }
  6438. }, {
  6439. closecallback: function () { }
  6440. }, { "style": { "height": "36px" } }).form; //创建窗体
  6441. _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); } }
  6442. // 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");
  6443. break;
  6444. case "aiCourseResource": //人工智能窗体
  6445. _formdiv = new U.UF.UI.form(
  6446. false,
  6447. $$("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 }), {
  6448. "id": "aiCourseResource",
  6449. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6450. "onresize": function () { },
  6451. "isdrag": false,
  6452. }, {
  6453. closecallback: function () { }
  6454. }, { "style": { "height": "36px" } }).form; //创建窗体
  6455. _taskbar = ''
  6456. break;
  6457. case "szdjgCocooroboX": //图形化编程
  6458. _formdiv = new U.UF.UI.form(
  6459. "图形化编程",
  6460. $$("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" }), {
  6461. "id": "szdjgCocooroboX",
  6462. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6463. "onresize": function () { }
  6464. }, {
  6465. closecallback: function () { }
  6466. }, { "style": { "height": "36px" } }).form; //创建窗体
  6467. _taskbar = ''
  6468. break;
  6469. case "szdjgPython": //python编程
  6470. _formdiv = new U.UF.UI.form(
  6471. "Python编程",
  6472. $$("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" }), {
  6473. "id": "szdjgPython",
  6474. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6475. "onresize": function () { }
  6476. }, {
  6477. closecallback: function () { }
  6478. }, { "style": { "height": "36px" } }).form; //创建窗体
  6479. _taskbar = ''
  6480. break;
  6481. case "Record":
  6482. _formdiv = new U.UF.UI.form(
  6483. "观察记录",
  6484. $$("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 }), {
  6485. "id": "Record",
  6486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6487. "onresize": function () { }
  6488. }, {
  6489. closecallback: function () { }
  6490. }, { "style": { "height": "36px" } }).form; //创建窗体
  6491. _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); } }
  6492. break;
  6493. case "aigptCourse":
  6494. _formdiv = new U.UF.UI.form(
  6495. "AI智能体",
  6496. $$("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' }), {
  6497. "id": "aigptCourse",
  6498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6499. "onresize": function () { }
  6500. }, {
  6501. closecallback: function () { }
  6502. }, { "style": { "height": "36px" } }).form; //创建窗体
  6503. _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); } }
  6504. break;
  6505. case "classroomObservation":
  6506. _formdiv = new U.UF.UI.form(
  6507. "课堂观察",
  6508. $$("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 }), {
  6509. "id": "classroomObservation",
  6510. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6511. "onresize": function () { }
  6512. }, {
  6513. closecallback: function () { }
  6514. }, { "style": { "height": "36px" } }).form; //创建窗体
  6515. _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); } }
  6516. break;
  6517. case "pblCourse":
  6518. _formdiv = new U.UF.UI.form(
  6519. "学生PBL",
  6520. $$("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 }), {
  6521. "id": "pblCourse",
  6522. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6523. "onresize": function () { }
  6524. }, {
  6525. closecallback: function () { }
  6526. }, { "style": { "height": "36px" } }).form; //创建窗体
  6527. _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); } }
  6528. break;
  6529. }
  6530. //U.MD.D.I.openClick(str);
  6531. //如果有任务栏信息
  6532. if (_taskbar) {
  6533. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6534. }
  6535. }
  6536. // U.MD.D.I.openClick = function(str){
  6537. // var click = '';
  6538. // switch(str){
  6539. // case 'friend':
  6540. // click = '我的好友';
  6541. // break;
  6542. // case 'domain':
  6543. // click = '域名管理';
  6544. // break;
  6545. // case 'disk':
  6546. // click = '我的云盘';
  6547. // break;
  6548. // case 'word':
  6549. // click = 'Word';
  6550. // break;
  6551. // case 'excel':
  6552. // click = 'Execl';
  6553. // break;
  6554. // case 'txt':
  6555. // click = '文本文件';
  6556. // break;
  6557. // case 'lookupFriend':
  6558. // click = '查找好友';
  6559. // break;
  6560. // case 'ftp':
  6561. // click = 'FTP';
  6562. // break;
  6563. // case 'group':
  6564. // click = '群组';
  6565. // break;
  6566. // case 'set':
  6567. // click = '我的设置';
  6568. // break;
  6569. // case 'systemSet':
  6570. // click = '系统设置';
  6571. // break;
  6572. // case 'boomYun':
  6573. // click = '互联办公';
  6574. // break;
  6575. // case 'xz':
  6576. // click = '云端下载';
  6577. // break;
  6578. // case 'client':
  6579. // click = '有思浏览器';
  6580. // break;
  6581. // case 'backEndProgramming':
  6582. // click = '在线后台编程';
  6583. // break;
  6584. // case 'frontEndProgramming':
  6585. // click = '在线前端编程';
  6586. // break;
  6587. // default: break;
  6588. // }
  6589. // if(U.MD.D.I.Ip && click){
  6590. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6591. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6592. // })
  6593. // }
  6594. // }
  6595. /**
  6596. *函数作用:ajax简易函数,使用post格式
  6597. *@param url {data} 后台地址
  6598. *@param data {data} 参数json
  6599. *@param fn {data} 回调函数
  6600. *
  6601. */
  6602. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6603. // var xhr = new XMLHttpRequest();
  6604. // xhr.open("GET",url,true);
  6605. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6606. // xhr.onreadystatechange = function(){
  6607. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6608. // fn.call(this,xhr.responseText);
  6609. // }
  6610. // };
  6611. // xhr.send();
  6612. // }
  6613. /*判断是否是内网IP*/
  6614. // U.MD.D.I.isInnerIPFn = function(str){
  6615. // var curPageUrl = str;
  6616. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6617. // curPageUrl =curPageUrl.replace(reg1,'');
  6618. // // console.log('curPageUrl-1 '+curPageUrl);
  6619. // var reg2 = /\:+/g;//替换冒号为一点
  6620. // curPageUrl =curPageUrl.replace(reg2,'.');
  6621. // // console.log('curPageUrl-2 '+curPageUrl);
  6622. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6623. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6624. // if(curPageUrl[2] != '16'){
  6625. // return ipAddress;
  6626. // }else{
  6627. // return false;
  6628. // }
  6629. // }
  6630. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6631. // //compatibility for firefox and chrome
  6632. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6633. // var pc = new myPeerConnection({
  6634. // iceServers: []
  6635. // }),
  6636. // noop = function() {},
  6637. // localIPs = {},
  6638. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6639. // key;
  6640. // function iterateIP(ip) {
  6641. // if (!localIPs[ip]) onNewIP(ip);
  6642. // localIPs[ip] = true;
  6643. // }
  6644. // //create a bogus data channel
  6645. // pc.createDataChannel("");
  6646. // // create offer and set local description
  6647. // pc.createOffer().then(function(sdp) {
  6648. // sdp.sdp.split('\n').forEach(function(line) {
  6649. // if (line.indexOf('candidate') < 0) return;
  6650. // line.match(ipRegex).forEach(iterateIP);
  6651. // });
  6652. // pc.setLocalDescription(sdp, noop, noop);
  6653. // }).catch(function(reason) {
  6654. // // An error occurred, so handle the failure to connect
  6655. // });
  6656. // //sten for candidate events
  6657. // pc.onicecandidate = function(ice) {
  6658. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6659. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6660. // };
  6661. // }
  6662. // U.MD.D.I.getUserIpBool = function(callback){
  6663. // U.MD.D.I.getUserIP(function(ip){
  6664. // alert("Got IP! :" + ip);
  6665. // });
  6666. //}
  6667. //#endregion
  6668. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6669. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6670. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6671. _userinfo = US.userInfo, //登录用户信息
  6672. _userid = US.userInfo.userid //登录用户id
  6673. let _iframe;
  6674. let _cid = cid,
  6675. _stage = stage,
  6676. _task = task,
  6677. _tool = tool;
  6678. var _jie = $$("div", {
  6679. "style": {
  6680. "position": "absolute",
  6681. "bottom": "50px",
  6682. "right": "50px",
  6683. "zIndex": "9999",
  6684. "backgroundColor": "#2268bc",
  6685. "color": "#fff",
  6686. "padding": "12px 20px",
  6687. "cursor": "pointer",
  6688. "borderRadius": "4px",
  6689. },
  6690. "innerHTML": "提交作业"
  6691. })
  6692. let aTool = ''
  6693. let _loading = document.createElement('div')
  6694. _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;"
  6695. // _loading.id = "";
  6696. let _lchild = document.createElement('div')
  6697. let _limg = document.createElement('img')
  6698. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6699. _limg.style = "width: 26px;margin-right: 10px;"
  6700. _lchild.appendChild(_limg)
  6701. let _lspan = document.createElement('span')
  6702. _lspan.innerHTML = "上传中..."
  6703. _lchild.appendChild(_lspan)
  6704. _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%);"
  6705. _loading.appendChild(_lchild)
  6706. var _box = $$('div', {
  6707. "style": {
  6708. "position": "relative",
  6709. "width": "100%",
  6710. "height": "100%",
  6711. },
  6712. })
  6713. _box.appendChild(_loading)
  6714. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6715. switch (str) {
  6716. case "whiteboard":
  6717. aTool = 1;
  6718. _iframe = $$("iframe", {
  6719. "frameborder": "no",
  6720. "border": "0",
  6721. "scrolling ": "no",
  6722. "style": {
  6723. "cssText": "border:0;width:100%;height:100%"
  6724. },
  6725. "src": "https://beta.iwb.cocorobo.cn/"
  6726. })
  6727. _box.appendChild(_iframe);
  6728. _box.appendChild(_jie);
  6729. _formdiv = new U.UF.UI.form(
  6730. "电子白板",
  6731. _box, {
  6732. "id": "whiteboard" + cid + stage + task + tool,
  6733. "style": {
  6734. "width": "90%",
  6735. "height": "90%",
  6736. "overflow": 'hidden'
  6737. },
  6738. "onresize": function () { }
  6739. }, {
  6740. closecallback: function () { }
  6741. }, {
  6742. "style": {
  6743. "height": "36px"
  6744. }
  6745. }).form; //创建窗体
  6746. _taskbar = {
  6747. "id": str + _formdiv.id,
  6748. "style": {
  6749. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6750. },
  6751. "name": "电子白板",
  6752. "forms": _formdiv,
  6753. "click": function () {
  6754. U.MD.D.I.openApplication(str, obj, info);
  6755. }
  6756. }
  6757. break;
  6758. case "mind":
  6759. aTool = 3;
  6760. _iframe = $$("iframe", {
  6761. "frameborder": "no",
  6762. "border": "0",
  6763. "scrolling ": "no",
  6764. "style": {
  6765. "cssText": "border:0;width:100%;height:100%"
  6766. },
  6767. "src": "/kityminder-editor/dist/index.html"
  6768. })
  6769. _box.appendChild(_iframe);
  6770. _box.appendChild(_jie);
  6771. _formdiv = new U.UF.UI.form(
  6772. "思维导图",
  6773. _box, { //"/jsmind/example/demo.html"
  6774. "id": "mind" + cid + stage + task + tool,
  6775. "style": {
  6776. "width": "90%",
  6777. "height": "90%",
  6778. "overflow": 'hidden'
  6779. },
  6780. "onresize": function () { }
  6781. }, {
  6782. closecallback: function () { }
  6783. }, {
  6784. "style": {
  6785. "height": "36px"
  6786. }
  6787. }).form; //创建窗体
  6788. _taskbar = {
  6789. "id": str + _formdiv.id,
  6790. "style": {
  6791. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6792. },
  6793. "name": "思维导图",
  6794. "forms": _formdiv,
  6795. "click": function () {
  6796. U.MD.D.I.openApplication(str, obj, info);
  6797. }
  6798. }
  6799. break;
  6800. case "MindMap":
  6801. aTool = 3;
  6802. _iframe = $$("iframe", {
  6803. "frameborder": "no",
  6804. "border": "0",
  6805. "scrolling ": "no",
  6806. "style": {
  6807. "cssText": "border:0;width:100%;height:100%"
  6808. },
  6809. "src": "//cloud.cocorobo.cn/mind/"
  6810. })
  6811. _box.appendChild(_iframe);
  6812. _box.appendChild(_jie);
  6813. _formdiv = new U.UF.UI.form(
  6814. "思维导图",
  6815. _box, { //"/jsmind/example/demo.html"
  6816. "id": "mind" + cid + stage + task + tool,
  6817. "style": {
  6818. "width": "90%",
  6819. "height": "90%",
  6820. "overflow": 'hidden'
  6821. },
  6822. "onresize": function () { }
  6823. }, {
  6824. closecallback: function () { }
  6825. }, {
  6826. "style": {
  6827. "height": "36px"
  6828. }
  6829. }).form; //创建窗体
  6830. _taskbar = {
  6831. "id": str + _formdiv.id,
  6832. "style": {
  6833. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6834. },
  6835. "name": "思维导图",
  6836. "forms": _formdiv,
  6837. "click": function () {
  6838. U.MD.D.I.openApplication(str, obj, info);
  6839. }
  6840. }
  6841. break;
  6842. case "doc":
  6843. aTool = 6;
  6844. _iframe = $$("iframe", {
  6845. "frameborder": "no",
  6846. "border": "0",
  6847. "scrolling ": "no",
  6848. "style": {
  6849. "cssText": "border:0;width:100%;height:100%"
  6850. },
  6851. "src": "/Office/Word/WordEditArea.htm"
  6852. })
  6853. _box.appendChild(_iframe);
  6854. _box.appendChild(_jie);
  6855. _formdiv = new U.UF.UI.form(
  6856. "协同文档",
  6857. _box, {
  6858. "id": "doc" + cid + stage + task + tool,
  6859. "style": {
  6860. "width": "90%",
  6861. "height": "90%",
  6862. "overflow": 'hidden'
  6863. },
  6864. "onresize": function () { }
  6865. }, {
  6866. closecallback: function () { }
  6867. }, {
  6868. "style": {
  6869. "height": "36px"
  6870. }
  6871. }).form; //创建窗体
  6872. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6873. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6874. })
  6875. _taskbar = {
  6876. "id": str + _formdiv.id,
  6877. "style": {
  6878. "backgroundImage": "url(/img/icon/doc.png)"
  6879. },
  6880. "name": "协同文档",
  6881. "forms": _formdiv,
  6882. "click": function () {
  6883. U.MD.D.I.openApplication(str, obj, info);
  6884. }
  6885. }
  6886. break;
  6887. case "mindNetwork": //好友打开
  6888. aTool = 7;
  6889. _iframe = $$("iframe", {
  6890. "webkitallowfullscreen": "",
  6891. "mozallowfullscreen": "",
  6892. "allowfullscreen": "",
  6893. "frameborder": "no",
  6894. "border": "0",
  6895. "scrolling ": "no",
  6896. "style": {
  6897. "cssText": "border:0; width:100%; height:100%;"
  6898. },
  6899. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6900. })
  6901. _box.appendChild(_iframe);
  6902. _box.appendChild(_jie);
  6903. _formdiv = new U.UF.UI.form(
  6904. "思维网格",
  6905. _box, {
  6906. "id": "mindNetwork" + cid + stage + task + tool,
  6907. "style": {
  6908. "width": "90%",
  6909. "height": "90%",
  6910. "overflow": 'hidden'
  6911. },
  6912. "onresize": function () { }
  6913. }, {
  6914. closecallback: function () { }
  6915. }, {
  6916. "style": {
  6917. "height": "36px"
  6918. }
  6919. }).form; //创建窗体
  6920. _taskbar = {
  6921. "id": str + _formdiv.id,
  6922. "style": {
  6923. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6924. },
  6925. "name": "思维网格",
  6926. "forms": _formdiv,
  6927. "click": function () {
  6928. U.MD.D.I.openApplication(str, obj, info);
  6929. }
  6930. }
  6931. break;
  6932. case "courseDesign":
  6933. _iframe = $$("iframe", {
  6934. "webkitallowfullscreen": "",
  6935. "mozallowfullscreen": "",
  6936. "allowfullscreen": "",
  6937. "frameborder": "no",
  6938. "border": "0",
  6939. "scrolling ": "no",
  6940. "style": {
  6941. "cssText": "border:0; width:100%; height:100%;"
  6942. },
  6943. "src": "/course-design-vue"
  6944. })
  6945. _box.appendChild(_iframe);
  6946. _box.appendChild(_jie);
  6947. _formdiv = new U.UF.UI.form(
  6948. "项目设计",
  6949. _box, {
  6950. "id": "courseDesign" + cid + stage + task + tool,
  6951. "style": {
  6952. "width": "90%",
  6953. "height": "90%",
  6954. "overflow": 'hidden'
  6955. },
  6956. "onresize": function () { }
  6957. }, {
  6958. closecallback: function () { }
  6959. }, {
  6960. "style": {
  6961. "height": "36px"
  6962. }
  6963. }).form; //创建窗体
  6964. _taskbar = {
  6965. "id": str + _formdiv.id,
  6966. "style": {
  6967. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6968. },
  6969. "name": "项目设计",
  6970. "forms": _formdiv,
  6971. "click": function () {
  6972. U.MD.D.I.openApplication(str, obj, info);
  6973. }
  6974. }
  6975. break;
  6976. }
  6977. const script1 = document.createElement("script");
  6978. script1.type = "text/javascript";
  6979. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6980. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6981. const script2 = document.createElement("script");
  6982. script2.type = "text/javascript";
  6983. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6984. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6985. const script3 = document.createElement("script");
  6986. script3.type = "text/javascript";
  6987. script3.charset = "UTF-8";
  6988. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6989. const script4 = document.createElement("script");
  6990. script4.type = "text/javascript";
  6991. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6992. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6993. if (_iframe) {
  6994. if (str == 'doc') {
  6995. _iframe = _formdiv.querySelector('iframe')
  6996. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6997. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6998. _iframe.contentWindow.document.body.appendChild(script1);
  6999. _iframe.contentWindow.document.body.appendChild(script2);
  7000. // _iframe.contentWindow.document.body.appendChild(script3);
  7001. _iframe.contentWindow.document.body.appendChild(script4);
  7002. })
  7003. if (onloadListener) {
  7004. _iframe.contentDocument.location.reload()
  7005. } else {
  7006. _iframe.contentDocument.location.reload()
  7007. }
  7008. } else if (str == 'courseDesign') {
  7009. U.UF.DL.iframeLoad(_iframe, function () {
  7010. // _iframe.contentWindow.U.MD.O.W.load();
  7011. // _iframe.contentWindow.document.body.appendChild(script1);
  7012. _iframe.contentWindow.document.body.appendChild(script2);
  7013. _iframe.contentWindow.document.body.appendChild(script4);
  7014. })
  7015. } else if (str == 'mind') {
  7016. _iframe = _formdiv.querySelector('iframe')
  7017. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7018. //
  7019. _iframe.contentWindow.document.body.appendChild(script1);
  7020. _iframe.contentWindow.document.body.appendChild(script2);
  7021. _iframe.contentWindow.document.body.appendChild(script4);
  7022. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7023. })
  7024. if (onloadListener) {
  7025. _iframe.contentDocument.location.reload()
  7026. } else {
  7027. _iframe.contentDocument.location.reload()
  7028. }
  7029. } else if (str == 'whiteboard') {
  7030. _iframe = _formdiv.querySelector('iframe')
  7031. let onloadListener = _iframe.onload = () => {
  7032. _iframe.contentWindow.document.body.appendChild(script1);
  7033. _iframe.contentWindow.document.body.appendChild(script2);
  7034. _iframe.contentWindow.document.body.appendChild(script4);
  7035. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7036. };
  7037. // if (onloadListener) {
  7038. // try {
  7039. // _iframe.src += "?cocorobo="+new Date().getTime()
  7040. // _iframe.contentWindow.document.location.reload()
  7041. // } catch (error) {
  7042. // }
  7043. // } else {
  7044. // _iframe.contentDocument.location.reload()
  7045. // }
  7046. } else {
  7047. _iframe.onload = () => {
  7048. _iframe.contentWindow.document.body.appendChild(script1);
  7049. _iframe.contentWindow.document.body.appendChild(script2);
  7050. // _iframe.contentWindow.document.body.appendChild(script3);
  7051. _iframe.contentWindow.document.body.appendChild(script4);
  7052. };
  7053. }
  7054. _jie.onclick = async () => {
  7055. let text = ''
  7056. if (aTool == 1) {
  7057. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7058. } else if (aTool == 6) {
  7059. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7060. } else if (aTool == 3) {
  7061. text = await U.MD.D.I.getEditorContent(_iframe);
  7062. }
  7063. _loading.style.display = 'flex'
  7064. console.log(_loading);
  7065. var _ajs = _iframe.contentWindow.document.createElement("script");
  7066. _ajs.type = "text/javascript";
  7067. _ajs.innerHTML =
  7068. // 'console.log(' + _loading + ');\n' +
  7069. 'var _js = document.createElement("script");\n' +
  7070. '_js.type="text/javascript";\n' +
  7071. '_js.charset="UTF-8";\n' +
  7072. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7073. "_js.onload = function(){\n" +
  7074. ' var a = document.getElementsByTagName("img")\n' +
  7075. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7076. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7077. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7078. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7079. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7080. "beforeUpload_shishi(file," +
  7081. "'" +
  7082. _userid +
  7083. "'" +
  7084. ", " +
  7085. "'" +
  7086. _cid +
  7087. "'" +
  7088. ", " +
  7089. "'" +
  7090. _stage +
  7091. "'" +
  7092. ", " +
  7093. "'" +
  7094. _task +
  7095. "'" +
  7096. ", " +
  7097. "'" +
  7098. _tool +
  7099. "'" +
  7100. ", " +
  7101. "'" +
  7102. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7103. "'" +
  7104. ", " +
  7105. "'" +
  7106. aTool +
  7107. "'" +
  7108. ", " +
  7109. "`" +
  7110. text +
  7111. "`" +
  7112. ")\n" +
  7113. " });\n" +
  7114. "}\n" +
  7115. "document.head.appendChild(_js);\n";
  7116. _iframe.contentWindow.document.head.appendChild(_ajs);
  7117. }
  7118. }
  7119. //U.MD.D.I.openClick(str);
  7120. //如果有任务栏信息
  7121. // if (_taskbar) {
  7122. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7123. // }
  7124. }
  7125. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7126. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7127. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7128. _userinfo = US.userInfo, //登录用户信息
  7129. _userid = US.userInfo.userid //登录用户id
  7130. let _iframe;
  7131. let _cid = cid,
  7132. _stage = stage,
  7133. _task = task,
  7134. _tool = tool;
  7135. var _jie = $$("div", {
  7136. "style": {
  7137. "position": "absolute",
  7138. "bottom": "50px",
  7139. "right": "50px",
  7140. "zIndex": "9999",
  7141. "backgroundColor": "#2268bc",
  7142. "color": "#fff",
  7143. "padding": "12px 20px",
  7144. "cursor": "pointer",
  7145. "borderRadius": "4px",
  7146. },
  7147. "innerHTML": "提交作业"
  7148. })
  7149. let aTool = ''
  7150. let _loading = document.createElement('div')
  7151. _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;"
  7152. // _loading.id = "";
  7153. let _lchild = document.createElement('div')
  7154. let _limg = document.createElement('img')
  7155. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7156. _limg.style = "width: 26px;margin-right: 10px;"
  7157. _lchild.appendChild(_limg)
  7158. let _lspan = document.createElement('span')
  7159. _lspan.innerHTML = "上传中..."
  7160. _lchild.appendChild(_lspan)
  7161. _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%);"
  7162. _loading.appendChild(_lchild)
  7163. let _box = $$('div', {
  7164. "style": {
  7165. "position": "relative",
  7166. "width": "100%",
  7167. "height": "100%",
  7168. },
  7169. })
  7170. _box.appendChild(_loading)
  7171. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7172. switch (str) {
  7173. case "whiteboard":
  7174. aTool = 1;
  7175. _iframe = $$("iframe", {
  7176. "frameborder": "no",
  7177. "border": "0",
  7178. "scrolling ": "no",
  7179. "style": {
  7180. "cssText": "border:0;width:100%;height:100%"
  7181. },
  7182. "src": "https://beta.iwb.cocorobo.cn/"
  7183. })
  7184. _box.appendChild(_iframe);
  7185. _box.appendChild(_jie);
  7186. _formdiv = new U.UF.UI.form(
  7187. "电子白板",
  7188. _box, {
  7189. "id": "whiteboard" + cid + stage + task + tool,
  7190. "style": {
  7191. "width": "90%",
  7192. "height": "90%",
  7193. "overflow": 'hidden'
  7194. },
  7195. "onresize": function () { }
  7196. }, {
  7197. closecallback: function () { }
  7198. }, {
  7199. "style": {
  7200. "height": "36px"
  7201. }
  7202. }).form; //创建窗体
  7203. _taskbar = {
  7204. "id": str + _formdiv.id,
  7205. "style": {
  7206. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7207. },
  7208. "name": "电子白板",
  7209. "forms": _formdiv,
  7210. "click": function () {
  7211. U.MD.D.I.openApplication(str, obj, info);
  7212. }
  7213. }
  7214. break;
  7215. case "mind":
  7216. aTool = 3;
  7217. _iframe = $$("iframe", {
  7218. "frameborder": "no",
  7219. "border": "0",
  7220. "scrolling ": "no",
  7221. "style": {
  7222. "cssText": "border:0;width:100%;height:100%"
  7223. },
  7224. "src": "/kityminder-editor/dist/index.html"
  7225. })
  7226. _box.appendChild(_iframe);
  7227. _box.appendChild(_jie);
  7228. _formdiv = new U.UF.UI.form(
  7229. "思维导图",
  7230. _box, { //"/jsmind/example/demo.html"
  7231. "id": "mind" + cid + stage + task + tool,
  7232. "style": {
  7233. "width": "90%",
  7234. "height": "90%",
  7235. "overflow": 'hidden'
  7236. },
  7237. "onresize": function () { }
  7238. }, {
  7239. closecallback: function () { }
  7240. }, {
  7241. "style": {
  7242. "height": "36px"
  7243. }
  7244. }).form; //创建窗体
  7245. _taskbar = {
  7246. "id": str + _formdiv.id,
  7247. "style": {
  7248. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7249. },
  7250. "name": "思维导图",
  7251. "forms": _formdiv,
  7252. "click": function () {
  7253. U.MD.D.I.openApplication(str, obj, info);
  7254. }
  7255. }
  7256. break;
  7257. case "MindMap":
  7258. aTool = 3;
  7259. _iframe = $$("iframe", {
  7260. "frameborder": "no",
  7261. "border": "0",
  7262. "scrolling ": "no",
  7263. "style": {
  7264. "cssText": "border:0;width:100%;height:100%"
  7265. },
  7266. "src": "//cloud.cocorobo.cn/mind/"
  7267. })
  7268. _box.appendChild(_iframe);
  7269. _box.appendChild(_jie);
  7270. _formdiv = new U.UF.UI.form(
  7271. "思维导图",
  7272. _box, { //"/jsmind/example/demo.html"
  7273. "id": "mind" + cid + stage + task + tool,
  7274. "style": {
  7275. "width": "90%",
  7276. "height": "90%",
  7277. "overflow": 'hidden'
  7278. },
  7279. "onresize": function () { }
  7280. }, {
  7281. closecallback: function () { }
  7282. }, {
  7283. "style": {
  7284. "height": "36px"
  7285. }
  7286. }).form; //创建窗体
  7287. _taskbar = {
  7288. "id": str + _formdiv.id,
  7289. "style": {
  7290. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7291. },
  7292. "name": "思维导图",
  7293. "forms": _formdiv,
  7294. "click": function () {
  7295. U.MD.D.I.openApplication(str, obj, info);
  7296. }
  7297. }
  7298. break;
  7299. case "doc":
  7300. aTool = 6;
  7301. _iframe = $$("iframe", {
  7302. "frameborder": "no",
  7303. "border": "0",
  7304. "scrolling ": "no",
  7305. "style": {
  7306. "cssText": "border:0;width:100%;height:100%"
  7307. },
  7308. "src": "/Office/Word/WordEditArea.htm"
  7309. })
  7310. _box.appendChild(_iframe);
  7311. _box.appendChild(_jie);
  7312. _formdiv = new U.UF.UI.form(
  7313. "协同文档",
  7314. _box, {
  7315. "id": "doc" + cid + stage + task + tool,
  7316. "style": {
  7317. "width": "90%",
  7318. "height": "90%",
  7319. "overflow": 'hidden'
  7320. },
  7321. "onresize": function () { }
  7322. }, {
  7323. closecallback: function () { }
  7324. }, {
  7325. "style": {
  7326. "height": "36px"
  7327. }
  7328. }).form; //创建窗体
  7329. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7330. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7331. })
  7332. _taskbar = {
  7333. "id": str + _formdiv.id,
  7334. "style": {
  7335. "backgroundImage": "url(/img/icon/doc.png)"
  7336. },
  7337. "name": "协同文档",
  7338. "forms": _formdiv,
  7339. "click": function () {
  7340. U.MD.D.I.openApplication(str, obj, info);
  7341. }
  7342. }
  7343. break;
  7344. case "mindNetwork": //好友打开
  7345. aTool = 7;
  7346. _iframe = $$("iframe", {
  7347. "webkitallowfullscreen": "",
  7348. "mozallowfullscreen": "",
  7349. "allowfullscreen": "",
  7350. "frameborder": "no",
  7351. "border": "0",
  7352. "scrolling ": "no",
  7353. "style": {
  7354. "cssText": "border:0; width:100%; height:100%;"
  7355. },
  7356. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7357. })
  7358. _box.appendChild(_iframe);
  7359. _box.appendChild(_jie);
  7360. _formdiv = new U.UF.UI.form(
  7361. "思维网格",
  7362. _box, {
  7363. "id": "mindNetwork" + cid + stage + task + tool,
  7364. "style": {
  7365. "width": "90%",
  7366. "height": "90%",
  7367. "overflow": 'hidden'
  7368. },
  7369. "onresize": function () { }
  7370. }, {
  7371. closecallback: function () { }
  7372. }, {
  7373. "style": {
  7374. "height": "36px"
  7375. }
  7376. }).form; //创建窗体
  7377. _taskbar = {
  7378. "id": str + _formdiv.id,
  7379. "style": {
  7380. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7381. },
  7382. "name": "思维网格",
  7383. "forms": _formdiv,
  7384. "click": function () {
  7385. U.MD.D.I.openApplication(str, obj, info);
  7386. }
  7387. }
  7388. break;
  7389. case "courseDesign":
  7390. _iframe = $$("iframe", {
  7391. "webkitallowfullscreen": "",
  7392. "mozallowfullscreen": "",
  7393. "allowfullscreen": "",
  7394. "frameborder": "no",
  7395. "border": "0",
  7396. "scrolling ": "no",
  7397. "style": {
  7398. "cssText": "border:0; width:100%; height:100%;"
  7399. },
  7400. "src": "/course-design-vue"
  7401. })
  7402. _box.appendChild(_iframe);
  7403. _box.appendChild(_jie);
  7404. _formdiv = new U.UF.UI.form(
  7405. "项目设计",
  7406. _box, {
  7407. "id": "courseDesign" + cid + stage + task + tool,
  7408. "style": {
  7409. "width": "90%",
  7410. "height": "90%",
  7411. "overflow": 'hidden'
  7412. },
  7413. "onresize": function () { }
  7414. }, {
  7415. closecallback: function () { }
  7416. }, {
  7417. "style": {
  7418. "height": "36px"
  7419. }
  7420. }).form; //创建窗体
  7421. _taskbar = {
  7422. "id": str + _formdiv.id,
  7423. "style": {
  7424. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7425. },
  7426. "name": "项目设计",
  7427. "forms": _formdiv,
  7428. "click": function () {
  7429. U.MD.D.I.openApplication(str, obj, info);
  7430. }
  7431. }
  7432. break;
  7433. }
  7434. const script1 = document.createElement("script");
  7435. script1.type = "text/javascript";
  7436. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7437. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7438. const script2 = document.createElement("script");
  7439. script2.type = "text/javascript";
  7440. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7441. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7442. const script3 = document.createElement("script");
  7443. script3.type = "text/javascript";
  7444. script3.charset = "UTF-8";
  7445. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7446. const script4 = document.createElement("script");
  7447. script4.type = "text/javascript";
  7448. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7449. script4.src = window.origin + "/js/Common/jietu2E.js";
  7450. if (_iframe) {
  7451. if (str == 'doc') {
  7452. _iframe = _formdiv.querySelector('iframe')
  7453. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7454. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7455. _iframe.contentWindow.document.body.appendChild(script1);
  7456. _iframe.contentWindow.document.body.appendChild(script2);
  7457. // _iframe.contentWindow.document.body.appendChild(script3);
  7458. _iframe.contentWindow.document.body.appendChild(script4);
  7459. })
  7460. if (onloadListener) {
  7461. _iframe.contentDocument.location.reload()
  7462. } else {
  7463. _iframe.contentDocument.location.reload()
  7464. }
  7465. } else if (str == 'courseDesign') {
  7466. U.UF.DL.iframeLoad(_iframe, function () {
  7467. // _iframe.contentWindow.U.MD.O.W.load();
  7468. // _iframe.contentWindow.document.body.appendChild(script1);
  7469. _iframe.contentWindow.document.body.appendChild(script2);
  7470. _iframe.contentWindow.document.body.appendChild(script4);
  7471. })
  7472. } else if (str == 'mind') {
  7473. _iframe = _formdiv.querySelector('iframe')
  7474. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7475. //
  7476. _iframe.contentWindow.document.body.appendChild(script1);
  7477. _iframe.contentWindow.document.body.appendChild(script2);
  7478. _iframe.contentWindow.document.body.appendChild(script4);
  7479. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7480. })
  7481. if (onloadListener) {
  7482. _iframe.contentDocument.location.reload()
  7483. } else {
  7484. _iframe.contentDocument.location.reload()
  7485. }
  7486. } else if (str == 'whiteboard') {
  7487. _iframe = _formdiv.querySelector('iframe')
  7488. let onloadListener = _iframe.onload = () => {
  7489. _iframe.contentWindow.document.body.appendChild(script1);
  7490. _iframe.contentWindow.document.body.appendChild(script2);
  7491. _iframe.contentWindow.document.body.appendChild(script4);
  7492. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7493. };
  7494. // if (onloadListener) {
  7495. // try {
  7496. // _iframe.src += "?cocorobo="+new Date().getTime()
  7497. // _iframe.contentWindow.document.location.reload()
  7498. // } catch (error) {
  7499. // }
  7500. // } else {
  7501. // _iframe.contentDocument.location.reload()
  7502. // }
  7503. } else {
  7504. _iframe.onload = () => {
  7505. _iframe.contentWindow.document.body.appendChild(script1);
  7506. _iframe.contentWindow.document.body.appendChild(script2);
  7507. // _iframe.contentWindow.document.body.appendChild(script3);
  7508. _iframe.contentWindow.document.body.appendChild(script4);
  7509. };
  7510. }
  7511. _jie.onclick = async () => {
  7512. let text = ''
  7513. if (aTool == 1) {
  7514. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7515. } else if (aTool == 6) {
  7516. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7517. } else if (aTool == 3) {
  7518. text = await U.MD.D.I.getEditorContent(_iframe);
  7519. }
  7520. _loading.style.display = 'flex'
  7521. console.log(_loading);
  7522. var _ajs = _iframe.contentWindow.document.createElement("script");
  7523. _ajs.type = "text/javascript";
  7524. _ajs.innerHTML =
  7525. // 'console.log(' + _loading + ');\n' +
  7526. 'var _js = document.createElement("script");\n' +
  7527. '_js.type="text/javascript";\n' +
  7528. '_js.charset="UTF-8";\n' +
  7529. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7530. "_js.onload = function(){\n" +
  7531. ' var a = document.getElementsByTagName("img")\n' +
  7532. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7533. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7534. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7535. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7536. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7537. "beforeUpload_shishi(file," +
  7538. "'" +
  7539. _userid +
  7540. "'" +
  7541. ", " +
  7542. "'" +
  7543. _cid +
  7544. "'" +
  7545. ", " +
  7546. "'" +
  7547. _stage +
  7548. "'" +
  7549. ", " +
  7550. "'" +
  7551. _task +
  7552. "'" +
  7553. ", " +
  7554. "'" +
  7555. _tool +
  7556. "'" +
  7557. ", " +
  7558. "'" +
  7559. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7560. "'" +
  7561. ", " +
  7562. "'" +
  7563. aTool +
  7564. "'" +
  7565. ", " +
  7566. "`" +
  7567. text +
  7568. "`" +
  7569. ")\n" +
  7570. " });\n" +
  7571. "}\n" +
  7572. "document.head.appendChild(_js);\n";
  7573. _iframe.contentWindow.document.head.appendChild(_ajs);
  7574. }
  7575. }
  7576. //U.MD.D.I.openClick(str);
  7577. //如果有任务栏信息
  7578. // if (_taskbar) {
  7579. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7580. // }
  7581. }
  7582. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7583. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7584. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7585. _userid = student.userid, //登录用户id
  7586. _username = student.student //用户名字
  7587. let _iframe;
  7588. let _cid = cid,
  7589. _stage = stage,
  7590. _task = task,
  7591. _tool = tool;
  7592. var _jie = $$("div", {
  7593. "style": {
  7594. "position": "absolute",
  7595. "bottom": "50px",
  7596. "right": "50px",
  7597. "zIndex": "9999",
  7598. "backgroundColor": "#2268bc",
  7599. "color": "#fff",
  7600. "padding": "12px 20px",
  7601. "cursor": "pointer",
  7602. "borderRadius": "4px",
  7603. },
  7604. "innerHTML": "提交作业"
  7605. })
  7606. let aTool = ''
  7607. let _loading = document.createElement('div')
  7608. _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;"
  7609. // _loading.id = "";
  7610. let _lchild = document.createElement('div')
  7611. let _limg = document.createElement('img')
  7612. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7613. _limg.style = "width: 26px;margin-right: 10px;"
  7614. _lchild.appendChild(_limg)
  7615. let _lspan = document.createElement('span')
  7616. _lspan.innerHTML = "上传中..."
  7617. _lchild.appendChild(_lspan)
  7618. _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%);"
  7619. _loading.appendChild(_lchild)
  7620. var _box = $$('div', {
  7621. "style": {
  7622. "position": "relative",
  7623. "width": "100%",
  7624. "height": "100%",
  7625. },
  7626. })
  7627. _box.appendChild(_loading)
  7628. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7629. switch (str) {
  7630. case "whiteboard":
  7631. aTool = 1;
  7632. _iframe = $$("iframe", {
  7633. "frameborder": "no",
  7634. "border": "0",
  7635. "scrolling ": "no",
  7636. "style": {
  7637. "cssText": "border:0;width:100%;height:100%"
  7638. },
  7639. "src": "https://beta.iwb.cocorobo.cn/"
  7640. })
  7641. _box.appendChild(_iframe);
  7642. _box.appendChild(_jie);
  7643. _formdiv = new U.UF.UI.form(
  7644. "电子白板-" + _username,
  7645. _box, {
  7646. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7647. "style": {
  7648. "width": "90%",
  7649. "height": "90%",
  7650. "overflow": 'hidden'
  7651. },
  7652. "onresize": function () { }
  7653. }, {
  7654. closecallback: function () { }
  7655. }, {
  7656. "style": {
  7657. "height": "36px"
  7658. }
  7659. }).form; //创建窗体
  7660. _taskbar = {
  7661. "id": str + _formdiv.id,
  7662. "style": {
  7663. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7664. },
  7665. "name": "电子白板",
  7666. "forms": _formdiv,
  7667. "click": function () {
  7668. U.MD.D.I.openApplication(str, obj, info);
  7669. }
  7670. }
  7671. break;
  7672. case "mind":
  7673. aTool = 3;
  7674. _iframe = $$("iframe", {
  7675. "frameborder": "no",
  7676. "border": "0",
  7677. "scrolling ": "no",
  7678. "style": {
  7679. "cssText": "border:0;width:100%;height:100%"
  7680. },
  7681. "src": "/kityminder-editor/dist/index.html"
  7682. })
  7683. _box.appendChild(_iframe);
  7684. _box.appendChild(_jie);
  7685. _formdiv = new U.UF.UI.form(
  7686. "思维导图-" + _username,
  7687. _box, { //"/jsmind/example/demo.html"
  7688. "id": "mind" + cid + stage + task + tool + _userid,
  7689. "style": {
  7690. "width": "90%",
  7691. "height": "90%",
  7692. "overflow": 'hidden'
  7693. },
  7694. "onresize": function () { }
  7695. }, {
  7696. closecallback: function () { }
  7697. }, {
  7698. "style": {
  7699. "height": "36px"
  7700. }
  7701. }).form; //创建窗体
  7702. _taskbar = {
  7703. "id": str + _formdiv.id,
  7704. "style": {
  7705. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7706. },
  7707. "name": "思维导图",
  7708. "forms": _formdiv,
  7709. "click": function () {
  7710. U.MD.D.I.openApplication(str, obj, info);
  7711. }
  7712. }
  7713. break;
  7714. case "MindMap":
  7715. aTool = 3;
  7716. _iframe = $$("iframe", {
  7717. "frameborder": "no",
  7718. "border": "0",
  7719. "scrolling ": "no",
  7720. "style": {
  7721. "cssText": "border:0;width:100%;height:100%"
  7722. },
  7723. "src": "//cloud.cocorobo.cn/mind/"
  7724. })
  7725. _box.appendChild(_iframe);
  7726. _box.appendChild(_jie);
  7727. _formdiv = new U.UF.UI.form(
  7728. "思维导图-" + _username,
  7729. _box, { //"/jsmind/example/demo.html"
  7730. "id": "mind" + cid + stage + task + tool + _userid,
  7731. "style": {
  7732. "width": "90%",
  7733. "height": "90%",
  7734. "overflow": 'hidden'
  7735. },
  7736. "onresize": function () { }
  7737. }, {
  7738. closecallback: function () { }
  7739. }, {
  7740. "style": {
  7741. "height": "36px"
  7742. }
  7743. }).form; //创建窗体
  7744. _taskbar = {
  7745. "id": str + _formdiv.id,
  7746. "style": {
  7747. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7748. },
  7749. "name": "思维导图",
  7750. "forms": _formdiv,
  7751. "click": function () {
  7752. U.MD.D.I.openApplication(str, obj, info);
  7753. }
  7754. }
  7755. break;
  7756. case "doc":
  7757. aTool = 6;
  7758. _iframe = $$("iframe", {
  7759. "frameborder": "no",
  7760. "border": "0",
  7761. "scrolling ": "no",
  7762. "style": {
  7763. "cssText": "border:0;width:100%;height:100%"
  7764. },
  7765. "src": "/Office/Word/WordEditArea.htm"
  7766. })
  7767. _box.appendChild(_iframe);
  7768. _box.appendChild(_jie);
  7769. _formdiv = new U.UF.UI.form(
  7770. "协同文档-" + _username,
  7771. _box, {
  7772. "id": "doc" + cid + stage + task + tool + _userid,
  7773. "style": {
  7774. "width": "90%",
  7775. "height": "90%",
  7776. "overflow": 'hidden'
  7777. },
  7778. "onresize": function () { }
  7779. }, {
  7780. closecallback: function () { }
  7781. }, {
  7782. "style": {
  7783. "height": "36px"
  7784. }
  7785. }).form; //创建窗体
  7786. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7787. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7788. })
  7789. _taskbar = {
  7790. "id": str + _formdiv.id,
  7791. "style": {
  7792. "backgroundImage": "url(/img/icon/doc.png)"
  7793. },
  7794. "name": "协同文档",
  7795. "forms": _formdiv,
  7796. "click": function () {
  7797. U.MD.D.I.openApplication(str, obj, info);
  7798. }
  7799. }
  7800. break;
  7801. case "mindNetwork": //好友打开
  7802. aTool = 7;
  7803. _iframe = $$("iframe", {
  7804. "webkitallowfullscreen": "",
  7805. "mozallowfullscreen": "",
  7806. "allowfullscreen": "",
  7807. "frameborder": "no",
  7808. "border": "0",
  7809. "scrolling ": "no",
  7810. "style": {
  7811. "cssText": "border:0; width:100%; height:100%;"
  7812. },
  7813. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7814. })
  7815. _box.appendChild(_iframe);
  7816. _box.appendChild(_jie);
  7817. _formdiv = new U.UF.UI.form(
  7818. "思维网格-" + _username,
  7819. _box, {
  7820. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7821. "style": {
  7822. "width": "90%",
  7823. "height": "90%",
  7824. "overflow": 'hidden'
  7825. },
  7826. "onresize": function () { }
  7827. }, {
  7828. closecallback: function () { }
  7829. }, {
  7830. "style": {
  7831. "height": "36px"
  7832. }
  7833. }).form; //创建窗体
  7834. _taskbar = {
  7835. "id": str + _formdiv.id,
  7836. "style": {
  7837. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7838. },
  7839. "name": "思维网格",
  7840. "forms": _formdiv,
  7841. "click": function () {
  7842. U.MD.D.I.openApplication(str, obj, info);
  7843. }
  7844. }
  7845. break;
  7846. case "courseDesign":
  7847. _iframe = $$("iframe", {
  7848. "webkitallowfullscreen": "",
  7849. "mozallowfullscreen": "",
  7850. "allowfullscreen": "",
  7851. "frameborder": "no",
  7852. "border": "0",
  7853. "scrolling ": "no",
  7854. "style": {
  7855. "cssText": "border:0; width:100%; height:100%;"
  7856. },
  7857. "src": "/course-design-vue"
  7858. })
  7859. _box.appendChild(_iframe);
  7860. _box.appendChild(_jie);
  7861. _formdiv = new U.UF.UI.form(
  7862. "项目设计-" + _username,
  7863. _box, {
  7864. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7865. "style": {
  7866. "width": "90%",
  7867. "height": "90%",
  7868. "overflow": 'hidden'
  7869. },
  7870. "onresize": function () { }
  7871. }, {
  7872. closecallback: function () { }
  7873. }, {
  7874. "style": {
  7875. "height": "36px"
  7876. }
  7877. }).form; //创建窗体
  7878. _taskbar = {
  7879. "id": str + _formdiv.id,
  7880. "style": {
  7881. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7882. },
  7883. "name": "项目设计",
  7884. "forms": _formdiv,
  7885. "click": function () {
  7886. U.MD.D.I.openApplication(str, obj, info);
  7887. }
  7888. }
  7889. break;
  7890. }
  7891. const script1 = document.createElement("script");
  7892. script1.type = "text/javascript";
  7893. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7894. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7895. const script2 = document.createElement("script");
  7896. script2.type = "text/javascript";
  7897. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7898. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7899. const script3 = document.createElement("script");
  7900. script3.type = "text/javascript";
  7901. script3.charset = "UTF-8";
  7902. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7903. const script4 = document.createElement("script");
  7904. script4.type = "text/javascript";
  7905. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7906. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7907. if (_iframe) {
  7908. if (str == 'doc') {
  7909. _iframe = _formdiv.querySelector('iframe')
  7910. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7911. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7912. _iframe.contentWindow.document.body.appendChild(script1);
  7913. _iframe.contentWindow.document.body.appendChild(script2);
  7914. // _iframe.contentWindow.document.body.appendChild(script3);
  7915. _iframe.contentWindow.document.body.appendChild(script4);
  7916. })
  7917. if (onloadListener) {
  7918. _iframe.contentDocument.location.reload()
  7919. } else {
  7920. _iframe.contentDocument.location.reload()
  7921. }
  7922. } else if (str == 'courseDesign') {
  7923. U.UF.DL.iframeLoad(_iframe, function () {
  7924. // _iframe.contentWindow.U.MD.O.W.load();
  7925. // _iframe.contentWindow.document.body.appendChild(script1);
  7926. _iframe.contentWindow.document.body.appendChild(script2);
  7927. _iframe.contentWindow.document.body.appendChild(script4);
  7928. })
  7929. } else if (str == 'mind') {
  7930. _iframe = _formdiv.querySelector('iframe')
  7931. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7932. //
  7933. _iframe.contentWindow.document.body.appendChild(script1);
  7934. _iframe.contentWindow.document.body.appendChild(script2);
  7935. _iframe.contentWindow.document.body.appendChild(script4);
  7936. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7937. })
  7938. if (onloadListener) {
  7939. _iframe.contentDocument.location.reload()
  7940. } else {
  7941. _iframe.contentDocument.location.reload()
  7942. }
  7943. } else if (str == 'whiteboard') {
  7944. _iframe = _formdiv.querySelector('iframe')
  7945. let onloadListener = _iframe.onload = () => {
  7946. _iframe.contentWindow.document.body.appendChild(script1);
  7947. _iframe.contentWindow.document.body.appendChild(script2);
  7948. _iframe.contentWindow.document.body.appendChild(script4);
  7949. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7950. };
  7951. // if (onloadListener) {
  7952. // try {
  7953. // _iframe.src += "?cocorobo="+new Date().getTime()
  7954. // _iframe.contentWindow.document.location.reload()
  7955. // } catch (error) {
  7956. // }
  7957. // } else {
  7958. // _iframe.contentDocument.location.reload()
  7959. // }
  7960. } else {
  7961. _iframe.onload = () => {
  7962. _iframe.contentWindow.document.body.appendChild(script1);
  7963. _iframe.contentWindow.document.body.appendChild(script2);
  7964. // _iframe.contentWindow.document.body.appendChild(script3);
  7965. _iframe.contentWindow.document.body.appendChild(script4);
  7966. };
  7967. }
  7968. _jie.onclick = async () => {
  7969. let text = ''
  7970. if (aTool == 1) {
  7971. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7972. } else if (aTool == 6) {
  7973. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7974. } else if (aTool == 3) {
  7975. text = await U.MD.D.I.getEditorContent(_iframe);
  7976. }
  7977. _loading.style.display = 'flex'
  7978. console.log(_loading);
  7979. var _ajs = _iframe.contentWindow.document.createElement("script");
  7980. _ajs.type = "text/javascript";
  7981. _ajs.innerHTML =
  7982. // 'console.log(' + _loading + ');\n' +
  7983. 'var _js = document.createElement("script");\n' +
  7984. '_js.type="text/javascript";\n' +
  7985. '_js.charset="UTF-8";\n' +
  7986. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7987. "_js.onload = function(){\n" +
  7988. ' var a = document.getElementsByTagName("img")\n' +
  7989. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7990. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7991. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7992. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7993. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7994. "beforeUpload_shishi(file," +
  7995. "'" +
  7996. _userid +
  7997. "'" +
  7998. ", " +
  7999. "'" +
  8000. _cid +
  8001. "'" +
  8002. ", " +
  8003. "'" +
  8004. _stage +
  8005. "'" +
  8006. ", " +
  8007. "'" +
  8008. _task +
  8009. "'" +
  8010. ", " +
  8011. "'" +
  8012. _tool +
  8013. "'" +
  8014. ", " +
  8015. "'" +
  8016. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8017. "'" +
  8018. ", " +
  8019. "'" +
  8020. aTool +
  8021. "'" +
  8022. ", " +
  8023. "`" +
  8024. text +
  8025. "`" +
  8026. ")\n" +
  8027. " });\n" +
  8028. "}\n" +
  8029. "document.head.appendChild(_js);\n";
  8030. _iframe.contentWindow.document.head.appendChild(_ajs);
  8031. }
  8032. }
  8033. }
  8034. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8035. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8036. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8037. _userid = student.userid, //登录用户id
  8038. _username = student.student //用户名字
  8039. let _iframe;
  8040. let _cid = cid,
  8041. _stage = stage,
  8042. _task = task,
  8043. _tool = tool;
  8044. var _jie = $$("div", {
  8045. "style": {
  8046. "position": "absolute",
  8047. "bottom": "50px",
  8048. "right": "50px",
  8049. "zIndex": "9999",
  8050. "backgroundColor": "#2268bc",
  8051. "color": "#fff",
  8052. "padding": "12px 20px",
  8053. "cursor": "pointer",
  8054. "borderRadius": "4px",
  8055. },
  8056. "innerHTML": "提交作业"
  8057. })
  8058. let aTool = ''
  8059. let _loading = document.createElement('div')
  8060. _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;"
  8061. // _loading.id = "";
  8062. let _lchild = document.createElement('div')
  8063. let _limg = document.createElement('img')
  8064. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8065. _limg.style = "width: 26px;margin-right: 10px;"
  8066. _lchild.appendChild(_limg)
  8067. let _lspan = document.createElement('span')
  8068. _lspan.innerHTML = "上传中..."
  8069. _lchild.appendChild(_lspan)
  8070. _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%);"
  8071. _loading.appendChild(_lchild)
  8072. var _box = $$('div', {
  8073. "style": {
  8074. "position": "relative",
  8075. "width": "100%",
  8076. "height": "100%",
  8077. },
  8078. })
  8079. _box.appendChild(_loading)
  8080. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8081. switch (str) {
  8082. case "whiteboard":
  8083. aTool = 1;
  8084. _iframe = $$("iframe", {
  8085. "frameborder": "no",
  8086. "border": "0",
  8087. "scrolling ": "no",
  8088. "style": {
  8089. "cssText": "border:0;width:100%;height:100%"
  8090. },
  8091. "src": "https://beta.iwb.cocorobo.cn/"
  8092. })
  8093. _box.appendChild(_iframe);
  8094. _box.appendChild(_jie);
  8095. _formdiv = new U.UF.UI.form(
  8096. "电子白板-" + _username,
  8097. _box, {
  8098. "id": "whiteboard" + 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/whiteBoard.png)"
  8116. },
  8117. "name": "电子白板",
  8118. "forms": _formdiv,
  8119. "click": function () {
  8120. U.MD.D.I.openApplication(str, obj, info);
  8121. }
  8122. }
  8123. break;
  8124. case "mind":
  8125. aTool = 3;
  8126. _iframe = $$("iframe", {
  8127. "frameborder": "no",
  8128. "border": "0",
  8129. "scrolling ": "no",
  8130. "style": {
  8131. "cssText": "border:0;width:100%;height:100%"
  8132. },
  8133. "src": "/kityminder-editor/dist/index.html"
  8134. })
  8135. _box.appendChild(_iframe);
  8136. _box.appendChild(_jie);
  8137. _formdiv = new U.UF.UI.form(
  8138. "思维导图-" + _username,
  8139. _box, { //"/jsmind/example/demo.html"
  8140. "id": "mind" + cid + stage + task + tool + _userid,
  8141. "style": {
  8142. "width": "90%",
  8143. "height": "90%",
  8144. "overflow": 'hidden'
  8145. },
  8146. "onresize": function () { }
  8147. }, {
  8148. closecallback: function () { }
  8149. }, {
  8150. "style": {
  8151. "height": "36px"
  8152. }
  8153. }).form; //创建窗体
  8154. _taskbar = {
  8155. "id": str + _formdiv.id,
  8156. "style": {
  8157. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8158. },
  8159. "name": "思维导图",
  8160. "forms": _formdiv,
  8161. "click": function () {
  8162. U.MD.D.I.openApplication(str, obj, info);
  8163. }
  8164. }
  8165. break;
  8166. case "MindMap":
  8167. aTool = 3;
  8168. _iframe = $$("iframe", {
  8169. "frameborder": "no",
  8170. "border": "0",
  8171. "scrolling ": "no",
  8172. "style": {
  8173. "cssText": "border:0;width:100%;height:100%"
  8174. },
  8175. "src": "//cloud.cocorobo.cn/mind/"
  8176. })
  8177. _box.appendChild(_iframe);
  8178. _box.appendChild(_jie);
  8179. _formdiv = new U.UF.UI.form(
  8180. "思维导图-" + _username,
  8181. _box, { //"/jsmind/example/demo.html"
  8182. "id": "mind" + cid + stage + task + tool + _userid,
  8183. "style": {
  8184. "width": "90%",
  8185. "height": "90%",
  8186. "overflow": 'hidden'
  8187. },
  8188. "onresize": function () { }
  8189. }, {
  8190. closecallback: function () { }
  8191. }, {
  8192. "style": {
  8193. "height": "36px"
  8194. }
  8195. }).form; //创建窗体
  8196. _taskbar = {
  8197. "id": str + _formdiv.id,
  8198. "style": {
  8199. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8200. },
  8201. "name": "思维导图",
  8202. "forms": _formdiv,
  8203. "click": function () {
  8204. U.MD.D.I.openApplication(str, obj, info);
  8205. }
  8206. }
  8207. break;
  8208. case "doc":
  8209. aTool = 6;
  8210. _iframe = $$("iframe", {
  8211. "frameborder": "no",
  8212. "border": "0",
  8213. "scrolling ": "no",
  8214. "style": {
  8215. "cssText": "border:0;width:100%;height:100%"
  8216. },
  8217. "src": "/Office/Word/WordEditArea.htm"
  8218. })
  8219. _box.appendChild(_iframe);
  8220. _box.appendChild(_jie);
  8221. _formdiv = new U.UF.UI.form(
  8222. "协同文档-" + _username,
  8223. _box, {
  8224. "id": "doc" + cid + stage + task + tool + _userid,
  8225. "style": {
  8226. "width": "90%",
  8227. "height": "90%",
  8228. "overflow": 'hidden'
  8229. },
  8230. "onresize": function () { }
  8231. }, {
  8232. closecallback: function () { }
  8233. }, {
  8234. "style": {
  8235. "height": "36px"
  8236. }
  8237. }).form; //创建窗体
  8238. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8239. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8240. })
  8241. _taskbar = {
  8242. "id": str + _formdiv.id,
  8243. "style": {
  8244. "backgroundImage": "url(/img/icon/doc.png)"
  8245. },
  8246. "name": "协同文档",
  8247. "forms": _formdiv,
  8248. "click": function () {
  8249. U.MD.D.I.openApplication(str, obj, info);
  8250. }
  8251. }
  8252. break;
  8253. case "mindNetwork": //好友打开
  8254. aTool = 7;
  8255. _iframe = $$("iframe", {
  8256. "webkitallowfullscreen": "",
  8257. "mozallowfullscreen": "",
  8258. "allowfullscreen": "",
  8259. "frameborder": "no",
  8260. "border": "0",
  8261. "scrolling ": "no",
  8262. "style": {
  8263. "cssText": "border:0; width:100%; height:100%;"
  8264. },
  8265. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8266. })
  8267. _box.appendChild(_iframe);
  8268. _box.appendChild(_jie);
  8269. _formdiv = new U.UF.UI.form(
  8270. "思维网格-" + _username,
  8271. _box, {
  8272. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8273. "style": {
  8274. "width": "90%",
  8275. "height": "90%",
  8276. "overflow": 'hidden'
  8277. },
  8278. "onresize": function () { }
  8279. }, {
  8280. closecallback: function () { }
  8281. }, {
  8282. "style": {
  8283. "height": "36px"
  8284. }
  8285. }).form; //创建窗体
  8286. _taskbar = {
  8287. "id": str + _formdiv.id,
  8288. "style": {
  8289. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8290. },
  8291. "name": "思维网格",
  8292. "forms": _formdiv,
  8293. "click": function () {
  8294. U.MD.D.I.openApplication(str, obj, info);
  8295. }
  8296. }
  8297. break;
  8298. case "courseDesign":
  8299. _iframe = $$("iframe", {
  8300. "webkitallowfullscreen": "",
  8301. "mozallowfullscreen": "",
  8302. "allowfullscreen": "",
  8303. "frameborder": "no",
  8304. "border": "0",
  8305. "scrolling ": "no",
  8306. "style": {
  8307. "cssText": "border:0; width:100%; height:100%;"
  8308. },
  8309. "src": "/course-design-vue"
  8310. })
  8311. _box.appendChild(_iframe);
  8312. _box.appendChild(_jie);
  8313. _formdiv = new U.UF.UI.form(
  8314. "项目设计-" + _username,
  8315. _box, {
  8316. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8317. "style": {
  8318. "width": "90%",
  8319. "height": "90%",
  8320. "overflow": 'hidden'
  8321. },
  8322. "onresize": function () { }
  8323. }, {
  8324. closecallback: function () { }
  8325. }, {
  8326. "style": {
  8327. "height": "36px"
  8328. }
  8329. }).form; //创建窗体
  8330. _taskbar = {
  8331. "id": str + _formdiv.id,
  8332. "style": {
  8333. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8334. },
  8335. "name": "项目设计",
  8336. "forms": _formdiv,
  8337. "click": function () {
  8338. U.MD.D.I.openApplication(str, obj, info);
  8339. }
  8340. }
  8341. break;
  8342. }
  8343. const script1 = document.createElement("script");
  8344. script1.type = "text/javascript";
  8345. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8346. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8347. const script2 = document.createElement("script");
  8348. script2.type = "text/javascript";
  8349. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8350. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8351. const script3 = document.createElement("script");
  8352. script3.type = "text/javascript";
  8353. script3.charset = "UTF-8";
  8354. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8355. const script4 = document.createElement("script");
  8356. script4.type = "text/javascript";
  8357. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8358. script4.src = window.origin + "/js/Common/jietu2E.js";
  8359. if (_iframe) {
  8360. if (str == 'doc') {
  8361. _iframe = _formdiv.querySelector('iframe')
  8362. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8363. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8364. _iframe.contentWindow.document.body.appendChild(script1);
  8365. _iframe.contentWindow.document.body.appendChild(script2);
  8366. // _iframe.contentWindow.document.body.appendChild(script3);
  8367. _iframe.contentWindow.document.body.appendChild(script4);
  8368. })
  8369. if (onloadListener) {
  8370. _iframe.contentDocument.location.reload()
  8371. } else {
  8372. _iframe.contentDocument.location.reload()
  8373. }
  8374. } else if (str == 'courseDesign') {
  8375. U.UF.DL.iframeLoad(_iframe, function () {
  8376. // _iframe.contentWindow.U.MD.O.W.load();
  8377. // _iframe.contentWindow.document.body.appendChild(script1);
  8378. _iframe.contentWindow.document.body.appendChild(script2);
  8379. _iframe.contentWindow.document.body.appendChild(script4);
  8380. })
  8381. } else if (str == 'mind') {
  8382. _iframe = _formdiv.querySelector('iframe')
  8383. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8384. //
  8385. _iframe.contentWindow.document.body.appendChild(script1);
  8386. _iframe.contentWindow.document.body.appendChild(script2);
  8387. _iframe.contentWindow.document.body.appendChild(script4);
  8388. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8389. })
  8390. if (onloadListener) {
  8391. _iframe.contentDocument.location.reload()
  8392. } else {
  8393. _iframe.contentDocument.location.reload()
  8394. }
  8395. } else if (str == 'whiteboard') {
  8396. _iframe = _formdiv.querySelector('iframe')
  8397. let onloadListener = _iframe.onload = () => {
  8398. _iframe.contentWindow.document.body.appendChild(script1);
  8399. _iframe.contentWindow.document.body.appendChild(script2);
  8400. _iframe.contentWindow.document.body.appendChild(script4);
  8401. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8402. };
  8403. // if (onloadListener) {
  8404. // try {
  8405. // _iframe.src += "?cocorobo="+new Date().getTime()
  8406. // _iframe.contentWindow.document.location.reload()
  8407. // } catch (error) {
  8408. // }
  8409. // } else {
  8410. // _iframe.contentDocument.location.reload()
  8411. // }
  8412. } else {
  8413. _iframe.onload = () => {
  8414. _iframe.contentWindow.document.body.appendChild(script1);
  8415. _iframe.contentWindow.document.body.appendChild(script2);
  8416. // _iframe.contentWindow.document.body.appendChild(script3);
  8417. _iframe.contentWindow.document.body.appendChild(script4);
  8418. };
  8419. }
  8420. _jie.onclick = async () => {
  8421. let text = ''
  8422. if (aTool == 1) {
  8423. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8424. } else if (aTool == 6) {
  8425. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8426. } else if (aTool == 3) {
  8427. text = await U.MD.D.I.getEditorContent(_iframe);
  8428. }
  8429. _loading.style.display = 'flex'
  8430. console.log(_loading);
  8431. var _ajs = _iframe.contentWindow.document.createElement("script");
  8432. _ajs.type = "text/javascript";
  8433. _ajs.innerHTML =
  8434. // 'console.log(' + _loading + ');\n' +
  8435. 'var _js = document.createElement("script");\n' +
  8436. '_js.type="text/javascript";\n' +
  8437. '_js.charset="UTF-8";\n' +
  8438. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8439. "_js.onload = function(){\n" +
  8440. ' var a = document.getElementsByTagName("img")\n' +
  8441. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8442. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8443. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8444. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8445. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8446. "beforeUpload_shishi(file," +
  8447. "'" +
  8448. _userid +
  8449. "'" +
  8450. ", " +
  8451. "'" +
  8452. _cid +
  8453. "'" +
  8454. ", " +
  8455. "'" +
  8456. _stage +
  8457. "'" +
  8458. ", " +
  8459. "'" +
  8460. _task +
  8461. "'" +
  8462. ", " +
  8463. "'" +
  8464. _tool +
  8465. "'" +
  8466. ", " +
  8467. "'" +
  8468. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8469. "'" +
  8470. ", " +
  8471. "'" +
  8472. aTool +
  8473. "'" +
  8474. ", " +
  8475. "`" +
  8476. text +
  8477. "`" +
  8478. ")\n" +
  8479. " });\n" +
  8480. "}\n" +
  8481. "document.head.appendChild(_js);\n";
  8482. _iframe.contentWindow.document.head.appendChild(_ajs);
  8483. }
  8484. }
  8485. }
  8486. U.MD.D.I.getEditorContent = function (iframe) {
  8487. return new Promise((resolve, reject) => {
  8488. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8489. console.log(content);
  8490. resolve(content)
  8491. });
  8492. });
  8493. }
  8494. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8495. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8496. // if (res.value[0].length > 0) {
  8497. // // resolve(res.value[0][0].text);
  8498. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8499. // $(fileInput).val('');
  8500. // });
  8501. // }
  8502. // }, [], { "type": "GET", "withCredentials": true });
  8503. var xmlhttp;
  8504. var Mac, Sn, DeviceId
  8505. if (window.XMLHttpRequest) {
  8506. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8507. xmlhttp = new XMLHttpRequest();
  8508. } else {
  8509. // IE6, IE5 浏览器执行代码
  8510. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8511. }
  8512. xmlhttp.onreadystatechange = function () {
  8513. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8514. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8515. // resolve(res.value[0][0].text);
  8516. if (type == '2') {
  8517. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8518. } else if (type == '3') {
  8519. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8520. }
  8521. } else {
  8522. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8523. }
  8524. }
  8525. }
  8526. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8527. xmlhttp.send();
  8528. }
  8529. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8530. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8531. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8532. _userinfo = US.userInfo, //登录用户信息
  8533. _userid = US.userInfo.userid //登录用户id
  8534. let _iframe;
  8535. let _cid = cid,
  8536. _stage = stage,
  8537. _task = task,
  8538. _tool = tool;
  8539. var _jie = $$("div", {
  8540. "style": {
  8541. "position": "absolute",
  8542. "bottom": "50px",
  8543. "right": "50px",
  8544. "zIndex": "9999",
  8545. "backgroundColor": "#2268bc",
  8546. "color": "#fff",
  8547. "padding": "12px 20px",
  8548. "cursor": "pointer",
  8549. "borderRadius": "4px",
  8550. },
  8551. "innerHTML": "确认并提交"
  8552. })
  8553. let aTool = ''
  8554. let _loading = document.createElement('div')
  8555. _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;"
  8556. // _loading.id = "";
  8557. let _lchild = document.createElement('div')
  8558. let _limg = document.createElement('img')
  8559. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8560. _limg.style = "width: 26px;margin-right: 10px;"
  8561. _lchild.appendChild(_limg)
  8562. let _lspan = document.createElement('span')
  8563. _lspan.innerHTML = "上传中..."
  8564. _lchild.appendChild(_lspan)
  8565. _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%);"
  8566. _loading.appendChild(_lchild)
  8567. var _box = $$('div', {
  8568. "style": {
  8569. "position": "relative",
  8570. "width": "100%",
  8571. "height": "100%",
  8572. },
  8573. })
  8574. _box.appendChild(_loading)
  8575. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8576. switch (str) {
  8577. case "whiteboard":
  8578. aTool = 1;
  8579. _iframe = $$("iframe", {
  8580. "frameborder": "no",
  8581. "border": "0",
  8582. "scrolling ": "no",
  8583. "style": {
  8584. "cssText": "border:0;width:100%;height:100%"
  8585. },
  8586. "src": "https://beta.iwb.cocorobo.cn/"
  8587. })
  8588. _box.appendChild(_iframe);
  8589. _box.appendChild(_jie);
  8590. _formdiv = new U.UF.UI.form(
  8591. "电子白板",
  8592. _box, {
  8593. "id": "whiteboards" + cid + stage + task + tool,
  8594. "style": {
  8595. "width": "90%",
  8596. "height": "90%",
  8597. "overflow": 'hidden'
  8598. },
  8599. "onresize": function () { }
  8600. }, {
  8601. closecallback: function () { }
  8602. }, {
  8603. "style": {
  8604. "height": "36px"
  8605. }
  8606. }).form; //创建窗体
  8607. _taskbar = {
  8608. "id": str + _formdiv.id,
  8609. "style": {
  8610. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8611. },
  8612. "name": "电子白板",
  8613. "forms": _formdiv,
  8614. "click": function () {
  8615. U.MD.D.I.openApplication(str, obj, info);
  8616. }
  8617. }
  8618. break;
  8619. case "mind":
  8620. aTool = 3;
  8621. _iframe = $$("iframe", {
  8622. "frameborder": "no",
  8623. "border": "0",
  8624. "scrolling ": "no",
  8625. "style": {
  8626. "cssText": "border:0;width:100%;height:100%"
  8627. },
  8628. "src": "/kityminder-editor/dist/index.html"
  8629. });
  8630. _box.appendChild(_iframe);
  8631. _box.appendChild(_jie);
  8632. _formdiv = new U.UF.UI.form(
  8633. "思维导图",
  8634. _box, { //"/jsmind/example/demo.html"
  8635. "id": "minds" + cid + stage + task + tool,
  8636. "style": {
  8637. "width": "90%",
  8638. "height": "90%",
  8639. "overflow": 'hidden'
  8640. },
  8641. "onresize": function () { }
  8642. }, {
  8643. closecallback: function () { }
  8644. }, {
  8645. "style": {
  8646. "height": "36px"
  8647. }
  8648. }).form; //创建窗体
  8649. _taskbar = {
  8650. "id": str + _formdiv.id,
  8651. "style": {
  8652. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8653. },
  8654. "name": "思维导图",
  8655. "forms": _formdiv,
  8656. "click": function () {
  8657. U.MD.D.I.openApplication(str, obj, info);
  8658. }
  8659. }
  8660. break;
  8661. case "doc":
  8662. aTool = 6;
  8663. _iframe = $$("iframe", {
  8664. "frameborder": "no",
  8665. "border": "0",
  8666. "scrolling ": "no",
  8667. "style": {
  8668. "cssText": "border:0;width:100%;height:100%"
  8669. },
  8670. "src": "/Office/Word/WordEditArea.htm"
  8671. })
  8672. _box.appendChild(_iframe);
  8673. _box.appendChild(_jie);
  8674. _formdiv = new U.UF.UI.form(
  8675. "协同文档",
  8676. _box, {
  8677. "id": "docs" + cid + stage + task + tool,
  8678. "style": {
  8679. "width": "90%",
  8680. "height": "90%",
  8681. "overflow": 'hidden'
  8682. },
  8683. "onresize": function () { }
  8684. }, {
  8685. closecallback: function () { }
  8686. }, {
  8687. "style": {
  8688. "height": "36px"
  8689. }
  8690. }).form; //创建窗体
  8691. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8692. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8693. })
  8694. _taskbar = {
  8695. "id": str + _formdiv.id,
  8696. "style": {
  8697. "backgroundImage": "url(/img/icon/doc.png)"
  8698. },
  8699. "name": "协同文档",
  8700. "forms": _formdiv,
  8701. "click": function () {
  8702. U.MD.D.I.openApplication(str, obj, info);
  8703. }
  8704. }
  8705. break;
  8706. }
  8707. const script1 = document.createElement("script");
  8708. script1.type = "text/javascript";
  8709. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8710. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8711. const script2 = document.createElement("script");
  8712. script2.type = "text/javascript";
  8713. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8714. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8715. const script3 = document.createElement("script");
  8716. script3.type = "text/javascript";
  8717. script3.charset = "UTF-8";
  8718. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8719. const script4 = document.createElement("script");
  8720. script4.type = "text/javascript";
  8721. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8722. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8723. if (_iframe) {
  8724. if (str == 'doc') {
  8725. _iframe = _formdiv.querySelector('iframe')
  8726. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8727. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8728. _iframe.contentWindow.document.body.appendChild(script1);
  8729. _iframe.contentWindow.document.body.appendChild(script2);
  8730. // _iframe.contentWindow.document.body.appendChild(script3);
  8731. _iframe.contentWindow.document.body.appendChild(script4);
  8732. })
  8733. if (onloadListener) {
  8734. _iframe.contentDocument.location.reload()
  8735. } else {
  8736. _iframe.contentDocument.location.reload()
  8737. }
  8738. } else if (str == 'mind') {
  8739. _iframe = _formdiv.querySelector('iframe')
  8740. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8741. _iframe.contentWindow.document.body.appendChild(script1);
  8742. _iframe.contentWindow.document.body.appendChild(script2);
  8743. _iframe.contentWindow.document.body.appendChild(script4);
  8744. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8745. })
  8746. if (onloadListener) {
  8747. _iframe.contentDocument.location.reload()
  8748. } else {
  8749. _iframe.contentDocument.location.reload()
  8750. }
  8751. } else {
  8752. _iframe.onload = () => {
  8753. _iframe.contentWindow.document.body.appendChild(script1);
  8754. _iframe.contentWindow.document.body.appendChild(script2);
  8755. // _iframe.contentWindow.document.body.appendChild(script3);
  8756. _iframe.contentWindow.document.body.appendChild(script4);
  8757. };
  8758. }
  8759. _jie.onclick = async () => {
  8760. let text = ''
  8761. if (aTool == 6) {
  8762. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8763. } else if (aTool == 3) {
  8764. text = await U.MD.D.I.getEditorContent(_iframe);
  8765. }
  8766. _loading.style.display = 'flex'
  8767. console.log(_loading);
  8768. var _ajs = _iframe.contentWindow.document.createElement("script");
  8769. _ajs.type = "text/javascript";
  8770. _ajs.innerHTML =
  8771. // 'console.log(' + _loading + ');\n' +
  8772. 'var _js = document.createElement("script");\n' +
  8773. '_js.type="text/javascript";\n' +
  8774. '_js.charset="UTF-8";\n' +
  8775. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8776. "_js.onload = function(){\n" +
  8777. ' var a = document.getElementsByTagName("img")\n' +
  8778. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8779. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8780. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8781. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8782. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8783. "beforeUpload_shishi(file," +
  8784. "'" +
  8785. _userid +
  8786. "'" +
  8787. ", " +
  8788. "'" +
  8789. _cid +
  8790. "'" +
  8791. ", " +
  8792. "'" +
  8793. _stage +
  8794. "'" +
  8795. ", " +
  8796. "'" +
  8797. _task +
  8798. "'" +
  8799. ", " +
  8800. "'" +
  8801. _tool +
  8802. "'" +
  8803. ", " +
  8804. "'" +
  8805. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8806. "'" +
  8807. ", " +
  8808. "'" +
  8809. aTool +
  8810. "'" +
  8811. ", " +
  8812. "`" +
  8813. text +
  8814. "`" +
  8815. ")\n" +
  8816. " });\n" +
  8817. "}\n" +
  8818. "document.head.appendChild(_js);\n";
  8819. _iframe.contentWindow.document.head.appendChild(_ajs);
  8820. }
  8821. }
  8822. //U.MD.D.I.openClick(str);
  8823. //如果有任务栏信息
  8824. // if (_taskbar) {
  8825. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8826. // }
  8827. }
  8828. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8829. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8830. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8831. _userinfo = US.userInfo, //登录用户信息
  8832. _userid = US.userInfo.userid //登录用户id
  8833. let _iframe;
  8834. let _cid = cid,
  8835. _stage = stage,
  8836. _task = task,
  8837. _tool = tool;
  8838. var _jie = $$("div", {
  8839. "style": {
  8840. "position": "absolute",
  8841. "bottom": "50px",
  8842. "right": "50px",
  8843. "zIndex": "9999",
  8844. "backgroundColor": "#2268bc",
  8845. "color": "#fff",
  8846. "padding": "12px 20px",
  8847. "cursor": "pointer",
  8848. "borderRadius": "4px",
  8849. },
  8850. "innerHTML": "确认并提交"
  8851. })
  8852. let aTool = ''
  8853. let _loading = document.createElement('div')
  8854. _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;"
  8855. // _loading.id = "";
  8856. let _lchild = document.createElement('div')
  8857. let _limg = document.createElement('img')
  8858. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8859. _limg.style = "width: 26px;margin-right: 10px;"
  8860. _lchild.appendChild(_limg)
  8861. let _lspan = document.createElement('span')
  8862. _lspan.innerHTML = "上传中..."
  8863. _lchild.appendChild(_lspan)
  8864. _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%);"
  8865. _loading.appendChild(_lchild)
  8866. var _box = $$('div', {
  8867. "style": {
  8868. "position": "relative",
  8869. "width": "100%",
  8870. "height": "100%",
  8871. },
  8872. })
  8873. _box.appendChild(_loading)
  8874. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8875. switch (str) {
  8876. case "whiteboard":
  8877. aTool = 1;
  8878. _iframe = $$("iframe", {
  8879. "frameborder": "no",
  8880. "border": "0",
  8881. "scrolling ": "no",
  8882. "style": {
  8883. "cssText": "border:0;width:100%;height:100%"
  8884. },
  8885. "src": "https://beta.iwb.cocorobo.cn/"
  8886. })
  8887. _box.appendChild(_iframe);
  8888. _box.appendChild(_jie);
  8889. _formdiv = new U.UF.UI.form(
  8890. "电子白板",
  8891. _box, {
  8892. "id": "whiteboards" + cid + stage + task + tool,
  8893. "style": {
  8894. "width": "90%",
  8895. "height": "90%",
  8896. "overflow": 'hidden'
  8897. },
  8898. "onresize": function () { }
  8899. }, {
  8900. closecallback: function () { }
  8901. }, {
  8902. "style": {
  8903. "height": "36px"
  8904. }
  8905. }).form; //创建窗体
  8906. _taskbar = {
  8907. "id": str + _formdiv.id,
  8908. "style": {
  8909. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8910. },
  8911. "name": "电子白板",
  8912. "forms": _formdiv,
  8913. "click": function () {
  8914. U.MD.D.I.openApplication(str, obj, info);
  8915. }
  8916. }
  8917. break;
  8918. case "mind":
  8919. aTool = 3;
  8920. _iframe = $$("iframe", {
  8921. "frameborder": "no",
  8922. "border": "0",
  8923. "scrolling ": "no",
  8924. "style": {
  8925. "cssText": "border:0;width:100%;height:100%"
  8926. },
  8927. "src": "/kityminder-editor/dist/index.html"
  8928. });
  8929. _box.appendChild(_iframe);
  8930. _box.appendChild(_jie);
  8931. _formdiv = new U.UF.UI.form(
  8932. "思维导图",
  8933. _box, { //"/jsmind/example/demo.html"
  8934. "id": "minds" + cid + stage + task + tool,
  8935. "style": {
  8936. "width": "90%",
  8937. "height": "90%",
  8938. "overflow": 'hidden'
  8939. },
  8940. "onresize": function () { }
  8941. }, {
  8942. closecallback: function () { }
  8943. }, {
  8944. "style": {
  8945. "height": "36px"
  8946. }
  8947. }).form; //创建窗体
  8948. _taskbar = {
  8949. "id": str + _formdiv.id,
  8950. "style": {
  8951. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8952. },
  8953. "name": "思维导图",
  8954. "forms": _formdiv,
  8955. "click": function () {
  8956. U.MD.D.I.openApplication(str, obj, info);
  8957. }
  8958. }
  8959. break;
  8960. case "doc":
  8961. aTool = 6;
  8962. _iframe = $$("iframe", {
  8963. "frameborder": "no",
  8964. "border": "0",
  8965. "scrolling ": "no",
  8966. "style": {
  8967. "cssText": "border:0;width:100%;height:100%"
  8968. },
  8969. "src": "/Office/Word/WordEditArea.htm"
  8970. })
  8971. _box.appendChild(_iframe);
  8972. _box.appendChild(_jie);
  8973. _formdiv = new U.UF.UI.form(
  8974. "协同文档",
  8975. _box, {
  8976. "id": "docs" + cid + stage + task + tool,
  8977. "style": {
  8978. "width": "90%",
  8979. "height": "90%",
  8980. "overflow": 'hidden'
  8981. },
  8982. "onresize": function () { }
  8983. }, {
  8984. closecallback: function () { }
  8985. }, {
  8986. "style": {
  8987. "height": "36px"
  8988. }
  8989. }).form; //创建窗体
  8990. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8991. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8992. })
  8993. _taskbar = {
  8994. "id": str + _formdiv.id,
  8995. "style": {
  8996. "backgroundImage": "url(/img/icon/doc.png)"
  8997. },
  8998. "name": "协同文档",
  8999. "forms": _formdiv,
  9000. "click": function () {
  9001. U.MD.D.I.openApplication(str, obj, info);
  9002. }
  9003. }
  9004. break;
  9005. }
  9006. const script1 = document.createElement("script");
  9007. script1.type = "text/javascript";
  9008. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9009. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9010. const script2 = document.createElement("script");
  9011. script2.type = "text/javascript";
  9012. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9013. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9014. const script3 = document.createElement("script");
  9015. script3.type = "text/javascript";
  9016. script3.charset = "UTF-8";
  9017. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9018. const script4 = document.createElement("script");
  9019. script4.type = "text/javascript";
  9020. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9021. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9022. if (_iframe) {
  9023. if (str == 'doc') {
  9024. _iframe = _formdiv.querySelector('iframe')
  9025. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9026. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9027. _iframe.contentWindow.document.body.appendChild(script1);
  9028. _iframe.contentWindow.document.body.appendChild(script2);
  9029. // _iframe.contentWindow.document.body.appendChild(script3);
  9030. _iframe.contentWindow.document.body.appendChild(script4);
  9031. })
  9032. if (onloadListener) {
  9033. _iframe.contentDocument.location.reload()
  9034. } else {
  9035. _iframe.contentDocument.location.reload()
  9036. }
  9037. } else if (str == 'mind') {
  9038. _iframe = _formdiv.querySelector('iframe')
  9039. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9040. _iframe.contentWindow.document.body.appendChild(script1);
  9041. _iframe.contentWindow.document.body.appendChild(script2);
  9042. _iframe.contentWindow.document.body.appendChild(script4);
  9043. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9044. })
  9045. if (onloadListener) {
  9046. _iframe.contentDocument.location.reload()
  9047. } else {
  9048. _iframe.contentDocument.location.reload()
  9049. }
  9050. } else {
  9051. _iframe.onload = () => {
  9052. _iframe.contentWindow.document.body.appendChild(script1);
  9053. _iframe.contentWindow.document.body.appendChild(script2);
  9054. // _iframe.contentWindow.document.body.appendChild(script3);
  9055. _iframe.contentWindow.document.body.appendChild(script4);
  9056. };
  9057. }
  9058. _jie.onclick = async () => {
  9059. let text = ''
  9060. if (aTool == 6) {
  9061. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9062. } else if (aTool == 3) {
  9063. text = await U.MD.D.I.getEditorContent(_iframe);
  9064. }
  9065. _loading.style.display = 'flex'
  9066. console.log(_loading);
  9067. var _ajs = _iframe.contentWindow.document.createElement("script");
  9068. _ajs.type = "text/javascript";
  9069. _ajs.innerHTML =
  9070. // 'console.log(' + _loading + ');\n' +
  9071. 'var _js = document.createElement("script");\n' +
  9072. '_js.type="text/javascript";\n' +
  9073. '_js.charset="UTF-8";\n' +
  9074. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9075. "_js.onload = function(){\n" +
  9076. ' var a = document.getElementsByTagName("img")\n' +
  9077. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9078. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9079. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9080. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9081. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9082. "beforeUpload_shishi(file," +
  9083. "'" +
  9084. _userid +
  9085. "'" +
  9086. ", " +
  9087. "'" +
  9088. _cid +
  9089. "'" +
  9090. ", " +
  9091. "'" +
  9092. _stage +
  9093. "'" +
  9094. ", " +
  9095. "'" +
  9096. _task +
  9097. "'" +
  9098. ", " +
  9099. "'" +
  9100. _tool +
  9101. "'" +
  9102. ", " +
  9103. "'" +
  9104. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9105. "'" +
  9106. ", " +
  9107. "'" +
  9108. aTool +
  9109. "'" +
  9110. ", " +
  9111. "`" +
  9112. text +
  9113. "`" +
  9114. ")\n" +
  9115. " });\n" +
  9116. "}\n" +
  9117. "document.head.appendChild(_js);\n";
  9118. _iframe.contentWindow.document.head.appendChild(_ajs);
  9119. }
  9120. }
  9121. //U.MD.D.I.openClick(str);
  9122. //如果有任务栏信息
  9123. // if (_taskbar) {
  9124. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9125. // }
  9126. }
  9127. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9128. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9129. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9130. _userinfo = US.userInfo, //登录用户信息
  9131. _userid = US.userInfo.userid //登录用户id
  9132. let _iframe;
  9133. let _cid = cid,
  9134. _stage = stage,
  9135. _task = task,
  9136. _tool = tool;
  9137. var _jie = $$("div", {
  9138. "style": {
  9139. "position": "absolute",
  9140. "bottom": "50px",
  9141. "right": "50px",
  9142. "zIndex": "9999",
  9143. "backgroundColor": "#2268bc",
  9144. "color": "#fff",
  9145. "padding": "12px 20px",
  9146. "cursor": "pointer",
  9147. "borderRadius": "4px",
  9148. },
  9149. "innerHTML": "上传模板"
  9150. })
  9151. let aTool = ''
  9152. let _loading = document.createElement('div')
  9153. _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;"
  9154. // _loading.id = "";
  9155. let _lchild = document.createElement('div')
  9156. let _limg = document.createElement('img')
  9157. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9158. _limg.style = "width: 26px;margin-right: 10px;"
  9159. _lchild.appendChild(_limg)
  9160. let _lspan = document.createElement('span')
  9161. _lspan.innerHTML = "上传中..."
  9162. _lchild.appendChild(_lspan)
  9163. _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%);"
  9164. _loading.appendChild(_lchild)
  9165. var _box = $$('div', {
  9166. "style": {
  9167. "position": "relative",
  9168. "width": "100%",
  9169. "height": "100%",
  9170. },
  9171. })
  9172. _box.appendChild(_loading)
  9173. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9174. switch (str) {
  9175. case "whiteboard":
  9176. aTool = 1;
  9177. _iframe = $$("iframe", {
  9178. "frameborder": "no",
  9179. "border": "0",
  9180. "scrolling ": "no",
  9181. "style": {
  9182. "cssText": "border:0;width:100%;height:100%"
  9183. },
  9184. "src": "https://beta.iwb.cocorobo.cn/"
  9185. })
  9186. _box.appendChild(_iframe);
  9187. _box.appendChild(_jie);
  9188. _formdiv = new U.UF.UI.form(
  9189. "电子白板",
  9190. _box, {
  9191. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9192. "style": {
  9193. "width": "90%",
  9194. "height": "90%",
  9195. "overflow": 'hidden'
  9196. },
  9197. "onresize": function () { }
  9198. }, {
  9199. closecallback: function () { }
  9200. }, {
  9201. "style": {
  9202. "height": "36px"
  9203. }
  9204. }).form; //创建窗体
  9205. _taskbar = {
  9206. "id": str + _formdiv.id,
  9207. "style": {
  9208. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9209. },
  9210. "name": "电子白板",
  9211. "forms": _formdiv,
  9212. "click": function () {
  9213. U.MD.D.I.openApplication(str, obj, info);
  9214. }
  9215. }
  9216. break;
  9217. case "mind":
  9218. aTool = 3;
  9219. _iframe = $$("iframe", {
  9220. "frameborder": "no",
  9221. "border": "0",
  9222. "scrolling ": "no",
  9223. "style": {
  9224. "cssText": "border:0;width:100%;height:100%"
  9225. },
  9226. "src": "/kityminder-editor/dist/index.html"
  9227. });
  9228. _box.appendChild(_iframe);
  9229. _box.appendChild(_jie);
  9230. _formdiv = new U.UF.UI.form(
  9231. "思维导图",
  9232. _box, { //"/jsmind/example/demo.html"
  9233. "id": "minds_Yu" + cid + stage + task + tool,
  9234. "style": {
  9235. "width": "90%",
  9236. "height": "90%",
  9237. "overflow": 'hidden'
  9238. },
  9239. "onresize": function () { }
  9240. }, {
  9241. closecallback: function () { }
  9242. }, {
  9243. "style": {
  9244. "height": "36px"
  9245. }
  9246. }).form; //创建窗体
  9247. _taskbar = {
  9248. "id": str + _formdiv.id,
  9249. "style": {
  9250. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9251. },
  9252. "name": "思维导图",
  9253. "forms": _formdiv,
  9254. "click": function () {
  9255. U.MD.D.I.openApplication(str, obj, info);
  9256. }
  9257. }
  9258. break;
  9259. case "doc":
  9260. aTool = 6;
  9261. _iframe = $$("iframe", {
  9262. "frameborder": "no",
  9263. "border": "0",
  9264. "scrolling ": "no",
  9265. "style": {
  9266. "cssText": "border:0;width:100%;height:100%"
  9267. },
  9268. "src": "/Office/Word/WordEditArea.htm"
  9269. })
  9270. _box.appendChild(_iframe);
  9271. _box.appendChild(_jie);
  9272. _formdiv = new U.UF.UI.form(
  9273. "协同文档",
  9274. _box, {
  9275. "id": "docs_Yu" + cid + stage + task + tool,
  9276. "style": {
  9277. "width": "90%",
  9278. "height": "90%",
  9279. "overflow": 'hidden'
  9280. },
  9281. "onresize": function () { }
  9282. }, {
  9283. closecallback: function () { }
  9284. }, {
  9285. "style": {
  9286. "height": "36px"
  9287. }
  9288. }).form; //创建窗体
  9289. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9290. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9291. })
  9292. _taskbar = {
  9293. "id": str + _formdiv.id,
  9294. "style": {
  9295. "backgroundImage": "url(/img/icon/doc.png)"
  9296. },
  9297. "name": "协同文档",
  9298. "forms": _formdiv,
  9299. "click": function () {
  9300. U.MD.D.I.openApplication(str, obj, info);
  9301. }
  9302. }
  9303. break;
  9304. case "CocoPi":
  9305. aTool = 57;
  9306. _iframe = $$("iframe", {
  9307. "allowpaymentrequest": "allowpaymentrequest",
  9308. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9309. "webkitallowfullscreen": "",
  9310. "mozallowfullscreen": "",
  9311. "frameborder": "no",
  9312. "border": "0",
  9313. "scrolling ": "no",
  9314. "style": {
  9315. "cssText": "border:0;width:100%;height:100%"
  9316. },
  9317. "src": "https://pi.cocorobo.cn/"
  9318. })
  9319. _box.appendChild(_iframe);
  9320. _box.appendChild(_jie);
  9321. _formdiv = new U.UF.UI.form(
  9322. "CocoPi",
  9323. _box, {
  9324. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9325. "style": {
  9326. "width": "90%",
  9327. "height": "90%",
  9328. "overflow": 'hidden'
  9329. },
  9330. "onresize": function () { }
  9331. }, {
  9332. closecallback: function () { }
  9333. }, {
  9334. "style": {
  9335. "height": "36px"
  9336. }
  9337. }).form; //创建窗体
  9338. _taskbar = {
  9339. "id": str + _formdiv.id,
  9340. "style": {
  9341. "backgroundImage": "url(/img/icon/cocopi.png)"
  9342. },
  9343. "name": "CocoPi",
  9344. "forms": _formdiv,
  9345. "click": function () {
  9346. U.MD.D.I.openApplication(str, obj, info);
  9347. }
  9348. }
  9349. break;
  9350. }
  9351. if (_iframe) {
  9352. if (str == 'doc') {
  9353. _iframe = _formdiv.querySelector('iframe')
  9354. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9355. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9356. })
  9357. if (onloadListener) {
  9358. _iframe.contentDocument.location.reload()
  9359. } else {
  9360. _iframe.contentDocument.location.reload()
  9361. }
  9362. } else if (str == 'mind') {
  9363. _iframe = _formdiv.querySelector('iframe')
  9364. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9365. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9366. })
  9367. if (onloadListener) {
  9368. _iframe.contentDocument.location.reload()
  9369. } else {
  9370. _iframe.contentDocument.location.reload()
  9371. }
  9372. } else if (str == 'whiteboard') {
  9373. _iframe = _formdiv.querySelector('iframe')
  9374. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9375. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9376. })
  9377. // if (onloadListener) {
  9378. // try {
  9379. // _iframe.src += "?cocorobo="+new Date().getTime()
  9380. // _iframe.contentWindow.document.location.reload()
  9381. // } catch (error) {
  9382. // }
  9383. // } else {
  9384. // _iframe.contentDocument.location.reload()
  9385. // }
  9386. } else if (str == 'CocoPi') {
  9387. _iframe = _formdiv.querySelector('iframe')
  9388. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9389. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9390. })
  9391. if (onloadListener) {
  9392. _iframe.contentDocument.location.reload()
  9393. } else {
  9394. _iframe.contentDocument.location.reload()
  9395. }
  9396. } else {
  9397. _iframe.onload = () => { };
  9398. }
  9399. _jie.onclick = async () => {
  9400. let text = ''
  9401. let type = '2'
  9402. if (aTool == 1) {
  9403. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9404. type = '3'
  9405. } else if (aTool == 6) {
  9406. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9407. type = '1'
  9408. } else if (aTool == 3) {
  9409. text = await U.MD.D.I.getEditorContent(_iframe);
  9410. type = '2'
  9411. } else if (aTool == 57) {
  9412. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9413. type = '4'
  9414. }
  9415. _loading.style.display = 'flex'
  9416. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9417. }
  9418. }
  9419. //U.MD.D.I.openClick(str);
  9420. //如果有任务栏信息
  9421. // if (_taskbar) {
  9422. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9423. // }
  9424. }
  9425. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9426. var xmlhttp;
  9427. var Mac, Sn, DeviceId
  9428. if (window.XMLHttpRequest) {
  9429. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9430. xmlhttp = new XMLHttpRequest();
  9431. } else {
  9432. // IE6, IE5 浏览器执行代码
  9433. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9434. }
  9435. xmlhttp.onreadystatechange = function () {
  9436. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9437. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9438. // resolve(res.value[0][0].text);
  9439. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9440. }
  9441. }
  9442. }
  9443. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9444. xmlhttp.send();
  9445. }
  9446. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9447. var xmlhttp;
  9448. var Mac, Sn, DeviceId
  9449. if (window.XMLHttpRequest) {
  9450. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9451. xmlhttp = new XMLHttpRequest();
  9452. } else {
  9453. // IE6, IE5 浏览器执行代码
  9454. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9455. }
  9456. xmlhttp.onreadystatechange = function () {
  9457. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9458. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9459. // resolve(res.value[0][0].text);
  9460. if (type == '2') {
  9461. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9462. } else if (type == '3') {
  9463. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9464. } else if (type == '4') {
  9465. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9466. }
  9467. } else {
  9468. if (type == '2') {
  9469. iframe.contentWindow.editor.minder.importData('json', '')
  9470. } else if (type == '3') {
  9471. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9472. } else if (type == '4') {
  9473. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9474. }
  9475. }
  9476. }
  9477. }
  9478. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9479. xmlhttp.send();
  9480. }
  9481. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9482. var xmlhttp;
  9483. var Mac, Sn, DeviceId
  9484. if (window.XMLHttpRequest) {
  9485. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9486. xmlhttp = new XMLHttpRequest();
  9487. } else {
  9488. // IE6, IE5 浏览器执行代码
  9489. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9490. }
  9491. xmlhttp.onreadystatechange = function () {
  9492. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9493. if (xmlhttp.response) {
  9494. // resolve(res.value[0][0].text);
  9495. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9496. // $(fileInput).val('');
  9497. // });
  9498. span.innerHTML = '上传成功'
  9499. setTimeout(() => {
  9500. loading.style.display = 'none'
  9501. }, 1000);
  9502. }
  9503. }
  9504. }
  9505. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9506. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9507. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9508. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9509. // 设置请求头,表示请求体的编码格式
  9510. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9511. // 设置请求体,使用url-encoded格式的数据
  9512. }
  9513. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9514. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9515. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9516. _userinfo = US.userInfo, //登录用户信息
  9517. _userid = US.userInfo.userid //登录用户id
  9518. let _iframe;
  9519. let _cid = cid,
  9520. _stage = stage,
  9521. _task = task,
  9522. _tool = tool;
  9523. var _jie = $$("div", {
  9524. "style": {
  9525. "position": "absolute",
  9526. "bottom": "50px",
  9527. "right": "50px",
  9528. "zIndex": "9999",
  9529. "backgroundColor": "#2268bc",
  9530. "color": "#fff",
  9531. "padding": "12px 20px",
  9532. "cursor": "pointer",
  9533. "borderRadius": "4px",
  9534. },
  9535. "innerHTML": "提交作业"
  9536. })
  9537. let aTool = ''
  9538. let _loading = document.createElement('div')
  9539. _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;"
  9540. // _loading.id = "";
  9541. let _lchild = document.createElement('div')
  9542. let _limg = document.createElement('img')
  9543. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9544. _limg.style = "width: 26px;margin-right: 10px;"
  9545. _lchild.appendChild(_limg)
  9546. let _lspan = document.createElement('span')
  9547. _lspan.innerHTML = "上传中..."
  9548. _lchild.appendChild(_lspan)
  9549. _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%);"
  9550. _loading.appendChild(_lchild)
  9551. var _box = $$('div', {
  9552. "style": {
  9553. "position": "relative",
  9554. "width": "100%",
  9555. "height": "100%",
  9556. },
  9557. })
  9558. _box.appendChild(_loading)
  9559. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9560. switch (str) {
  9561. case "CocoPi":
  9562. aTool = 57;
  9563. _iframe = $$("iframe", {
  9564. "allowpaymentrequest": "allowpaymentrequest",
  9565. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9566. "webkitallowfullscreen": "",
  9567. "mozallowfullscreen": "",
  9568. "frameborder": "no",
  9569. "border": "0",
  9570. "scrolling ": "no",
  9571. "style": {
  9572. "cssText": "border:0;width:100%;height:100%"
  9573. },
  9574. "src": "https://pi.cocorobo.cn/"
  9575. })
  9576. _box.appendChild(_iframe);
  9577. _box.appendChild(_jie);
  9578. _formdiv = new U.UF.UI.form(
  9579. "CocoPi",
  9580. _box, {
  9581. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9582. "style": {
  9583. "width": "90%",
  9584. "height": "90%",
  9585. "overflow": 'hidden'
  9586. },
  9587. "onresize": function () { }
  9588. }, {
  9589. closecallback: function () { }
  9590. }, {
  9591. "style": {
  9592. "height": "36px"
  9593. }
  9594. }).form; //创建窗体
  9595. _taskbar = {
  9596. "id": str + _formdiv.id,
  9597. "style": {
  9598. "backgroundImage": "url(/img/icon/cocopi.png)"
  9599. },
  9600. "name": "CocoPi",
  9601. "forms": _formdiv,
  9602. "click": function () {
  9603. U.MD.D.I.openApplication(str, obj, info);
  9604. }
  9605. }
  9606. break;
  9607. }
  9608. if (_iframe) {
  9609. if (str == 'CocoPi') {
  9610. _iframe = _formdiv.querySelector('iframe')
  9611. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9612. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9613. })
  9614. if (onloadListener) {
  9615. _iframe.contentDocument.location.reload()
  9616. } else {
  9617. _iframe.contentDocument.location.reload()
  9618. }
  9619. }
  9620. _jie.onclick = async () => {
  9621. let text = ''
  9622. if (aTool == 57) {
  9623. text = _iframe.contentWindow.getLoadXmlStr()
  9624. }
  9625. _loading.style.display = 'flex'
  9626. console.log(_loading);
  9627. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9628. _loading.style.display = 'none'
  9629. let _div = document.createElement('div')
  9630. _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;"
  9631. let _inner = document.createElement('div')
  9632. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9633. _inner.innerHTML = "上传成功"
  9634. _div.appendChild(_inner)
  9635. _iframe.contentWindow.window.document.body.appendChild(_div)
  9636. _div.onclick = () => {
  9637. _iframe.contentWindow.window.document.body.removeChild(_div)
  9638. }
  9639. setTimeout(() => {
  9640. _iframe.contentWindow.window.document.body.removeChild(_div)
  9641. }, 1000);
  9642. }, [], { "type": "POST", "withCredentials": true });
  9643. }
  9644. }
  9645. }
  9646. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9647. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9648. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9649. _userid = student.userid, //登录用户id
  9650. _username = student.student //用户名字
  9651. let _iframe;
  9652. let _cid = cid,
  9653. _stage = stage,
  9654. _task = task,
  9655. _tool = tool;
  9656. var _jie = $$("div", {
  9657. "style": {
  9658. "position": "absolute",
  9659. "bottom": "50px",
  9660. "right": "50px",
  9661. "zIndex": "9999",
  9662. "backgroundColor": "#2268bc",
  9663. "color": "#fff",
  9664. "padding": "12px 20px",
  9665. "cursor": "pointer",
  9666. "borderRadius": "4px",
  9667. },
  9668. "innerHTML": "提交作业"
  9669. })
  9670. let aTool = ''
  9671. let _loading = document.createElement('div')
  9672. _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;"
  9673. // _loading.id = "";
  9674. let _lchild = document.createElement('div')
  9675. let _limg = document.createElement('img')
  9676. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9677. _limg.style = "width: 26px;margin-right: 10px;"
  9678. _lchild.appendChild(_limg)
  9679. let _lspan = document.createElement('span')
  9680. _lspan.innerHTML = "上传中..."
  9681. _lchild.appendChild(_lspan)
  9682. _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%);"
  9683. _loading.appendChild(_lchild)
  9684. var _box = $$('div', {
  9685. "style": {
  9686. "position": "relative",
  9687. "width": "100%",
  9688. "height": "100%",
  9689. },
  9690. })
  9691. _box.appendChild(_loading)
  9692. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9693. switch (str) {
  9694. case "CocoPi":
  9695. aTool = 57;
  9696. _iframe = $$("iframe", {
  9697. "allowpaymentrequest": "allowpaymentrequest",
  9698. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9699. "webkitallowfullscreen": "",
  9700. "mozallowfullscreen": "",
  9701. "frameborder": "no",
  9702. "border": "0",
  9703. "scrolling ": "no",
  9704. "style": {
  9705. "cssText": "border:0;width:100%;height:100%"
  9706. },
  9707. "src": "https://pi.cocorobo.cn/"
  9708. })
  9709. _box.appendChild(_iframe);
  9710. _box.appendChild(_jie);
  9711. _formdiv = new U.UF.UI.form(
  9712. "CocoPi-" + _username,
  9713. _box, {
  9714. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9715. "style": {
  9716. "width": "90%",
  9717. "height": "90%",
  9718. "overflow": 'hidden'
  9719. },
  9720. "onresize": function () { }
  9721. }, {
  9722. closecallback: function () { }
  9723. }, {
  9724. "style": {
  9725. "height": "36px"
  9726. }
  9727. }).form; //创建窗体
  9728. _taskbar = {
  9729. "id": str + _formdiv.id,
  9730. "style": {
  9731. "backgroundImage": "url(/img/icon/cocopi.png)"
  9732. },
  9733. "name": "CocoPi",
  9734. "forms": _formdiv,
  9735. "click": function () {
  9736. U.MD.D.I.openApplication(str, obj, info);
  9737. }
  9738. }
  9739. break;
  9740. }
  9741. if (_iframe) {
  9742. if (str == 'CocoPi') {
  9743. _iframe = _formdiv.querySelector('iframe')
  9744. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9745. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9746. })
  9747. if (onloadListener) {
  9748. _iframe.contentDocument.location.reload()
  9749. } else {
  9750. _iframe.contentDocument.location.reload()
  9751. }
  9752. }
  9753. _jie.onclick = async () => {
  9754. let text = ''
  9755. if (aTool == 57) {
  9756. text = _iframe.contentWindow.getLoadXmlStr()
  9757. }
  9758. _loading.style.display = 'flex'
  9759. console.log(_loading);
  9760. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9761. _loading.style.display = 'none'
  9762. let _div = document.createElement('div')
  9763. _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;"
  9764. let _inner = document.createElement('div')
  9765. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9766. _inner.innerHTML = "上传成功"
  9767. _div.appendChild(_inner)
  9768. _iframe.contentWindow.window.document.body.appendChild(_div)
  9769. _div.onclick = () => {
  9770. _iframe.contentWindow.window.document.body.removeChild(_div)
  9771. }
  9772. setTimeout(() => {
  9773. _iframe.contentWindow.window.document.body.removeChild(_div)
  9774. }, 1000);
  9775. }, [], { "type": "POST", "withCredentials": true });
  9776. }
  9777. }
  9778. }
  9779. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9780. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9781. if (res.value[0].length > 0) {
  9782. if (atool == 57) {
  9783. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9784. }
  9785. } else {
  9786. if (atool == 57) {
  9787. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9788. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9789. }
  9790. }
  9791. }, [], { "type": "POST", "withCredentials": true });
  9792. }