DeskTop.js 617 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  928. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  929. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  930. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  931. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  932. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  933. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  935. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  936. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  937. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  938. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  939. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  940. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  941. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  942. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  943. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  944. ];
  945. //未来教育基地
  946. U.MD.D.I.szjkyAdminDeskIcon = [
  947. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  948. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  949. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  950. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  951. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  952. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  953. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  954. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  955. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  956. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  957. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  958. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  959. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  960. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  961. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  962. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  963. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  964. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  965. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  966. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  967. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  968. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  969. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  970. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  971. ];
  972. //未来教育基地
  973. U.MD.D.I.szjkyStudentDeskIcon = [
  974. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  975. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  976. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  977. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  978. ];
  979. //成华教育局
  980. U.MD.D.I.chjyjTeacherDeskIcon = [
  981. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  982. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  983. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  984. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  985. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  986. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  987. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  988. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  989. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  990. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  991. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  992. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  993. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  994. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  995. ];
  996. //成华教育局chjyj
  997. U.MD.D.I.chjyjAdminDeskIcon = [
  998. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  999. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1001. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1002. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1003. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1004. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1005. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1006. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1007. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1008. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1009. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1010. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1011. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1012. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1013. ];
  1014. //成华教育局chjyj
  1015. U.MD.D.I.chjyjStudentDeskIcon = [
  1016. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1017. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. ];
  1021. //tpc
  1022. U.MD.D.I.tpcStudentDeskIcon = [
  1023. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1024. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1025. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1026. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1027. ];
  1028. //tpc
  1029. U.MD.D.I.tpcTeacherDeskIcon = [
  1030. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1031. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1032. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1033. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1034. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1035. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1036. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcAdminDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //THU-IOE
  1049. U.MD.D.I.thuioeTeacherDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1053. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1054. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1055. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1056. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1057. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1058. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1059. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1060. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1061. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1062. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1063. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1064. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1065. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1066. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1067. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1068. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1069. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1070. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1071. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1072. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1073. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1074. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1075. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1076. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1077. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1078. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1079. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1080. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1081. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1082. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1083. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1084. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1085. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1086. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1087. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1089. ];
  1090. //THU-IOE
  1091. U.MD.D.I.thuioeStudentDeskIcon = [
  1092. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1093. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1094. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. ];
  1097. //jccssyl
  1098. U.MD.D.I.jccssylTeacherDeskIcon = [
  1099. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1100. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1101. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1102. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1106. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1107. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1108. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1109. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1110. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1112. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1114. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1115. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1116. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1117. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1118. ];
  1119. //jccssyl
  1120. U.MD.D.I.jccssylStudentDeskIcon = [
  1121. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1122. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1123. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. ];
  1126. //cale
  1127. U.MD.D.I.caleTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1135. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1136. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1137. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1138. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1139. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1140. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1141. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1142. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1144. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1145. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1147. ];
  1148. //cale
  1149. U.MD.D.I.caleStudentDeskIcon = [
  1150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1151. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1152. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. ];
  1155. //lqwmsgzs
  1156. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1157. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1158. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1159. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1160. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1167. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1168. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1169. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1170. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1171. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1172. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1173. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1174. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1175. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1176. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1177. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1178. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1179. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1180. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1181. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1182. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1183. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1184. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1185. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1186. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1187. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1188. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1189. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1190. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1191. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1192. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1193. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1194. ];
  1195. //lqwmsgzs
  1196. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1197. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1198. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1199. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. ];
  1202. //盐田区幼儿园
  1203. U.MD.D.I.ytyTeacherDeskIcon = [
  1204. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1205. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1206. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1207. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1210. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1211. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1212. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1213. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1214. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1215. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1216. ];
  1217. //盐田区幼儿园
  1218. U.MD.D.I.ytyStudentDeskIcon = [
  1219. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. ];
  1223. //scnuai
  1224. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1225. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1226. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1228. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1229. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1230. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1231. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1232. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1235. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1236. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1237. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1238. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1243. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1244. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1245. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1246. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1247. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1248. ];
  1249. //scnuai
  1250. U.MD.D.I.scnuaiAdminDeskIcon = [
  1251. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1252. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1253. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1254. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1255. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1256. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1257. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1258. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1259. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1260. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1261. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1262. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1263. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1264. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1266. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1267. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1268. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1269. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1270. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1271. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1272. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1273. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1274. ];
  1275. //scnuai
  1276. U.MD.D.I.scnuaiStudentDeskIcon = [
  1277. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1278. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1279. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1280. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1281. ];
  1282. //cocobiz
  1283. U.MD.D.I.cocobizteacherDeskIcon = [
  1284. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1285. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1289. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1290. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1291. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1292. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1293. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1294. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1295. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1296. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1297. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1298. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1299. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1300. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1301. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1302. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1303. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1304. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1305. ];
  1306. //cocobiz
  1307. U.MD.D.I.cocobizStudentDeskIcon = [
  1308. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1309. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1310. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1311. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. ];
  1315. //xxzjky
  1316. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1317. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1318. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1319. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1320. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1321. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1322. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1323. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1324. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1325. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1326. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1327. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1328. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1329. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1330. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1331. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1332. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1333. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1334. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1335. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1336. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1337. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1338. ];
  1339. //xxzjky
  1340. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1341. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1344. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. ];
  1348. //nsfx
  1349. U.MD.D.I.nsfxTeacherDeskIcon = [
  1350. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1352. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1353. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1354. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1355. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1356. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1357. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1358. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1359. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1360. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1361. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1362. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1365. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1366. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1367. ];
  1368. //nsfx
  1369. U.MD.D.I.nsfxStudentDeskIcon = [
  1370. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. ];
  1375. //stia
  1376. U.MD.D.I.stiaTeacherDeskIcon = [
  1377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1381. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1386. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1387. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1388. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1389. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1390. ];
  1391. //stia
  1392. U.MD.D.I.stiaStudentDeskIcon = [
  1393. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1394. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1395. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1396. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1397. ];
  1398. //szdjg
  1399. U.MD.D.I.szdjgTeacherDeskIcon = [
  1400. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1401. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. ];
  1403. //szdjg
  1404. U.MD.D.I.szdjgStudentDeskIcon = [
  1405. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1406. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1407. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1409. ];
  1410. //010607
  1411. U.MD.D.I.x010607TeacherDeskIcon = [
  1412. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1413. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1415. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1416. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1417. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1418. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1419. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1420. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1421. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1422. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1423. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1424. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1425. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1426. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1427. ];
  1428. //010607
  1429. U.MD.D.I.x010607StudentDeskIcon = [
  1430. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1431. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1432. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. ];
  1435. //010608
  1436. U.MD.D.I.x010608TeacherDeskIcon = [
  1437. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1438. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1440. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1441. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1442. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1443. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1445. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1447. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1448. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1449. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1450. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608StudentDeskIcon = [
  1454. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1455. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1456. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1457. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. ];
  1459. //xhly
  1460. U.MD.D.I.xhlyTeacherDeskIcon = [
  1461. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1462. ];
  1463. //010608
  1464. U.MD.D.I.xhlyStudentDeskIcon = [
  1465. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. ];
  1467. //北师大
  1468. U.MD.D.I.BSDNSteacherDeskIcon = [
  1469. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1470. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1472. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1473. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1474. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1475. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1476. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1477. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1478. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1479. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1480. ];
  1481. //北师大
  1482. U.MD.D.I.BSDNSstudentDeskIcon = [
  1483. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1484. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1485. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1487. ];
  1488. //CUHK_EDU
  1489. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1490. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1491. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1493. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1494. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1495. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1496. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1500. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1501. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1502. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1503. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1507. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1508. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1509. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. ];
  1512. //010503
  1513. U.MD.D.I.x010503TeacherDeskIcon = [
  1514. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1515. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. ];
  1517. //010503
  1518. U.MD.D.I.x010503StudentDeskIcon = [
  1519. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1520. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1521. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1523. ];
  1524. //SPROUT Lab
  1525. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1526. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1527. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1529. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1530. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1531. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1532. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1533. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1534. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1535. ];
  1536. //SPROUT Lab
  1537. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1538. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1539. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. ];
  1542. //010204
  1543. U.MD.D.I.x010204TeacherDeskIcon = [
  1544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1546. ];
  1547. //010204
  1548. U.MD.D.I.x010204StudentDeskIcon = [
  1549. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1552. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1553. ];
  1554. //#region 桌面初始化a
  1555. /**
  1556. * 初始化桌面的起始函数
  1557. *
  1558. */
  1559. U.MD.D.I.init = function () {
  1560. if ($("#U_MD_D_K")[0]) {
  1561. //初始化桌面图标
  1562. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1563. // var clickUrl = ':12588/requestIp.php';
  1564. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1565. // U.MD.D.I.Ip = data;
  1566. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1567. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1568. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1569. // })
  1570. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1571. // })
  1572. }
  1573. }
  1574. /**
  1575. * 模式切换
  1576. *
  1577. */
  1578. U.MD.D.I.ModeCheck = function (type) {
  1579. if (US.Config.type == type) {
  1580. return
  1581. }
  1582. US.Config.type = type
  1583. $('.U_PBL_Check .active')[0].className = ''
  1584. if (type == 1) {
  1585. $('.U_PBL_Check div')[0].className = 'active'
  1586. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1587. } else {
  1588. $('.U_PBL_Check div')[1].className = 'active'
  1589. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1590. }
  1591. //初始化桌面图标
  1592. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1593. if (type == 2) {
  1594. U.MD.D.I.openApplication("project")
  1595. }
  1596. }
  1597. /**
  1598. * 隐藏任务栏
  1599. *
  1600. * @param {element} 桌面元素
  1601. */
  1602. U.MD.D.I.hiddenTaskbar = function (el) {
  1603. //任务栏位置变小
  1604. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1605. //桌面的位置变大
  1606. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1607. }
  1608. /**
  1609. * 隐藏任务栏
  1610. *
  1611. * @param {element} 桌面元素
  1612. */
  1613. U.MD.D.I.hiddenTaskbarout = function (el) {
  1614. //任务栏位置变小
  1615. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1616. //任务栏位置变化
  1617. U.selectEl(el).css({ "bottom": "-60px" });
  1618. //桌面的位置变大
  1619. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1620. }
  1621. }
  1622. /**
  1623. * 初始化打印桌面图标
  1624. *
  1625. * @param {element} 桌面元素
  1626. */
  1627. U.MD.D.I.initDesktopIcons = function (el, type) {
  1628. var i, //用于循环
  1629. _content, //桌面图标元素
  1630. _iconcontent, //桌面图标元素
  1631. _frag = $$("frag"), //定义一个碎片元素
  1632. _type = US.userInfo.type,
  1633. _org = US.userInfo.org,
  1634. _oid = US.userInfo.organizeid,
  1635. _role = US.userInfo.role,
  1636. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1637. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1638. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1639. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1640. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1641. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1642. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1643. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1644. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1645. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1646. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1647. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1648. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1649. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1650. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1651. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1652. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1653. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1654. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1655. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1656. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1657. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1658. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1659. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1660. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1661. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1662. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1663. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1664. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1665. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1666. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1667. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1668. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1669. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1670. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1671. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1672. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1673. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1674. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1675. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1676. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1677. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1678. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1679. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1680. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1681. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1682. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1683. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1684. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1685. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1686. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1687. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1688. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1689. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1690. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1691. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1692. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1693. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1694. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1695. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1696. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1697. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1698. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1699. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1700. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1701. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1702. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1703. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1704. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1705. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1706. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1707. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1708. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1709. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1710. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1711. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1712. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1713. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1714. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1715. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1716. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1717. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1718. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1719. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1720. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1721. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1722. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1723. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1724. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1725. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1726. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1727. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1728. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1729. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1730. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1731. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1732. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1733. 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'];
  1734. 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'];
  1735. //清楚桌面图标
  1736. el.innerHTML = "";
  1737. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1738. _teacherDesktopIconInfo.push(
  1739. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1740. { "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)" } },
  1741. )
  1742. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1743. }
  1744. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1745. _teacherDesktopIconInfo.push(
  1746. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1749. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1750. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1751. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1752. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1753. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1754. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1755. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1756. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1757. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1758. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1759. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1760. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1761. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1762. )
  1763. }
  1764. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1765. _teacherDesktopIconInfo.push(
  1766. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1767. )
  1768. }
  1769. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1770. // _teacherDesktopIconInfo.push(
  1771. // )
  1772. // }
  1773. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1774. _teacherDesktopIconInfo.push(
  1775. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1776. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1777. )
  1778. }
  1779. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1780. _teacherDesktopIconInfo.push(
  1781. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1782. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1783. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1784. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1785. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1786. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1787. )
  1788. _studentDesktopIconInfo.push(
  1789. )
  1790. }
  1791. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1792. _teacherDesktopIconInfo.push(
  1793. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1794. )
  1795. _studentDesktopIconInfo.push(
  1796. )
  1797. }
  1798. //010606 组织
  1799. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1800. _teacherDesktopIconInfo.push(
  1801. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1802. )
  1803. _studentDesktopIconInfo.push(
  1804. )
  1805. }
  1806. //麒麟二中 和 民新小学
  1807. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1808. _teacherDesktopIconInfo.push(
  1809. )
  1810. }
  1811. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1812. _teacherDesktopIconInfo.push(
  1813. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1814. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1815. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1816. )
  1817. }
  1818. //北师大附中(010601)
  1819. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1820. // _teacherDesktopIconInfo.push(
  1821. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1822. // )
  1823. // _studentDesktopIconInfo.push(
  1824. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1825. // )
  1826. // }
  1827. //樂善堂余近卿中學
  1828. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1829. _teacherDesktopIconInfo.push(
  1830. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1831. )
  1832. }
  1833. // Education Artificial Intelligence
  1834. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1835. _teacherDesktopIconInfo.push(
  1836. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1837. )
  1838. }
  1839. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1840. _teacherDesktopIconInfo.push(
  1841. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1842. )
  1843. }
  1844. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1845. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1846. _teacherDesktopIconInfo.push(
  1847. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1848. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1849. )
  1850. }
  1851. //麒麟二中
  1852. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1853. _studentDesktopIconInfo.push(
  1854. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1855. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1856. )
  1857. }
  1858. //万科双语
  1859. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1860. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1861. if (el.Name == '项目管理') {
  1862. el.Name = 'PBL项目'
  1863. }
  1864. return el
  1865. })
  1866. _studentDesktopIconInfo3.push(
  1867. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1868. )
  1869. }
  1870. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1871. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1872. return el.Name != '魔盒识字' && el.Name != '24点'
  1873. })
  1874. }
  1875. 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) {
  1876. _studentDesktopIconInfo.push(
  1877. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1878. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1879. )
  1880. }
  1881. //循环创建桌面图标
  1882. if (type == 1) {
  1883. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1884. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1885. _content = $$("div", {
  1886. className: "U_MD_D_KO",
  1887. "onmousedown": U.UF.C.closure(function (obj) {
  1888. //防止拖动图标即打开了桌面应用
  1889. U.MD.D.click(this, obj);
  1890. }, [_studentDesktopIconInfo[i]]),
  1891. "onclick": U.UF.C.closure(function (obj) {
  1892. //防止拖动图标即打开了桌面应用
  1893. U.MD.D.click(this, obj);
  1894. }, [_studentDesktopIconInfo[i]])
  1895. }, _frag); //
  1896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1899. }
  1900. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1901. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1902. _content = $$("div", {
  1903. className: "U_MD_D_KO",
  1904. "onmousedown": U.UF.C.closure(function (obj) {
  1905. //防止拖动图标即打开了桌面应用
  1906. U.MD.D.click(this, obj);
  1907. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1908. "onclick": U.UF.C.closure(function (obj) {
  1909. //防止拖动图标即打开了桌面应用
  1910. U.MD.D.click(this, obj);
  1911. }, [_hkZJLSStudentDeskIconInfo[i]])
  1912. }, _frag); //
  1913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1916. } //
  1917. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1918. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1919. _content = $$("div", {
  1920. className: "U_MD_D_KO",
  1921. "onmousedown": U.UF.C.closure(function (obj) {
  1922. //防止拖动图标即打开了桌面应用
  1923. U.MD.D.click(this, obj);
  1924. }, [_ytyStudentDeskIconInfo[i]]),
  1925. "onclick": U.UF.C.closure(function (obj) {
  1926. //防止拖动图标即打开了桌面应用
  1927. U.MD.D.click(this, obj);
  1928. }, [_ytyStudentDeskIconInfo[i]])
  1929. }, _frag); //
  1930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1933. } //
  1934. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1935. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1936. _content = $$("div", {
  1937. className: "U_MD_D_KO",
  1938. "onmousedown": U.UF.C.closure(function (obj) {
  1939. //防止拖动图标即打开了桌面应用
  1940. U.MD.D.click(this, obj);
  1941. }, [_jccssylStudentDeskIconInfo[i]]),
  1942. "onclick": U.UF.C.closure(function (obj) {
  1943. //防止拖动图标即打开了桌面应用
  1944. U.MD.D.click(this, obj);
  1945. }, [_jccssylStudentDeskIconInfo[i]])
  1946. }, _frag); //
  1947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1950. }
  1951. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1952. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1953. _content = $$("div", {
  1954. className: "U_MD_D_KO",
  1955. "onmousedown": U.UF.C.closure(function (obj) {
  1956. //防止拖动图标即打开了桌面应用
  1957. U.MD.D.click(this, obj);
  1958. }, [_scnuaiStudentDeskIconInfo[i]]),
  1959. "onclick": U.UF.C.closure(function (obj) {
  1960. //防止拖动图标即打开了桌面应用
  1961. U.MD.D.click(this, obj);
  1962. }, [_scnuaiStudentDeskIconInfo[i]])
  1963. }, _frag); //
  1964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1967. }
  1968. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1969. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1970. _content = $$("div", {
  1971. className: "U_MD_D_KO",
  1972. "onmousedown": U.UF.C.closure(function (obj) {
  1973. //防止拖动图标即打开了桌面应用
  1974. U.MD.D.click(this, obj);
  1975. }, [_caleStudentDeskIconInfo[i]]),
  1976. "onclick": U.UF.C.closure(function (obj) {
  1977. //防止拖动图标即打开了桌面应用
  1978. U.MD.D.click(this, obj);
  1979. }, [_caleStudentDeskIconInfo[i]])
  1980. }, _frag); //
  1981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1984. }
  1985. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1986. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1987. _content = $$("div", {
  1988. className: "U_MD_D_KO",
  1989. "onmousedown": U.UF.C.closure(function (obj) {
  1990. //防止拖动图标即打开了桌面应用
  1991. U.MD.D.click(this, obj);
  1992. }, [_thuioeStudentDeskIconInfo[i]]),
  1993. "onclick": U.UF.C.closure(function (obj) {
  1994. //防止拖动图标即打开了桌面应用
  1995. U.MD.D.click(this, obj);
  1996. }, [_thuioeStudentDeskIconInfo[i]])
  1997. }, _frag); //
  1998. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1999. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2000. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2001. }
  2002. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2003. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2004. _content = $$("div", {
  2005. className: "U_MD_D_KO",
  2006. "onmousedown": U.UF.C.closure(function (obj) {
  2007. //防止拖动图标即打开了桌面应用
  2008. U.MD.D.click(this, obj);
  2009. }, [_tpcStudentDeskIconInfo[i]]),
  2010. "onclick": U.UF.C.closure(function (obj) {
  2011. //防止拖动图标即打开了桌面应用
  2012. U.MD.D.click(this, obj);
  2013. }, [_tpcStudentDeskIconInfo[i]])
  2014. }, _frag); //
  2015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2018. } //
  2019. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2020. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2021. _content = $$("div", {
  2022. className: "U_MD_D_KO",
  2023. "onmousedown": U.UF.C.closure(function (obj) {
  2024. //防止拖动图标即打开了桌面应用
  2025. U.MD.D.click(this, obj);
  2026. }, [_chjyjStudentDeskIconInfo[i]]),
  2027. "onclick": U.UF.C.closure(function (obj) {
  2028. //防止拖动图标即打开了桌面应用
  2029. U.MD.D.click(this, obj);
  2030. }, [_chjyjStudentDeskIconInfo[i]])
  2031. }, _frag); //
  2032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2035. }
  2036. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2037. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2038. _content = $$("div", {
  2039. className: "U_MD_D_KO",
  2040. "onmousedown": U.UF.C.closure(function (obj) {
  2041. //防止拖动图标即打开了桌面应用
  2042. U.MD.D.click(this, obj);
  2043. }, [_szjkyStudentDeskIconInfo[i]]),
  2044. "onclick": U.UF.C.closure(function (obj) {
  2045. //防止拖动图标即打开了桌面应用
  2046. U.MD.D.click(this, obj);
  2047. }, [_szjkyStudentDeskIconInfo[i]])
  2048. }, _frag); //
  2049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2052. }
  2053. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2054. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2055. _content = $$("div", {
  2056. className: "U_MD_D_KO",
  2057. "onmousedown": U.UF.C.closure(function (obj) {
  2058. //防止拖动图标即打开了桌面应用
  2059. U.MD.D.click(this, obj);
  2060. }, [_dseiStudentDeskIconInfo[i]]),
  2061. "onclick": U.UF.C.closure(function (obj) {
  2062. //防止拖动图标即打开了桌面应用
  2063. U.MD.D.click(this, obj);
  2064. }, [_dseiStudentDeskIconInfo[i]])
  2065. }, _frag); //
  2066. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2067. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2068. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2069. }
  2070. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2071. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2072. _content = $$("div", {
  2073. className: "U_MD_D_KO",
  2074. "onmousedown": U.UF.C.closure(function (obj) {
  2075. //防止拖动图标即打开了桌面应用
  2076. U.MD.D.click(this, obj);
  2077. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2078. "onclick": U.UF.C.closure(function (obj) {
  2079. //防止拖动图标即打开了桌面应用
  2080. U.MD.D.click(this, obj);
  2081. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2082. }, _frag); //
  2083. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2084. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2085. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2086. }
  2087. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2088. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2089. _content = $$("div", {
  2090. className: "U_MD_D_KO",
  2091. "onmousedown": U.UF.C.closure(function (obj) {
  2092. //防止拖动图标即打开了桌面应用
  2093. U.MD.D.click(this, obj);
  2094. }, [_nsfxStudentDeskIconInfo[i]]),
  2095. "onclick": U.UF.C.closure(function (obj) {
  2096. //防止拖动图标即打开了桌面应用
  2097. U.MD.D.click(this, obj);
  2098. }, [_nsfxStudentDeskIconInfo[i]])
  2099. }, _frag); //
  2100. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2101. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2102. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2103. }
  2104. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2105. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2106. _content = $$("div", {
  2107. className: "U_MD_D_KO",
  2108. "onmousedown": U.UF.C.closure(function (obj) {
  2109. //防止拖动图标即打开了桌面应用
  2110. U.MD.D.click(this, obj);
  2111. }, [_stiaStudentDeskIconInfo[i]]),
  2112. "onclick": U.UF.C.closure(function (obj) {
  2113. //防止拖动图标即打开了桌面应用
  2114. U.MD.D.click(this, obj);
  2115. }, [_stiaStudentDeskIconInfo[i]])
  2116. }, _frag); //
  2117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2120. }
  2121. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2122. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2123. _content = $$("div", {
  2124. className: "U_MD_D_KO",
  2125. "onmousedown": U.UF.C.closure(function (obj) {
  2126. //防止拖动图标即打开了桌面应用
  2127. U.MD.D.click(this, obj);
  2128. }, [_szdjgStudentDeskIconInfo[i]]),
  2129. "onclick": U.UF.C.closure(function (obj) {
  2130. //防止拖动图标即打开了桌面应用
  2131. U.MD.D.click(this, obj);
  2132. }, [_szdjgStudentDeskIconInfo[i]])
  2133. }, _frag); //
  2134. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2135. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2136. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2137. }
  2138. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2139. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2140. _content = $$("div", {
  2141. className: "U_MD_D_KO",
  2142. "onmousedown": U.UF.C.closure(function (obj) {
  2143. //防止拖动图标即打开了桌面应用
  2144. U.MD.D.click(this, obj);
  2145. }, [_x010607StudentDeskIconInfo[i]]),
  2146. "onclick": U.UF.C.closure(function (obj) {
  2147. //防止拖动图标即打开了桌面应用
  2148. U.MD.D.click(this, obj);
  2149. }, [_x010607StudentDeskIconInfo[i]])
  2150. }, _frag); //
  2151. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2152. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2153. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2154. }
  2155. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2156. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2157. _content = $$("div", {
  2158. className: "U_MD_D_KO",
  2159. "onmousedown": U.UF.C.closure(function (obj) {
  2160. //防止拖动图标即打开了桌面应用
  2161. U.MD.D.click(this, obj);
  2162. }, [_xhlyStudentDeskIconInfo[i]]),
  2163. "onclick": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_xhlyStudentDeskIconInfo[i]])
  2167. }, _frag); //
  2168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2171. }
  2172. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2173. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2174. _content = $$("div", {
  2175. className: "U_MD_D_KO",
  2176. "onmousedown": U.UF.C.closure(function (obj) {
  2177. //防止拖动图标即打开了桌面应用
  2178. U.MD.D.click(this, obj);
  2179. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2180. "onclick": U.UF.C.closure(function (obj) {
  2181. //防止拖动图标即打开了桌面应用
  2182. U.MD.D.click(this, obj);
  2183. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2184. }, _frag); //
  2185. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2186. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2187. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2188. }
  2189. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2190. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2191. _content = $$("div", {
  2192. className: "U_MD_D_KO",
  2193. "onmousedown": U.UF.C.closure(function (obj) {
  2194. //防止拖动图标即打开了桌面应用
  2195. U.MD.D.click(this, obj);
  2196. }, [_x010503StudentDeskIconInfo[i]]),
  2197. "onclick": U.UF.C.closure(function (obj) {
  2198. //防止拖动图标即打开了桌面应用
  2199. U.MD.D.click(this, obj);
  2200. }, [_x010503StudentDeskIconInfo[i]])
  2201. }, _frag); //
  2202. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2203. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2204. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2205. }
  2206. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2207. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2208. _content = $$("div", {
  2209. className: "U_MD_D_KO",
  2210. "onmousedown": U.UF.C.closure(function (obj) {
  2211. //防止拖动图标即打开了桌面应用
  2212. U.MD.D.click(this, obj);
  2213. }, [_x010204StudentDeskIconInfo[i]]),
  2214. "onclick": U.UF.C.closure(function (obj) {
  2215. //防止拖动图标即打开了桌面应用
  2216. U.MD.D.click(this, obj);
  2217. }, [_x010204StudentDeskIconInfo[i]])
  2218. }, _frag); //
  2219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2222. }
  2223. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2224. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2225. _content = $$("div", {
  2226. className: "U_MD_D_KO",
  2227. "onmousedown": U.UF.C.closure(function (obj) {
  2228. //防止拖动图标即打开了桌面应用
  2229. U.MD.D.click(this, obj);
  2230. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2231. "onclick": U.UF.C.closure(function (obj) {
  2232. //防止拖动图标即打开了桌面应用
  2233. U.MD.D.click(this, obj);
  2234. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2235. }, _frag); //
  2236. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2237. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2238. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2239. }
  2240. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2241. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2242. _content = $$("div", {
  2243. className: "U_MD_D_KO",
  2244. "onmousedown": U.UF.C.closure(function (obj) {
  2245. //防止拖动图标即打开了桌面应用
  2246. U.MD.D.click(this, obj);
  2247. }, [_x010608StudentDeskIconInfo[i]]),
  2248. "onclick": U.UF.C.closure(function (obj) {
  2249. //防止拖动图标即打开了桌面应用
  2250. U.MD.D.click(this, obj);
  2251. }, [_x010608StudentDeskIconInfo[i]])
  2252. }, _frag); //
  2253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2256. }
  2257. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2258. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2259. _content = $$("div", {
  2260. className: "U_MD_D_KO",
  2261. "onmousedown": U.UF.C.closure(function (obj) {
  2262. //防止拖动图标即打开了桌面应用
  2263. U.MD.D.click(this, obj);
  2264. }, [_siesStudentDeskIconInfo[i]]),
  2265. "onclick": U.UF.C.closure(function (obj) {
  2266. //防止拖动图标即打开了桌面应用
  2267. U.MD.D.click(this, obj);
  2268. }, [_siesStudentDeskIconInfo[i]])
  2269. }, _frag); //
  2270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2273. }
  2274. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2275. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2276. _content = $$("div", {
  2277. className: "U_MD_D_KO",
  2278. "onmousedown": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_guzmsStudentDeskIconInfo[i]]),
  2282. "onclick": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_guzmsStudentDeskIconInfo[i]])
  2286. }, _frag); //
  2287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2290. }
  2291. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2292. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2293. _content = $$("div", {
  2294. className: "U_MD_D_KO",
  2295. "onmousedown": U.UF.C.closure(function (obj) {
  2296. //防止拖动图标即打开了桌面应用
  2297. U.MD.D.click(this, obj);
  2298. }, [_hkStudentDeskIconInfo[i]]),
  2299. "onclick": U.UF.C.closure(function (obj) {
  2300. //防止拖动图标即打开了桌面应用
  2301. U.MD.D.click(this, obj);
  2302. }, [_hkStudentDeskIconInfo[i]])
  2303. }, _frag); //
  2304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2307. }
  2308. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2309. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2310. _content = $$("div", {
  2311. className: "U_MD_D_KO",
  2312. "onmousedown": U.UF.C.closure(function (obj) {
  2313. //防止拖动图标即打开了桌面应用
  2314. U.MD.D.click(this, obj);
  2315. }, [_hkaceStudentDeskIconInfo[i]]),
  2316. "onclick": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_hkaceStudentDeskIconInfo[i]])
  2320. }, _frag); //
  2321. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2322. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2323. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2324. }
  2325. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2326. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2327. _content = $$("div", {
  2328. className: "U_MD_D_KO",
  2329. "onmousedown": U.UF.C.closure(function (obj) {
  2330. //防止拖动图标即打开了桌面应用
  2331. U.MD.D.click(this, obj);
  2332. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2333. "onclick": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_BSDNSstudentDesktopIconInfo[i]])
  2337. }, _frag); //
  2338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2341. }
  2342. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2343. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2344. _content = $$("div", {
  2345. className: "U_MD_D_KO",
  2346. "onmousedown": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_cocobizStudentDeskIconInfo[i]]),
  2350. "onclick": U.UF.C.closure(function (obj) {
  2351. //防止拖动图标即打开了桌面应用
  2352. U.MD.D.click(this, obj);
  2353. }, [_cocobizStudentDeskIconInfo[i]])
  2354. }, _frag); //
  2355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2358. }
  2359. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2360. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2361. _content = $$("div", {
  2362. className: "U_MD_D_KO",
  2363. "onmousedown": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2367. "onclick": U.UF.C.closure(function (obj) {
  2368. //防止拖动图标即打开了桌面应用
  2369. U.MD.D.click(this, obj);
  2370. }, [_xxzjkyStudentDeskIconInfo[i]])
  2371. }, _frag); //
  2372. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2373. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2374. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2375. }
  2376. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2377. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2378. _content = $$("div", {
  2379. className: "U_MD_D_KO",
  2380. "onmousedown": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_studentDesktopIconInfo[i]]),
  2384. "onclick": U.UF.C.closure(function (obj) {
  2385. //防止拖动图标即打开了桌面应用
  2386. U.MD.D.click(this, obj);
  2387. }, [_studentDesktopIconInfo[i]])
  2388. }, _frag); //
  2389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2392. }
  2393. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2394. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2395. _content = $$("div", {
  2396. className: "U_MD_D_KO",
  2397. "onmousedown": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_tcStudentDeskIconInfo[i]]),
  2401. "onclick": U.UF.C.closure(function (obj) {
  2402. //防止拖动图标即打开了桌面应用
  2403. U.MD.D.click(this, obj);
  2404. }, [_tcStudentDeskIconInfo[i]])
  2405. }, _frag); //
  2406. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2407. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2408. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2409. }
  2410. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2411. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2412. _content = $$("div", {
  2413. className: "U_MD_D_KO",
  2414. "onmousedown": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_szscStudentDeskIconInfo[i]]),
  2418. "onclick": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_szscStudentDeskIconInfo[i]])
  2422. }, _frag); //
  2423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2426. }
  2427. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2428. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2429. _content = $$("div", {
  2430. className: "U_MD_D_KO",
  2431. "onmousedown": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_studentDesktopIconInfo3[i]]),
  2435. "onclick": U.UF.C.closure(function (obj) {
  2436. //防止拖动图标即打开了桌面应用
  2437. U.MD.D.click(this, obj);
  2438. }, [_studentDesktopIconInfo3[i]])
  2439. }, _frag); //
  2440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2443. }
  2444. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2445. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2446. _content = $$("div", {
  2447. className: "U_MD_D_KO",
  2448. "onmousedown": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_studentDesktopIconInfo2[i]]),
  2452. "onclick": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_studentDesktopIconInfo2[i]])
  2456. }, _frag); //
  2457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2460. }
  2461. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2462. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2463. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2464. continue
  2465. }
  2466. _content = $$("div", {
  2467. className: "U_MD_D_KO",
  2468. "onmousedown": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_wanketeacherDesktopIconInfo[i]]),
  2472. "onclick": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_wanketeacherDesktopIconInfo[i]])
  2476. }, _frag); //
  2477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2480. }
  2481. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2482. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2483. _content = $$("div", {
  2484. className: "U_MD_D_KO",
  2485. "onmousedown": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_wankeAdminDesktopIconInfo[i]]),
  2489. "onclick": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_wankeAdminDesktopIconInfo[i]])
  2493. }, _frag); //
  2494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2497. }
  2498. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2499. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2500. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2501. continue
  2502. }
  2503. _content = $$("div", {
  2504. className: "U_MD_D_KO",
  2505. "onmousedown": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2509. "onclick": U.UF.C.closure(function (obj) {
  2510. //防止拖动图标即打开了桌面应用
  2511. U.MD.D.click(this, obj);
  2512. }, [_scnuaiTeacherDeskIconInfo[i]])
  2513. }, _frag); //
  2514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2517. }
  2518. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2519. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2520. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2521. continue
  2522. }
  2523. _content = $$("div", {
  2524. className: "U_MD_D_KO",
  2525. "onmousedown": U.UF.C.closure(function (obj) {
  2526. //防止拖动图标即打开了桌面应用
  2527. U.MD.D.click(this, obj);
  2528. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2529. "onclick": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_BSDNSteacherDesktopIconInfo[i]])
  2533. }, _frag); //
  2534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2537. }
  2538. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2539. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2540. _content = $$("div", {
  2541. className: "U_MD_D_KO",
  2542. "onmousedown": U.UF.C.closure(function (obj) {
  2543. //防止拖动图标即打开了桌面应用
  2544. U.MD.D.click(this, obj);
  2545. }, [_scnuaiAdminDeskIconInfo[i]]),
  2546. "onclick": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_scnuaiAdminDeskIconInfo[i]])
  2550. }, _frag); //
  2551. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2552. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2553. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2554. }
  2555. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2556. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2557. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2558. continue
  2559. }
  2560. _content = $$("div", {
  2561. className: "U_MD_D_KO",
  2562. "onmousedown": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_jccssylTeacherDeskIconInfo[i]]),
  2566. "onclick": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_jccssylTeacherDeskIconInfo[i]])
  2570. }, _frag); //
  2571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2574. }
  2575. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2576. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2577. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2578. continue
  2579. }
  2580. _content = $$("div", {
  2581. className: "U_MD_D_KO",
  2582. "onmousedown": U.UF.C.closure(function (obj) {
  2583. //防止拖动图标即打开了桌面应用
  2584. U.MD.D.click(this, obj);
  2585. }, [_caleTeacherDeskIconInfo[i]]),
  2586. "onclick": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_caleTeacherDeskIconInfo[i]])
  2590. }, _frag); //
  2591. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2592. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2593. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2594. }
  2595. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2596. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2597. _content = $$("div", {
  2598. className: "U_MD_D_KO",
  2599. "onmousedown": U.UF.C.closure(function (obj) {
  2600. //防止拖动图标即打开了桌面应用
  2601. U.MD.D.click(this, obj);
  2602. }, [_tpcOrganizerDeskIconInfo[i]]),
  2603. "onclick": U.UF.C.closure(function (obj) {
  2604. //防止拖动图标即打开了桌面应用
  2605. U.MD.D.click(this, obj);
  2606. }, [_tpcOrganizerDeskIconInfo[i]])
  2607. }, _frag); //
  2608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2611. }
  2612. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2613. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2614. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2615. continue
  2616. }
  2617. _content = $$("div", {
  2618. className: "U_MD_D_KO",
  2619. "onmousedown": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_tpcTeacherDeskIconInfo[i]]),
  2623. "onclick": U.UF.C.closure(function (obj) {
  2624. //防止拖动图标即打开了桌面应用
  2625. U.MD.D.click(this, obj);
  2626. }, [_tpcTeacherDeskIconInfo[i]])
  2627. }, _frag); //
  2628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2631. }
  2632. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2633. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2634. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2635. continue
  2636. }
  2637. _content = $$("div", {
  2638. className: "U_MD_D_KO",
  2639. "onmousedown": U.UF.C.closure(function (obj) {
  2640. //防止拖动图标即打开了桌面应用
  2641. U.MD.D.click(this, obj);
  2642. }, [_teacherDesktopIconInfo2[i]]),
  2643. "onclick": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_teacherDesktopIconInfo2[i]])
  2647. }, _frag); //
  2648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2651. }
  2652. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2653. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2654. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2655. continue
  2656. }
  2657. _content = $$("div", {
  2658. className: "U_MD_D_KO",
  2659. "onmousedown": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_thuioeTeacherDeskIconInfo[i]]),
  2663. "onclick": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_thuioeTeacherDeskIconInfo[i]])
  2667. }, _frag); //
  2668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2671. }
  2672. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2673. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2674. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2675. continue
  2676. }
  2677. _content = $$("div", {
  2678. className: "U_MD_D_KO",
  2679. "onmousedown": U.UF.C.closure(function (obj) {
  2680. //防止拖动图标即打开了桌面应用
  2681. U.MD.D.click(this, obj);
  2682. }, [_lotechTeacherDeskIconInfo[i]]),
  2683. "onclick": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_lotechTeacherDeskIconInfo[i]])
  2687. }, _frag); //
  2688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2691. }//
  2692. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2693. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2694. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2695. continue
  2696. }
  2697. _content = $$("div", {
  2698. className: "U_MD_D_KO",
  2699. "onmousedown": U.UF.C.closure(function (obj) {
  2700. //防止拖动图标即打开了桌面应用
  2701. U.MD.D.click(this, obj);
  2702. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2703. "onclick": U.UF.C.closure(function (obj) {
  2704. //防止拖动图标即打开了桌面应用
  2705. U.MD.D.click(this, obj);
  2706. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2707. }, _frag); //
  2708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2711. }
  2712. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2713. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2714. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2715. continue
  2716. }
  2717. _content = $$("div", {
  2718. className: "U_MD_D_KO",
  2719. "onmousedown": U.UF.C.closure(function (obj) {
  2720. //防止拖动图标即打开了桌面应用
  2721. U.MD.D.click(this, obj);
  2722. }, [_siesTeacherDeskIconInfo[i]]),
  2723. "onclick": U.UF.C.closure(function (obj) {
  2724. //防止拖动图标即打开了桌面应用
  2725. U.MD.D.click(this, obj);
  2726. }, [_siesTeacherDeskIconInfo[i]])
  2727. }, _frag); //
  2728. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2729. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2730. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2731. }
  2732. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2733. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2734. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2735. continue
  2736. }
  2737. _content = $$("div", {
  2738. className: "U_MD_D_KO",
  2739. "onmousedown": U.UF.C.closure(function (obj) {
  2740. //防止拖动图标即打开了桌面应用
  2741. U.MD.D.click(this, obj);
  2742. }, [_guzmsTeacherDeskIconInfo[i]]),
  2743. "onclick": U.UF.C.closure(function (obj) {
  2744. //防止拖动图标即打开了桌面应用
  2745. U.MD.D.click(this, obj);
  2746. }, [_guzmsTeacherDeskIconInfo[i]])
  2747. }, _frag); //
  2748. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2749. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2750. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2751. }
  2752. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2753. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2754. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2755. continue
  2756. }
  2757. _content = $$("div", {
  2758. className: "U_MD_D_KO",
  2759. "onmousedown": U.UF.C.closure(function (obj) {
  2760. //防止拖动图标即打开了桌面应用
  2761. U.MD.D.click(this, obj);
  2762. }, [_longhuaTeacherDeskIconInfo[i]]),
  2763. "onclick": U.UF.C.closure(function (obj) {
  2764. //防止拖动图标即打开了桌面应用
  2765. U.MD.D.click(this, obj);
  2766. }, [_longhuaTeacherDeskIconInfo[i]])
  2767. }, _frag); //
  2768. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2769. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2770. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2771. }
  2772. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2773. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2774. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2775. continue
  2776. }
  2777. _content = $$("div", {
  2778. className: "U_MD_D_KO",
  2779. "onmousedown": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_ytyTeacherDeskIconInfo[i]]),
  2783. "onclick": U.UF.C.closure(function (obj) {
  2784. //防止拖动图标即打开了桌面应用
  2785. U.MD.D.click(this, obj);
  2786. }, [_ytyTeacherDeskIconInfo[i]])
  2787. }, _frag); //
  2788. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2789. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2790. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2791. }
  2792. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2793. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2794. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2795. continue
  2796. }
  2797. _content = $$("div", {
  2798. className: "U_MD_D_KO",
  2799. "onmousedown": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2803. "onclick": U.UF.C.closure(function (obj) {
  2804. //防止拖动图标即打开了桌面应用
  2805. U.MD.D.click(this, obj);
  2806. }, [_yunhaiTeacherDeskIconInfo[i]])
  2807. }, _frag); //
  2808. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2809. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2810. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2811. } //_hkStudentDeskIconInfo
  2812. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2813. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2814. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2815. continue
  2816. }
  2817. _content = $$("div", {
  2818. className: "U_MD_D_KO",
  2819. "onmousedown": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2823. "onclick": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2827. }, _frag); //
  2828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2831. }
  2832. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2833. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2834. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2835. continue
  2836. }
  2837. _content = $$("div", {
  2838. className: "U_MD_D_KO",
  2839. "onmousedown": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_hkTeacherDeskIconInfo[i]]),
  2843. "onclick": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_hkTeacherDeskIconInfo[i]])
  2847. }, _frag); //
  2848. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2849. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2850. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2851. }
  2852. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2853. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2854. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2855. continue
  2856. }
  2857. _content = $$("div", {
  2858. className: "U_MD_D_KO",
  2859. "onmousedown": U.UF.C.closure(function (obj) {
  2860. //防止拖动图标即打开了桌面应用
  2861. U.MD.D.click(this, obj);
  2862. }, [_hkaceTeacherDeskIconInfo[i]]),
  2863. "onclick": U.UF.C.closure(function (obj) {
  2864. //防止拖动图标即打开了桌面应用
  2865. U.MD.D.click(this, obj);
  2866. }, [_hkaceTeacherDeskIconInfo[i]])
  2867. }, _frag); //
  2868. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2869. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2870. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2871. }
  2872. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2873. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2874. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2875. continue
  2876. }
  2877. _content = $$("div", {
  2878. className: "U_MD_D_KO",
  2879. "onmousedown": U.UF.C.closure(function (obj) {
  2880. //防止拖动图标即打开了桌面应用
  2881. U.MD.D.click(this, obj);
  2882. }, [_cocobizTeacherDeskIconInfo[i]]),
  2883. "onclick": U.UF.C.closure(function (obj) {
  2884. //防止拖动图标即打开了桌面应用
  2885. U.MD.D.click(this, obj);
  2886. }, [_cocobizTeacherDeskIconInfo[i]])
  2887. }, _frag); //
  2888. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2889. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2890. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2891. }
  2892. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2893. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2894. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2895. continue
  2896. }
  2897. _content = $$("div", {
  2898. className: "U_MD_D_KO",
  2899. "onmousedown": U.UF.C.closure(function (obj) {
  2900. //防止拖动图标即打开了桌面应用
  2901. U.MD.D.click(this, obj);
  2902. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2903. "onclick": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2907. }, _frag); //
  2908. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2909. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2910. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2911. }
  2912. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2913. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2914. _content = $$("div", {
  2915. className: "U_MD_D_KO",
  2916. "onmousedown": U.UF.C.closure(function (obj) {
  2917. //防止拖动图标即打开了桌面应用
  2918. U.MD.D.click(this, obj);
  2919. }, [_gdjgAdminDeskIconInfo[i]]),
  2920. "onclick": U.UF.C.closure(function (obj) {
  2921. //防止拖动图标即打开了桌面应用
  2922. U.MD.D.click(this, obj);
  2923. }, [_gdjgAdminDeskIconInfo[i]])
  2924. }, _frag); //
  2925. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2926. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2927. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2928. }
  2929. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2930. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2931. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2932. continue
  2933. }
  2934. _content = $$("div", {
  2935. className: "U_MD_D_KO",
  2936. "onmousedown": U.UF.C.closure(function (obj) {
  2937. //防止拖动图标即打开了桌面应用
  2938. U.MD.D.click(this, obj);
  2939. }, [_gdjgTeacherDeskIconInfo[i]]),
  2940. "onclick": U.UF.C.closure(function (obj) {
  2941. //防止拖动图标即打开了桌面应用
  2942. U.MD.D.click(this, obj);
  2943. }, [_gdjgTeacherDeskIconInfo[i]])
  2944. }, _frag); //
  2945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2948. }
  2949. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2950. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2951. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2952. continue
  2953. }
  2954. _content = $$("div", {
  2955. className: "U_MD_D_KO",
  2956. "onmousedown": U.UF.C.closure(function (obj) {
  2957. //防止拖动图标即打开了桌面应用
  2958. U.MD.D.click(this, obj);
  2959. }, [_szherTeacherDeskIconInfo[i]]),
  2960. "onclick": U.UF.C.closure(function (obj) {
  2961. //防止拖动图标即打开了桌面应用
  2962. U.MD.D.click(this, obj);
  2963. }, [_szherTeacherDeskIconInfo[i]])
  2964. }, _frag); //
  2965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2968. }
  2969. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2970. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2971. _content = $$("div", {
  2972. className: "U_MD_D_KO",
  2973. "onmousedown": U.UF.C.closure(function (obj) {
  2974. //防止拖动图标即打开了桌面应用
  2975. U.MD.D.click(this, obj);
  2976. }, [_heyuannAdminDeskIconInfo[i]]),
  2977. "onclick": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_heyuannAdminDeskIconInfo[i]])
  2981. }, _frag); //
  2982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2985. }
  2986. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2987. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2988. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2989. continue
  2990. }
  2991. _content = $$("div", {
  2992. className: "U_MD_D_KO",
  2993. "onmousedown": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_heyuanTeacherDeskIconInfo[i]]),
  2997. "onclick": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_heyuanTeacherDeskIconInfo[i]])
  3001. }, _frag); //
  3002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3005. } //
  3006. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3007. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3008. _content = $$("div", {
  3009. className: "U_MD_D_KO",
  3010. "onmousedown": U.UF.C.closure(function (obj) {
  3011. //防止拖动图标即打开了桌面应用
  3012. U.MD.D.click(this, obj);
  3013. }, [_dseiAdminDeskIconInfo[i]]),
  3014. "onclick": U.UF.C.closure(function (obj) {
  3015. //防止拖动图标即打开了桌面应用
  3016. U.MD.D.click(this, obj);
  3017. }, [_dseiAdminDeskIconInfo[i]])
  3018. }, _frag); //
  3019. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3020. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3021. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3022. }
  3023. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3024. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3025. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3026. continue
  3027. }
  3028. _content = $$("div", {
  3029. className: "U_MD_D_KO",
  3030. "onmousedown": U.UF.C.closure(function (obj) {
  3031. //防止拖动图标即打开了桌面应用
  3032. U.MD.D.click(this, obj);
  3033. }, [_dseiTeacherDeskIconInfo[i]]),
  3034. "onclick": U.UF.C.closure(function (obj) {
  3035. //防止拖动图标即打开了桌面应用
  3036. U.MD.D.click(this, obj);
  3037. }, [_dseiTeacherDeskIconInfo[i]])
  3038. }, _frag); //
  3039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3042. } //
  3043. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3044. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3045. _content = $$("div", {
  3046. className: "U_MD_D_KO",
  3047. "onmousedown": U.UF.C.closure(function (obj) {
  3048. //防止拖动图标即打开了桌面应用
  3049. U.MD.D.click(this, obj);
  3050. }, [_chjyjAdminDeskIconInfo[i]]),
  3051. "onclick": U.UF.C.closure(function (obj) {
  3052. //防止拖动图标即打开了桌面应用
  3053. U.MD.D.click(this, obj);
  3054. }, [_chjyjAdminDeskIconInfo[i]])
  3055. }, _frag); //
  3056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3059. }//
  3060. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3061. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3062. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3063. continue
  3064. }
  3065. _content = $$("div", {
  3066. className: "U_MD_D_KO",
  3067. "onmousedown": U.UF.C.closure(function (obj) {
  3068. //防止拖动图标即打开了桌面应用
  3069. U.MD.D.click(this, obj);
  3070. }, [_chjyjTeacherDeskIconInfo[i]]),
  3071. "onclick": U.UF.C.closure(function (obj) {
  3072. //防止拖动图标即打开了桌面应用
  3073. U.MD.D.click(this, obj);
  3074. }, [_chjyjTeacherDeskIconInfo[i]])
  3075. }, _frag); //
  3076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3079. }
  3080. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3081. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3082. _content = $$("div", {
  3083. className: "U_MD_D_KO",
  3084. "onmousedown": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_szjkyAdminDeskIconInfo[i]]),
  3088. "onclick": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_szjkyAdminDeskIconInfo[i]])
  3092. }, _frag); //
  3093. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3094. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3095. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3096. }//
  3097. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3098. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3099. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3100. continue
  3101. }
  3102. _content = $$("div", {
  3103. className: "U_MD_D_KO",
  3104. "onmousedown": U.UF.C.closure(function (obj) {
  3105. //防止拖动图标即打开了桌面应用
  3106. U.MD.D.click(this, obj);
  3107. }, [_szjkyTeacherDeskIconInfo[i]]),
  3108. "onclick": U.UF.C.closure(function (obj) {
  3109. //防止拖动图标即打开了桌面应用
  3110. U.MD.D.click(this, obj);
  3111. }, [_szjkyTeacherDeskIconInfo[i]])
  3112. }, _frag); //
  3113. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3114. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3115. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3116. }
  3117. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3118. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3119. _content = $$("div", {
  3120. className: "U_MD_D_KO",
  3121. "onmousedown": U.UF.C.closure(function (obj) {
  3122. //防止拖动图标即打开了桌面应用
  3123. U.MD.D.click(this, obj);
  3124. }, [_futianAdminDeskIconInfo[i]]),
  3125. "onclick": U.UF.C.closure(function (obj) {
  3126. //防止拖动图标即打开了桌面应用
  3127. U.MD.D.click(this, obj);
  3128. }, [_futianAdminDeskIconInfo[i]])
  3129. }, _frag); //
  3130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3133. }
  3134. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3135. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3136. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3137. continue
  3138. }
  3139. _content = $$("div", {
  3140. className: "U_MD_D_KO",
  3141. "onmousedown": U.UF.C.closure(function (obj) {
  3142. //防止拖动图标即打开了桌面应用
  3143. U.MD.D.click(this, obj);
  3144. }, [_futianTeacherDeskIconInfo[i]]),
  3145. "onclick": U.UF.C.closure(function (obj) {
  3146. //防止拖动图标即打开了桌面应用
  3147. U.MD.D.click(this, obj);
  3148. }, [_futianTeacherDeskIconInfo[i]])
  3149. }, _frag); //
  3150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3153. }
  3154. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3155. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3156. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3157. continue
  3158. }
  3159. _content = $$("div", {
  3160. className: "U_MD_D_KO",
  3161. "onmousedown": U.UF.C.closure(function (obj) {
  3162. //防止拖动图标即打开了桌面应用
  3163. U.MD.D.click(this, obj);
  3164. }, [_MingdeTeacherDeskIcon[i]]),
  3165. "onclick": U.UF.C.closure(function (obj) {
  3166. //防止拖动图标即打开了桌面应用
  3167. U.MD.D.click(this, obj);
  3168. }, [_MingdeTeacherDeskIcon[i]])
  3169. }, _frag); //
  3170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3173. }
  3174. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3175. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3176. _content = $$("div", {
  3177. className: "U_MD_D_KO",
  3178. "onmousedown": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_lhsAdminDesktopIconInfo[i]]),
  3182. "onclick": U.UF.C.closure(function (obj) {
  3183. //防止拖动图标即打开了桌面应用
  3184. U.MD.D.click(this, obj);
  3185. }, [_lhsAdminDesktopIconInfo[i]])
  3186. }, _frag); //
  3187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3190. }
  3191. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3192. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3193. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3194. continue
  3195. }
  3196. _content = $$("div", {
  3197. className: "U_MD_D_KO",
  3198. "onmousedown": U.UF.C.closure(function (obj) {
  3199. //防止拖动图标即打开了桌面应用
  3200. U.MD.D.click(this, obj);
  3201. }, [_lhsteacherDesktopIconInfo[i]]),
  3202. "onclick": U.UF.C.closure(function (obj) {
  3203. //防止拖动图标即打开了桌面应用
  3204. U.MD.D.click(this, obj);
  3205. }, [_lhsteacherDesktopIconInfo[i]])
  3206. }, _frag); //
  3207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3210. }
  3211. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3212. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3213. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3214. continue
  3215. }
  3216. _content = $$("div", {
  3217. className: "U_MD_D_KO",
  3218. "onmousedown": U.UF.C.closure(function (obj) {
  3219. //防止拖动图标即打开了桌面应用
  3220. U.MD.D.click(this, obj);
  3221. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3222. "onclick": U.UF.C.closure(function (obj) {
  3223. //防止拖动图标即打开了桌面应用
  3224. U.MD.D.click(this, obj);
  3225. }, [_zhoujiateacherDesktopIconInfo[i]])
  3226. }, _frag); //
  3227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3230. }
  3231. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3232. for (i = 0; i < _hanDeskIcon.length; i++) {
  3233. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3234. continue
  3235. }
  3236. _content = $$("div", {
  3237. className: "U_MD_D_KO",
  3238. "onmousedown": U.UF.C.closure(function (obj) {
  3239. //防止拖动图标即打开了桌面应用
  3240. U.MD.D.click(this, obj);
  3241. }, [_hanDeskIcon[i]]),
  3242. "onclick": U.UF.C.closure(function (obj) {
  3243. //防止拖动图标即打开了桌面应用
  3244. U.MD.D.click(this, obj);
  3245. }, [_hanDeskIcon[i]])
  3246. }, _frag); //
  3247. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3248. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3249. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3250. }
  3251. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3252. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3253. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3254. continue
  3255. }
  3256. _content = $$("div", {
  3257. className: "U_MD_D_KO",
  3258. "onmousedown": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_orgStemDeskIcon[i]]),
  3262. "onclick": U.UF.C.closure(function (obj) {
  3263. //防止拖动图标即打开了桌面应用
  3264. U.MD.D.click(this, obj);
  3265. }, [_orgStemDeskIcon[i]])
  3266. }, _frag); //
  3267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3270. }
  3271. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3272. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3273. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3274. continue
  3275. }
  3276. _content = $$("div", {
  3277. className: "U_MD_D_KO",
  3278. "onmousedown": U.UF.C.closure(function (obj) {
  3279. //防止拖动图标即打开了桌面应用
  3280. U.MD.D.click(this, obj);
  3281. }, [_szulsDeskIcon[i]]),
  3282. "onclick": U.UF.C.closure(function (obj) {
  3283. //防止拖动图标即打开了桌面应用
  3284. U.MD.D.click(this, obj);
  3285. }, [_szulsDeskIcon[i]])
  3286. }, _frag); //
  3287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3290. }
  3291. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3292. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3293. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3294. continue
  3295. }
  3296. _content = $$("div", {
  3297. className: "U_MD_D_KO",
  3298. "onmousedown": U.UF.C.closure(function (obj) {
  3299. //防止拖动图标即打开了桌面应用
  3300. U.MD.D.click(this, obj);
  3301. }, [_orgDesktopIconInfo[i]]),
  3302. "onclick": U.UF.C.closure(function (obj) {
  3303. //防止拖动图标即打开了桌面应用
  3304. U.MD.D.click(this, obj);
  3305. }, [_orgDesktopIconInfo[i]])
  3306. }, _frag); //
  3307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3310. }
  3311. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3312. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3313. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3314. continue
  3315. }
  3316. _content = $$("div", {
  3317. className: "U_MD_D_KO",
  3318. "onmousedown": U.UF.C.closure(function (obj) {
  3319. //防止拖动图标即打开了桌面应用
  3320. U.MD.D.click(this, obj);
  3321. }, [_schoolDesktopIconInfo[i]]),
  3322. "onclick": U.UF.C.closure(function (obj) {
  3323. //防止拖动图标即打开了桌面应用
  3324. U.MD.D.click(this, obj);
  3325. }, [_schoolDesktopIconInfo[i]])
  3326. }, _frag); //
  3327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3330. }
  3331. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3332. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3333. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3334. continue
  3335. }
  3336. _content = $$("div", {
  3337. className: "U_MD_D_KO",
  3338. "onmousedown": U.UF.C.closure(function (obj) {
  3339. //防止拖动图标即打开了桌面应用
  3340. U.MD.D.click(this, obj);
  3341. }, [_GMteacherDesktopIconInfo[i]]),
  3342. "onclick": U.UF.C.closure(function (obj) {
  3343. //防止拖动图标即打开了桌面应用
  3344. U.MD.D.click(this, obj);
  3345. }, [_GMteacherDesktopIconInfo[i]])
  3346. }, _frag); //
  3347. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3348. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3349. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3350. }
  3351. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3352. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3353. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3354. continue
  3355. }
  3356. _content = $$("div", {
  3357. className: "U_MD_D_KO",
  3358. "onmousedown": U.UF.C.closure(function (obj) {
  3359. //防止拖动图标即打开了桌面应用
  3360. U.MD.D.click(this, obj);
  3361. }, [_SONGteacherDesktopIconInfo[i]]),
  3362. "onclick": U.UF.C.closure(function (obj) {
  3363. //防止拖动图标即打开了桌面应用
  3364. U.MD.D.click(this, obj);
  3365. }, [_SONGteacherDesktopIconInfo[i]])
  3366. }, _frag); //
  3367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3370. }
  3371. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3372. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3373. _content = $$("div", {
  3374. className: "U_MD_D_KO",
  3375. "onmousedown": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_GMstudentDesktopIconInfo[i]]),
  3379. "onclick": U.UF.C.closure(function (obj) {
  3380. //防止拖动图标即打开了桌面应用
  3381. U.MD.D.click(this, obj);
  3382. }, [_GMstudentDesktopIconInfo[i]])
  3383. }, _frag); //
  3384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3387. }
  3388. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3389. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3390. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3391. continue
  3392. }
  3393. _content = $$("div", {
  3394. className: "U_MD_D_KO",
  3395. "onmousedown": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_tcTeacherDeskIconInfo[i]]),
  3399. "onclick": U.UF.C.closure(function (obj) {
  3400. //防止拖动图标即打开了桌面应用
  3401. U.MD.D.click(this, obj);
  3402. }, [_tcTeacherDeskIconInfo[i]])
  3403. }, _frag); //
  3404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3407. }
  3408. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3409. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3410. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3411. continue
  3412. }
  3413. _content = $$("div", {
  3414. className: "U_MD_D_KO",
  3415. "onmousedown": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_tcOrganizerDeskIconInfo[i]]),
  3419. "onclick": U.UF.C.closure(function (obj) {
  3420. //防止拖动图标即打开了桌面应用
  3421. U.MD.D.click(this, obj);
  3422. }, [_tcOrganizerDeskIconInfo[i]])
  3423. }, _frag); //
  3424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3427. }
  3428. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3429. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3430. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3431. continue
  3432. }
  3433. _content = $$("div", {
  3434. className: "U_MD_D_KO",
  3435. "onmousedown": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_szscTeacherDeskIconInfo[i]]),
  3439. "onclick": U.UF.C.closure(function (obj) {
  3440. //防止拖动图标即打开了桌面应用
  3441. U.MD.D.click(this, obj);
  3442. }, [_szscTeacherDeskIconInfo[i]])
  3443. }, _frag); //
  3444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3447. }
  3448. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3449. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3450. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3451. continue
  3452. }
  3453. _content = $$("div", {
  3454. className: "U_MD_D_KO",
  3455. "onmousedown": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_szscOrganizerDeskIconInfo[i]]),
  3459. "onclick": U.UF.C.closure(function (obj) {
  3460. //防止拖动图标即打开了桌面应用
  3461. U.MD.D.click(this, obj);
  3462. }, [_szscOrganizerDeskIconInfo[i]])
  3463. }, _frag); //
  3464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3467. }
  3468. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3469. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3470. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3471. continue
  3472. }
  3473. _content = $$("div", {
  3474. className: "U_MD_D_KO",
  3475. "onmousedown": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_nsfxTeacherDeskIconInfo[i]]),
  3479. "onclick": U.UF.C.closure(function (obj) {
  3480. //防止拖动图标即打开了桌面应用
  3481. U.MD.D.click(this, obj);
  3482. }, [_nsfxTeacherDeskIconInfo[i]])
  3483. }, _frag); //
  3484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3487. }
  3488. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3489. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3490. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3491. continue
  3492. }
  3493. _content = $$("div", {
  3494. className: "U_MD_D_KO",
  3495. "onmousedown": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_stiaTeacherDeskIconInfo[i]]),
  3499. "onclick": U.UF.C.closure(function (obj) {
  3500. //防止拖动图标即打开了桌面应用
  3501. U.MD.D.click(this, obj);
  3502. }, [_stiaTeacherDeskIconInfo[i]])
  3503. }, _frag); //
  3504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3507. }
  3508. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3509. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3510. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3511. continue
  3512. }
  3513. _content = $$("div", {
  3514. className: "U_MD_D_KO",
  3515. "onmousedown": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_szdjgTeacherDeskIconInfo[i]]),
  3519. "onclick": U.UF.C.closure(function (obj) {
  3520. //防止拖动图标即打开了桌面应用
  3521. U.MD.D.click(this, obj);
  3522. }, [_szdjgTeacherDeskIconInfo[i]])
  3523. }, _frag); //
  3524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3527. }
  3528. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3529. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3530. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3531. continue
  3532. }
  3533. _content = $$("div", {
  3534. className: "U_MD_D_KO",
  3535. "onmousedown": U.UF.C.closure(function (obj) {
  3536. //防止拖动图标即打开了桌面应用
  3537. U.MD.D.click(this, obj);
  3538. }, [_x010607TeacherDeskIconInfo[i]]),
  3539. "onclick": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_x010607TeacherDeskIconInfo[i]])
  3543. }, _frag); //
  3544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3547. }
  3548. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3549. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3550. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3551. continue
  3552. }
  3553. _content = $$("div", {
  3554. className: "U_MD_D_KO",
  3555. "onmousedown": U.UF.C.closure(function (obj) {
  3556. //防止拖动图标即打开了桌面应用
  3557. U.MD.D.click(this, obj);
  3558. }, [_xhlyTeacherDeskIconInfo[i]]),
  3559. "onclick": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_xhlyTeacherDeskIconInfo[i]])
  3563. }, _frag); //
  3564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3567. }
  3568. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3569. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3570. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3571. continue
  3572. }
  3573. _content = $$("div", {
  3574. className: "U_MD_D_KO",
  3575. "onmousedown": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3579. "onclick": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3583. }, _frag); //
  3584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3587. }
  3588. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3589. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3590. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3591. continue
  3592. }
  3593. _content = $$("div", {
  3594. className: "U_MD_D_KO",
  3595. "onmousedown": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_x010503TeacherDeskIconInfo[i]]),
  3599. "onclick": U.UF.C.closure(function (obj) {
  3600. //防止拖动图标即打开了桌面应用
  3601. U.MD.D.click(this, obj);
  3602. }, [_x010503TeacherDeskIconInfo[i]])
  3603. }, _frag); //
  3604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3607. }
  3608. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  3609. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  3610. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3611. continue
  3612. }
  3613. _content = $$("div", {
  3614. className: "U_MD_D_KO",
  3615. "onmousedown": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_x010204TeacherDeskIconInfo[i]]),
  3619. "onclick": U.UF.C.closure(function (obj) {
  3620. //防止拖动图标即打开了桌面应用
  3621. U.MD.D.click(this, obj);
  3622. }, [_x010204TeacherDeskIconInfo[i]])
  3623. }, _frag); //
  3624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  3626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  3627. }
  3628. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  3629. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  3630. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3631. continue
  3632. }
  3633. _content = $$("div", {
  3634. className: "U_MD_D_KO",
  3635. "onmousedown": U.UF.C.closure(function (obj) {
  3636. //防止拖动图标即打开了桌面应用
  3637. U.MD.D.click(this, obj);
  3638. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  3639. "onclick": U.UF.C.closure(function (obj) {
  3640. //防止拖动图标即打开了桌面应用
  3641. U.MD.D.click(this, obj);
  3642. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  3643. }, _frag); //
  3644. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3645. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  3646. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  3647. }
  3648. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3649. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3650. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3651. continue
  3652. }
  3653. _content = $$("div", {
  3654. className: "U_MD_D_KO",
  3655. "onmousedown": U.UF.C.closure(function (obj) {
  3656. //防止拖动图标即打开了桌面应用
  3657. U.MD.D.click(this, obj);
  3658. }, [_x010608TeacherDeskIconInfo[i]]),
  3659. "onclick": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_x010608TeacherDeskIconInfo[i]])
  3663. }, _frag); //
  3664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  3666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  3667. }
  3668. } else {
  3669. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3670. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3671. continue
  3672. }
  3673. _content = $$("div", {
  3674. className: "U_MD_D_KO",
  3675. "onmousedown": U.UF.C.closure(function (obj) {
  3676. //防止拖动图标即打开了桌面应用
  3677. U.MD.D.click(this, obj);
  3678. }, [_teacherDesktopIconInfo[i]]),
  3679. "onclick": U.UF.C.closure(function (obj) {
  3680. //防止拖动图标即打开了桌面应用
  3681. U.MD.D.click(this, obj);
  3682. }, [_teacherDesktopIconInfo[i]])
  3683. }, _frag); //
  3684. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3685. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3686. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3687. }
  3688. }
  3689. } else {
  3690. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3691. _content = $$("div", {
  3692. className: "U_MD_D_KO",
  3693. style: { 'width': '124px', 'height': '145px' },
  3694. "onmousedown": U.UF.C.closure(function (obj) {
  3695. //防止拖动图标即打开了桌面应用
  3696. U.MD.D.click(this, obj);
  3697. }, [_easyDesktopIconInfo[i]]),
  3698. "onclick": U.UF.C.closure(function (obj) {
  3699. //防止拖动图标即打开了桌面应用
  3700. U.MD.D.click(this, obj);
  3701. }, [_easyDesktopIconInfo[i]])
  3702. }, _frag); //
  3703. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3704. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3705. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3706. }
  3707. }
  3708. if (type == 1) {
  3709. //加载好后给图标定位
  3710. U.MD.D.iconPostion($(_frag).Child());
  3711. } else {
  3712. //加载好后给图标定位
  3713. U.MD.D.iconPostion2($(_frag).Child());
  3714. }
  3715. //把图标加载到页面
  3716. el.appendChild(_frag);
  3717. }
  3718. /**
  3719. * 显示任务栏
  3720. *
  3721. * @param {element} 桌面元素
  3722. */
  3723. U.MD.D.I.displayTaskbar = function (el) {
  3724. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3725. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3726. //任务栏位置变化
  3727. U.selectEl(el).css({ "bottom": "0px" });
  3728. //桌面位置变话
  3729. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3730. }
  3731. }
  3732. //#region 桌面图标拖动逻辑
  3733. /**
  3734. * 桌面排列图标
  3735. *
  3736. * @param {element} 桌面元素
  3737. * @param {object} 上下相距的距离
  3738. * @param {object} 左右相距的距离
  3739. * @return {object} 命名空间
  3740. */
  3741. U.MD.D.iconPostion = function (childs, top, left) {
  3742. var i; //用于循环处理
  3743. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3744. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3745. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3746. for (i = 0; i < childs.length; i++) {
  3747. //如果竖排top超过了范围处理
  3748. if (top + 95 > US.height - 10) {
  3749. //left超过了页面范围处理,则向上重叠打印处理
  3750. if ((left + 180) > US.width) {
  3751. top -= 110;
  3752. left -= 90;
  3753. }
  3754. //没有超过范围,那么left+90添加到下一个竖排打印
  3755. else {
  3756. left += 90;
  3757. top = 15;
  3758. };
  3759. }
  3760. //给图标的位置赋值
  3761. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3762. if (i < childs.length - 1) {
  3763. //页面图标每次向下加95
  3764. top += 95;
  3765. }
  3766. }
  3767. //返回最后调用的图标的位置
  3768. return [top, left];
  3769. }
  3770. /**
  3771. * 桌面排列图标
  3772. *
  3773. * @param {element} 桌面元素
  3774. * @param {object} 上下相距的距离
  3775. * @param {object} 左右相距的距离
  3776. * @return {object} 命名空间
  3777. */
  3778. U.MD.D.iconPostion2 = function (childs, top, left) {
  3779. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3780. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3781. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3782. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3783. for (i = 0; i < childs.length; i++) {
  3784. //如果竖排top超过了范围处理
  3785. if (left + 150 > US.width - 10) {
  3786. //left超过了页面范围处理,则向上重叠打印处理
  3787. if ((top + 180) > US.Height) {
  3788. top -= 150;
  3789. left -= 150;
  3790. }
  3791. //没有超过范围,那么left+90添加到下一个竖排打印
  3792. else {
  3793. top += 150;
  3794. left = ol;
  3795. };
  3796. }
  3797. //给图标的位置赋值
  3798. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3799. if (i < childs.length - 1) {
  3800. //页面图标每次向下加95
  3801. left += 150;
  3802. }
  3803. }
  3804. //返回最后调用的图标的位置
  3805. return [top, left];
  3806. }
  3807. /**
  3808. * 桌面点击事件逻辑
  3809. *
  3810. * @param {element} 桌面元素
  3811. * @param {object} 上下相距的距离
  3812. * @param {object} 左右相距的距离
  3813. * @return {object} 命名空间
  3814. */
  3815. U.MD.D.click = function (el, obj) {
  3816. var _buttonnumber = event.button; //点击的按钮的事件值
  3817. var _userinfo = US.userInfo;
  3818. U.UF.EV.stopBubble(); //阻止向上冒泡
  3819. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3820. if (_buttonnumber < 2) {
  3821. //如果是click事件的处理
  3822. if (event.type == "click") {
  3823. //如果元素在mousemove事件中没有移动则出发click事件
  3824. if (!U.MD.D.I.IsDrag) {
  3825. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3826. U.alert("请先登录您的账号!");
  3827. setTimeout(() => {
  3828. U.MD.U.L.login();
  3829. }, 2000);
  3830. } else {
  3831. //打开应用处理
  3832. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3833. }
  3834. }
  3835. }
  3836. //如果是mouse事件的处理
  3837. else {
  3838. if (US.Config.type == '1') {
  3839. //拖动处理,添加拖动和拖动结束事件
  3840. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3841. }
  3842. }
  3843. U.MD.D.I.IsDrag = false;
  3844. }
  3845. }
  3846. /**
  3847. * 拖动的处理
  3848. *
  3849. */
  3850. U.MD.D.iconMove = function () {
  3851. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3852. U.MD.D.I.IsDrag = true;
  3853. }
  3854. /**
  3855. * 拖动结束后,这里是定位处理,以网状的形式定位
  3856. *
  3857. * @param {element} 拖动的元素
  3858. * @return {object} 命名空间
  3859. */
  3860. U.MD.D.iconUp = function (el) {
  3861. var _top = 15,
  3862. _left = 20,
  3863. _margin,
  3864. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3865. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3866. if (_positioninfo["OT"] > 15) {
  3867. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3868. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3869. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3870. }
  3871. if (_positioninfo["OL"] > 20) {
  3872. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3873. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3874. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3875. }
  3876. //while循环判断么一个重叠的元素
  3877. do {
  3878. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3879. _top = _positioninfo[0] + 95; //得到定位后的top
  3880. _left = _positioninfo[1]; //得到定位后的left
  3881. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3882. }
  3883. /**
  3884. * 判断拖动后图标是否重叠
  3885. *
  3886. * @param {element} 拖动的元素
  3887. * @param {element} 桌面所有的元素
  3888. * @param {array} 拖动元素的位置
  3889. ----------[0] 上 top
  3890. ----------[1] 左 left
  3891. * @return {object} 命名空间
  3892. */
  3893. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3894. //循环所有的图标
  3895. for (var i = 0; i < childs.length; i++) {
  3896. //判断有没有和该图标诶子重叠的元素
  3897. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3898. return childs[i]; //如果有返回
  3899. }
  3900. }
  3901. }
  3902. //#endregion
  3903. //#endregion
  3904. //#region 桌面应用
  3905. /**
  3906. * 打开应用
  3907. *
  3908. * @param {string} 类型
  3909. -----------------Disk 网盘系统
  3910. -----------------PDisk 学习系统网盘
  3911. -----------------Poto 图片
  3912. -----------------Video 视频
  3913. -----------------Music 音乐
  3914. -----------------Word word
  3915. -----------------Excel excel
  3916. -----------------Txt 记事本
  3917. -----------------PB 学习系统
  3918. -----------------Blog 朋友圈系统
  3919. -----------------FTP ftp系统
  3920. -----------------Group 好友群
  3921. -----------------SY 首页系统
  3922. -----------------Set 个人设置
  3923. -----------------XSet 系统设置
  3924. -----------------App 我们所有的app
  3925. -----------------BC c.1473.cn 平台
  3926. -----------------CWeb d.1473.cn 变成平台
  3927. -----------------其他的外联系统 我们统一用iframe打开
  3928. * @param {array} 类型
  3929. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3930. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3931. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3932. 如果第一个参数为其他,则无第二个参数
  3933. * @returns {array}
  3934. */
  3935. window.addEventListener('message', function (e) { // 监听 message 事件
  3936. // alert(e.data.type);
  3937. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3938. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3939. //3是展示全部阶段 2学生 1老师 4专家
  3940. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3941. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3942. //3是展示全部阶段 2学生 1老师 4专家
  3943. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3944. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3945. //3是展示全部阶段 2学生 1老师 4专家
  3946. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3947. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3948. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3949. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3950. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3951. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3952. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3953. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3954. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3955. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3956. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3957. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3958. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3959. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3960. //3是展示全部阶段 2学生 1老师 4专家
  3961. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3962. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3963. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3964. U.MD.D.I.selectUser();
  3965. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3966. var _formel = document.getElementById("study");
  3967. U.UF.F.windowZooming(_formel);
  3968. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3969. var _formel = document.getElementById("studyDetail");
  3970. U.UF.F.windowZooming(_formel);
  3971. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3972. var _formel = document.getElementById("studyDetail");
  3973. U.UF.F.windowZooming(_formel);
  3974. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3975. var _formel = document.getElementById("studentStudy");
  3976. U.UF.F.windowZooming(_formel);
  3977. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3978. // var _formel = document.getElementById("study");
  3979. //如果最大化了,那么就把他缩小
  3980. // if (_formel.ismaximize) {
  3981. // return;
  3982. // }
  3983. // U.UF.F.windowZooming(_formel);
  3984. // U.UF.F.topWindow(_formel);
  3985. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3986. // var _formel = document.getElementById("studyDetail");
  3987. //如果最大化了,那么就把他缩小
  3988. // if (_formel.ismaximize) {
  3989. // return;
  3990. // }
  3991. // U.UF.F.windowZooming(_formel);
  3992. // U.UF.F.topWindow(_formel);
  3993. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3994. // var _formel = document.getElementById("studentStudy");
  3995. // if (_formel.ismaximize) {
  3996. // return;
  3997. // }
  3998. // U.UF.F.windowZooming(_formel);
  3999. // U.UF.F.topWindow(_formel);
  4000. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4001. var _formel = document.getElementById("study");
  4002. // if (_formel.ismaximize) {
  4003. // return;
  4004. // }
  4005. // U.UF.F.windowZooming(_formel);
  4006. U.UF.F.topWindow(_formel);
  4007. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4008. var _formel = document.getElementById("studentIndex");
  4009. U.UF.F.windowZooming(_formel);
  4010. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4011. var _formel = document.getElementById("studyDetailS");
  4012. U.UF.F.windowZooming(_formel);
  4013. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4014. var _formel = document.getElementById("studioIndex");
  4015. U.UF.F.windowZooming(_formel);
  4016. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4017. var _formel = document.getElementById("studyDetailStudio");
  4018. U.UF.F.windowZooming(_formel);
  4019. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4020. var _formel = document.getElementById("studyDetailStudio");
  4021. U.UF.F.windowZooming(_formel);
  4022. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4023. var _formel = document.getElementById("studyDetailNT");
  4024. U.UF.F.windowZooming(_formel);
  4025. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4026. var _formel = document.getElementById("studyDetailS");
  4027. U.UF.F.windowZooming(_formel);
  4028. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4029. var _formel = document.getElementById("studyDetailS");
  4030. U.UF.F.topWindow(_formel);
  4031. } else if (e.data.tools && e.data.tools == "1") {
  4032. // U.MD.D.I.openApplication("whiteboard")
  4033. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4034. } else if (e.data.tools && e.data.tools == "2") {
  4035. U.MD.D.I.openApplication("note")
  4036. } else if (e.data.tools && e.data.tools == "3") {
  4037. // U.MD.D.I.openApplication("mind")
  4038. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4039. } else if (e.data.tools && e.data.tools == "4") {
  4040. U.MD.D.I.openApplication("investigation")
  4041. } else if (e.data.tools && e.data.tools == "6") {
  4042. // U.MD.D.I.openApplication("doc")
  4043. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4044. } else if (e.data.tools && e.data.tools == "7") {
  4045. // U.MD.D.I.openApplication("mindNetwork")
  4046. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4047. } else if (e.data.tools && e.data.tools == "8") {
  4048. U.MD.D.I.openApplication("library")
  4049. } else if (e.data.tools && e.data.tools == "17") {
  4050. U.MD.D.I.openApplication("stuLibrary")
  4051. } else if (e.data.tools && e.data.tools == "18") {
  4052. U.MD.D.I.openApplication("train")
  4053. } else if (e.data.tools && e.data.tools == "21") {
  4054. U.MD.D.I.openApplication("program")
  4055. } else if (e.data.tools && e.data.tools == "22") {
  4056. U.MD.D.I.openApplication("AIprogram2")
  4057. } else if (e.data.tools && e.data.tools == "23") {
  4058. U.MD.D.I.openApplication("Pythonprogram")
  4059. } else if (e.data.tools && e.data.tools == "24") {
  4060. U.MD.D.I.openApplication("AIprogram")
  4061. } else if (e.data.tools && e.data.tools == "25") {
  4062. U.MD.D.I.openApplication("sys")
  4063. } else if (e.data.tools && e.data.tools == "26") {
  4064. // U.MD.D.I.openApplication("courseDesign")
  4065. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4066. } else if (e.data.tools && e.data.tools == "31") {
  4067. U.MD.D.I.openApplication("netWorkPanel")
  4068. } else if (e.data.tools && e.data.tools == "32") {
  4069. U.MD.D.I.openApplication("codeEdit")
  4070. } else if (e.data.tools && e.data.tools == "57") {
  4071. U.MD.D.I.openApplication("CocoPi")
  4072. } else if (e.data.tools && e.data.tools == "63") {
  4073. U.MD.D.I.openApplication("Wood")
  4074. } else if (e.data.tools && e.data.tools == "58") {
  4075. U.MD.D.I.openApplication("car")
  4076. } else if (e.data.tools && e.data.tools == "59") {
  4077. U.MD.D.I.openApplication("lineSearch")
  4078. } else if (e.data.tools && e.data.tools == "60") {
  4079. U.MD.D.I.openApplication("deepLearning")
  4080. } else if (e.data.tools && e.data.tools == "61") {
  4081. U.MD.D.I.openApplication("allHistory")
  4082. } else if (e.data.tools && e.data.tools == "28") {
  4083. U.MD.D.I.openApplication("translation")
  4084. } else if (e.data.tools && e.data.tools == "37") {
  4085. U.MD.D.I.openApplication("mohe")
  4086. } else if (e.data.tools && e.data.tools == "38") {
  4087. U.MD.D.I.openApplication("24game")
  4088. } else if (e.data.tools && e.data.tools == "39") {
  4089. U.MD.D.I.openApplication("GeoGebra")
  4090. } else if (e.data.tools && e.data.tools == "43") {
  4091. U.MD.D.I.openApplication("studentEvaluate")
  4092. } else if (e.data.tools && e.data.tools == "44") {
  4093. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4094. } else if (e.data.tools && e.data.tools == "46") {
  4095. U.MD.D.I.openApplication("project")
  4096. } else if (e.data.tools && e.data.tools == "71") {
  4097. U.MD.D.I.openApplication("aigptCourse")
  4098. } else if (e.data.tools && e.data.tools == "1s") {
  4099. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4100. } else if (e.data.tools && e.data.tools == "3s") {
  4101. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4102. } else if (e.data.tools && e.data.tools == "6s") {
  4103. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4104. } else if (e.data.tools && e.data.tools == "1studio") {
  4105. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4106. } else if (e.data.tools && e.data.tools == "3studio") {
  4107. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4108. } else if (e.data.tools && e.data.tools == "6studio") {
  4109. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4110. } else if (e.data.tools && e.data.tools == "3y") {
  4111. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4112. } else if (e.data.tools && e.data.tools == "1y") {
  4113. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4114. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4115. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4116. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4117. U.MD.D.I.openApplication("AIAnalyse")
  4118. } else if (e.data.tools && e.data.tools == "1teacher") {
  4119. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4120. } else if (e.data.tools && e.data.tools == "3teacher") {
  4121. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4122. } else if (e.data.tools && e.data.tools == "7teacher") {
  4123. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4124. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4125. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4126. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4127. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4128. } else if (e.data.tools && e.data.tools == "1E") {
  4129. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4130. } else if (e.data.tools && e.data.tools == "3E") {
  4131. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4132. } else if (e.data.tools && e.data.tools == "57y") {
  4133. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4134. } else if (e.data.tools && e.data.tools == "57u") {
  4135. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4136. } else if (e.data.tools && e.data.tools == "57teacher") {
  4137. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4138. } else if (e.data.tools && e.data.tools == "64") {
  4139. U.MD.D.I.openApplication("AIChat")
  4140. } else if (e.data.tools && e.data.tools == "66") {
  4141. U.MD.D.I.openApplication("formulaEdi")
  4142. } else if (e.data.tools && e.data.tools == "67") {
  4143. U.MD.D.I.openApplication("molStr")
  4144. } else if (e.data.tools && e.data.tools == "68") {
  4145. U.MD.D.I.openApplication("timeAxis")
  4146. } else if (e.data.tools && e.data.tools == "openCourse") {
  4147. let _data = {
  4148. typea: e.data.typea || '',
  4149. typeb: e.data.typeb || '',
  4150. typed: e.data.typed || '',
  4151. }
  4152. U.MD.D.I.openInApplication("index", _data)
  4153. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4154. let _data = {
  4155. classid: e.data.classid || '',
  4156. }
  4157. U.MD.D.I.openInApplication("dataClass", _data)
  4158. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4159. let _data = {
  4160. cid: e.data.cid || '',
  4161. gid: e.data.gid || '',
  4162. }
  4163. U.MD.D.I.openInApplication("opencCscl", _data)
  4164. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4165. U.MD.D.I.openApplication("dataBoardTest")
  4166. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4167. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4168. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4169. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4170. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4171. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4172. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4173. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4174. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4175. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4176. }else if (e.data.tools && e.data.tools == "loginSz") {
  4177. U.MD.D.I.openInApplication("loginSz")
  4178. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4179. if($('#classroom_observation_board')[0]){
  4180. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4181. }
  4182. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4183. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4184. if($('#classroom_observation_ob_comment')[0]){
  4185. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4186. }
  4187. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4188. }
  4189. });
  4190. U.MD.D.I.selectUser = function () {
  4191. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4192. if (res.value[0].length > 0) {
  4193. US.userInfo = res.value[0][0];
  4194. $(".userName")[0].innerHTML = US.userInfo.username;
  4195. }
  4196. }, [], { "type": "GET", "withCredentials": true });
  4197. }
  4198. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4199. var _userinfo = US.userInfo, //登录用户信息
  4200. _userid = US.userInfo.userid, //登录用户id
  4201. _oid = _userinfo.organizeid,
  4202. _type = US.userInfo.type,
  4203. _org = US.userInfo.org,
  4204. _role = US.userInfo.role,
  4205. _classId = US.userInfo.classid;
  4206. if (_type == 4) {
  4207. tType = 4
  4208. }
  4209. switch (str) {
  4210. case "studyDetailNT": //无终端模式
  4211. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4212. setTimeout(() => {
  4213. U.MD.U.L.login();
  4214. }, 2000);
  4215. } else {
  4216. _formdiv = new U.UF.UI.form(
  4217. "课程详情",
  4218. $$("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 }), {
  4219. "id": "studyDetailNT",
  4220. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4221. "onresize": function () { }
  4222. }, {
  4223. closecallback: function () { }
  4224. }, { "style": { "height": "36px" } }).form; //创建窗体
  4225. _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); } }
  4226. break;
  4227. }
  4228. case "studyDetail":
  4229. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4230. setTimeout(() => {
  4231. U.MD.U.L.login();
  4232. }, 2000);
  4233. } else {
  4234. _formdiv = new U.UF.UI.form(
  4235. "课程详情",
  4236. $$("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 }), {
  4237. "id": "studyDetail",
  4238. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4239. "onresize": function () { }
  4240. }, {
  4241. closecallback: function () { }
  4242. }, { "style": { "height": "36px" } }).form; //创建窗体
  4243. _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); } }
  4244. break;
  4245. }
  4246. case "studyDetailTrain":
  4247. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4248. setTimeout(() => {
  4249. U.MD.U.L.login();
  4250. }, 2000);
  4251. } else {
  4252. _formdiv = new U.UF.UI.form(
  4253. "培训详情",
  4254. $$("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 }), {
  4255. "id": "studyDetailTrain",
  4256. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4257. "onresize": function () { }
  4258. }, {
  4259. closecallback: function () { }
  4260. }, { "style": { "height": "36px" } }).form; //创建窗体
  4261. _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); } }
  4262. break;
  4263. }
  4264. case "studyDetailS":
  4265. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4266. setTimeout(() => {
  4267. U.MD.U.L.login();
  4268. }, 2000);
  4269. } else {
  4270. _formdiv = new U.UF.UI.form(
  4271. "项目详情",
  4272. $$("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 }), {
  4273. "id": "studyDetailS",
  4274. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4275. "onresize": function () { }
  4276. }, {
  4277. closecallback: function () { }
  4278. }, { "style": { "height": "36px" } }).form; //创建窗体
  4279. _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); } }
  4280. break;
  4281. }
  4282. case "studyDetailStudio":
  4283. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4284. setTimeout(() => {
  4285. U.MD.U.L.login();
  4286. }, 2000);
  4287. } else {
  4288. _formdiv = new U.UF.UI.form(
  4289. "工作详情",
  4290. $$("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 }), {
  4291. "id": "studyDetailStudio",
  4292. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4293. "onresize": function () { }
  4294. }, {
  4295. closecallback: function () { }
  4296. }, { "style": { "height": "36px" } }).form; //创建窗体
  4297. _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); } }
  4298. break;
  4299. }
  4300. case "studyDetailS5":
  4301. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4302. setTimeout(() => {
  4303. U.MD.U.L.login();
  4304. }, 2000);
  4305. } else {
  4306. _formdiv = new U.UF.UI.form(
  4307. "项目详情",
  4308. $$("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 }), {
  4309. "id": "studyDetailS",
  4310. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4311. "onresize": function () { }
  4312. }, {
  4313. closecallback: function () { }
  4314. }, { "style": { "height": "36px" } }).form; //创建窗体
  4315. _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); } }
  4316. break;
  4317. }
  4318. case "studyDetailGM":
  4319. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4320. setTimeout(() => {
  4321. U.MD.U.L.login();
  4322. }, 2000);
  4323. } else {
  4324. _formdiv = new U.UF.UI.form(
  4325. "课程详情",
  4326. $$("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 }), {
  4327. "id": "studyDetail",
  4328. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4329. "onresize": function () { }
  4330. }, {
  4331. closecallback: function () { }
  4332. }, { "style": { "height": "36px" } }).form; //创建窗体
  4333. _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); } }
  4334. break;
  4335. }
  4336. case "hanUrl":
  4337. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4338. setTimeout(() => {
  4339. U.MD.U.L.login();
  4340. }, 2000);
  4341. } else {
  4342. _formdiv = new U.UF.UI.form(
  4343. "汉字宫",
  4344. $$("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" }), {
  4345. "id": "hanUrl",
  4346. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4347. "onresize": function () { }
  4348. }, {
  4349. closecallback: function () { }
  4350. }, { "style": { "height": "36px" } }).form; //创建窗体
  4351. _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); } }
  4352. break;
  4353. }
  4354. case "index":
  4355. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4356. setTimeout(() => {
  4357. U.MD.U.L.login();
  4358. }, 2000);
  4359. } else {
  4360. _formdiv = new U.UF.UI.form(
  4361. "课程中心",
  4362. $$("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 }), {
  4363. "id": "study",
  4364. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4365. "onresize": function () { }
  4366. }, {
  4367. closecallback: function () { }
  4368. }, { "style": { "height": "36px" } }).form; //创建窗体
  4369. _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); } }
  4370. break;
  4371. }
  4372. case "dataClass":
  4373. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4374. setTimeout(() => {
  4375. U.MD.U.L.login();
  4376. }, 2000);
  4377. } else {
  4378. _formdiv = new U.UF.UI.form(
  4379. "数据报告",
  4380. $$("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 }), {
  4381. "id": "dataClass",
  4382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4383. "onresize": function () { }
  4384. }, {
  4385. closecallback: function () { }
  4386. }, { "style": { "height": "36px" } }).form; //创建窗体
  4387. _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); } }
  4388. break;
  4389. }
  4390. case "opencCscl":
  4391. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4392. setTimeout(() => {
  4393. U.MD.U.L.login();
  4394. }, 2000);
  4395. } else {
  4396. _formdiv = new U.UF.UI.form(
  4397. "协同建构",
  4398. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4399. "id": "futureClass",
  4400. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4401. "onresize": function () { }
  4402. }, {
  4403. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4404. }, { "style": { "height": "36px" } }).form; //创建窗体
  4405. _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); } }
  4406. break;
  4407. }
  4408. case "openCourseUpdate":
  4409. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4410. setTimeout(() => {
  4411. U.MD.U.L.login();
  4412. }, 2000);
  4413. } else {
  4414. _formdiv = new U.UF.UI.form(
  4415. "课程管理",
  4416. $$("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 }), {
  4417. "id": "openCourseUpdate",
  4418. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4419. "onresize": function () { }
  4420. }, {
  4421. closecallback: function () { }
  4422. }, { "style": { "height": "36px" } }).form; //创建窗体
  4423. break;
  4424. }
  4425. case "openNewCourseUpdate":
  4426. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4427. setTimeout(() => {
  4428. U.MD.U.L.login();
  4429. }, 2000);
  4430. } else {
  4431. _formdiv = new U.UF.UI.form(
  4432. "课程管理",
  4433. $$("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 }), {
  4434. "id": "openCourseUpdate",
  4435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4436. "onresize": function () { }
  4437. }, {
  4438. closecallback: function () { }
  4439. }, { "style": { "height": "36px" } }).form; //创建窗体
  4440. break;
  4441. }
  4442. case "openCourseEUpdate":
  4443. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4444. setTimeout(() => {
  4445. U.MD.U.L.login();
  4446. }, 2000);
  4447. } else {
  4448. _formdiv = new U.UF.UI.form(
  4449. "课程管理",
  4450. $$("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 }), {
  4451. "id": "openCourseUpdate",
  4452. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4453. "onresize": function () { }
  4454. }, {
  4455. closecallback: function () { }
  4456. }, { "style": { "height": "36px" } }).form; //创建窗体
  4457. break;
  4458. }
  4459. case "openCourseAiUpdate":
  4460. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4461. setTimeout(() => {
  4462. U.MD.U.L.login();
  4463. }, 2000);
  4464. } else {
  4465. _formdiv = new U.UF.UI.form(
  4466. "课程管理",
  4467. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4468. "id": "openCourseUpdate",
  4469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4470. "onresize": function () { }
  4471. }, {
  4472. closecallback: function () { }
  4473. }, { "style": { "height": "36px" } }).form; //创建窗体
  4474. break;
  4475. }
  4476. case "openCourseNewUpdate":
  4477. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4478. setTimeout(() => {
  4479. U.MD.U.L.login();
  4480. }, 2000);
  4481. } else {
  4482. _formdiv = new U.UF.UI.form(
  4483. "课程管理",
  4484. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4485. "id": "openCourseUpdate",
  4486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4487. "onresize": function () { }
  4488. }, {
  4489. closecallback: function () { }
  4490. }, { "style": { "height": "36px" } }).form; //创建窗体
  4491. break;
  4492. }
  4493. case "inviteLoginSz":
  4494. _formdiv = new U.UF.UI.form(
  4495. "随机码登录",
  4496. $$("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 }), {
  4497. "id": "loginSz",
  4498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4499. "onresize": function () { }
  4500. }, {
  4501. closecallback: function () { }
  4502. }, { "style": { "height": "36px" } }).form; //创建窗体
  4503. break;
  4504. case "loginSz":
  4505. _formdiv = new U.UF.UI.form(
  4506. "教师登录",
  4507. $$("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" }), {
  4508. "id": "loginSz",
  4509. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4510. "onresize": function () { }
  4511. }, {
  4512. closecallback: function () { }
  4513. }, { "style": { "height": "36px" } }).form; //创建窗体
  4514. break;
  4515. case "teacher":
  4516. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4517. setTimeout(() => {
  4518. U.MD.U.L.login();
  4519. }, 2000);
  4520. } else {
  4521. _formdiv = new U.UF.UI.form(
  4522. "教师管理",
  4523. $$("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 }), {
  4524. "id": "teacher",
  4525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4526. "onresize": function () { }
  4527. }, {
  4528. closecallback: function () { }
  4529. }, { "style": { "height": "36px" } }).form; //创建窗体
  4530. break;
  4531. }
  4532. case "dataBoardSZArea":
  4533. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4534. setTimeout(() => {
  4535. U.MD.U.L.login();
  4536. }, 2000);
  4537. } else {
  4538. _formdiv = new U.UF.UI.form(
  4539. "综合数据看板",
  4540. $$("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 }), {
  4541. "id": "dataBoardSZArea",
  4542. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4543. "onresize": function () { }
  4544. }, {
  4545. closecallback: function () { }
  4546. }, { "style": { "height": "36px" } }).form; //创建窗体
  4547. break;
  4548. }
  4549. case "dataBoardSZCity":
  4550. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4551. setTimeout(() => {
  4552. U.MD.U.L.login();
  4553. }, 2000);
  4554. } else {
  4555. _formdiv = new U.UF.UI.form(
  4556. "综合数据看板",
  4557. $$("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 }), {
  4558. "id": "dataBoardSZCity",
  4559. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4560. "onresize": function () { }
  4561. }, {
  4562. closecallback: function () { }
  4563. }, { "style": { "height": "36px" } }).form; //创建窗体
  4564. break;
  4565. }
  4566. case "classroom_observation_board":
  4567. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4568. setTimeout(() => {
  4569. U.MD.U.L.login();
  4570. }, 2000);
  4571. } else {
  4572. _formdiv = new U.UF.UI.form(
  4573. "课堂观察",
  4574. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  4575. "id": "classroom_observation_board",
  4576. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4577. "onresize": function () { }
  4578. }, {
  4579. closecallback: function () { }
  4580. }, { "style": { "height": "36px" } }).form; //创建窗体
  4581. break;
  4582. }
  4583. case "classroom_observation_ob_comment":
  4584. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4585. setTimeout(() => {
  4586. U.MD.U.L.login();
  4587. }, 2000);
  4588. } else {
  4589. _formdiv = new U.UF.UI.form(
  4590. "课堂审核",
  4591. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  4592. "id": "classroom_observation_ob_comment",
  4593. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4594. "onresize": function () { }
  4595. }, {
  4596. closecallback: function () { }
  4597. }, { "style": { "height": "36px" } }).form; //创建窗体
  4598. break;
  4599. }
  4600. }
  4601. }
  4602. U.MD.D.I.openApplication = function (str, obj, info) {
  4603. obj = obj || {};
  4604. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4605. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4606. _userinfo = US.userInfo, //登录用户信息
  4607. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4608. _oid = obj.organizeid || _userinfo.organizeid,
  4609. _type = US.userInfo.type,
  4610. _org = US.userInfo.org,
  4611. _role = US.userInfo.role,
  4612. _classId = US.userInfo.classid,
  4613. _TscreenType = 1
  4614. _screenType = 2,
  4615. _SscreenType = 3;
  4616. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4617. return;
  4618. }
  4619. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4620. switch (str) {
  4621. case "studnetProject": //好友打开
  4622. _formdiv = new U.UF.UI.form(
  4623. "我的项目",
  4624. $$("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 }), {
  4625. "id": "studnetProject",
  4626. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4627. "onresize": function () { }
  4628. }, {
  4629. closecallback: function () { }
  4630. }, { "style": { "height": "36px" } }).form; //创建窗体
  4631. _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); } }
  4632. break;
  4633. case "studentEvaluate": //好友打开
  4634. _formdiv = new U.UF.UI.form(
  4635. "我的评价",
  4636. $$("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 }), {
  4637. "id": "studentEvaluate",
  4638. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4639. "onresize": function () { }
  4640. }, {
  4641. closecallback: function () { }
  4642. }, { "style": { "height": "36px" } }).form; //创建窗体
  4643. _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); } }
  4644. break;
  4645. case "my":
  4646. _formdiv = new U.UF.UI.form(
  4647. "我的资料",
  4648. $$("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 }), {
  4649. "id": "my",
  4650. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4651. "onresize": function () { }
  4652. }, {
  4653. closecallback: function () { }
  4654. }, { "style": { "height": "36px" } }).form; //创建窗体
  4655. _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); } }
  4656. break;
  4657. case "program":
  4658. _formdiv = new U.UF.UI.form(
  4659. "编程平台",
  4660. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4661. "id": "program",
  4662. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4663. "onresize": function () { }
  4664. }, {
  4665. closecallback: function () { }
  4666. }, { "style": { "height": "36px" } }).form; //创建窗体
  4667. _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); } }
  4668. break;
  4669. case "library":
  4670. _formdiv = new U.UF.UI.form(
  4671. "素材库",
  4672. $$("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 }), {
  4673. "id": "library",
  4674. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4675. "onresize": function () { }
  4676. }, {
  4677. closecallback: function () { }
  4678. }, { "style": { "height": "36px" } }).form; //创建窗体
  4679. _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); } }
  4680. break;
  4681. case "whiteboard":
  4682. _formdiv = new U.UF.UI.form(
  4683. "电子白板",
  4684. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4685. "id": "whiteboard",
  4686. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4687. "onresize": function () { }
  4688. }, {
  4689. closecallback: function () { }
  4690. }, { "style": { "height": "36px" } }).form; //创建窗体
  4691. _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); } }
  4692. break;
  4693. case "investigation":
  4694. _formdiv = new U.UF.UI.form(
  4695. "问卷调查",
  4696. $$("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 }), {
  4697. "id": "investigation",
  4698. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4699. "onresize": function () { }
  4700. }, {
  4701. closecallback: function () { }
  4702. }, { "style": { "height": "36px" } }).form; //创建窗体
  4703. _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); } }
  4704. break;
  4705. case "note":
  4706. _formdiv = new U.UF.UI.form(
  4707. "便签分类",
  4708. $$("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 }), {
  4709. "id": "note",
  4710. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4711. "onresize": function () { }
  4712. }, {
  4713. closecallback: function () { }
  4714. }, { "style": { "height": "36px" } }).form; //创建窗体
  4715. _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); } }
  4716. break;
  4717. // case "score":
  4718. // _formdiv = new U.UF.UI.form(
  4719. // "量规评分",
  4720. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4721. // "id": "score",
  4722. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4723. // "onresize": function() {}
  4724. // }, {
  4725. // closecallback: function() {}
  4726. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4727. // _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); } }
  4728. // break;
  4729. case "mind":
  4730. _formdiv = new U.UF.UI.form(
  4731. "思维导图",
  4732. $$("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"
  4733. "id": "mind",
  4734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4735. "onresize": function () { }
  4736. }, {
  4737. closecallback: function () { }
  4738. }, { "style": { "height": "36px" } }).form; //创建窗体
  4739. _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); } }
  4740. break;
  4741. case "doc":
  4742. // U.MD.D.I.isRoom();
  4743. _formdiv = new U.UF.UI.form(
  4744. "协同文档",
  4745. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4746. "id": "doc",
  4747. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4748. "onresize": function () { }
  4749. }, {
  4750. closecallback: function () { }
  4751. }, { "style": { "height": "36px" } }).form; //创建窗体
  4752. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4753. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4754. // })
  4755. _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); } }
  4756. break;
  4757. case "studentStudy":
  4758. _formdiv = new U.UF.UI.form(
  4759. "课程中心",
  4760. $$("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
  4761. "id": "studentStudy",
  4762. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4763. "onresize": function () { }
  4764. }, {
  4765. closecallback: function () { }
  4766. }, { "style": { "height": "36px" } }).form; //创建窗体
  4767. _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); } }
  4768. break;
  4769. case "train": //好友打开
  4770. _formdiv = new U.UF.UI.form(
  4771. "训练平台",
  4772. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4773. "id": "train",
  4774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4775. "onresize": function () { }
  4776. }, {
  4777. closecallback: function () { }
  4778. }, { "style": { "height": "36px" } }).form; //创建窗体
  4779. _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); } }
  4780. break;
  4781. case "mindNetwork": //好友打开
  4782. _formdiv = new U.UF.UI.form(
  4783. "思维网格",
  4784. $$("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 }), {
  4785. "id": "mindNetwork",
  4786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4787. "onresize": function () { }
  4788. }, {
  4789. closecallback: function () { }
  4790. }, { "style": { "height": "36px" } }).form; //创建窗体
  4791. _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); } }
  4792. break;
  4793. case "studentClassRoom": //好友打开
  4794. _formdiv = new U.UF.UI.form(
  4795. "实时课堂",
  4796. $$("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 }), {
  4797. "id": "studentClassRoom",
  4798. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4799. "onresize": function () { }
  4800. }, {
  4801. closecallback: function () { }
  4802. }, { "style": { "height": "36px" } }).form; //创建窗体
  4803. _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); } }
  4804. setTimeout(() => {
  4805. U.UF.F.windowZooming(_formdiv)
  4806. }, 0);
  4807. break;
  4808. }
  4809. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4810. switch (str) {
  4811. case "studnetProject": //好友打开
  4812. _formdiv = new U.UF.UI.form(
  4813. "我的项目",
  4814. $$("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 }), {
  4815. "id": "studnetProject",
  4816. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4817. "onresize": function () { }
  4818. }, {
  4819. closecallback: function () { }
  4820. }, { "style": { "height": "36px" } }).form; //创建窗体
  4821. _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); } }
  4822. break;
  4823. case "studentEvaluate": //好友打开
  4824. _formdiv = new U.UF.UI.form(
  4825. "我的评价",
  4826. $$("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 }), {
  4827. "id": "studentEvaluate",
  4828. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4829. "onresize": function () { }
  4830. }, {
  4831. closecallback: function () { }
  4832. }, { "style": { "height": "36px" } }).form; //创建窗体
  4833. _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); } }
  4834. break;
  4835. case "my":
  4836. _formdiv = new U.UF.UI.form(
  4837. "我的资料",
  4838. $$("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 }), {
  4839. "id": "my",
  4840. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4841. "onresize": function () { }
  4842. }, {
  4843. closecallback: function () { }
  4844. }, { "style": { "height": "36px" } }).form; //创建窗体
  4845. _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); } }
  4846. break;
  4847. case "program":
  4848. _formdiv = new U.UF.UI.form(
  4849. "编程平台",
  4850. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4851. "id": "program",
  4852. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4853. "onresize": function () { }
  4854. }, {
  4855. closecallback: function () { }
  4856. }, { "style": { "height": "36px" } }).form; //创建窗体
  4857. _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); } }
  4858. break;
  4859. case "library":
  4860. _formdiv = new U.UF.UI.form(
  4861. "素材库",
  4862. $$("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 }), {
  4863. "id": "library",
  4864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4865. "onresize": function () { }
  4866. }, {
  4867. closecallback: function () { }
  4868. }, { "style": { "height": "36px" } }).form; //创建窗体
  4869. _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); } }
  4870. break;
  4871. case "whiteboard":
  4872. _formdiv = new U.UF.UI.form(
  4873. "电子白板",
  4874. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4875. "id": "whiteboard",
  4876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4877. "onresize": function () { }
  4878. }, {
  4879. closecallback: function () { }
  4880. }, { "style": { "height": "36px" } }).form; //创建窗体
  4881. _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); } }
  4882. break;
  4883. case "investigation":
  4884. _formdiv = new U.UF.UI.form(
  4885. "问卷调查",
  4886. $$("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 }), {
  4887. "id": "investigation",
  4888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4889. "onresize": function () { }
  4890. }, {
  4891. closecallback: function () { }
  4892. }, { "style": { "height": "36px" } }).form; //创建窗体
  4893. _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); } }
  4894. break;
  4895. case "note":
  4896. _formdiv = new U.UF.UI.form(
  4897. "便签分类",
  4898. $$("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 }), {
  4899. "id": "note",
  4900. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4901. "onresize": function () { }
  4902. }, {
  4903. closecallback: function () { }
  4904. }, { "style": { "height": "36px" } }).form; //创建窗体
  4905. _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); } }
  4906. break;
  4907. // case "score":
  4908. // _formdiv = new U.UF.UI.form(
  4909. // "量规评分",
  4910. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4911. // "id": "score",
  4912. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4913. // "onresize": function() {}
  4914. // }, {
  4915. // closecallback: function() {}
  4916. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4917. // _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); } }
  4918. // break;
  4919. case "mind":
  4920. _formdiv = new U.UF.UI.form(
  4921. "思维导图",
  4922. $$("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"
  4923. "id": "mind",
  4924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4925. "onresize": function () { }
  4926. }, {
  4927. closecallback: function () { }
  4928. }, { "style": { "height": "36px" } }).form; //创建窗体
  4929. _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); } }
  4930. break;
  4931. case "doc":
  4932. // U.MD.D.I.isRoom();
  4933. _formdiv = new U.UF.UI.form(
  4934. "协同文档",
  4935. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4936. "id": "doc",
  4937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4938. "onresize": function () { }
  4939. }, {
  4940. closecallback: function () { }
  4941. }, { "style": { "height": "36px" } }).form; //创建窗体
  4942. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4943. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4944. })
  4945. _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); } }
  4946. break;
  4947. case "train": //好友打开
  4948. _formdiv = new U.UF.UI.form(
  4949. "训练平台",
  4950. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4951. "id": "train",
  4952. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4953. "onresize": function () { }
  4954. }, {
  4955. closecallback: function () { }
  4956. }, { "style": { "height": "36px" } }).form; //创建窗体
  4957. _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); } }
  4958. break;
  4959. case "studentStudy":
  4960. _formdiv = new U.UF.UI.form(
  4961. "课程中心",
  4962. $$("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
  4963. "id": "studentStudy",
  4964. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4965. "onresize": function () { }
  4966. }, {
  4967. closecallback: function () { }
  4968. }, { "style": { "height": "36px" } }).form; //创建窗体
  4969. _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); } }
  4970. break;
  4971. case "mindNetwork": //好友打开
  4972. _formdiv = new U.UF.UI.form(
  4973. "思维网格",
  4974. $$("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 }), {
  4975. "id": "mindNetwork",
  4976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4977. "onresize": function () { }
  4978. }, {
  4979. closecallback: function () { }
  4980. }, { "style": { "height": "36px" } }).form; //创建窗体
  4981. _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); } }
  4982. break;
  4983. case "studentClassRoom": //好友打开
  4984. _formdiv = new U.UF.UI.form(
  4985. "实时课堂",
  4986. $$("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 }), {
  4987. "id": "studentClassRoom",
  4988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4989. "onresize": function () { }
  4990. }, {
  4991. closecallback: function () { }
  4992. }, { "style": { "height": "36px" } }).form; //创建窗体
  4993. _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); } }
  4994. setTimeout(() => {
  4995. U.UF.F.windowZooming(_formdiv)
  4996. }, 0);
  4997. break;
  4998. }
  4999. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5000. //选择应用处理
  5001. switch (str) {
  5002. case "project": //好友打开
  5003. _formdiv = new U.UF.UI.form(
  5004. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5005. $$("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 }), {
  5006. "id": "project",
  5007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5008. "onresize": function () { }
  5009. }, {
  5010. closecallback: function () { }
  5011. }, { "style": { "height": "36px" } }).form; //创建窗体
  5012. _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); } }
  5013. break;
  5014. case "student":
  5015. _formdiv = new U.UF.UI.form(
  5016. "学生管理",
  5017. $$("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 }), {
  5018. "id": "student",
  5019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5020. "onresize": function () { }
  5021. }, {
  5022. closecallback: function () { }
  5023. }, { "style": { "height": "36px" } }).form; //创建窗体
  5024. _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); } }
  5025. break;
  5026. case "evaluate":
  5027. _formdiv = new U.UF.UI.form(
  5028. "学生评价",
  5029. $$("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 }), {
  5030. "id": "evaluate",
  5031. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5032. "onresize": function () { }
  5033. }, {
  5034. closecallback: function () { }
  5035. }, { "style": { "height": "36px" } }).form; //创建窗体
  5036. _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); } }
  5037. break;
  5038. case "sys":
  5039. _formdiv = new U.UF.UI.form(
  5040. "目标管理",
  5041. $$("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 }), {
  5042. "id": "sys",
  5043. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5044. "onresize": function () { }
  5045. }, {
  5046. closecallback: function () { }
  5047. }, { "style": { "height": "36px" } }).form; //创建窗体
  5048. _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); } }
  5049. break;
  5050. case "courseDesign":
  5051. _formdiv = new U.UF.UI.form(
  5052. "项目设计",
  5053. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5054. "id": "courseDesign",
  5055. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5056. "onresize": function () { }
  5057. }, {
  5058. closecallback: function () { }
  5059. }, { "style": { "height": "36px" } }).form; //创建窗体
  5060. _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); } }
  5061. break;
  5062. case "program":
  5063. _formdiv = new U.UF.UI.form(
  5064. "编程平台",
  5065. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5066. "id": "program",
  5067. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5073. break;
  5074. case "class":
  5075. _formdiv = new U.UF.UI.form(
  5076. "班级管理",
  5077. $$("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 }), {
  5078. "id": "class",
  5079. "style": { "width": "90%", "height": "90%", "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/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5085. break;
  5086. case "Grade":
  5087. _formdiv = new U.UF.UI.form(
  5088. "年级管理",
  5089. $$("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 }), {
  5090. "id": "Grade",
  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/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5097. break;
  5098. case "teacherOffice":
  5099. _formdiv = new U.UF.UI.form(
  5100. "教研室",
  5101. $$("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 }), {
  5102. "id": "teacherOffice",
  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/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5109. break;
  5110. case "my":
  5111. _formdiv = new U.UF.UI.form(
  5112. "我的资料",
  5113. $$("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 }), {
  5114. "id": "my",
  5115. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5116. "onresize": function () { }
  5117. }, {
  5118. closecallback: function () { }
  5119. }, { "style": { "height": "36px" } }).form; //创建窗体
  5120. _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); } }
  5121. break;
  5122. case "notice":
  5123. _formdiv = new U.UF.UI.form(
  5124. "通知公告",
  5125. $$("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 }), {
  5126. "id": "notice",
  5127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5128. "onresize": function () { }
  5129. }, {
  5130. closecallback: function () { }
  5131. }, { "style": { "height": "36px" } }).form; //创建窗体
  5132. _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); } }
  5133. break;
  5134. case "library":
  5135. _formdiv = new U.UF.UI.form(
  5136. "素材库",
  5137. $$("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 }), {
  5138. "id": "library",
  5139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5140. "onresize": function () { }
  5141. }, {
  5142. closecallback: function () { }
  5143. }, { "style": { "height": "36px" } }).form; //创建窗体
  5144. _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); } }
  5145. break;
  5146. case "whiteboard":
  5147. _formdiv = new U.UF.UI.form(
  5148. "电子白板",
  5149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5150. "id": "whiteboard",
  5151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5152. "onresize": function () { }
  5153. }, {
  5154. closecallback: function () { }
  5155. }, { "style": { "height": "36px" } }).form; //创建窗体
  5156. _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); } }
  5157. break;
  5158. case "investigation":
  5159. _formdiv = new U.UF.UI.form(
  5160. "问卷调查",
  5161. $$("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 }), {
  5162. "id": "investigation",
  5163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5164. "onresize": function () { }
  5165. }, {
  5166. closecallback: function () { }
  5167. }, { "style": { "height": "36px" } }).form; //创建窗体
  5168. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5169. break;
  5170. case "note":
  5171. _formdiv = new U.UF.UI.form(
  5172. "便签分类",
  5173. $$("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 }), {
  5174. "id": "note",
  5175. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. _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); } }
  5181. break;
  5182. // case "score":
  5183. // _formdiv = new U.UF.UI.form(
  5184. // "量规评分",
  5185. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5186. // "id": "score",
  5187. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5188. // "onresize": function() {}
  5189. // }, {
  5190. // closecallback: function() {}
  5191. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5192. // _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); } }
  5193. // break;
  5194. case "mind":
  5195. _formdiv = new U.UF.UI.form(
  5196. "思维导图",
  5197. $$("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"
  5198. "id": "mind",
  5199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5200. "onresize": function () { }
  5201. }, {
  5202. closecallback: function () { }
  5203. }, { "style": { "height": "36px" } }).form; //创建窗体
  5204. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5205. break;
  5206. case "doc":
  5207. // U.MD.D.I.isRoom();
  5208. _formdiv = new U.UF.UI.form(
  5209. "协同文档",
  5210. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5211. "id": "doc",
  5212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5213. "onresize": function () { }
  5214. }, {
  5215. closecallback: function () { }
  5216. }, { "style": { "height": "36px" } }).form; //创建窗体
  5217. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5218. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5219. })
  5220. _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); } }
  5221. break;
  5222. case "study":
  5223. _formdiv = new U.UF.UI.form(
  5224. "课程中心",
  5225. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5226. "id": "study",
  5227. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5228. "onresize": function () { }
  5229. }, {
  5230. closecallback: function () { }
  5231. }, { "style": { "height": "36px" } }).form; //创建窗体
  5232. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5233. break;
  5234. case "mindNetwork": //好友打开
  5235. _formdiv = new U.UF.UI.form(
  5236. "思维网格",
  5237. $$("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 }), {
  5238. "id": "mindNetwork",
  5239. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5240. "onresize": function () { }
  5241. }, {
  5242. closecallback: function () { }
  5243. }, { "style": { "height": "36px" } }).form; //创建窗体
  5244. _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); } }
  5245. break;
  5246. case "train": //好友打开
  5247. _formdiv = new U.UF.UI.form(
  5248. "训练平台",
  5249. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5250. "id": "mindNetwork",
  5251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5252. "onresize": function () { }
  5253. }, {
  5254. closecallback: function () { }
  5255. }, { "style": { "height": "36px" } }).form; //创建窗体
  5256. _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); } }
  5257. break;
  5258. case "teacherClassRoom": //好友打开
  5259. _formdiv = new U.UF.UI.form(
  5260. "实时课堂",
  5261. $$("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 }), {
  5262. "id": "teacherClassRoom",
  5263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5264. "onresize": function () { }
  5265. }, {
  5266. closecallback: function () { }
  5267. }, { "style": { "height": "36px" } }).form; //创建窗体
  5268. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5269. setTimeout(() => {
  5270. U.UF.F.windowZooming(_formdiv)
  5271. }, 0);
  5272. break;
  5273. }
  5274. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5275. switch (str) {
  5276. case "project": //好友打开
  5277. _formdiv = new U.UF.UI.form(
  5278. "课程管理",
  5279. $$("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 }), {
  5280. "id": "project",
  5281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //创建窗体
  5286. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5287. break;
  5288. case "evaluate":
  5289. _formdiv = new U.UF.UI.form(
  5290. "学生评价",
  5291. $$("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 }), {
  5292. "id": "evaluate",
  5293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5294. "onresize": function () { }
  5295. }, {
  5296. closecallback: function () { }
  5297. }, { "style": { "height": "36px" } }).form; //创建窗体
  5298. _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); } }
  5299. break;
  5300. case "notice":
  5301. _formdiv = new U.UF.UI.form(
  5302. "通知公告",
  5303. $$("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 }), {
  5304. "id": "notice",
  5305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5306. "onresize": function () { }
  5307. }, {
  5308. closecallback: function () { }
  5309. }, { "style": { "height": "36px" } }).form; //创建窗体
  5310. _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); } }
  5311. break;
  5312. case "stuLibrary":
  5313. _formdiv = new U.UF.UI.form(
  5314. "学习资料",
  5315. $$("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 }), {
  5316. "id": "stuLibrary",
  5317. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5318. "onresize": function () { }
  5319. }, {
  5320. closecallback: function () { }
  5321. }, { "style": { "height": "36px" } }).form; //创建窗体
  5322. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5323. break;
  5324. case "program":
  5325. _formdiv = new U.UF.UI.form(
  5326. "编程平台",
  5327. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5328. "id": "program",
  5329. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5330. "onresize": function () { }
  5331. }, {
  5332. closecallback: function () { }
  5333. }, { "style": { "height": "36px" } }).form; //创建窗体
  5334. _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); } }
  5335. break;
  5336. case "whiteboard":
  5337. _formdiv = new U.UF.UI.form(
  5338. "电子白板",
  5339. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5340. "id": "whiteboard",
  5341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5342. "onresize": function () { }
  5343. }, {
  5344. closecallback: function () { }
  5345. }, { "style": { "height": "36px" } }).form; //创建窗体
  5346. _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); } }
  5347. break;
  5348. case "investigation":
  5349. _formdiv = new U.UF.UI.form(
  5350. "问卷调查",
  5351. $$("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 }), {
  5352. "id": "investigation",
  5353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5354. "onresize": function () { }
  5355. }, {
  5356. closecallback: function () { }
  5357. }, { "style": { "height": "36px" } }).form; //创建窗体
  5358. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5359. break;
  5360. case "mind":
  5361. _formdiv = new U.UF.UI.form(
  5362. "思维导图",
  5363. $$("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"
  5364. "id": "mind",
  5365. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5366. "onresize": function () { }
  5367. }, {
  5368. closecallback: function () { }
  5369. }, { "style": { "height": "36px" } }).form; //创建窗体
  5370. _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); } }
  5371. break;
  5372. case "doc":
  5373. // U.MD.D.I.isRoom();
  5374. _formdiv = new U.UF.UI.form(
  5375. "协同文档",
  5376. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5377. "id": "doc",
  5378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5379. "onresize": function () { }
  5380. }, {
  5381. closecallback: function () { }
  5382. }, { "style": { "height": "36px" } }).form; //创建窗体
  5383. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5384. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5385. })
  5386. _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); } }
  5387. break;
  5388. case "study":
  5389. _formdiv = new U.UF.UI.form(
  5390. "课程中心",
  5391. $$("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
  5392. "id": "study",
  5393. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5394. "onresize": function () { }
  5395. }, {
  5396. closecallback: function () { }
  5397. }, { "style": { "height": "36px" } }).form; //创建窗体
  5398. _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); } }
  5399. break;
  5400. case "mindNetwork": //好友打开
  5401. _formdiv = new U.UF.UI.form(
  5402. "思维网格",
  5403. $$("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 }), {
  5404. "id": "mindNetwork",
  5405. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5406. "onresize": function () { }
  5407. }, {
  5408. closecallback: function () { }
  5409. }, { "style": { "height": "36px" } }).form; //创建窗体
  5410. _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); } }
  5411. break;
  5412. case "train": //好友打开
  5413. _formdiv = new U.UF.UI.form(
  5414. "训练平台",
  5415. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5416. "id": "train",
  5417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5418. "onresize": function () { }
  5419. }, {
  5420. closecallback: function () { }
  5421. }, { "style": { "height": "36px" } }).form; //创建窗体
  5422. _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); } }
  5423. break;
  5424. case "sys":
  5425. _formdiv = new U.UF.UI.form(
  5426. "目标管理",
  5427. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5428. "id": "sys",
  5429. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //创建窗体
  5434. _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); } }
  5435. break;
  5436. case "courseDesign":
  5437. _formdiv = new U.UF.UI.form(
  5438. "项目设计",
  5439. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5440. "id": "courseDesign",
  5441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5442. "onresize": function () { }
  5443. }, {
  5444. closecallback: function () { }
  5445. }, { "style": { "height": "36px" } }).form; //创建窗体
  5446. _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); } }
  5447. break;
  5448. }
  5449. } else if (!_type) {
  5450. switch (str) {
  5451. case "my":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5455. "id": "my",
  5456. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5462. break;
  5463. }
  5464. }
  5465. switch (str) {
  5466. // AIprogram2 AI体验 aihub.cocorobo.cn
  5467. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5468. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5469. case "formulaEdi": //公式编辑
  5470. _formdiv = new U.UF.UI.form(
  5471. "公式编辑",
  5472. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5473. "id": "formulaEdi",
  5474. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5475. "onresize": function () { }
  5476. }, {
  5477. closecallback: function () { }
  5478. }, { "style": { "height": "36px" } }).form; //创建窗体
  5479. _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); } }
  5480. break;
  5481. case "molStr": //分子结构
  5482. _formdiv = new U.UF.UI.form(
  5483. "分子结构",
  5484. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5485. "id": "molStr",
  5486. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //创建窗体
  5491. _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); } }
  5492. break;
  5493. case "timeAxis": //时间轴
  5494. _formdiv = new U.UF.UI.form(
  5495. "时间轴",
  5496. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5497. "id": "timeAxis",
  5498. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. _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); } }
  5504. break;
  5505. case "AIprogram2": //AI体验
  5506. _formdiv = new U.UF.UI.form(
  5507. "AI体验",
  5508. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5509. "id": "AIprogram2",
  5510. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5511. "onresize": function () { }
  5512. }, {
  5513. closecallback: function () { }
  5514. }, { "style": { "height": "36px" } }).form; //创建窗体
  5515. _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); } }
  5516. break;
  5517. case "Pythonprogram": //python编程
  5518. _formdiv = new U.UF.UI.form(
  5519. "Python编程",
  5520. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5521. "id": "Pythonprogram",
  5522. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5523. "onresize": function () { }
  5524. }, {
  5525. closecallback: function () { }
  5526. }, { "style": { "height": "36px" } }).form; //创建窗体
  5527. _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); } }
  5528. break;
  5529. case "AIprogram": //ai编程
  5530. _formdiv = new U.UF.UI.form(
  5531. "AI编程平台",
  5532. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5533. "id": "AIprogram",
  5534. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5535. "onresize": function () { }
  5536. }, {
  5537. closecallback: function () { }
  5538. }, { "style": { "height": "36px" } }).form; //创建窗体
  5539. _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); } }
  5540. break;
  5541. case "CocoPi": //CocoPi
  5542. _formdiv = new U.UF.UI.form(
  5543. "CocoPi",
  5544. $$("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" }), {
  5545. "id": "CocoPi",
  5546. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5547. "onresize": function () { }
  5548. }, {
  5549. closecallback: function () { }
  5550. }, { "style": { "height": "36px" } }).form; //创建窗体
  5551. _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); } }
  5552. break;
  5553. case "Wood": //Wood
  5554. _formdiv = new U.UF.UI.form(
  5555. "海龟编程",
  5556. $$("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/" }), {
  5557. "id": "Wood",
  5558. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5559. "onresize": function () { }
  5560. }, {
  5561. closecallback: function () { }
  5562. }, { "style": { "height": "36px" } }).form; //创建窗体
  5563. _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); } }
  5564. break;
  5565. case "car": //模拟驾驶
  5566. _formdiv = new U.UF.UI.form(
  5567. "模拟驾驶",
  5568. $$("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/" }), {
  5569. "id": "car",
  5570. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //创建窗体
  5575. _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); } }
  5576. break;
  5577. case "lineSearch": //路径搜索
  5578. _formdiv = new U.UF.UI.form(
  5579. "路径搜索",
  5580. $$("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/" }), {
  5581. "id": "lineSearch",
  5582. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //创建窗体
  5587. _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); } }
  5588. break;
  5589. case "deepLearning": //深度学习
  5590. _formdiv = new U.UF.UI.form(
  5591. "深度学习",
  5592. $$("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/#" }), {
  5593. "id": "deepLearning",
  5594. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5595. "onresize": function () { }
  5596. }, {
  5597. closecallback: function () { }
  5598. }, { "style": { "height": "36px" } }).form; //创建窗体
  5599. _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); } }
  5600. break;
  5601. case "allHistory": //深度学习
  5602. _formdiv = new U.UF.UI.form(
  5603. "全历史",
  5604. $$("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/" }), {
  5605. "id": "allHistory",
  5606. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, { "style": { "height": "36px" } }).form; //创建窗体
  5611. _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); } }
  5612. break;
  5613. case "chatPDF": //ai编程
  5614. _formdiv = new U.UF.UI.form(
  5615. "chatPDF",
  5616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5617. "id": "chatPDF",
  5618. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //创建窗体
  5623. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5624. break;
  5625. case "resources": //国家教育
  5626. _formdiv = new U.UF.UI.form(
  5627. "国家教育",
  5628. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5629. "id": "resources",
  5630. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //创建窗体
  5635. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5636. break;
  5637. case "codeEdit": //源码编辑
  5638. _formdiv = new U.UF.UI.form(
  5639. "源码编辑",
  5640. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5641. "id": "codeEdit",
  5642. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5643. "onresize": function () { }
  5644. }, {
  5645. closecallback: function () { }
  5646. }, { "style": { "height": "36px" } }).form; //创建窗体
  5647. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5648. break; //
  5649. case "MindMap": //MindMap
  5650. _formdiv = new U.UF.UI.form(
  5651. "MindMap",
  5652. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5653. "id": "MindMap",
  5654. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5655. "onresize": function () { }
  5656. }, {
  5657. closecallback: function () { }
  5658. }, { "style": { "height": "36px" } }).form; //创建窗体
  5659. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5660. break;
  5661. case "netWorkPanel": //netWorkPanel
  5662. _formdiv = new U.UF.UI.form(
  5663. "netWorkPanel",
  5664. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5665. "id": "netWorkPanel",
  5666. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //创建窗体
  5671. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5672. break;
  5673. case "GeoGebra": //GeoGebra
  5674. _formdiv = new U.UF.UI.form(
  5675. "GeoGebra",
  5676. $$("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" }), {
  5677. "id": "GeoGebra",
  5678. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //创建窗体
  5683. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5684. break;
  5685. case "translation": //翻译
  5686. _formdiv = new U.UF.UI.form(
  5687. "翻译",
  5688. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5689. "id": "translation",
  5690. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5691. "onresize": function () { }
  5692. }, {
  5693. closecallback: function () { }
  5694. }, { "style": { "height": "36px" } }).form; //创建窗体
  5695. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5696. break;
  5697. case "mohe": //魔盒
  5698. _formdiv = new U.UF.UI.form(
  5699. "魔盒识字",
  5700. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5701. "id": "mohe",
  5702. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5708. break;
  5709. case "24game": //24点
  5710. _formdiv = new U.UF.UI.form(
  5711. "24点",
  5712. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5713. "id": "24game",
  5714. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //创建窗体
  5719. _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); } }
  5720. break;
  5721. case "case":
  5722. _formdiv = new U.UF.UI.form(
  5723. "课程进展",
  5724. $$("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 }), {
  5725. "id": "case",
  5726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5727. "onresize": function () { }
  5728. }, {
  5729. closecallback: function () { }
  5730. }, { "style": { "height": "36px" } }).form; //创建窗体
  5731. _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); } }
  5732. break;
  5733. case "snf":
  5734. _formdiv = new U.UF.UI.form(
  5735. "赛诺梵",
  5736. $$("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" }), {
  5737. "id": "snf",
  5738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5739. "onresize": function () { }
  5740. }, {
  5741. closecallback: function () { }
  5742. }, { "style": { "height": "36px" } }).form; //创建窗体
  5743. _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); } }
  5744. break;
  5745. case "hanFamily":
  5746. _formdiv = new U.UF.UI.form(
  5747. "汉字家族",
  5748. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5749. "id": "hanFamily",
  5750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5751. "onresize": function () { }
  5752. }, {
  5753. closecallback: function () { }
  5754. }, { "style": { "height": "36px" } }).form; //创建窗体
  5755. _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); } }
  5756. break;
  5757. case "hanClassics":
  5758. _formdiv = new U.UF.UI.form(
  5759. "国学经典",
  5760. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5761. "id": "hanClassics",
  5762. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5763. "onresize": function () { }
  5764. }, {
  5765. closecallback: function () { }
  5766. }, { "style": { "height": "36px" } }).form; //创建窗体
  5767. _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); } }
  5768. break;
  5769. case "hanTraining":
  5770. _formdiv = new U.UF.UI.form(
  5771. "笔画训练",
  5772. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5773. "id": "hanTraining",
  5774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5775. "onresize": function () { }
  5776. }, {
  5777. closecallback: function () { }
  5778. }, { "style": { "height": "36px" } }).form; //创建窗体
  5779. _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); } }
  5780. break;
  5781. case "hanClass":
  5782. _formdiv = new U.UF.UI.form(
  5783. "书法课堂",
  5784. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5785. "id": "hanClass",
  5786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5787. "onresize": function () { }
  5788. }, {
  5789. closecallback: function () { }
  5790. }, { "style": { "height": "36px" } }).form; //创建窗体
  5791. _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); } }
  5792. break;
  5793. case "han":
  5794. _formdiv = new U.UF.UI.form(
  5795. "汉字宫",
  5796. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5797. "id": "han",
  5798. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5799. "onresize": function () { }
  5800. }, {
  5801. closecallback: function () { }
  5802. }, { "style": { "height": "36px" } }).form; //创建窗体
  5803. _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); } }
  5804. break;
  5805. case "projectGM": //课程管理
  5806. _formdiv = new U.UF.UI.form(
  5807. "课程管理",
  5808. $$("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 }), {
  5809. "id": "projectGM",
  5810. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5811. "onresize": function () { }
  5812. }, {
  5813. closecallback: function () { }
  5814. }, { "style": { "height": "36px" } }).form; //创建窗体
  5815. _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); } }
  5816. break;
  5817. case "studyGM": //课程中心
  5818. _formdiv = new U.UF.UI.form(
  5819. "课程中心",
  5820. $$("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
  5821. "id": "study",
  5822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5823. "onresize": function () { }
  5824. }, {
  5825. closecallback: function () { }
  5826. }, { "style": { "height": "36px" } }).form; //创建窗体
  5827. _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); } }
  5828. break;
  5829. // studentGM
  5830. case "studentGM": //学生管理
  5831. _formdiv = new U.UF.UI.form(
  5832. "学生管理",
  5833. $$("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 }), {
  5834. "id": "studentGM",
  5835. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5836. "onresize": function () { }
  5837. }, {
  5838. closecallback: function () { }
  5839. }, { "style": { "height": "36px" } }).form; //创建窗体
  5840. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5841. break;
  5842. case "evaluateGM": //学生评价
  5843. _formdiv = new U.UF.UI.form(
  5844. "学生评价",
  5845. $$("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 }), {
  5846. "id": "evaluateGM",
  5847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5848. "onresize": function () { }
  5849. }, {
  5850. closecallback: function () { }
  5851. }, { "style": { "height": "36px" } }).form; //创建窗体
  5852. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5853. break;
  5854. // classGM
  5855. case "classGM": //班级管理
  5856. _formdiv = new U.UF.UI.form(
  5857. "班级管理",
  5858. $$("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 }), {
  5859. "id": "classGM",
  5860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5861. "onresize": function () { }
  5862. }, {
  5863. closecallback: function () { }
  5864. }, { "style": { "height": "36px" } }).form; //创建窗体
  5865. _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); } }
  5866. break;
  5867. // dataGM
  5868. case "dataGM":
  5869. _formdiv = new U.UF.UI.form(
  5870. "我的资料",
  5871. $$("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 }), {
  5872. "id": "dataGM",
  5873. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5874. "onresize": function () { }
  5875. }, {
  5876. closecallback: function () { }
  5877. }, { "style": { "height": "36px" } }).form; //创建窗体
  5878. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5879. break;
  5880. // caseGM
  5881. case "caseGM": //课程进展
  5882. _formdiv = new U.UF.UI.form(
  5883. "课程进展",
  5884. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5885. "id": "caseGM",
  5886. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5887. "onresize": function () { }
  5888. }, {
  5889. closecallback: function () { }
  5890. }, { "style": { "height": "36px" } }).form; //创建窗体
  5891. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5892. break;
  5893. // meterialGM
  5894. case "meterialGM": //素材库
  5895. _formdiv = new U.UF.UI.form(
  5896. "素材库",
  5897. $$("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 }), {
  5898. "id": "meterialGM",
  5899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5900. "onresize": function () { }
  5901. }, {
  5902. closecallback: function () { }
  5903. }, { "style": { "height": "36px" } }).form; //创建窗体
  5904. _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); } }
  5905. break;
  5906. // evaluateSGM
  5907. case "evaluateSGM": //我的评价
  5908. _formdiv = new U.UF.UI.form(
  5909. "我的评价",
  5910. $$("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 }), {
  5911. "id": "evaluateSGM",
  5912. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5913. "onresize": function () { }
  5914. }, {
  5915. closecallback: function () { }
  5916. }, { "style": { "height": "36px" } }).form; //创建窗体
  5917. _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); } }
  5918. break;
  5919. case "jupyter": //jupyter
  5920. _formdiv = new U.UF.UI.form(
  5921. "jupyter",
  5922. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5923. "id": "jupyter",
  5924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5925. "onresize": function () { }
  5926. }, {
  5927. closecallback: function () { }
  5928. }, { "style": { "height": "36px" } }).form; //创建窗体
  5929. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5930. break;
  5931. case "number": //数字实验室
  5932. _formdiv = new U.UF.UI.form(
  5933. "数字实验室",
  5934. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5935. "id": "number",
  5936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5937. "onresize": function () { }
  5938. }, {
  5939. closecallback: function () { }
  5940. }, { "style": { "height": "36px" } }).form; //创建窗体
  5941. _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); } }
  5942. break;
  5943. case "studentCourse": //项目管理 学生
  5944. _formdiv = new U.UF.UI.form(
  5945. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5946. $$("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 }), {
  5947. "id": "studentCourse",
  5948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5949. "onresize": function () { }
  5950. }, {
  5951. closecallback: function () { }
  5952. }, { "style": { "height": "36px" } }).form; //创建窗体
  5953. _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); } }
  5954. break;
  5955. case "studentCourseS": //项目管理 老师
  5956. _formdiv = new U.UF.UI.form(
  5957. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5958. $$("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 }), {
  5959. "id": "studentCourseS",
  5960. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5961. "onresize": function () { }
  5962. }, {
  5963. closecallback: function () { }
  5964. }, { "style": { "height": "36px" } }).form; //创建窗体
  5965. _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); } }
  5966. break;
  5967. case "studentIndex": //项目中心
  5968. _formdiv = new U.UF.UI.form(
  5969. "项目中心",
  5970. $$("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 }), {
  5971. "id": "studentIndex",
  5972. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5973. "onresize": function () { }
  5974. }, {
  5975. closecallback: function () { }
  5976. }, { "style": { "height": "36px" } }).form; //创建窗体
  5977. _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); } }
  5978. break;
  5979. case "CaseDesignS":
  5980. _formdiv = new U.UF.UI.form(
  5981. "项目进展",
  5982. $$("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 }), {
  5983. "id": "case",
  5984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5985. "onresize": function () { }
  5986. }, {
  5987. closecallback: function () { }
  5988. }, { "style": { "height": "36px" } }).form; //创建窗体
  5989. _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); } }
  5990. break;
  5991. case "tcStudent": //腾讯学生管理
  5992. _formdiv = new U.UF.UI.form(
  5993. "学生管理",
  5994. $$("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 }), {
  5995. "id": "tcStudent",
  5996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5997. "onresize": function () { }
  5998. }, {
  5999. closecallback: function () { }
  6000. }, { "style": { "height": "36px" } }).form; //创建窗体
  6001. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6002. break;
  6003. case "tcSchool": //腾讯学校管理
  6004. _formdiv = new U.UF.UI.form(
  6005. "学校管理",
  6006. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6007. "id": "tcSchool",
  6008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6009. "onresize": function () { }
  6010. }, {
  6011. closecallback: function () { }
  6012. }, { "style": { "height": "36px" } }).form; //创建窗体
  6013. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6014. break;
  6015. case "tcTeacher": //腾讯学校管理
  6016. _formdiv = new U.UF.UI.form(
  6017. "教师管理",
  6018. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6019. "id": "tcTeacher",
  6020. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6021. "onresize": function () { }
  6022. }, {
  6023. closecallback: function () { }
  6024. }, { "style": { "height": "36px" } }).form; //创建窗体
  6025. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6026. break;
  6027. case "tcData": //腾讯我的资料
  6028. _formdiv = new U.UF.UI.form(
  6029. "我的资料",
  6030. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6031. "id": "tcData",
  6032. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6033. "onresize": function () { }
  6034. }, {
  6035. closecallback: function () { }
  6036. }, { "style": { "height": "36px" } }).form; //创建窗体
  6037. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6038. break;
  6039. case "tcNotice": //腾讯消息通知
  6040. _formdiv = new U.UF.UI.form(
  6041. "消息通知",
  6042. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6043. "id": "tcNotice",
  6044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6045. "onresize": function () { }
  6046. }, {
  6047. closecallback: function () { }
  6048. }, { "style": { "height": "36px" } }).form; //创建窗体
  6049. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6050. break;
  6051. case "myReport": //好友打开
  6052. _formdiv = new U.UF.UI.form(
  6053. "我的评价",
  6054. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  6055. "id": "myReport",
  6056. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6057. "onresize": function () { }
  6058. }, {
  6059. closecallback: function () { }
  6060. }, { "style": { "height": "36px" } }).form; //创建窗体
  6061. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6062. break;
  6063. case "learnAna": //好友打开
  6064. _formdiv = new U.UF.UI.form(
  6065. "学习分析",
  6066. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6067. "id": "learnAna",
  6068. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6069. "onresize": function () { }
  6070. }, {
  6071. closecallback: function () { }
  6072. }, { "style": { "height": "36px" } }).form; //创建窗体
  6073. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6074. break;
  6075. case "AIChat": //AI共创
  6076. _formdiv = new U.UF.UI.form(
  6077. "AI共创",
  6078. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6079. "id": "AIChat",
  6080. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6081. "onresize": function () { }
  6082. }, {
  6083. istop: true,
  6084. closecallback: function () { $("#aichat_icon").remove(); },
  6085. narrowcallback: function () {
  6086. if (!$("#aichat_icon")[0]) {
  6087. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6088. }
  6089. },
  6090. }, { "style": { "height": "36px" } }).form; //创建窗体
  6091. _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); } }
  6092. break;
  6093. case "ainew": //AI共创
  6094. _formdiv = new U.UF.UI.form(
  6095. "AI协同",
  6096. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6097. "id": "ainew",
  6098. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6099. "onresize": function () { }
  6100. }, {
  6101. closecallback: function () { }
  6102. }, { "style": { "height": "36px" } }).form; //创建窗体
  6103. _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); } }
  6104. break;
  6105. case "gpt4": //gpt4
  6106. _formdiv = new U.UF.UI.form(
  6107. "AI助手",
  6108. $$("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 }), {
  6109. "id": "gpt4",
  6110. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6111. "onresize": function () { }
  6112. }, {
  6113. closecallback: function () { }
  6114. }, { "style": { "height": "36px" } }).form; //创建窗体
  6115. _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); } }
  6116. break;
  6117. case "aigpt": //gpt4
  6118. _formdiv = new U.UF.UI.form(
  6119. "AI助手+",
  6120. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6121. "id": "aigpt",
  6122. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6123. "onresize": function () { }
  6124. }, {
  6125. closecallback: function () { }
  6126. }, { "style": { "height": "36px" } }).form; //创建窗体
  6127. _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); } }
  6128. break;
  6129. case "aiKnowledge": //aiKnowledge
  6130. _formdiv = new U.UF.UI.form(
  6131. "知识建构",
  6132. $$("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://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  6133. "id": "aiKnowledge",
  6134. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6135. "onresize": function () { }
  6136. }, {
  6137. closecallback: function () { }
  6138. }, { "style": { "height": "36px" } }).form; //创建窗体
  6139. _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); } }
  6140. break;
  6141. case "futureClass": //AI共创
  6142. _formdiv = new U.UF.UI.form(
  6143. "协同建构",
  6144. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  6145. "id": "synergyCourse",
  6146. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6147. "onresize": function () { }
  6148. }, {
  6149. closecallback: function () {
  6150. $("iframe", _formdiv)[0].contentWindow.loginout();
  6151. }
  6152. }, { "style": { "height": "36px" } }).form; //创建窗体
  6153. _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); } }
  6154. break;
  6155. case "aiagent": //ai agent
  6156. _formdiv = new U.UF.UI.form(
  6157. "AI Agent",
  6158. $$("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" }), {
  6159. "id": "AIAgent",
  6160. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6161. "onresize": function () { }
  6162. }, {
  6163. closecallback: function () { }
  6164. }, { "style": { "height": "36px" } }).form; //创建窗体
  6165. _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); } }
  6166. break;
  6167. case "dataBoard": //数据看板
  6168. _formdiv = new U.UF.UI.form(
  6169. "数据看板",
  6170. $$("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 }), {
  6171. "id": "dataBoard",
  6172. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6173. "onresize": function () { }
  6174. }, {
  6175. closecallback: function () { }
  6176. }, { "style": { "height": "36px" } }).form; //创建窗体
  6177. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6178. break;
  6179. case "dataBoardSies": //数据融合
  6180. _formdiv = new U.UF.UI.form(
  6181. "数据融合",
  6182. $$("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 }), {
  6183. "id": "dataBoardSies",
  6184. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6185. "onresize": function () { }
  6186. }, {
  6187. closecallback: function () { }
  6188. }, { "style": { "height": "36px" } }).form; //创建窗体
  6189. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6190. break;
  6191. case "dataBoardNew": //数据看板
  6192. _formdiv = new U.UF.UI.form(
  6193. "综合看板",
  6194. $$("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 }), {
  6195. "id": "dataBoardNew",
  6196. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6197. "onresize": function () { }
  6198. }, {
  6199. closecallback: function () { }
  6200. }, { "style": { "height": "36px" } }).form; //创建窗体
  6201. _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); } }
  6202. break;
  6203. case "dataBoardTest": //数据看板
  6204. _formdiv = new U.UF.UI.form(
  6205. "评测看板",
  6206. $$("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 }), {
  6207. "id": "dataBoardTest",
  6208. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6209. "onresize": function () { }
  6210. }, {
  6211. closecallback: function () { }
  6212. }, { "style": { "height": "36px" } }).form; //创建窗体
  6213. _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); } }
  6214. break;
  6215. case "AIAnalyse": //AI共创
  6216. _formdiv = new U.UF.UI.form(
  6217. "AI分析",
  6218. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6219. "id": "AIAnalyse",
  6220. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6221. "onresize": function () { }
  6222. }, {
  6223. closecallback: function () { }
  6224. }, { "style": { "height": "36px" } }).form; //创建窗体
  6225. _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); } }
  6226. break;
  6227. case "studioCourse": //AI共创
  6228. _formdiv = new U.UF.UI.form(
  6229. "工作管理",
  6230. $$("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 }), {
  6231. "id": "studioCourse",
  6232. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6233. "onresize": function () { }
  6234. }, {
  6235. closecallback: function () { }
  6236. }, { "style": { "height": "36px" } }).form; //创建窗体
  6237. _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); } }
  6238. break;
  6239. case "studioIndex": //AI共创
  6240. _formdiv = new U.UF.UI.form(
  6241. "工作中心",
  6242. $$("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 }), {
  6243. "id": "studioIndex",
  6244. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6245. "onresize": function () { }
  6246. }, {
  6247. closecallback: function () { }
  6248. }, { "style": { "height": "36px" } }).form; //创建窗体
  6249. _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); } }
  6250. break;
  6251. case "source":
  6252. _formdiv = new U.UF.UI.form(
  6253. "教学资源",
  6254. $$("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 }), {
  6255. "id": "source",
  6256. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6257. "onresize": function () { }
  6258. }, {
  6259. closecallback: function () { }
  6260. }, { "style": { "height": "36px" } }).form; //创建窗体
  6261. _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); } }
  6262. break;
  6263. case "testTeacher":
  6264. _formdiv = new U.UF.UI.form(
  6265. "教师管理",
  6266. $$("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 }), {
  6267. "id": "testTeacher",
  6268. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6269. "onresize": function () { }
  6270. }, {
  6271. closecallback: function () { }
  6272. }, { "style": { "height": "36px" } }).form; //创建窗体
  6273. _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); } }
  6274. break;
  6275. case "testStudent":
  6276. _formdiv = new U.UF.UI.form(
  6277. "教师中心",
  6278. $$("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 }), {
  6279. "id": "testStudent",
  6280. "style": { "width": "80%", "height": "80%", "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/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6286. break;
  6287. case "testTeacherSies":
  6288. _formdiv = new U.UF.UI.form(
  6289. "教师管理",
  6290. $$("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 }), {
  6291. "id": "testTeacherSies",
  6292. "style": { "width": "80%", "height": "80%", "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/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6298. break;
  6299. case "testStudentSies":
  6300. _formdiv = new U.UF.UI.form(
  6301. "教师中心",
  6302. $$("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 }), {
  6303. "id": "testStudentSies",
  6304. "style": { "width": "80%", "height": "80%", "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/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6310. break;
  6311. case "ytpbl": //消息通知
  6312. _formdiv = new U.UF.UI.form(
  6313. "案例征集",
  6314. $$("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 }), {
  6315. "id": "ytpbl",
  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/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6322. // 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");
  6323. break;
  6324. case "aiCourseResource": //人工智能窗体
  6325. _formdiv = new U.UF.UI.form(
  6326. false,
  6327. $$("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 }), {
  6328. "id": "aiCourseResource",
  6329. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6330. "onresize": function () { },
  6331. "isdrag": false,
  6332. }, {
  6333. closecallback: function () { }
  6334. }, { "style": { "height": "36px" } }).form; //创建窗体
  6335. _taskbar = ''
  6336. break;
  6337. case "szdjgCocooroboX": //图形化编程
  6338. _formdiv = new U.UF.UI.form(
  6339. "图形化编程",
  6340. $$("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" }), {
  6341. "id": "szdjgCocooroboX",
  6342. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6343. "onresize": function () { }
  6344. }, {
  6345. closecallback: function () { }
  6346. }, { "style": { "height": "36px" } }).form; //创建窗体
  6347. _taskbar = ''
  6348. break;
  6349. case "szdjgPython": //python编程
  6350. _formdiv = new U.UF.UI.form(
  6351. "Python编程",
  6352. $$("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" }), {
  6353. "id": "szdjgPython",
  6354. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6355. "onresize": function () { }
  6356. }, {
  6357. closecallback: function () { }
  6358. }, { "style": { "height": "36px" } }).form; //创建窗体
  6359. _taskbar = ''
  6360. break;
  6361. case "Record":
  6362. _formdiv = new U.UF.UI.form(
  6363. "观察记录",
  6364. $$("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 }), {
  6365. "id": "Record",
  6366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6367. "onresize": function () { }
  6368. }, {
  6369. closecallback: function () { }
  6370. }, { "style": { "height": "36px" } }).form; //创建窗体
  6371. _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); } }
  6372. break;
  6373. case "aigptCourse":
  6374. _formdiv = new U.UF.UI.form(
  6375. "AI智能体",
  6376. $$("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' }), {
  6377. "id": "aigptCourse",
  6378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6379. "onresize": function () { }
  6380. }, {
  6381. closecallback: function () { }
  6382. }, { "style": { "height": "36px" } }).form; //创建窗体
  6383. _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); } }
  6384. break;
  6385. case "classroomObservation":
  6386. _formdiv = new U.UF.UI.form(
  6387. "课堂观察",
  6388. $$("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 }), {
  6389. "id": "classroomObservation",
  6390. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6391. "onresize": function () { }
  6392. }, {
  6393. closecallback: function () { }
  6394. }, { "style": { "height": "36px" } }).form; //创建窗体
  6395. _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); } }
  6396. break;
  6397. case "pblCourse":
  6398. _formdiv = new U.UF.UI.form(
  6399. "学生PBL",
  6400. $$("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 }), {
  6401. "id": "pblCourse",
  6402. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6403. "onresize": function () { }
  6404. }, {
  6405. closecallback: function () { }
  6406. }, { "style": { "height": "36px" } }).form; //创建窗体
  6407. _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); } }
  6408. break;
  6409. }
  6410. //U.MD.D.I.openClick(str);
  6411. //如果有任务栏信息
  6412. if (_taskbar) {
  6413. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6414. }
  6415. }
  6416. // U.MD.D.I.openClick = function(str){
  6417. // var click = '';
  6418. // switch(str){
  6419. // case 'friend':
  6420. // click = '我的好友';
  6421. // break;
  6422. // case 'domain':
  6423. // click = '域名管理';
  6424. // break;
  6425. // case 'disk':
  6426. // click = '我的云盘';
  6427. // break;
  6428. // case 'word':
  6429. // click = 'Word';
  6430. // break;
  6431. // case 'excel':
  6432. // click = 'Execl';
  6433. // break;
  6434. // case 'txt':
  6435. // click = '文本文件';
  6436. // break;
  6437. // case 'lookupFriend':
  6438. // click = '查找好友';
  6439. // break;
  6440. // case 'ftp':
  6441. // click = 'FTP';
  6442. // break;
  6443. // case 'group':
  6444. // click = '群组';
  6445. // break;
  6446. // case 'set':
  6447. // click = '我的设置';
  6448. // break;
  6449. // case 'systemSet':
  6450. // click = '系统设置';
  6451. // break;
  6452. // case 'boomYun':
  6453. // click = '互联办公';
  6454. // break;
  6455. // case 'xz':
  6456. // click = '云端下载';
  6457. // break;
  6458. // case 'client':
  6459. // click = '有思浏览器';
  6460. // break;
  6461. // case 'backEndProgramming':
  6462. // click = '在线后台编程';
  6463. // break;
  6464. // case 'frontEndProgramming':
  6465. // click = '在线前端编程';
  6466. // break;
  6467. // default: break;
  6468. // }
  6469. // if(U.MD.D.I.Ip && click){
  6470. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6471. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6472. // })
  6473. // }
  6474. // }
  6475. /**
  6476. *函数作用:ajax简易函数,使用post格式
  6477. *@param url {data} 后台地址
  6478. *@param data {data} 参数json
  6479. *@param fn {data} 回调函数
  6480. *
  6481. */
  6482. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6483. // var xhr = new XMLHttpRequest();
  6484. // xhr.open("GET",url,true);
  6485. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6486. // xhr.onreadystatechange = function(){
  6487. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6488. // fn.call(this,xhr.responseText);
  6489. // }
  6490. // };
  6491. // xhr.send();
  6492. // }
  6493. /*判断是否是内网IP*/
  6494. // U.MD.D.I.isInnerIPFn = function(str){
  6495. // var curPageUrl = str;
  6496. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6497. // curPageUrl =curPageUrl.replace(reg1,'');
  6498. // // console.log('curPageUrl-1 '+curPageUrl);
  6499. // var reg2 = /\:+/g;//替换冒号为一点
  6500. // curPageUrl =curPageUrl.replace(reg2,'.');
  6501. // // console.log('curPageUrl-2 '+curPageUrl);
  6502. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6503. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6504. // if(curPageUrl[2] != '16'){
  6505. // return ipAddress;
  6506. // }else{
  6507. // return false;
  6508. // }
  6509. // }
  6510. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6511. // //compatibility for firefox and chrome
  6512. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6513. // var pc = new myPeerConnection({
  6514. // iceServers: []
  6515. // }),
  6516. // noop = function() {},
  6517. // localIPs = {},
  6518. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6519. // key;
  6520. // function iterateIP(ip) {
  6521. // if (!localIPs[ip]) onNewIP(ip);
  6522. // localIPs[ip] = true;
  6523. // }
  6524. // //create a bogus data channel
  6525. // pc.createDataChannel("");
  6526. // // create offer and set local description
  6527. // pc.createOffer().then(function(sdp) {
  6528. // sdp.sdp.split('\n').forEach(function(line) {
  6529. // if (line.indexOf('candidate') < 0) return;
  6530. // line.match(ipRegex).forEach(iterateIP);
  6531. // });
  6532. // pc.setLocalDescription(sdp, noop, noop);
  6533. // }).catch(function(reason) {
  6534. // // An error occurred, so handle the failure to connect
  6535. // });
  6536. // //sten for candidate events
  6537. // pc.onicecandidate = function(ice) {
  6538. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6539. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6540. // };
  6541. // }
  6542. // U.MD.D.I.getUserIpBool = function(callback){
  6543. // U.MD.D.I.getUserIP(function(ip){
  6544. // alert("Got IP! :" + ip);
  6545. // });
  6546. //}
  6547. //#endregion
  6548. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6549. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6550. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6551. _userinfo = US.userInfo, //登录用户信息
  6552. _userid = US.userInfo.userid //登录用户id
  6553. let _iframe;
  6554. let _cid = cid,
  6555. _stage = stage,
  6556. _task = task,
  6557. _tool = tool;
  6558. var _jie = $$("div", {
  6559. "style": {
  6560. "position": "absolute",
  6561. "bottom": "50px",
  6562. "right": "50px",
  6563. "zIndex": "9999",
  6564. "backgroundColor": "#2268bc",
  6565. "color": "#fff",
  6566. "padding": "12px 20px",
  6567. "cursor": "pointer",
  6568. "borderRadius": "4px",
  6569. },
  6570. "innerHTML": "提交作业"
  6571. })
  6572. let aTool = ''
  6573. let _loading = document.createElement('div')
  6574. _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;"
  6575. // _loading.id = "";
  6576. let _lchild = document.createElement('div')
  6577. let _limg = document.createElement('img')
  6578. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6579. _limg.style = "width: 26px;margin-right: 10px;"
  6580. _lchild.appendChild(_limg)
  6581. let _lspan = document.createElement('span')
  6582. _lspan.innerHTML = "上传中..."
  6583. _lchild.appendChild(_lspan)
  6584. _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%);"
  6585. _loading.appendChild(_lchild)
  6586. var _box = $$('div', {
  6587. "style": {
  6588. "position": "relative",
  6589. "width": "100%",
  6590. "height": "100%",
  6591. },
  6592. })
  6593. _box.appendChild(_loading)
  6594. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6595. switch (str) {
  6596. case "whiteboard":
  6597. aTool = 1;
  6598. _iframe = $$("iframe", {
  6599. "frameborder": "no",
  6600. "border": "0",
  6601. "scrolling ": "no",
  6602. "style": {
  6603. "cssText": "border:0;width:100%;height:100%"
  6604. },
  6605. "src": "https://beta.iwb.cocorobo.cn/"
  6606. })
  6607. _box.appendChild(_iframe);
  6608. _box.appendChild(_jie);
  6609. _formdiv = new U.UF.UI.form(
  6610. "电子白板",
  6611. _box, {
  6612. "id": "whiteboard" + cid + stage + task + tool,
  6613. "style": {
  6614. "width": "90%",
  6615. "height": "90%",
  6616. "overflow": 'hidden'
  6617. },
  6618. "onresize": function () { }
  6619. }, {
  6620. closecallback: function () { }
  6621. }, {
  6622. "style": {
  6623. "height": "36px"
  6624. }
  6625. }).form; //创建窗体
  6626. _taskbar = {
  6627. "id": str + _formdiv.id,
  6628. "style": {
  6629. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6630. },
  6631. "name": "电子白板",
  6632. "forms": _formdiv,
  6633. "click": function () {
  6634. U.MD.D.I.openApplication(str, obj, info);
  6635. }
  6636. }
  6637. break;
  6638. case "mind":
  6639. aTool = 3;
  6640. _iframe = $$("iframe", {
  6641. "frameborder": "no",
  6642. "border": "0",
  6643. "scrolling ": "no",
  6644. "style": {
  6645. "cssText": "border:0;width:100%;height:100%"
  6646. },
  6647. "src": "/kityminder-editor/dist/index.html"
  6648. })
  6649. _box.appendChild(_iframe);
  6650. _box.appendChild(_jie);
  6651. _formdiv = new U.UF.UI.form(
  6652. "思维导图",
  6653. _box, { //"/jsmind/example/demo.html"
  6654. "id": "mind" + cid + stage + task + tool,
  6655. "style": {
  6656. "width": "90%",
  6657. "height": "90%",
  6658. "overflow": 'hidden'
  6659. },
  6660. "onresize": function () { }
  6661. }, {
  6662. closecallback: function () { }
  6663. }, {
  6664. "style": {
  6665. "height": "36px"
  6666. }
  6667. }).form; //创建窗体
  6668. _taskbar = {
  6669. "id": str + _formdiv.id,
  6670. "style": {
  6671. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6672. },
  6673. "name": "思维导图",
  6674. "forms": _formdiv,
  6675. "click": function () {
  6676. U.MD.D.I.openApplication(str, obj, info);
  6677. }
  6678. }
  6679. break;
  6680. case "MindMap":
  6681. aTool = 3;
  6682. _iframe = $$("iframe", {
  6683. "frameborder": "no",
  6684. "border": "0",
  6685. "scrolling ": "no",
  6686. "style": {
  6687. "cssText": "border:0;width:100%;height:100%"
  6688. },
  6689. "src": "//cloud.cocorobo.cn/mind/"
  6690. })
  6691. _box.appendChild(_iframe);
  6692. _box.appendChild(_jie);
  6693. _formdiv = new U.UF.UI.form(
  6694. "思维导图",
  6695. _box, { //"/jsmind/example/demo.html"
  6696. "id": "mind" + cid + stage + task + tool,
  6697. "style": {
  6698. "width": "90%",
  6699. "height": "90%",
  6700. "overflow": 'hidden'
  6701. },
  6702. "onresize": function () { }
  6703. }, {
  6704. closecallback: function () { }
  6705. }, {
  6706. "style": {
  6707. "height": "36px"
  6708. }
  6709. }).form; //创建窗体
  6710. _taskbar = {
  6711. "id": str + _formdiv.id,
  6712. "style": {
  6713. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6714. },
  6715. "name": "思维导图",
  6716. "forms": _formdiv,
  6717. "click": function () {
  6718. U.MD.D.I.openApplication(str, obj, info);
  6719. }
  6720. }
  6721. break;
  6722. case "doc":
  6723. aTool = 6;
  6724. _iframe = $$("iframe", {
  6725. "frameborder": "no",
  6726. "border": "0",
  6727. "scrolling ": "no",
  6728. "style": {
  6729. "cssText": "border:0;width:100%;height:100%"
  6730. },
  6731. "src": "/Office/Word/WordEditArea.htm"
  6732. })
  6733. _box.appendChild(_iframe);
  6734. _box.appendChild(_jie);
  6735. _formdiv = new U.UF.UI.form(
  6736. "协同文档",
  6737. _box, {
  6738. "id": "doc" + cid + stage + task + tool,
  6739. "style": {
  6740. "width": "90%",
  6741. "height": "90%",
  6742. "overflow": 'hidden'
  6743. },
  6744. "onresize": function () { }
  6745. }, {
  6746. closecallback: function () { }
  6747. }, {
  6748. "style": {
  6749. "height": "36px"
  6750. }
  6751. }).form; //创建窗体
  6752. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6753. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6754. })
  6755. _taskbar = {
  6756. "id": str + _formdiv.id,
  6757. "style": {
  6758. "backgroundImage": "url(/img/icon/doc.png)"
  6759. },
  6760. "name": "协同文档",
  6761. "forms": _formdiv,
  6762. "click": function () {
  6763. U.MD.D.I.openApplication(str, obj, info);
  6764. }
  6765. }
  6766. break;
  6767. case "mindNetwork": //好友打开
  6768. aTool = 7;
  6769. _iframe = $$("iframe", {
  6770. "webkitallowfullscreen": "",
  6771. "mozallowfullscreen": "",
  6772. "allowfullscreen": "",
  6773. "frameborder": "no",
  6774. "border": "0",
  6775. "scrolling ": "no",
  6776. "style": {
  6777. "cssText": "border:0; width:100%; height:100%;"
  6778. },
  6779. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6780. })
  6781. _box.appendChild(_iframe);
  6782. _box.appendChild(_jie);
  6783. _formdiv = new U.UF.UI.form(
  6784. "思维网格",
  6785. _box, {
  6786. "id": "mindNetwork" + cid + stage + task + tool,
  6787. "style": {
  6788. "width": "90%",
  6789. "height": "90%",
  6790. "overflow": 'hidden'
  6791. },
  6792. "onresize": function () { }
  6793. }, {
  6794. closecallback: function () { }
  6795. }, {
  6796. "style": {
  6797. "height": "36px"
  6798. }
  6799. }).form; //创建窗体
  6800. _taskbar = {
  6801. "id": str + _formdiv.id,
  6802. "style": {
  6803. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6804. },
  6805. "name": "思维网格",
  6806. "forms": _formdiv,
  6807. "click": function () {
  6808. U.MD.D.I.openApplication(str, obj, info);
  6809. }
  6810. }
  6811. break;
  6812. case "courseDesign":
  6813. _iframe = $$("iframe", {
  6814. "webkitallowfullscreen": "",
  6815. "mozallowfullscreen": "",
  6816. "allowfullscreen": "",
  6817. "frameborder": "no",
  6818. "border": "0",
  6819. "scrolling ": "no",
  6820. "style": {
  6821. "cssText": "border:0; width:100%; height:100%;"
  6822. },
  6823. "src": "/course-design-vue"
  6824. })
  6825. _box.appendChild(_iframe);
  6826. _box.appendChild(_jie);
  6827. _formdiv = new U.UF.UI.form(
  6828. "项目设计",
  6829. _box, {
  6830. "id": "courseDesign" + cid + stage + task + tool,
  6831. "style": {
  6832. "width": "90%",
  6833. "height": "90%",
  6834. "overflow": 'hidden'
  6835. },
  6836. "onresize": function () { }
  6837. }, {
  6838. closecallback: function () { }
  6839. }, {
  6840. "style": {
  6841. "height": "36px"
  6842. }
  6843. }).form; //创建窗体
  6844. _taskbar = {
  6845. "id": str + _formdiv.id,
  6846. "style": {
  6847. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6848. },
  6849. "name": "项目设计",
  6850. "forms": _formdiv,
  6851. "click": function () {
  6852. U.MD.D.I.openApplication(str, obj, info);
  6853. }
  6854. }
  6855. break;
  6856. }
  6857. const script1 = document.createElement("script");
  6858. script1.type = "text/javascript";
  6859. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6860. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6861. const script2 = document.createElement("script");
  6862. script2.type = "text/javascript";
  6863. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6864. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6865. const script3 = document.createElement("script");
  6866. script3.type = "text/javascript";
  6867. script3.charset = "UTF-8";
  6868. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6869. const script4 = document.createElement("script");
  6870. script4.type = "text/javascript";
  6871. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6872. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6873. if (_iframe) {
  6874. if (str == 'doc') {
  6875. _iframe = _formdiv.querySelector('iframe')
  6876. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6877. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6878. _iframe.contentWindow.document.body.appendChild(script1);
  6879. _iframe.contentWindow.document.body.appendChild(script2);
  6880. // _iframe.contentWindow.document.body.appendChild(script3);
  6881. _iframe.contentWindow.document.body.appendChild(script4);
  6882. })
  6883. if (onloadListener) {
  6884. _iframe.contentDocument.location.reload()
  6885. } else {
  6886. _iframe.contentDocument.location.reload()
  6887. }
  6888. } else if (str == 'courseDesign') {
  6889. U.UF.DL.iframeLoad(_iframe, function () {
  6890. // _iframe.contentWindow.U.MD.O.W.load();
  6891. // _iframe.contentWindow.document.body.appendChild(script1);
  6892. _iframe.contentWindow.document.body.appendChild(script2);
  6893. _iframe.contentWindow.document.body.appendChild(script4);
  6894. })
  6895. } else if (str == 'mind') {
  6896. _iframe = _formdiv.querySelector('iframe')
  6897. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6898. //
  6899. _iframe.contentWindow.document.body.appendChild(script1);
  6900. _iframe.contentWindow.document.body.appendChild(script2);
  6901. _iframe.contentWindow.document.body.appendChild(script4);
  6902. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6903. })
  6904. if (onloadListener) {
  6905. _iframe.contentDocument.location.reload()
  6906. } else {
  6907. _iframe.contentDocument.location.reload()
  6908. }
  6909. } else if (str == 'whiteboard') {
  6910. _iframe = _formdiv.querySelector('iframe')
  6911. let onloadListener = _iframe.onload = () => {
  6912. _iframe.contentWindow.document.body.appendChild(script1);
  6913. _iframe.contentWindow.document.body.appendChild(script2);
  6914. _iframe.contentWindow.document.body.appendChild(script4);
  6915. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6916. };
  6917. // if (onloadListener) {
  6918. // try {
  6919. // _iframe.src += "?cocorobo="+new Date().getTime()
  6920. // _iframe.contentWindow.document.location.reload()
  6921. // } catch (error) {
  6922. // }
  6923. // } else {
  6924. // _iframe.contentDocument.location.reload()
  6925. // }
  6926. } else {
  6927. _iframe.onload = () => {
  6928. _iframe.contentWindow.document.body.appendChild(script1);
  6929. _iframe.contentWindow.document.body.appendChild(script2);
  6930. // _iframe.contentWindow.document.body.appendChild(script3);
  6931. _iframe.contentWindow.document.body.appendChild(script4);
  6932. };
  6933. }
  6934. _jie.onclick = async () => {
  6935. let text = ''
  6936. if (aTool == 1) {
  6937. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6938. } else if (aTool == 6) {
  6939. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6940. } else if (aTool == 3) {
  6941. text = await U.MD.D.I.getEditorContent(_iframe);
  6942. }
  6943. _loading.style.display = 'flex'
  6944. console.log(_loading);
  6945. var _ajs = _iframe.contentWindow.document.createElement("script");
  6946. _ajs.type = "text/javascript";
  6947. _ajs.innerHTML =
  6948. // 'console.log(' + _loading + ');\n' +
  6949. 'var _js = document.createElement("script");\n' +
  6950. '_js.type="text/javascript";\n' +
  6951. '_js.charset="UTF-8";\n' +
  6952. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6953. "_js.onload = function(){\n" +
  6954. ' var a = document.getElementsByTagName("img")\n' +
  6955. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6956. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6957. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6958. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6959. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6960. "beforeUpload_shishi(file," +
  6961. "'" +
  6962. _userid +
  6963. "'" +
  6964. ", " +
  6965. "'" +
  6966. _cid +
  6967. "'" +
  6968. ", " +
  6969. "'" +
  6970. _stage +
  6971. "'" +
  6972. ", " +
  6973. "'" +
  6974. _task +
  6975. "'" +
  6976. ", " +
  6977. "'" +
  6978. _tool +
  6979. "'" +
  6980. ", " +
  6981. "'" +
  6982. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6983. "'" +
  6984. ", " +
  6985. "'" +
  6986. aTool +
  6987. "'" +
  6988. ", " +
  6989. "`" +
  6990. text +
  6991. "`" +
  6992. ")\n" +
  6993. " });\n" +
  6994. "}\n" +
  6995. "document.head.appendChild(_js);\n";
  6996. _iframe.contentWindow.document.head.appendChild(_ajs);
  6997. }
  6998. }
  6999. //U.MD.D.I.openClick(str);
  7000. //如果有任务栏信息
  7001. // if (_taskbar) {
  7002. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7003. // }
  7004. }
  7005. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7006. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7007. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7008. _userinfo = US.userInfo, //登录用户信息
  7009. _userid = US.userInfo.userid //登录用户id
  7010. let _iframe;
  7011. let _cid = cid,
  7012. _stage = stage,
  7013. _task = task,
  7014. _tool = tool;
  7015. var _jie = $$("div", {
  7016. "style": {
  7017. "position": "absolute",
  7018. "bottom": "50px",
  7019. "right": "50px",
  7020. "zIndex": "9999",
  7021. "backgroundColor": "#2268bc",
  7022. "color": "#fff",
  7023. "padding": "12px 20px",
  7024. "cursor": "pointer",
  7025. "borderRadius": "4px",
  7026. },
  7027. "innerHTML": "提交作业"
  7028. })
  7029. let aTool = ''
  7030. let _loading = document.createElement('div')
  7031. _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;"
  7032. // _loading.id = "";
  7033. let _lchild = document.createElement('div')
  7034. let _limg = document.createElement('img')
  7035. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7036. _limg.style = "width: 26px;margin-right: 10px;"
  7037. _lchild.appendChild(_limg)
  7038. let _lspan = document.createElement('span')
  7039. _lspan.innerHTML = "上传中..."
  7040. _lchild.appendChild(_lspan)
  7041. _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%);"
  7042. _loading.appendChild(_lchild)
  7043. let _box = $$('div', {
  7044. "style": {
  7045. "position": "relative",
  7046. "width": "100%",
  7047. "height": "100%",
  7048. },
  7049. })
  7050. _box.appendChild(_loading)
  7051. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7052. switch (str) {
  7053. case "whiteboard":
  7054. aTool = 1;
  7055. _iframe = $$("iframe", {
  7056. "frameborder": "no",
  7057. "border": "0",
  7058. "scrolling ": "no",
  7059. "style": {
  7060. "cssText": "border:0;width:100%;height:100%"
  7061. },
  7062. "src": "https://beta.iwb.cocorobo.cn/"
  7063. })
  7064. _box.appendChild(_iframe);
  7065. _box.appendChild(_jie);
  7066. _formdiv = new U.UF.UI.form(
  7067. "电子白板",
  7068. _box, {
  7069. "id": "whiteboard" + cid + stage + task + tool,
  7070. "style": {
  7071. "width": "90%",
  7072. "height": "90%",
  7073. "overflow": 'hidden'
  7074. },
  7075. "onresize": function () { }
  7076. }, {
  7077. closecallback: function () { }
  7078. }, {
  7079. "style": {
  7080. "height": "36px"
  7081. }
  7082. }).form; //创建窗体
  7083. _taskbar = {
  7084. "id": str + _formdiv.id,
  7085. "style": {
  7086. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7087. },
  7088. "name": "电子白板",
  7089. "forms": _formdiv,
  7090. "click": function () {
  7091. U.MD.D.I.openApplication(str, obj, info);
  7092. }
  7093. }
  7094. break;
  7095. case "mind":
  7096. aTool = 3;
  7097. _iframe = $$("iframe", {
  7098. "frameborder": "no",
  7099. "border": "0",
  7100. "scrolling ": "no",
  7101. "style": {
  7102. "cssText": "border:0;width:100%;height:100%"
  7103. },
  7104. "src": "/kityminder-editor/dist/index.html"
  7105. })
  7106. _box.appendChild(_iframe);
  7107. _box.appendChild(_jie);
  7108. _formdiv = new U.UF.UI.form(
  7109. "思维导图",
  7110. _box, { //"/jsmind/example/demo.html"
  7111. "id": "mind" + cid + stage + task + tool,
  7112. "style": {
  7113. "width": "90%",
  7114. "height": "90%",
  7115. "overflow": 'hidden'
  7116. },
  7117. "onresize": function () { }
  7118. }, {
  7119. closecallback: function () { }
  7120. }, {
  7121. "style": {
  7122. "height": "36px"
  7123. }
  7124. }).form; //创建窗体
  7125. _taskbar = {
  7126. "id": str + _formdiv.id,
  7127. "style": {
  7128. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7129. },
  7130. "name": "思维导图",
  7131. "forms": _formdiv,
  7132. "click": function () {
  7133. U.MD.D.I.openApplication(str, obj, info);
  7134. }
  7135. }
  7136. break;
  7137. case "MindMap":
  7138. aTool = 3;
  7139. _iframe = $$("iframe", {
  7140. "frameborder": "no",
  7141. "border": "0",
  7142. "scrolling ": "no",
  7143. "style": {
  7144. "cssText": "border:0;width:100%;height:100%"
  7145. },
  7146. "src": "//cloud.cocorobo.cn/mind/"
  7147. })
  7148. _box.appendChild(_iframe);
  7149. _box.appendChild(_jie);
  7150. _formdiv = new U.UF.UI.form(
  7151. "思维导图",
  7152. _box, { //"/jsmind/example/demo.html"
  7153. "id": "mind" + cid + stage + task + tool,
  7154. "style": {
  7155. "width": "90%",
  7156. "height": "90%",
  7157. "overflow": 'hidden'
  7158. },
  7159. "onresize": function () { }
  7160. }, {
  7161. closecallback: function () { }
  7162. }, {
  7163. "style": {
  7164. "height": "36px"
  7165. }
  7166. }).form; //创建窗体
  7167. _taskbar = {
  7168. "id": str + _formdiv.id,
  7169. "style": {
  7170. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7171. },
  7172. "name": "思维导图",
  7173. "forms": _formdiv,
  7174. "click": function () {
  7175. U.MD.D.I.openApplication(str, obj, info);
  7176. }
  7177. }
  7178. break;
  7179. case "doc":
  7180. aTool = 6;
  7181. _iframe = $$("iframe", {
  7182. "frameborder": "no",
  7183. "border": "0",
  7184. "scrolling ": "no",
  7185. "style": {
  7186. "cssText": "border:0;width:100%;height:100%"
  7187. },
  7188. "src": "/Office/Word/WordEditArea.htm"
  7189. })
  7190. _box.appendChild(_iframe);
  7191. _box.appendChild(_jie);
  7192. _formdiv = new U.UF.UI.form(
  7193. "协同文档",
  7194. _box, {
  7195. "id": "doc" + cid + stage + task + tool,
  7196. "style": {
  7197. "width": "90%",
  7198. "height": "90%",
  7199. "overflow": 'hidden'
  7200. },
  7201. "onresize": function () { }
  7202. }, {
  7203. closecallback: function () { }
  7204. }, {
  7205. "style": {
  7206. "height": "36px"
  7207. }
  7208. }).form; //创建窗体
  7209. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7210. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7211. })
  7212. _taskbar = {
  7213. "id": str + _formdiv.id,
  7214. "style": {
  7215. "backgroundImage": "url(/img/icon/doc.png)"
  7216. },
  7217. "name": "协同文档",
  7218. "forms": _formdiv,
  7219. "click": function () {
  7220. U.MD.D.I.openApplication(str, obj, info);
  7221. }
  7222. }
  7223. break;
  7224. case "mindNetwork": //好友打开
  7225. aTool = 7;
  7226. _iframe = $$("iframe", {
  7227. "webkitallowfullscreen": "",
  7228. "mozallowfullscreen": "",
  7229. "allowfullscreen": "",
  7230. "frameborder": "no",
  7231. "border": "0",
  7232. "scrolling ": "no",
  7233. "style": {
  7234. "cssText": "border:0; width:100%; height:100%;"
  7235. },
  7236. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7237. })
  7238. _box.appendChild(_iframe);
  7239. _box.appendChild(_jie);
  7240. _formdiv = new U.UF.UI.form(
  7241. "思维网格",
  7242. _box, {
  7243. "id": "mindNetwork" + cid + stage + task + tool,
  7244. "style": {
  7245. "width": "90%",
  7246. "height": "90%",
  7247. "overflow": 'hidden'
  7248. },
  7249. "onresize": function () { }
  7250. }, {
  7251. closecallback: function () { }
  7252. }, {
  7253. "style": {
  7254. "height": "36px"
  7255. }
  7256. }).form; //创建窗体
  7257. _taskbar = {
  7258. "id": str + _formdiv.id,
  7259. "style": {
  7260. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7261. },
  7262. "name": "思维网格",
  7263. "forms": _formdiv,
  7264. "click": function () {
  7265. U.MD.D.I.openApplication(str, obj, info);
  7266. }
  7267. }
  7268. break;
  7269. case "courseDesign":
  7270. _iframe = $$("iframe", {
  7271. "webkitallowfullscreen": "",
  7272. "mozallowfullscreen": "",
  7273. "allowfullscreen": "",
  7274. "frameborder": "no",
  7275. "border": "0",
  7276. "scrolling ": "no",
  7277. "style": {
  7278. "cssText": "border:0; width:100%; height:100%;"
  7279. },
  7280. "src": "/course-design-vue"
  7281. })
  7282. _box.appendChild(_iframe);
  7283. _box.appendChild(_jie);
  7284. _formdiv = new U.UF.UI.form(
  7285. "项目设计",
  7286. _box, {
  7287. "id": "courseDesign" + cid + stage + task + tool,
  7288. "style": {
  7289. "width": "90%",
  7290. "height": "90%",
  7291. "overflow": 'hidden'
  7292. },
  7293. "onresize": function () { }
  7294. }, {
  7295. closecallback: function () { }
  7296. }, {
  7297. "style": {
  7298. "height": "36px"
  7299. }
  7300. }).form; //创建窗体
  7301. _taskbar = {
  7302. "id": str + _formdiv.id,
  7303. "style": {
  7304. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7305. },
  7306. "name": "项目设计",
  7307. "forms": _formdiv,
  7308. "click": function () {
  7309. U.MD.D.I.openApplication(str, obj, info);
  7310. }
  7311. }
  7312. break;
  7313. }
  7314. const script1 = document.createElement("script");
  7315. script1.type = "text/javascript";
  7316. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7317. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7318. const script2 = document.createElement("script");
  7319. script2.type = "text/javascript";
  7320. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7321. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7322. const script3 = document.createElement("script");
  7323. script3.type = "text/javascript";
  7324. script3.charset = "UTF-8";
  7325. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7326. const script4 = document.createElement("script");
  7327. script4.type = "text/javascript";
  7328. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7329. script4.src = window.origin + "/js/Common/jietu2E.js";
  7330. if (_iframe) {
  7331. if (str == 'doc') {
  7332. _iframe = _formdiv.querySelector('iframe')
  7333. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7334. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7335. _iframe.contentWindow.document.body.appendChild(script1);
  7336. _iframe.contentWindow.document.body.appendChild(script2);
  7337. // _iframe.contentWindow.document.body.appendChild(script3);
  7338. _iframe.contentWindow.document.body.appendChild(script4);
  7339. })
  7340. if (onloadListener) {
  7341. _iframe.contentDocument.location.reload()
  7342. } else {
  7343. _iframe.contentDocument.location.reload()
  7344. }
  7345. } else if (str == 'courseDesign') {
  7346. U.UF.DL.iframeLoad(_iframe, function () {
  7347. // _iframe.contentWindow.U.MD.O.W.load();
  7348. // _iframe.contentWindow.document.body.appendChild(script1);
  7349. _iframe.contentWindow.document.body.appendChild(script2);
  7350. _iframe.contentWindow.document.body.appendChild(script4);
  7351. })
  7352. } else if (str == 'mind') {
  7353. _iframe = _formdiv.querySelector('iframe')
  7354. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7355. //
  7356. _iframe.contentWindow.document.body.appendChild(script1);
  7357. _iframe.contentWindow.document.body.appendChild(script2);
  7358. _iframe.contentWindow.document.body.appendChild(script4);
  7359. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7360. })
  7361. if (onloadListener) {
  7362. _iframe.contentDocument.location.reload()
  7363. } else {
  7364. _iframe.contentDocument.location.reload()
  7365. }
  7366. } else if (str == 'whiteboard') {
  7367. _iframe = _formdiv.querySelector('iframe')
  7368. let onloadListener = _iframe.onload = () => {
  7369. _iframe.contentWindow.document.body.appendChild(script1);
  7370. _iframe.contentWindow.document.body.appendChild(script2);
  7371. _iframe.contentWindow.document.body.appendChild(script4);
  7372. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7373. };
  7374. // if (onloadListener) {
  7375. // try {
  7376. // _iframe.src += "?cocorobo="+new Date().getTime()
  7377. // _iframe.contentWindow.document.location.reload()
  7378. // } catch (error) {
  7379. // }
  7380. // } else {
  7381. // _iframe.contentDocument.location.reload()
  7382. // }
  7383. } else {
  7384. _iframe.onload = () => {
  7385. _iframe.contentWindow.document.body.appendChild(script1);
  7386. _iframe.contentWindow.document.body.appendChild(script2);
  7387. // _iframe.contentWindow.document.body.appendChild(script3);
  7388. _iframe.contentWindow.document.body.appendChild(script4);
  7389. };
  7390. }
  7391. _jie.onclick = async () => {
  7392. let text = ''
  7393. if (aTool == 1) {
  7394. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7395. } else if (aTool == 6) {
  7396. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7397. } else if (aTool == 3) {
  7398. text = await U.MD.D.I.getEditorContent(_iframe);
  7399. }
  7400. _loading.style.display = 'flex'
  7401. console.log(_loading);
  7402. var _ajs = _iframe.contentWindow.document.createElement("script");
  7403. _ajs.type = "text/javascript";
  7404. _ajs.innerHTML =
  7405. // 'console.log(' + _loading + ');\n' +
  7406. 'var _js = document.createElement("script");\n' +
  7407. '_js.type="text/javascript";\n' +
  7408. '_js.charset="UTF-8";\n' +
  7409. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7410. "_js.onload = function(){\n" +
  7411. ' var a = document.getElementsByTagName("img")\n' +
  7412. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7413. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7414. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7415. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7416. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7417. "beforeUpload_shishi(file," +
  7418. "'" +
  7419. _userid +
  7420. "'" +
  7421. ", " +
  7422. "'" +
  7423. _cid +
  7424. "'" +
  7425. ", " +
  7426. "'" +
  7427. _stage +
  7428. "'" +
  7429. ", " +
  7430. "'" +
  7431. _task +
  7432. "'" +
  7433. ", " +
  7434. "'" +
  7435. _tool +
  7436. "'" +
  7437. ", " +
  7438. "'" +
  7439. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7440. "'" +
  7441. ", " +
  7442. "'" +
  7443. aTool +
  7444. "'" +
  7445. ", " +
  7446. "`" +
  7447. text +
  7448. "`" +
  7449. ")\n" +
  7450. " });\n" +
  7451. "}\n" +
  7452. "document.head.appendChild(_js);\n";
  7453. _iframe.contentWindow.document.head.appendChild(_ajs);
  7454. }
  7455. }
  7456. //U.MD.D.I.openClick(str);
  7457. //如果有任务栏信息
  7458. // if (_taskbar) {
  7459. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7460. // }
  7461. }
  7462. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7463. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7464. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7465. _userid = student.userid, //登录用户id
  7466. _username = student.student //用户名字
  7467. let _iframe;
  7468. let _cid = cid,
  7469. _stage = stage,
  7470. _task = task,
  7471. _tool = tool;
  7472. var _jie = $$("div", {
  7473. "style": {
  7474. "position": "absolute",
  7475. "bottom": "50px",
  7476. "right": "50px",
  7477. "zIndex": "9999",
  7478. "backgroundColor": "#2268bc",
  7479. "color": "#fff",
  7480. "padding": "12px 20px",
  7481. "cursor": "pointer",
  7482. "borderRadius": "4px",
  7483. },
  7484. "innerHTML": "提交作业"
  7485. })
  7486. let aTool = ''
  7487. let _loading = document.createElement('div')
  7488. _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;"
  7489. // _loading.id = "";
  7490. let _lchild = document.createElement('div')
  7491. let _limg = document.createElement('img')
  7492. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7493. _limg.style = "width: 26px;margin-right: 10px;"
  7494. _lchild.appendChild(_limg)
  7495. let _lspan = document.createElement('span')
  7496. _lspan.innerHTML = "上传中..."
  7497. _lchild.appendChild(_lspan)
  7498. _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%);"
  7499. _loading.appendChild(_lchild)
  7500. var _box = $$('div', {
  7501. "style": {
  7502. "position": "relative",
  7503. "width": "100%",
  7504. "height": "100%",
  7505. },
  7506. })
  7507. _box.appendChild(_loading)
  7508. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7509. switch (str) {
  7510. case "whiteboard":
  7511. aTool = 1;
  7512. _iframe = $$("iframe", {
  7513. "frameborder": "no",
  7514. "border": "0",
  7515. "scrolling ": "no",
  7516. "style": {
  7517. "cssText": "border:0;width:100%;height:100%"
  7518. },
  7519. "src": "https://beta.iwb.cocorobo.cn/"
  7520. })
  7521. _box.appendChild(_iframe);
  7522. _box.appendChild(_jie);
  7523. _formdiv = new U.UF.UI.form(
  7524. "电子白板-" + _username,
  7525. _box, {
  7526. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7527. "style": {
  7528. "width": "90%",
  7529. "height": "90%",
  7530. "overflow": 'hidden'
  7531. },
  7532. "onresize": function () { }
  7533. }, {
  7534. closecallback: function () { }
  7535. }, {
  7536. "style": {
  7537. "height": "36px"
  7538. }
  7539. }).form; //创建窗体
  7540. _taskbar = {
  7541. "id": str + _formdiv.id,
  7542. "style": {
  7543. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7544. },
  7545. "name": "电子白板",
  7546. "forms": _formdiv,
  7547. "click": function () {
  7548. U.MD.D.I.openApplication(str, obj, info);
  7549. }
  7550. }
  7551. break;
  7552. case "mind":
  7553. aTool = 3;
  7554. _iframe = $$("iframe", {
  7555. "frameborder": "no",
  7556. "border": "0",
  7557. "scrolling ": "no",
  7558. "style": {
  7559. "cssText": "border:0;width:100%;height:100%"
  7560. },
  7561. "src": "/kityminder-editor/dist/index.html"
  7562. })
  7563. _box.appendChild(_iframe);
  7564. _box.appendChild(_jie);
  7565. _formdiv = new U.UF.UI.form(
  7566. "思维导图-" + _username,
  7567. _box, { //"/jsmind/example/demo.html"
  7568. "id": "mind" + cid + stage + task + tool + _userid,
  7569. "style": {
  7570. "width": "90%",
  7571. "height": "90%",
  7572. "overflow": 'hidden'
  7573. },
  7574. "onresize": function () { }
  7575. }, {
  7576. closecallback: function () { }
  7577. }, {
  7578. "style": {
  7579. "height": "36px"
  7580. }
  7581. }).form; //创建窗体
  7582. _taskbar = {
  7583. "id": str + _formdiv.id,
  7584. "style": {
  7585. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7586. },
  7587. "name": "思维导图",
  7588. "forms": _formdiv,
  7589. "click": function () {
  7590. U.MD.D.I.openApplication(str, obj, info);
  7591. }
  7592. }
  7593. break;
  7594. case "MindMap":
  7595. aTool = 3;
  7596. _iframe = $$("iframe", {
  7597. "frameborder": "no",
  7598. "border": "0",
  7599. "scrolling ": "no",
  7600. "style": {
  7601. "cssText": "border:0;width:100%;height:100%"
  7602. },
  7603. "src": "//cloud.cocorobo.cn/mind/"
  7604. })
  7605. _box.appendChild(_iframe);
  7606. _box.appendChild(_jie);
  7607. _formdiv = new U.UF.UI.form(
  7608. "思维导图-" + _username,
  7609. _box, { //"/jsmind/example/demo.html"
  7610. "id": "mind" + cid + stage + task + tool + _userid,
  7611. "style": {
  7612. "width": "90%",
  7613. "height": "90%",
  7614. "overflow": 'hidden'
  7615. },
  7616. "onresize": function () { }
  7617. }, {
  7618. closecallback: function () { }
  7619. }, {
  7620. "style": {
  7621. "height": "36px"
  7622. }
  7623. }).form; //创建窗体
  7624. _taskbar = {
  7625. "id": str + _formdiv.id,
  7626. "style": {
  7627. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7628. },
  7629. "name": "思维导图",
  7630. "forms": _formdiv,
  7631. "click": function () {
  7632. U.MD.D.I.openApplication(str, obj, info);
  7633. }
  7634. }
  7635. break;
  7636. case "doc":
  7637. aTool = 6;
  7638. _iframe = $$("iframe", {
  7639. "frameborder": "no",
  7640. "border": "0",
  7641. "scrolling ": "no",
  7642. "style": {
  7643. "cssText": "border:0;width:100%;height:100%"
  7644. },
  7645. "src": "/Office/Word/WordEditArea.htm"
  7646. })
  7647. _box.appendChild(_iframe);
  7648. _box.appendChild(_jie);
  7649. _formdiv = new U.UF.UI.form(
  7650. "协同文档-" + _username,
  7651. _box, {
  7652. "id": "doc" + cid + stage + task + tool + _userid,
  7653. "style": {
  7654. "width": "90%",
  7655. "height": "90%",
  7656. "overflow": 'hidden'
  7657. },
  7658. "onresize": function () { }
  7659. }, {
  7660. closecallback: function () { }
  7661. }, {
  7662. "style": {
  7663. "height": "36px"
  7664. }
  7665. }).form; //创建窗体
  7666. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7667. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7668. })
  7669. _taskbar = {
  7670. "id": str + _formdiv.id,
  7671. "style": {
  7672. "backgroundImage": "url(/img/icon/doc.png)"
  7673. },
  7674. "name": "协同文档",
  7675. "forms": _formdiv,
  7676. "click": function () {
  7677. U.MD.D.I.openApplication(str, obj, info);
  7678. }
  7679. }
  7680. break;
  7681. case "mindNetwork": //好友打开
  7682. aTool = 7;
  7683. _iframe = $$("iframe", {
  7684. "webkitallowfullscreen": "",
  7685. "mozallowfullscreen": "",
  7686. "allowfullscreen": "",
  7687. "frameborder": "no",
  7688. "border": "0",
  7689. "scrolling ": "no",
  7690. "style": {
  7691. "cssText": "border:0; width:100%; height:100%;"
  7692. },
  7693. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7694. })
  7695. _box.appendChild(_iframe);
  7696. _box.appendChild(_jie);
  7697. _formdiv = new U.UF.UI.form(
  7698. "思维网格-" + _username,
  7699. _box, {
  7700. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7701. "style": {
  7702. "width": "90%",
  7703. "height": "90%",
  7704. "overflow": 'hidden'
  7705. },
  7706. "onresize": function () { }
  7707. }, {
  7708. closecallback: function () { }
  7709. }, {
  7710. "style": {
  7711. "height": "36px"
  7712. }
  7713. }).form; //创建窗体
  7714. _taskbar = {
  7715. "id": str + _formdiv.id,
  7716. "style": {
  7717. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7718. },
  7719. "name": "思维网格",
  7720. "forms": _formdiv,
  7721. "click": function () {
  7722. U.MD.D.I.openApplication(str, obj, info);
  7723. }
  7724. }
  7725. break;
  7726. case "courseDesign":
  7727. _iframe = $$("iframe", {
  7728. "webkitallowfullscreen": "",
  7729. "mozallowfullscreen": "",
  7730. "allowfullscreen": "",
  7731. "frameborder": "no",
  7732. "border": "0",
  7733. "scrolling ": "no",
  7734. "style": {
  7735. "cssText": "border:0; width:100%; height:100%;"
  7736. },
  7737. "src": "/course-design-vue"
  7738. })
  7739. _box.appendChild(_iframe);
  7740. _box.appendChild(_jie);
  7741. _formdiv = new U.UF.UI.form(
  7742. "项目设计-" + _username,
  7743. _box, {
  7744. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7745. "style": {
  7746. "width": "90%",
  7747. "height": "90%",
  7748. "overflow": 'hidden'
  7749. },
  7750. "onresize": function () { }
  7751. }, {
  7752. closecallback: function () { }
  7753. }, {
  7754. "style": {
  7755. "height": "36px"
  7756. }
  7757. }).form; //创建窗体
  7758. _taskbar = {
  7759. "id": str + _formdiv.id,
  7760. "style": {
  7761. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7762. },
  7763. "name": "项目设计",
  7764. "forms": _formdiv,
  7765. "click": function () {
  7766. U.MD.D.I.openApplication(str, obj, info);
  7767. }
  7768. }
  7769. break;
  7770. }
  7771. const script1 = document.createElement("script");
  7772. script1.type = "text/javascript";
  7773. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7774. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7775. const script2 = document.createElement("script");
  7776. script2.type = "text/javascript";
  7777. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7778. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7779. const script3 = document.createElement("script");
  7780. script3.type = "text/javascript";
  7781. script3.charset = "UTF-8";
  7782. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7783. const script4 = document.createElement("script");
  7784. script4.type = "text/javascript";
  7785. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7786. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7787. if (_iframe) {
  7788. if (str == 'doc') {
  7789. _iframe = _formdiv.querySelector('iframe')
  7790. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7791. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7792. _iframe.contentWindow.document.body.appendChild(script1);
  7793. _iframe.contentWindow.document.body.appendChild(script2);
  7794. // _iframe.contentWindow.document.body.appendChild(script3);
  7795. _iframe.contentWindow.document.body.appendChild(script4);
  7796. })
  7797. if (onloadListener) {
  7798. _iframe.contentDocument.location.reload()
  7799. } else {
  7800. _iframe.contentDocument.location.reload()
  7801. }
  7802. } else if (str == 'courseDesign') {
  7803. U.UF.DL.iframeLoad(_iframe, function () {
  7804. // _iframe.contentWindow.U.MD.O.W.load();
  7805. // _iframe.contentWindow.document.body.appendChild(script1);
  7806. _iframe.contentWindow.document.body.appendChild(script2);
  7807. _iframe.contentWindow.document.body.appendChild(script4);
  7808. })
  7809. } else if (str == 'mind') {
  7810. _iframe = _formdiv.querySelector('iframe')
  7811. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7812. //
  7813. _iframe.contentWindow.document.body.appendChild(script1);
  7814. _iframe.contentWindow.document.body.appendChild(script2);
  7815. _iframe.contentWindow.document.body.appendChild(script4);
  7816. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7817. })
  7818. if (onloadListener) {
  7819. _iframe.contentDocument.location.reload()
  7820. } else {
  7821. _iframe.contentDocument.location.reload()
  7822. }
  7823. } else if (str == 'whiteboard') {
  7824. _iframe = _formdiv.querySelector('iframe')
  7825. let onloadListener = _iframe.onload = () => {
  7826. _iframe.contentWindow.document.body.appendChild(script1);
  7827. _iframe.contentWindow.document.body.appendChild(script2);
  7828. _iframe.contentWindow.document.body.appendChild(script4);
  7829. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7830. };
  7831. // if (onloadListener) {
  7832. // try {
  7833. // _iframe.src += "?cocorobo="+new Date().getTime()
  7834. // _iframe.contentWindow.document.location.reload()
  7835. // } catch (error) {
  7836. // }
  7837. // } else {
  7838. // _iframe.contentDocument.location.reload()
  7839. // }
  7840. } else {
  7841. _iframe.onload = () => {
  7842. _iframe.contentWindow.document.body.appendChild(script1);
  7843. _iframe.contentWindow.document.body.appendChild(script2);
  7844. // _iframe.contentWindow.document.body.appendChild(script3);
  7845. _iframe.contentWindow.document.body.appendChild(script4);
  7846. };
  7847. }
  7848. _jie.onclick = async () => {
  7849. let text = ''
  7850. if (aTool == 1) {
  7851. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7852. } else if (aTool == 6) {
  7853. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7854. } else if (aTool == 3) {
  7855. text = await U.MD.D.I.getEditorContent(_iframe);
  7856. }
  7857. _loading.style.display = 'flex'
  7858. console.log(_loading);
  7859. var _ajs = _iframe.contentWindow.document.createElement("script");
  7860. _ajs.type = "text/javascript";
  7861. _ajs.innerHTML =
  7862. // 'console.log(' + _loading + ');\n' +
  7863. 'var _js = document.createElement("script");\n' +
  7864. '_js.type="text/javascript";\n' +
  7865. '_js.charset="UTF-8";\n' +
  7866. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7867. "_js.onload = function(){\n" +
  7868. ' var a = document.getElementsByTagName("img")\n' +
  7869. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7870. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7871. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7872. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7873. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7874. "beforeUpload_shishi(file," +
  7875. "'" +
  7876. _userid +
  7877. "'" +
  7878. ", " +
  7879. "'" +
  7880. _cid +
  7881. "'" +
  7882. ", " +
  7883. "'" +
  7884. _stage +
  7885. "'" +
  7886. ", " +
  7887. "'" +
  7888. _task +
  7889. "'" +
  7890. ", " +
  7891. "'" +
  7892. _tool +
  7893. "'" +
  7894. ", " +
  7895. "'" +
  7896. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7897. "'" +
  7898. ", " +
  7899. "'" +
  7900. aTool +
  7901. "'" +
  7902. ", " +
  7903. "`" +
  7904. text +
  7905. "`" +
  7906. ")\n" +
  7907. " });\n" +
  7908. "}\n" +
  7909. "document.head.appendChild(_js);\n";
  7910. _iframe.contentWindow.document.head.appendChild(_ajs);
  7911. }
  7912. }
  7913. }
  7914. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7915. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7916. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7917. _userid = student.userid, //登录用户id
  7918. _username = student.student //用户名字
  7919. let _iframe;
  7920. let _cid = cid,
  7921. _stage = stage,
  7922. _task = task,
  7923. _tool = tool;
  7924. var _jie = $$("div", {
  7925. "style": {
  7926. "position": "absolute",
  7927. "bottom": "50px",
  7928. "right": "50px",
  7929. "zIndex": "9999",
  7930. "backgroundColor": "#2268bc",
  7931. "color": "#fff",
  7932. "padding": "12px 20px",
  7933. "cursor": "pointer",
  7934. "borderRadius": "4px",
  7935. },
  7936. "innerHTML": "提交作业"
  7937. })
  7938. let aTool = ''
  7939. let _loading = document.createElement('div')
  7940. _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;"
  7941. // _loading.id = "";
  7942. let _lchild = document.createElement('div')
  7943. let _limg = document.createElement('img')
  7944. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7945. _limg.style = "width: 26px;margin-right: 10px;"
  7946. _lchild.appendChild(_limg)
  7947. let _lspan = document.createElement('span')
  7948. _lspan.innerHTML = "上传中..."
  7949. _lchild.appendChild(_lspan)
  7950. _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%);"
  7951. _loading.appendChild(_lchild)
  7952. var _box = $$('div', {
  7953. "style": {
  7954. "position": "relative",
  7955. "width": "100%",
  7956. "height": "100%",
  7957. },
  7958. })
  7959. _box.appendChild(_loading)
  7960. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7961. switch (str) {
  7962. case "whiteboard":
  7963. aTool = 1;
  7964. _iframe = $$("iframe", {
  7965. "frameborder": "no",
  7966. "border": "0",
  7967. "scrolling ": "no",
  7968. "style": {
  7969. "cssText": "border:0;width:100%;height:100%"
  7970. },
  7971. "src": "https://beta.iwb.cocorobo.cn/"
  7972. })
  7973. _box.appendChild(_iframe);
  7974. _box.appendChild(_jie);
  7975. _formdiv = new U.UF.UI.form(
  7976. "电子白板-" + _username,
  7977. _box, {
  7978. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7979. "style": {
  7980. "width": "90%",
  7981. "height": "90%",
  7982. "overflow": 'hidden'
  7983. },
  7984. "onresize": function () { }
  7985. }, {
  7986. closecallback: function () { }
  7987. }, {
  7988. "style": {
  7989. "height": "36px"
  7990. }
  7991. }).form; //创建窗体
  7992. _taskbar = {
  7993. "id": str + _formdiv.id,
  7994. "style": {
  7995. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7996. },
  7997. "name": "电子白板",
  7998. "forms": _formdiv,
  7999. "click": function () {
  8000. U.MD.D.I.openApplication(str, obj, info);
  8001. }
  8002. }
  8003. break;
  8004. case "mind":
  8005. aTool = 3;
  8006. _iframe = $$("iframe", {
  8007. "frameborder": "no",
  8008. "border": "0",
  8009. "scrolling ": "no",
  8010. "style": {
  8011. "cssText": "border:0;width:100%;height:100%"
  8012. },
  8013. "src": "/kityminder-editor/dist/index.html"
  8014. })
  8015. _box.appendChild(_iframe);
  8016. _box.appendChild(_jie);
  8017. _formdiv = new U.UF.UI.form(
  8018. "思维导图-" + _username,
  8019. _box, { //"/jsmind/example/demo.html"
  8020. "id": "mind" + cid + stage + task + tool + _userid,
  8021. "style": {
  8022. "width": "90%",
  8023. "height": "90%",
  8024. "overflow": 'hidden'
  8025. },
  8026. "onresize": function () { }
  8027. }, {
  8028. closecallback: function () { }
  8029. }, {
  8030. "style": {
  8031. "height": "36px"
  8032. }
  8033. }).form; //创建窗体
  8034. _taskbar = {
  8035. "id": str + _formdiv.id,
  8036. "style": {
  8037. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8038. },
  8039. "name": "思维导图",
  8040. "forms": _formdiv,
  8041. "click": function () {
  8042. U.MD.D.I.openApplication(str, obj, info);
  8043. }
  8044. }
  8045. break;
  8046. case "MindMap":
  8047. aTool = 3;
  8048. _iframe = $$("iframe", {
  8049. "frameborder": "no",
  8050. "border": "0",
  8051. "scrolling ": "no",
  8052. "style": {
  8053. "cssText": "border:0;width:100%;height:100%"
  8054. },
  8055. "src": "//cloud.cocorobo.cn/mind/"
  8056. })
  8057. _box.appendChild(_iframe);
  8058. _box.appendChild(_jie);
  8059. _formdiv = new U.UF.UI.form(
  8060. "思维导图-" + _username,
  8061. _box, { //"/jsmind/example/demo.html"
  8062. "id": "mind" + cid + stage + task + tool + _userid,
  8063. "style": {
  8064. "width": "90%",
  8065. "height": "90%",
  8066. "overflow": 'hidden'
  8067. },
  8068. "onresize": function () { }
  8069. }, {
  8070. closecallback: function () { }
  8071. }, {
  8072. "style": {
  8073. "height": "36px"
  8074. }
  8075. }).form; //创建窗体
  8076. _taskbar = {
  8077. "id": str + _formdiv.id,
  8078. "style": {
  8079. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8080. },
  8081. "name": "思维导图",
  8082. "forms": _formdiv,
  8083. "click": function () {
  8084. U.MD.D.I.openApplication(str, obj, info);
  8085. }
  8086. }
  8087. break;
  8088. case "doc":
  8089. aTool = 6;
  8090. _iframe = $$("iframe", {
  8091. "frameborder": "no",
  8092. "border": "0",
  8093. "scrolling ": "no",
  8094. "style": {
  8095. "cssText": "border:0;width:100%;height:100%"
  8096. },
  8097. "src": "/Office/Word/WordEditArea.htm"
  8098. })
  8099. _box.appendChild(_iframe);
  8100. _box.appendChild(_jie);
  8101. _formdiv = new U.UF.UI.form(
  8102. "协同文档-" + _username,
  8103. _box, {
  8104. "id": "doc" + cid + stage + task + tool + _userid,
  8105. "style": {
  8106. "width": "90%",
  8107. "height": "90%",
  8108. "overflow": 'hidden'
  8109. },
  8110. "onresize": function () { }
  8111. }, {
  8112. closecallback: function () { }
  8113. }, {
  8114. "style": {
  8115. "height": "36px"
  8116. }
  8117. }).form; //创建窗体
  8118. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8119. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8120. })
  8121. _taskbar = {
  8122. "id": str + _formdiv.id,
  8123. "style": {
  8124. "backgroundImage": "url(/img/icon/doc.png)"
  8125. },
  8126. "name": "协同文档",
  8127. "forms": _formdiv,
  8128. "click": function () {
  8129. U.MD.D.I.openApplication(str, obj, info);
  8130. }
  8131. }
  8132. break;
  8133. case "mindNetwork": //好友打开
  8134. aTool = 7;
  8135. _iframe = $$("iframe", {
  8136. "webkitallowfullscreen": "",
  8137. "mozallowfullscreen": "",
  8138. "allowfullscreen": "",
  8139. "frameborder": "no",
  8140. "border": "0",
  8141. "scrolling ": "no",
  8142. "style": {
  8143. "cssText": "border:0; width:100%; height:100%;"
  8144. },
  8145. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8146. })
  8147. _box.appendChild(_iframe);
  8148. _box.appendChild(_jie);
  8149. _formdiv = new U.UF.UI.form(
  8150. "思维网格-" + _username,
  8151. _box, {
  8152. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8153. "style": {
  8154. "width": "90%",
  8155. "height": "90%",
  8156. "overflow": 'hidden'
  8157. },
  8158. "onresize": function () { }
  8159. }, {
  8160. closecallback: function () { }
  8161. }, {
  8162. "style": {
  8163. "height": "36px"
  8164. }
  8165. }).form; //创建窗体
  8166. _taskbar = {
  8167. "id": str + _formdiv.id,
  8168. "style": {
  8169. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8170. },
  8171. "name": "思维网格",
  8172. "forms": _formdiv,
  8173. "click": function () {
  8174. U.MD.D.I.openApplication(str, obj, info);
  8175. }
  8176. }
  8177. break;
  8178. case "courseDesign":
  8179. _iframe = $$("iframe", {
  8180. "webkitallowfullscreen": "",
  8181. "mozallowfullscreen": "",
  8182. "allowfullscreen": "",
  8183. "frameborder": "no",
  8184. "border": "0",
  8185. "scrolling ": "no",
  8186. "style": {
  8187. "cssText": "border:0; width:100%; height:100%;"
  8188. },
  8189. "src": "/course-design-vue"
  8190. })
  8191. _box.appendChild(_iframe);
  8192. _box.appendChild(_jie);
  8193. _formdiv = new U.UF.UI.form(
  8194. "项目设计-" + _username,
  8195. _box, {
  8196. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8197. "style": {
  8198. "width": "90%",
  8199. "height": "90%",
  8200. "overflow": 'hidden'
  8201. },
  8202. "onresize": function () { }
  8203. }, {
  8204. closecallback: function () { }
  8205. }, {
  8206. "style": {
  8207. "height": "36px"
  8208. }
  8209. }).form; //创建窗体
  8210. _taskbar = {
  8211. "id": str + _formdiv.id,
  8212. "style": {
  8213. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8214. },
  8215. "name": "项目设计",
  8216. "forms": _formdiv,
  8217. "click": function () {
  8218. U.MD.D.I.openApplication(str, obj, info);
  8219. }
  8220. }
  8221. break;
  8222. }
  8223. const script1 = document.createElement("script");
  8224. script1.type = "text/javascript";
  8225. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8226. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8227. const script2 = document.createElement("script");
  8228. script2.type = "text/javascript";
  8229. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8230. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8231. const script3 = document.createElement("script");
  8232. script3.type = "text/javascript";
  8233. script3.charset = "UTF-8";
  8234. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8235. const script4 = document.createElement("script");
  8236. script4.type = "text/javascript";
  8237. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8238. script4.src = window.origin + "/js/Common/jietu2E.js";
  8239. if (_iframe) {
  8240. if (str == 'doc') {
  8241. _iframe = _formdiv.querySelector('iframe')
  8242. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8243. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8244. _iframe.contentWindow.document.body.appendChild(script1);
  8245. _iframe.contentWindow.document.body.appendChild(script2);
  8246. // _iframe.contentWindow.document.body.appendChild(script3);
  8247. _iframe.contentWindow.document.body.appendChild(script4);
  8248. })
  8249. if (onloadListener) {
  8250. _iframe.contentDocument.location.reload()
  8251. } else {
  8252. _iframe.contentDocument.location.reload()
  8253. }
  8254. } else if (str == 'courseDesign') {
  8255. U.UF.DL.iframeLoad(_iframe, function () {
  8256. // _iframe.contentWindow.U.MD.O.W.load();
  8257. // _iframe.contentWindow.document.body.appendChild(script1);
  8258. _iframe.contentWindow.document.body.appendChild(script2);
  8259. _iframe.contentWindow.document.body.appendChild(script4);
  8260. })
  8261. } else if (str == 'mind') {
  8262. _iframe = _formdiv.querySelector('iframe')
  8263. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8264. //
  8265. _iframe.contentWindow.document.body.appendChild(script1);
  8266. _iframe.contentWindow.document.body.appendChild(script2);
  8267. _iframe.contentWindow.document.body.appendChild(script4);
  8268. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8269. })
  8270. if (onloadListener) {
  8271. _iframe.contentDocument.location.reload()
  8272. } else {
  8273. _iframe.contentDocument.location.reload()
  8274. }
  8275. } else if (str == 'whiteboard') {
  8276. _iframe = _formdiv.querySelector('iframe')
  8277. let onloadListener = _iframe.onload = () => {
  8278. _iframe.contentWindow.document.body.appendChild(script1);
  8279. _iframe.contentWindow.document.body.appendChild(script2);
  8280. _iframe.contentWindow.document.body.appendChild(script4);
  8281. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8282. };
  8283. // if (onloadListener) {
  8284. // try {
  8285. // _iframe.src += "?cocorobo="+new Date().getTime()
  8286. // _iframe.contentWindow.document.location.reload()
  8287. // } catch (error) {
  8288. // }
  8289. // } else {
  8290. // _iframe.contentDocument.location.reload()
  8291. // }
  8292. } else {
  8293. _iframe.onload = () => {
  8294. _iframe.contentWindow.document.body.appendChild(script1);
  8295. _iframe.contentWindow.document.body.appendChild(script2);
  8296. // _iframe.contentWindow.document.body.appendChild(script3);
  8297. _iframe.contentWindow.document.body.appendChild(script4);
  8298. };
  8299. }
  8300. _jie.onclick = async () => {
  8301. let text = ''
  8302. if (aTool == 1) {
  8303. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8304. } else if (aTool == 6) {
  8305. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8306. } else if (aTool == 3) {
  8307. text = await U.MD.D.I.getEditorContent(_iframe);
  8308. }
  8309. _loading.style.display = 'flex'
  8310. console.log(_loading);
  8311. var _ajs = _iframe.contentWindow.document.createElement("script");
  8312. _ajs.type = "text/javascript";
  8313. _ajs.innerHTML =
  8314. // 'console.log(' + _loading + ');\n' +
  8315. 'var _js = document.createElement("script");\n' +
  8316. '_js.type="text/javascript";\n' +
  8317. '_js.charset="UTF-8";\n' +
  8318. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8319. "_js.onload = function(){\n" +
  8320. ' var a = document.getElementsByTagName("img")\n' +
  8321. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8322. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8323. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8324. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8325. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8326. "beforeUpload_shishi(file," +
  8327. "'" +
  8328. _userid +
  8329. "'" +
  8330. ", " +
  8331. "'" +
  8332. _cid +
  8333. "'" +
  8334. ", " +
  8335. "'" +
  8336. _stage +
  8337. "'" +
  8338. ", " +
  8339. "'" +
  8340. _task +
  8341. "'" +
  8342. ", " +
  8343. "'" +
  8344. _tool +
  8345. "'" +
  8346. ", " +
  8347. "'" +
  8348. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8349. "'" +
  8350. ", " +
  8351. "'" +
  8352. aTool +
  8353. "'" +
  8354. ", " +
  8355. "`" +
  8356. text +
  8357. "`" +
  8358. ")\n" +
  8359. " });\n" +
  8360. "}\n" +
  8361. "document.head.appendChild(_js);\n";
  8362. _iframe.contentWindow.document.head.appendChild(_ajs);
  8363. }
  8364. }
  8365. }
  8366. U.MD.D.I.getEditorContent = function (iframe) {
  8367. return new Promise((resolve, reject) => {
  8368. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8369. console.log(content);
  8370. resolve(content)
  8371. });
  8372. });
  8373. }
  8374. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8375. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8376. // if (res.value[0].length > 0) {
  8377. // // resolve(res.value[0][0].text);
  8378. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8379. // $(fileInput).val('');
  8380. // });
  8381. // }
  8382. // }, [], { "type": "GET", "withCredentials": true });
  8383. var xmlhttp;
  8384. var Mac, Sn, DeviceId
  8385. if (window.XMLHttpRequest) {
  8386. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8387. xmlhttp = new XMLHttpRequest();
  8388. } else {
  8389. // IE6, IE5 浏览器执行代码
  8390. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8391. }
  8392. xmlhttp.onreadystatechange = function () {
  8393. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8394. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8395. // resolve(res.value[0][0].text);
  8396. if (type == '2') {
  8397. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8398. } else if (type == '3') {
  8399. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8400. }
  8401. } else {
  8402. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8403. }
  8404. }
  8405. }
  8406. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8407. xmlhttp.send();
  8408. }
  8409. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8410. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8411. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8412. _userinfo = US.userInfo, //登录用户信息
  8413. _userid = US.userInfo.userid //登录用户id
  8414. let _iframe;
  8415. let _cid = cid,
  8416. _stage = stage,
  8417. _task = task,
  8418. _tool = tool;
  8419. var _jie = $$("div", {
  8420. "style": {
  8421. "position": "absolute",
  8422. "bottom": "50px",
  8423. "right": "50px",
  8424. "zIndex": "9999",
  8425. "backgroundColor": "#2268bc",
  8426. "color": "#fff",
  8427. "padding": "12px 20px",
  8428. "cursor": "pointer",
  8429. "borderRadius": "4px",
  8430. },
  8431. "innerHTML": "确认并提交"
  8432. })
  8433. let aTool = ''
  8434. let _loading = document.createElement('div')
  8435. _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;"
  8436. // _loading.id = "";
  8437. let _lchild = document.createElement('div')
  8438. let _limg = document.createElement('img')
  8439. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8440. _limg.style = "width: 26px;margin-right: 10px;"
  8441. _lchild.appendChild(_limg)
  8442. let _lspan = document.createElement('span')
  8443. _lspan.innerHTML = "上传中..."
  8444. _lchild.appendChild(_lspan)
  8445. _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%);"
  8446. _loading.appendChild(_lchild)
  8447. var _box = $$('div', {
  8448. "style": {
  8449. "position": "relative",
  8450. "width": "100%",
  8451. "height": "100%",
  8452. },
  8453. })
  8454. _box.appendChild(_loading)
  8455. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8456. switch (str) {
  8457. case "whiteboard":
  8458. aTool = 1;
  8459. _iframe = $$("iframe", {
  8460. "frameborder": "no",
  8461. "border": "0",
  8462. "scrolling ": "no",
  8463. "style": {
  8464. "cssText": "border:0;width:100%;height:100%"
  8465. },
  8466. "src": "https://beta.iwb.cocorobo.cn/"
  8467. })
  8468. _box.appendChild(_iframe);
  8469. _box.appendChild(_jie);
  8470. _formdiv = new U.UF.UI.form(
  8471. "电子白板",
  8472. _box, {
  8473. "id": "whiteboards" + cid + stage + task + tool,
  8474. "style": {
  8475. "width": "90%",
  8476. "height": "90%",
  8477. "overflow": 'hidden'
  8478. },
  8479. "onresize": function () { }
  8480. }, {
  8481. closecallback: function () { }
  8482. }, {
  8483. "style": {
  8484. "height": "36px"
  8485. }
  8486. }).form; //创建窗体
  8487. _taskbar = {
  8488. "id": str + _formdiv.id,
  8489. "style": {
  8490. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8491. },
  8492. "name": "电子白板",
  8493. "forms": _formdiv,
  8494. "click": function () {
  8495. U.MD.D.I.openApplication(str, obj, info);
  8496. }
  8497. }
  8498. break;
  8499. case "mind":
  8500. aTool = 3;
  8501. _iframe = $$("iframe", {
  8502. "frameborder": "no",
  8503. "border": "0",
  8504. "scrolling ": "no",
  8505. "style": {
  8506. "cssText": "border:0;width:100%;height:100%"
  8507. },
  8508. "src": "/kityminder-editor/dist/index.html"
  8509. });
  8510. _box.appendChild(_iframe);
  8511. _box.appendChild(_jie);
  8512. _formdiv = new U.UF.UI.form(
  8513. "思维导图",
  8514. _box, { //"/jsmind/example/demo.html"
  8515. "id": "minds" + cid + stage + task + tool,
  8516. "style": {
  8517. "width": "90%",
  8518. "height": "90%",
  8519. "overflow": 'hidden'
  8520. },
  8521. "onresize": function () { }
  8522. }, {
  8523. closecallback: function () { }
  8524. }, {
  8525. "style": {
  8526. "height": "36px"
  8527. }
  8528. }).form; //创建窗体
  8529. _taskbar = {
  8530. "id": str + _formdiv.id,
  8531. "style": {
  8532. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8533. },
  8534. "name": "思维导图",
  8535. "forms": _formdiv,
  8536. "click": function () {
  8537. U.MD.D.I.openApplication(str, obj, info);
  8538. }
  8539. }
  8540. break;
  8541. case "doc":
  8542. aTool = 6;
  8543. _iframe = $$("iframe", {
  8544. "frameborder": "no",
  8545. "border": "0",
  8546. "scrolling ": "no",
  8547. "style": {
  8548. "cssText": "border:0;width:100%;height:100%"
  8549. },
  8550. "src": "/Office/Word/WordEditArea.htm"
  8551. })
  8552. _box.appendChild(_iframe);
  8553. _box.appendChild(_jie);
  8554. _formdiv = new U.UF.UI.form(
  8555. "协同文档",
  8556. _box, {
  8557. "id": "docs" + cid + stage + task + tool,
  8558. "style": {
  8559. "width": "90%",
  8560. "height": "90%",
  8561. "overflow": 'hidden'
  8562. },
  8563. "onresize": function () { }
  8564. }, {
  8565. closecallback: function () { }
  8566. }, {
  8567. "style": {
  8568. "height": "36px"
  8569. }
  8570. }).form; //创建窗体
  8571. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8572. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8573. })
  8574. _taskbar = {
  8575. "id": str + _formdiv.id,
  8576. "style": {
  8577. "backgroundImage": "url(/img/icon/doc.png)"
  8578. },
  8579. "name": "协同文档",
  8580. "forms": _formdiv,
  8581. "click": function () {
  8582. U.MD.D.I.openApplication(str, obj, info);
  8583. }
  8584. }
  8585. break;
  8586. }
  8587. const script1 = document.createElement("script");
  8588. script1.type = "text/javascript";
  8589. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8590. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8591. const script2 = document.createElement("script");
  8592. script2.type = "text/javascript";
  8593. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8594. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8595. const script3 = document.createElement("script");
  8596. script3.type = "text/javascript";
  8597. script3.charset = "UTF-8";
  8598. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8599. const script4 = document.createElement("script");
  8600. script4.type = "text/javascript";
  8601. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8602. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8603. if (_iframe) {
  8604. if (str == 'doc') {
  8605. _iframe = _formdiv.querySelector('iframe')
  8606. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8607. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8608. _iframe.contentWindow.document.body.appendChild(script1);
  8609. _iframe.contentWindow.document.body.appendChild(script2);
  8610. // _iframe.contentWindow.document.body.appendChild(script3);
  8611. _iframe.contentWindow.document.body.appendChild(script4);
  8612. })
  8613. if (onloadListener) {
  8614. _iframe.contentDocument.location.reload()
  8615. } else {
  8616. _iframe.contentDocument.location.reload()
  8617. }
  8618. } else if (str == 'mind') {
  8619. _iframe = _formdiv.querySelector('iframe')
  8620. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8621. _iframe.contentWindow.document.body.appendChild(script1);
  8622. _iframe.contentWindow.document.body.appendChild(script2);
  8623. _iframe.contentWindow.document.body.appendChild(script4);
  8624. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8625. })
  8626. if (onloadListener) {
  8627. _iframe.contentDocument.location.reload()
  8628. } else {
  8629. _iframe.contentDocument.location.reload()
  8630. }
  8631. } else {
  8632. _iframe.onload = () => {
  8633. _iframe.contentWindow.document.body.appendChild(script1);
  8634. _iframe.contentWindow.document.body.appendChild(script2);
  8635. // _iframe.contentWindow.document.body.appendChild(script3);
  8636. _iframe.contentWindow.document.body.appendChild(script4);
  8637. };
  8638. }
  8639. _jie.onclick = async () => {
  8640. let text = ''
  8641. if (aTool == 6) {
  8642. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8643. } else if (aTool == 3) {
  8644. text = await U.MD.D.I.getEditorContent(_iframe);
  8645. }
  8646. _loading.style.display = 'flex'
  8647. console.log(_loading);
  8648. var _ajs = _iframe.contentWindow.document.createElement("script");
  8649. _ajs.type = "text/javascript";
  8650. _ajs.innerHTML =
  8651. // 'console.log(' + _loading + ');\n' +
  8652. 'var _js = document.createElement("script");\n' +
  8653. '_js.type="text/javascript";\n' +
  8654. '_js.charset="UTF-8";\n' +
  8655. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8656. "_js.onload = function(){\n" +
  8657. ' var a = document.getElementsByTagName("img")\n' +
  8658. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8659. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8660. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8661. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8662. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8663. "beforeUpload_shishi(file," +
  8664. "'" +
  8665. _userid +
  8666. "'" +
  8667. ", " +
  8668. "'" +
  8669. _cid +
  8670. "'" +
  8671. ", " +
  8672. "'" +
  8673. _stage +
  8674. "'" +
  8675. ", " +
  8676. "'" +
  8677. _task +
  8678. "'" +
  8679. ", " +
  8680. "'" +
  8681. _tool +
  8682. "'" +
  8683. ", " +
  8684. "'" +
  8685. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8686. "'" +
  8687. ", " +
  8688. "'" +
  8689. aTool +
  8690. "'" +
  8691. ", " +
  8692. "`" +
  8693. text +
  8694. "`" +
  8695. ")\n" +
  8696. " });\n" +
  8697. "}\n" +
  8698. "document.head.appendChild(_js);\n";
  8699. _iframe.contentWindow.document.head.appendChild(_ajs);
  8700. }
  8701. }
  8702. //U.MD.D.I.openClick(str);
  8703. //如果有任务栏信息
  8704. // if (_taskbar) {
  8705. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8706. // }
  8707. }
  8708. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8709. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8710. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8711. _userinfo = US.userInfo, //登录用户信息
  8712. _userid = US.userInfo.userid //登录用户id
  8713. let _iframe;
  8714. let _cid = cid,
  8715. _stage = stage,
  8716. _task = task,
  8717. _tool = tool;
  8718. var _jie = $$("div", {
  8719. "style": {
  8720. "position": "absolute",
  8721. "bottom": "50px",
  8722. "right": "50px",
  8723. "zIndex": "9999",
  8724. "backgroundColor": "#2268bc",
  8725. "color": "#fff",
  8726. "padding": "12px 20px",
  8727. "cursor": "pointer",
  8728. "borderRadius": "4px",
  8729. },
  8730. "innerHTML": "确认并提交"
  8731. })
  8732. let aTool = ''
  8733. let _loading = document.createElement('div')
  8734. _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;"
  8735. // _loading.id = "";
  8736. let _lchild = document.createElement('div')
  8737. let _limg = document.createElement('img')
  8738. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8739. _limg.style = "width: 26px;margin-right: 10px;"
  8740. _lchild.appendChild(_limg)
  8741. let _lspan = document.createElement('span')
  8742. _lspan.innerHTML = "上传中..."
  8743. _lchild.appendChild(_lspan)
  8744. _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%);"
  8745. _loading.appendChild(_lchild)
  8746. var _box = $$('div', {
  8747. "style": {
  8748. "position": "relative",
  8749. "width": "100%",
  8750. "height": "100%",
  8751. },
  8752. })
  8753. _box.appendChild(_loading)
  8754. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8755. switch (str) {
  8756. case "whiteboard":
  8757. aTool = 1;
  8758. _iframe = $$("iframe", {
  8759. "frameborder": "no",
  8760. "border": "0",
  8761. "scrolling ": "no",
  8762. "style": {
  8763. "cssText": "border:0;width:100%;height:100%"
  8764. },
  8765. "src": "https://beta.iwb.cocorobo.cn/"
  8766. })
  8767. _box.appendChild(_iframe);
  8768. _box.appendChild(_jie);
  8769. _formdiv = new U.UF.UI.form(
  8770. "电子白板",
  8771. _box, {
  8772. "id": "whiteboards" + cid + stage + task + tool,
  8773. "style": {
  8774. "width": "90%",
  8775. "height": "90%",
  8776. "overflow": 'hidden'
  8777. },
  8778. "onresize": function () { }
  8779. }, {
  8780. closecallback: function () { }
  8781. }, {
  8782. "style": {
  8783. "height": "36px"
  8784. }
  8785. }).form; //创建窗体
  8786. _taskbar = {
  8787. "id": str + _formdiv.id,
  8788. "style": {
  8789. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8790. },
  8791. "name": "电子白板",
  8792. "forms": _formdiv,
  8793. "click": function () {
  8794. U.MD.D.I.openApplication(str, obj, info);
  8795. }
  8796. }
  8797. break;
  8798. case "mind":
  8799. aTool = 3;
  8800. _iframe = $$("iframe", {
  8801. "frameborder": "no",
  8802. "border": "0",
  8803. "scrolling ": "no",
  8804. "style": {
  8805. "cssText": "border:0;width:100%;height:100%"
  8806. },
  8807. "src": "/kityminder-editor/dist/index.html"
  8808. });
  8809. _box.appendChild(_iframe);
  8810. _box.appendChild(_jie);
  8811. _formdiv = new U.UF.UI.form(
  8812. "思维导图",
  8813. _box, { //"/jsmind/example/demo.html"
  8814. "id": "minds" + cid + stage + task + tool,
  8815. "style": {
  8816. "width": "90%",
  8817. "height": "90%",
  8818. "overflow": 'hidden'
  8819. },
  8820. "onresize": function () { }
  8821. }, {
  8822. closecallback: function () { }
  8823. }, {
  8824. "style": {
  8825. "height": "36px"
  8826. }
  8827. }).form; //创建窗体
  8828. _taskbar = {
  8829. "id": str + _formdiv.id,
  8830. "style": {
  8831. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8832. },
  8833. "name": "思维导图",
  8834. "forms": _formdiv,
  8835. "click": function () {
  8836. U.MD.D.I.openApplication(str, obj, info);
  8837. }
  8838. }
  8839. break;
  8840. case "doc":
  8841. aTool = 6;
  8842. _iframe = $$("iframe", {
  8843. "frameborder": "no",
  8844. "border": "0",
  8845. "scrolling ": "no",
  8846. "style": {
  8847. "cssText": "border:0;width:100%;height:100%"
  8848. },
  8849. "src": "/Office/Word/WordEditArea.htm"
  8850. })
  8851. _box.appendChild(_iframe);
  8852. _box.appendChild(_jie);
  8853. _formdiv = new U.UF.UI.form(
  8854. "协同文档",
  8855. _box, {
  8856. "id": "docs" + cid + stage + task + tool,
  8857. "style": {
  8858. "width": "90%",
  8859. "height": "90%",
  8860. "overflow": 'hidden'
  8861. },
  8862. "onresize": function () { }
  8863. }, {
  8864. closecallback: function () { }
  8865. }, {
  8866. "style": {
  8867. "height": "36px"
  8868. }
  8869. }).form; //创建窗体
  8870. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8871. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8872. })
  8873. _taskbar = {
  8874. "id": str + _formdiv.id,
  8875. "style": {
  8876. "backgroundImage": "url(/img/icon/doc.png)"
  8877. },
  8878. "name": "协同文档",
  8879. "forms": _formdiv,
  8880. "click": function () {
  8881. U.MD.D.I.openApplication(str, obj, info);
  8882. }
  8883. }
  8884. break;
  8885. }
  8886. const script1 = document.createElement("script");
  8887. script1.type = "text/javascript";
  8888. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8889. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8890. const script2 = document.createElement("script");
  8891. script2.type = "text/javascript";
  8892. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8893. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8894. const script3 = document.createElement("script");
  8895. script3.type = "text/javascript";
  8896. script3.charset = "UTF-8";
  8897. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8898. const script4 = document.createElement("script");
  8899. script4.type = "text/javascript";
  8900. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8901. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8902. if (_iframe) {
  8903. if (str == 'doc') {
  8904. _iframe = _formdiv.querySelector('iframe')
  8905. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8906. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8907. _iframe.contentWindow.document.body.appendChild(script1);
  8908. _iframe.contentWindow.document.body.appendChild(script2);
  8909. // _iframe.contentWindow.document.body.appendChild(script3);
  8910. _iframe.contentWindow.document.body.appendChild(script4);
  8911. })
  8912. if (onloadListener) {
  8913. _iframe.contentDocument.location.reload()
  8914. } else {
  8915. _iframe.contentDocument.location.reload()
  8916. }
  8917. } else if (str == 'mind') {
  8918. _iframe = _formdiv.querySelector('iframe')
  8919. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8920. _iframe.contentWindow.document.body.appendChild(script1);
  8921. _iframe.contentWindow.document.body.appendChild(script2);
  8922. _iframe.contentWindow.document.body.appendChild(script4);
  8923. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8924. })
  8925. if (onloadListener) {
  8926. _iframe.contentDocument.location.reload()
  8927. } else {
  8928. _iframe.contentDocument.location.reload()
  8929. }
  8930. } else {
  8931. _iframe.onload = () => {
  8932. _iframe.contentWindow.document.body.appendChild(script1);
  8933. _iframe.contentWindow.document.body.appendChild(script2);
  8934. // _iframe.contentWindow.document.body.appendChild(script3);
  8935. _iframe.contentWindow.document.body.appendChild(script4);
  8936. };
  8937. }
  8938. _jie.onclick = async () => {
  8939. let text = ''
  8940. if (aTool == 6) {
  8941. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8942. } else if (aTool == 3) {
  8943. text = await U.MD.D.I.getEditorContent(_iframe);
  8944. }
  8945. _loading.style.display = 'flex'
  8946. console.log(_loading);
  8947. var _ajs = _iframe.contentWindow.document.createElement("script");
  8948. _ajs.type = "text/javascript";
  8949. _ajs.innerHTML =
  8950. // 'console.log(' + _loading + ');\n' +
  8951. 'var _js = document.createElement("script");\n' +
  8952. '_js.type="text/javascript";\n' +
  8953. '_js.charset="UTF-8";\n' +
  8954. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8955. "_js.onload = function(){\n" +
  8956. ' var a = document.getElementsByTagName("img")\n' +
  8957. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8958. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8959. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8960. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8961. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8962. "beforeUpload_shishi(file," +
  8963. "'" +
  8964. _userid +
  8965. "'" +
  8966. ", " +
  8967. "'" +
  8968. _cid +
  8969. "'" +
  8970. ", " +
  8971. "'" +
  8972. _stage +
  8973. "'" +
  8974. ", " +
  8975. "'" +
  8976. _task +
  8977. "'" +
  8978. ", " +
  8979. "'" +
  8980. _tool +
  8981. "'" +
  8982. ", " +
  8983. "'" +
  8984. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8985. "'" +
  8986. ", " +
  8987. "'" +
  8988. aTool +
  8989. "'" +
  8990. ", " +
  8991. "`" +
  8992. text +
  8993. "`" +
  8994. ")\n" +
  8995. " });\n" +
  8996. "}\n" +
  8997. "document.head.appendChild(_js);\n";
  8998. _iframe.contentWindow.document.head.appendChild(_ajs);
  8999. }
  9000. }
  9001. //U.MD.D.I.openClick(str);
  9002. //如果有任务栏信息
  9003. // if (_taskbar) {
  9004. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9005. // }
  9006. }
  9007. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9008. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9009. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9010. _userinfo = US.userInfo, //登录用户信息
  9011. _userid = US.userInfo.userid //登录用户id
  9012. let _iframe;
  9013. let _cid = cid,
  9014. _stage = stage,
  9015. _task = task,
  9016. _tool = tool;
  9017. var _jie = $$("div", {
  9018. "style": {
  9019. "position": "absolute",
  9020. "bottom": "50px",
  9021. "right": "50px",
  9022. "zIndex": "9999",
  9023. "backgroundColor": "#2268bc",
  9024. "color": "#fff",
  9025. "padding": "12px 20px",
  9026. "cursor": "pointer",
  9027. "borderRadius": "4px",
  9028. },
  9029. "innerHTML": "上传模板"
  9030. })
  9031. let aTool = ''
  9032. let _loading = document.createElement('div')
  9033. _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;"
  9034. // _loading.id = "";
  9035. let _lchild = document.createElement('div')
  9036. let _limg = document.createElement('img')
  9037. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9038. _limg.style = "width: 26px;margin-right: 10px;"
  9039. _lchild.appendChild(_limg)
  9040. let _lspan = document.createElement('span')
  9041. _lspan.innerHTML = "上传中..."
  9042. _lchild.appendChild(_lspan)
  9043. _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%);"
  9044. _loading.appendChild(_lchild)
  9045. var _box = $$('div', {
  9046. "style": {
  9047. "position": "relative",
  9048. "width": "100%",
  9049. "height": "100%",
  9050. },
  9051. })
  9052. _box.appendChild(_loading)
  9053. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9054. switch (str) {
  9055. case "whiteboard":
  9056. aTool = 1;
  9057. _iframe = $$("iframe", {
  9058. "frameborder": "no",
  9059. "border": "0",
  9060. "scrolling ": "no",
  9061. "style": {
  9062. "cssText": "border:0;width:100%;height:100%"
  9063. },
  9064. "src": "https://beta.iwb.cocorobo.cn/"
  9065. })
  9066. _box.appendChild(_iframe);
  9067. _box.appendChild(_jie);
  9068. _formdiv = new U.UF.UI.form(
  9069. "电子白板",
  9070. _box, {
  9071. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9072. "style": {
  9073. "width": "90%",
  9074. "height": "90%",
  9075. "overflow": 'hidden'
  9076. },
  9077. "onresize": function () { }
  9078. }, {
  9079. closecallback: function () { }
  9080. }, {
  9081. "style": {
  9082. "height": "36px"
  9083. }
  9084. }).form; //创建窗体
  9085. _taskbar = {
  9086. "id": str + _formdiv.id,
  9087. "style": {
  9088. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9089. },
  9090. "name": "电子白板",
  9091. "forms": _formdiv,
  9092. "click": function () {
  9093. U.MD.D.I.openApplication(str, obj, info);
  9094. }
  9095. }
  9096. break;
  9097. case "mind":
  9098. aTool = 3;
  9099. _iframe = $$("iframe", {
  9100. "frameborder": "no",
  9101. "border": "0",
  9102. "scrolling ": "no",
  9103. "style": {
  9104. "cssText": "border:0;width:100%;height:100%"
  9105. },
  9106. "src": "/kityminder-editor/dist/index.html"
  9107. });
  9108. _box.appendChild(_iframe);
  9109. _box.appendChild(_jie);
  9110. _formdiv = new U.UF.UI.form(
  9111. "思维导图",
  9112. _box, { //"/jsmind/example/demo.html"
  9113. "id": "minds_Yu" + cid + stage + task + tool,
  9114. "style": {
  9115. "width": "90%",
  9116. "height": "90%",
  9117. "overflow": 'hidden'
  9118. },
  9119. "onresize": function () { }
  9120. }, {
  9121. closecallback: function () { }
  9122. }, {
  9123. "style": {
  9124. "height": "36px"
  9125. }
  9126. }).form; //创建窗体
  9127. _taskbar = {
  9128. "id": str + _formdiv.id,
  9129. "style": {
  9130. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9131. },
  9132. "name": "思维导图",
  9133. "forms": _formdiv,
  9134. "click": function () {
  9135. U.MD.D.I.openApplication(str, obj, info);
  9136. }
  9137. }
  9138. break;
  9139. case "doc":
  9140. aTool = 6;
  9141. _iframe = $$("iframe", {
  9142. "frameborder": "no",
  9143. "border": "0",
  9144. "scrolling ": "no",
  9145. "style": {
  9146. "cssText": "border:0;width:100%;height:100%"
  9147. },
  9148. "src": "/Office/Word/WordEditArea.htm"
  9149. })
  9150. _box.appendChild(_iframe);
  9151. _box.appendChild(_jie);
  9152. _formdiv = new U.UF.UI.form(
  9153. "协同文档",
  9154. _box, {
  9155. "id": "docs_Yu" + cid + stage + task + tool,
  9156. "style": {
  9157. "width": "90%",
  9158. "height": "90%",
  9159. "overflow": 'hidden'
  9160. },
  9161. "onresize": function () { }
  9162. }, {
  9163. closecallback: function () { }
  9164. }, {
  9165. "style": {
  9166. "height": "36px"
  9167. }
  9168. }).form; //创建窗体
  9169. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9170. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9171. })
  9172. _taskbar = {
  9173. "id": str + _formdiv.id,
  9174. "style": {
  9175. "backgroundImage": "url(/img/icon/doc.png)"
  9176. },
  9177. "name": "协同文档",
  9178. "forms": _formdiv,
  9179. "click": function () {
  9180. U.MD.D.I.openApplication(str, obj, info);
  9181. }
  9182. }
  9183. break;
  9184. case "CocoPi":
  9185. aTool = 57;
  9186. _iframe = $$("iframe", {
  9187. "allowpaymentrequest": "allowpaymentrequest",
  9188. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9189. "webkitallowfullscreen": "",
  9190. "mozallowfullscreen": "",
  9191. "frameborder": "no",
  9192. "border": "0",
  9193. "scrolling ": "no",
  9194. "style": {
  9195. "cssText": "border:0;width:100%;height:100%"
  9196. },
  9197. "src": "https://pi.cocorobo.cn/"
  9198. })
  9199. _box.appendChild(_iframe);
  9200. _box.appendChild(_jie);
  9201. _formdiv = new U.UF.UI.form(
  9202. "CocoPi",
  9203. _box, {
  9204. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9205. "style": {
  9206. "width": "90%",
  9207. "height": "90%",
  9208. "overflow": 'hidden'
  9209. },
  9210. "onresize": function () { }
  9211. }, {
  9212. closecallback: function () { }
  9213. }, {
  9214. "style": {
  9215. "height": "36px"
  9216. }
  9217. }).form; //创建窗体
  9218. _taskbar = {
  9219. "id": str + _formdiv.id,
  9220. "style": {
  9221. "backgroundImage": "url(/img/icon/cocopi.png)"
  9222. },
  9223. "name": "CocoPi",
  9224. "forms": _formdiv,
  9225. "click": function () {
  9226. U.MD.D.I.openApplication(str, obj, info);
  9227. }
  9228. }
  9229. break;
  9230. }
  9231. if (_iframe) {
  9232. if (str == 'doc') {
  9233. _iframe = _formdiv.querySelector('iframe')
  9234. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9235. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9236. })
  9237. if (onloadListener) {
  9238. _iframe.contentDocument.location.reload()
  9239. } else {
  9240. _iframe.contentDocument.location.reload()
  9241. }
  9242. } else if (str == 'mind') {
  9243. _iframe = _formdiv.querySelector('iframe')
  9244. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9245. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9246. })
  9247. if (onloadListener) {
  9248. _iframe.contentDocument.location.reload()
  9249. } else {
  9250. _iframe.contentDocument.location.reload()
  9251. }
  9252. } else if (str == 'whiteboard') {
  9253. _iframe = _formdiv.querySelector('iframe')
  9254. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9255. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9256. })
  9257. // if (onloadListener) {
  9258. // try {
  9259. // _iframe.src += "?cocorobo="+new Date().getTime()
  9260. // _iframe.contentWindow.document.location.reload()
  9261. // } catch (error) {
  9262. // }
  9263. // } else {
  9264. // _iframe.contentDocument.location.reload()
  9265. // }
  9266. } else if (str == 'CocoPi') {
  9267. _iframe = _formdiv.querySelector('iframe')
  9268. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9269. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9270. })
  9271. if (onloadListener) {
  9272. _iframe.contentDocument.location.reload()
  9273. } else {
  9274. _iframe.contentDocument.location.reload()
  9275. }
  9276. } else {
  9277. _iframe.onload = () => { };
  9278. }
  9279. _jie.onclick = async () => {
  9280. let text = ''
  9281. let type = '2'
  9282. if (aTool == 1) {
  9283. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9284. type = '3'
  9285. } else if (aTool == 6) {
  9286. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9287. type = '1'
  9288. } else if (aTool == 3) {
  9289. text = await U.MD.D.I.getEditorContent(_iframe);
  9290. type = '2'
  9291. } else if (aTool == 57) {
  9292. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9293. type = '4'
  9294. }
  9295. _loading.style.display = 'flex'
  9296. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9297. }
  9298. }
  9299. //U.MD.D.I.openClick(str);
  9300. //如果有任务栏信息
  9301. // if (_taskbar) {
  9302. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9303. // }
  9304. }
  9305. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9306. var xmlhttp;
  9307. var Mac, Sn, DeviceId
  9308. if (window.XMLHttpRequest) {
  9309. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9310. xmlhttp = new XMLHttpRequest();
  9311. } else {
  9312. // IE6, IE5 浏览器执行代码
  9313. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9314. }
  9315. xmlhttp.onreadystatechange = function () {
  9316. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9317. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9318. // resolve(res.value[0][0].text);
  9319. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9320. }
  9321. }
  9322. }
  9323. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9324. xmlhttp.send();
  9325. }
  9326. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9327. var xmlhttp;
  9328. var Mac, Sn, DeviceId
  9329. if (window.XMLHttpRequest) {
  9330. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9331. xmlhttp = new XMLHttpRequest();
  9332. } else {
  9333. // IE6, IE5 浏览器执行代码
  9334. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9335. }
  9336. xmlhttp.onreadystatechange = function () {
  9337. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9338. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9339. // resolve(res.value[0][0].text);
  9340. if (type == '2') {
  9341. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9342. } else if (type == '3') {
  9343. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9344. } else if (type == '4') {
  9345. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9346. }
  9347. } else {
  9348. if (type == '2') {
  9349. iframe.contentWindow.editor.minder.importData('json', '')
  9350. } else if (type == '3') {
  9351. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9352. } else if (type == '4') {
  9353. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9354. }
  9355. }
  9356. }
  9357. }
  9358. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9359. xmlhttp.send();
  9360. }
  9361. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9362. var xmlhttp;
  9363. var Mac, Sn, DeviceId
  9364. if (window.XMLHttpRequest) {
  9365. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9366. xmlhttp = new XMLHttpRequest();
  9367. } else {
  9368. // IE6, IE5 浏览器执行代码
  9369. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9370. }
  9371. xmlhttp.onreadystatechange = function () {
  9372. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9373. if (xmlhttp.response) {
  9374. // resolve(res.value[0][0].text);
  9375. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9376. // $(fileInput).val('');
  9377. // });
  9378. span.innerHTML = '上传成功'
  9379. setTimeout(() => {
  9380. loading.style.display = 'none'
  9381. }, 1000);
  9382. }
  9383. }
  9384. }
  9385. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9386. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9387. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9388. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9389. // 设置请求头,表示请求体的编码格式
  9390. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9391. // 设置请求体,使用url-encoded格式的数据
  9392. }
  9393. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9394. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9395. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9396. _userinfo = US.userInfo, //登录用户信息
  9397. _userid = US.userInfo.userid //登录用户id
  9398. let _iframe;
  9399. let _cid = cid,
  9400. _stage = stage,
  9401. _task = task,
  9402. _tool = tool;
  9403. var _jie = $$("div", {
  9404. "style": {
  9405. "position": "absolute",
  9406. "bottom": "50px",
  9407. "right": "50px",
  9408. "zIndex": "9999",
  9409. "backgroundColor": "#2268bc",
  9410. "color": "#fff",
  9411. "padding": "12px 20px",
  9412. "cursor": "pointer",
  9413. "borderRadius": "4px",
  9414. },
  9415. "innerHTML": "提交作业"
  9416. })
  9417. let aTool = ''
  9418. let _loading = document.createElement('div')
  9419. _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;"
  9420. // _loading.id = "";
  9421. let _lchild = document.createElement('div')
  9422. let _limg = document.createElement('img')
  9423. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9424. _limg.style = "width: 26px;margin-right: 10px;"
  9425. _lchild.appendChild(_limg)
  9426. let _lspan = document.createElement('span')
  9427. _lspan.innerHTML = "上传中..."
  9428. _lchild.appendChild(_lspan)
  9429. _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%);"
  9430. _loading.appendChild(_lchild)
  9431. var _box = $$('div', {
  9432. "style": {
  9433. "position": "relative",
  9434. "width": "100%",
  9435. "height": "100%",
  9436. },
  9437. })
  9438. _box.appendChild(_loading)
  9439. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9440. switch (str) {
  9441. case "CocoPi":
  9442. aTool = 57;
  9443. _iframe = $$("iframe", {
  9444. "allowpaymentrequest": "allowpaymentrequest",
  9445. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9446. "webkitallowfullscreen": "",
  9447. "mozallowfullscreen": "",
  9448. "frameborder": "no",
  9449. "border": "0",
  9450. "scrolling ": "no",
  9451. "style": {
  9452. "cssText": "border:0;width:100%;height:100%"
  9453. },
  9454. "src": "https://pi.cocorobo.cn/"
  9455. })
  9456. _box.appendChild(_iframe);
  9457. _box.appendChild(_jie);
  9458. _formdiv = new U.UF.UI.form(
  9459. "CocoPi",
  9460. _box, {
  9461. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9462. "style": {
  9463. "width": "90%",
  9464. "height": "90%",
  9465. "overflow": 'hidden'
  9466. },
  9467. "onresize": function () { }
  9468. }, {
  9469. closecallback: function () { }
  9470. }, {
  9471. "style": {
  9472. "height": "36px"
  9473. }
  9474. }).form; //创建窗体
  9475. _taskbar = {
  9476. "id": str + _formdiv.id,
  9477. "style": {
  9478. "backgroundImage": "url(/img/icon/cocopi.png)"
  9479. },
  9480. "name": "CocoPi",
  9481. "forms": _formdiv,
  9482. "click": function () {
  9483. U.MD.D.I.openApplication(str, obj, info);
  9484. }
  9485. }
  9486. break;
  9487. }
  9488. if (_iframe) {
  9489. if (str == 'CocoPi') {
  9490. _iframe = _formdiv.querySelector('iframe')
  9491. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9492. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9493. })
  9494. if (onloadListener) {
  9495. _iframe.contentDocument.location.reload()
  9496. } else {
  9497. _iframe.contentDocument.location.reload()
  9498. }
  9499. }
  9500. _jie.onclick = async () => {
  9501. let text = ''
  9502. if (aTool == 57) {
  9503. text = _iframe.contentWindow.getLoadXmlStr()
  9504. }
  9505. _loading.style.display = 'flex'
  9506. console.log(_loading);
  9507. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9508. _loading.style.display = 'none'
  9509. let _div = document.createElement('div')
  9510. _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;"
  9511. let _inner = document.createElement('div')
  9512. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9513. _inner.innerHTML = "上传成功"
  9514. _div.appendChild(_inner)
  9515. _iframe.contentWindow.window.document.body.appendChild(_div)
  9516. _div.onclick = () => {
  9517. _iframe.contentWindow.window.document.body.removeChild(_div)
  9518. }
  9519. setTimeout(() => {
  9520. _iframe.contentWindow.window.document.body.removeChild(_div)
  9521. }, 1000);
  9522. }, [], { "type": "POST", "withCredentials": true });
  9523. }
  9524. }
  9525. }
  9526. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9527. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9528. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9529. _userid = student.userid, //登录用户id
  9530. _username = student.student //用户名字
  9531. let _iframe;
  9532. let _cid = cid,
  9533. _stage = stage,
  9534. _task = task,
  9535. _tool = tool;
  9536. var _jie = $$("div", {
  9537. "style": {
  9538. "position": "absolute",
  9539. "bottom": "50px",
  9540. "right": "50px",
  9541. "zIndex": "9999",
  9542. "backgroundColor": "#2268bc",
  9543. "color": "#fff",
  9544. "padding": "12px 20px",
  9545. "cursor": "pointer",
  9546. "borderRadius": "4px",
  9547. },
  9548. "innerHTML": "提交作业"
  9549. })
  9550. let aTool = ''
  9551. let _loading = document.createElement('div')
  9552. _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;"
  9553. // _loading.id = "";
  9554. let _lchild = document.createElement('div')
  9555. let _limg = document.createElement('img')
  9556. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9557. _limg.style = "width: 26px;margin-right: 10px;"
  9558. _lchild.appendChild(_limg)
  9559. let _lspan = document.createElement('span')
  9560. _lspan.innerHTML = "上传中..."
  9561. _lchild.appendChild(_lspan)
  9562. _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%);"
  9563. _loading.appendChild(_lchild)
  9564. var _box = $$('div', {
  9565. "style": {
  9566. "position": "relative",
  9567. "width": "100%",
  9568. "height": "100%",
  9569. },
  9570. })
  9571. _box.appendChild(_loading)
  9572. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9573. switch (str) {
  9574. case "CocoPi":
  9575. aTool = 57;
  9576. _iframe = $$("iframe", {
  9577. "allowpaymentrequest": "allowpaymentrequest",
  9578. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9579. "webkitallowfullscreen": "",
  9580. "mozallowfullscreen": "",
  9581. "frameborder": "no",
  9582. "border": "0",
  9583. "scrolling ": "no",
  9584. "style": {
  9585. "cssText": "border:0;width:100%;height:100%"
  9586. },
  9587. "src": "https://pi.cocorobo.cn/"
  9588. })
  9589. _box.appendChild(_iframe);
  9590. _box.appendChild(_jie);
  9591. _formdiv = new U.UF.UI.form(
  9592. "CocoPi-" + _username,
  9593. _box, {
  9594. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9595. "style": {
  9596. "width": "90%",
  9597. "height": "90%",
  9598. "overflow": 'hidden'
  9599. },
  9600. "onresize": function () { }
  9601. }, {
  9602. closecallback: function () { }
  9603. }, {
  9604. "style": {
  9605. "height": "36px"
  9606. }
  9607. }).form; //创建窗体
  9608. _taskbar = {
  9609. "id": str + _formdiv.id,
  9610. "style": {
  9611. "backgroundImage": "url(/img/icon/cocopi.png)"
  9612. },
  9613. "name": "CocoPi",
  9614. "forms": _formdiv,
  9615. "click": function () {
  9616. U.MD.D.I.openApplication(str, obj, info);
  9617. }
  9618. }
  9619. break;
  9620. }
  9621. if (_iframe) {
  9622. if (str == 'CocoPi') {
  9623. _iframe = _formdiv.querySelector('iframe')
  9624. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9625. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9626. })
  9627. if (onloadListener) {
  9628. _iframe.contentDocument.location.reload()
  9629. } else {
  9630. _iframe.contentDocument.location.reload()
  9631. }
  9632. }
  9633. _jie.onclick = async () => {
  9634. let text = ''
  9635. if (aTool == 57) {
  9636. text = _iframe.contentWindow.getLoadXmlStr()
  9637. }
  9638. _loading.style.display = 'flex'
  9639. console.log(_loading);
  9640. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9641. _loading.style.display = 'none'
  9642. let _div = document.createElement('div')
  9643. _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;"
  9644. let _inner = document.createElement('div')
  9645. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9646. _inner.innerHTML = "上传成功"
  9647. _div.appendChild(_inner)
  9648. _iframe.contentWindow.window.document.body.appendChild(_div)
  9649. _div.onclick = () => {
  9650. _iframe.contentWindow.window.document.body.removeChild(_div)
  9651. }
  9652. setTimeout(() => {
  9653. _iframe.contentWindow.window.document.body.removeChild(_div)
  9654. }, 1000);
  9655. }, [], { "type": "POST", "withCredentials": true });
  9656. }
  9657. }
  9658. }
  9659. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9660. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9661. if (res.value[0].length > 0) {
  9662. if (atool == 57) {
  9663. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9664. }
  9665. } else {
  9666. if (atool == 57) {
  9667. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9668. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9669. }
  9670. }
  9671. }, [], { "type": "POST", "withCredentials": true });
  9672. }