DeskTop.js 659 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "工作流中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "工作流中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "工作流中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "工作流中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成华教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成华教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成华教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  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. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //盐田区幼儿园
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyStudentDeskIcon = [
  1230. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. ];
  1234. //scnuai
  1235. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1239. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1240. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1241. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1242. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1245. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1246. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1247. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1248. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1251. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1252. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1253. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1254. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1255. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1257. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1258. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1259. ];
  1260. //scnuai
  1261. U.MD.D.I.scnuaiAdminDeskIcon = [
  1262. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1263. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1264. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1265. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1266. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1267. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1268. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1269. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1271. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1272. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1273. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1274. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1277. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1278. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1279. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1280. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1281. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1283. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1284. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1285. ];
  1286. //scnuai
  1287. U.MD.D.I.scnuaiStudentDeskIcon = [
  1288. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1290. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. ];
  1293. //cocobiz
  1294. U.MD.D.I.cocobizteacherDeskIcon = [
  1295. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1296. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1297. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1298. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1302. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1303. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1304. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1305. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1306. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1307. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1308. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1312. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1325. ];
  1326. //xxzjky
  1327. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1328. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1330. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1331. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1337. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1338. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1339. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1340. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1341. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1345. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1347. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1348. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1352. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1353. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1354. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1355. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1358. ];
  1359. //nsfx
  1360. U.MD.D.I.nsfxTeacherDeskIcon = [
  1361. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1362. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1364. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1369. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1370. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1374. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1375. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1376. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1377. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1378. ];
  1379. //nsfx
  1380. U.MD.D.I.nsfxStudentDeskIcon = [
  1381. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. ];
  1386. //stia
  1387. U.MD.D.I.stiaTeacherDeskIcon = [
  1388. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1389. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1390. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1391. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1392. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1395. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1396. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1397. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1398. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1399. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1400. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1401. ];
  1402. //stia
  1403. U.MD.D.I.stiaStudentDeskIcon = [
  1404. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1405. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1406. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1408. ];
  1409. //szdjg
  1410. U.MD.D.I.szdjgTeacherDeskIcon = [
  1411. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1412. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. ];
  1414. //szdjg
  1415. U.MD.D.I.szdjgStudentDeskIcon = [
  1416. // { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1420. ];
  1421. //010607
  1422. U.MD.D.I.x010607TeacherDeskIcon = [
  1423. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1424. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1425. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1426. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1427. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1428. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1429. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1432. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1433. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1434. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1435. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1436. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1437. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1438. ];
  1439. //010607
  1440. U.MD.D.I.x010607StudentDeskIcon = [
  1441. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1444. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1445. ];
  1446. //010608
  1447. U.MD.D.I.x010608TeacherDeskIcon = [
  1448. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1449. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1451. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1452. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1453. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1454. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1455. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1456. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1457. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1458. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1459. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1460. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1461. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1462. ];
  1463. //010608
  1464. U.MD.D.I.x010608StudentDeskIcon = [
  1465. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1466. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1467. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1468. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1469. ];
  1470. //xhly
  1471. U.MD.D.I.xhlyTeacherDeskIcon = [
  1472. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. ];
  1474. //010608
  1475. U.MD.D.I.xhlyStudentDeskIcon = [
  1476. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1477. ];
  1478. //北师大
  1479. U.MD.D.I.BSDNSteacherDeskIcon = [
  1480. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1481. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1482. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1483. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1484. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1485. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1486. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1487. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1490. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1491. ];
  1492. //北师大
  1493. U.MD.D.I.BSDNSstudentDeskIcon = [
  1494. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1498. ];
  1499. //CUHK_EDU
  1500. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1501. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1502. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1504. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1507. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1509. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1510. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1511. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1512. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1513. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1514. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1515. ];
  1516. //CUHK_EDU
  1517. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1518. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1519. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1520. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1521. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1522. ];
  1523. //010503
  1524. U.MD.D.I.x010503TeacherDeskIcon = [
  1525. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1526. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1527. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1528. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1529. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1530. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1531. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1532. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. ];
  1535. //010503
  1536. U.MD.D.I.x010503StudentDeskIcon = [
  1537. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1538. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1539. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1540. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1541. ];
  1542. //SPROUT Lab
  1543. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  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. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1547. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1548. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1549. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1550. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1551. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1552. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1553. ];
  1554. //SPROUT Lab
  1555. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1556. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1557. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. ];
  1560. //010204
  1561. U.MD.D.I.x010204TeacherDeskIcon = [
  1562. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1563. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. ];
  1565. //010204
  1566. U.MD.D.I.x010204StudentDeskIcon = [
  1567. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1568. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1569. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1570. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1571. ];
  1572. //trail
  1573. U.MD.D.I.trailTeacherDeskIcon = [
  1574. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1575. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1576. ];
  1577. //trail
  1578. U.MD.D.I.trailStudentDeskIcon = [
  1579. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1580. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1581. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1582. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1583. ];
  1584. //010504
  1585. U.MD.D.I.x010504TeacherDeskIcon = [
  1586. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1587. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1588. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1589. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1590. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1591. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1592. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1593. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1594. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1595. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1596. ];
  1597. //010504
  1598. U.MD.D.I.x010504StudentDeskIcon = [
  1599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1601. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1602. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1603. ];
  1604. //SCNUET
  1605. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1610. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1611. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1612. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1614. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1615. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1617. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1618. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1619. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1620. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1621. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1622. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1623. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1624. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1625. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1626. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1627. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1628. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1629. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1630. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1631. ];
  1632. //SCNUET
  1633. U.MD.D.I.SCNUETAdminDeskIcon = [
  1634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1638. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1639. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1640. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1641. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1642. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1643. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1644. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1646. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1647. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1648. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1651. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1652. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1653. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1654. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1655. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1656. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1657. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1658. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1659. ];
  1660. //SCNUET
  1661. U.MD.D.I.SCNUETStudentDeskIcon = [
  1662. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1663. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1664. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1666. ];
  1667. //x020201
  1668. U.MD.D.I.x020201TeacherDeskIcon = [
  1669. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1670. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1673. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1676. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1677. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1678. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1679. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1680. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1681. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1682. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1683. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1684. ];
  1685. //x020201
  1686. U.MD.D.I.x020201AdminDeskIcon = [
  1687. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1688. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1689. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1690. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1691. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1692. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1693. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1694. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1695. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1696. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1697. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1698. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1699. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1700. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1701. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1702. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1703. ];
  1704. //020201
  1705. U.MD.D.I.x020201StudentDeskIcon = [
  1706. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1707. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1708. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1709. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1710. ];
  1711. //010611
  1712. U.MD.D.I.x010611TeacherDeskIcon = [
  1713. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1714. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1715. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1716. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1717. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1718. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1720. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1721. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1722. ];
  1723. //010611
  1724. U.MD.D.I.x010611StudentDeskIcon = [
  1725. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1726. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1727. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1729. ];
  1730. //tianyuan
  1731. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1732. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1733. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1734. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1735. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1736. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1738. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1740. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1741. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1742. ];
  1743. //010611
  1744. U.MD.D.I.tianyuanStudentDeskIcon = [
  1745. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1746. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1747. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1748. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1749. ];
  1750. //#region 桌面初始化a
  1751. /**
  1752. * 初始化桌面的起始函数
  1753. *
  1754. */
  1755. U.MD.D.I.init = function () {
  1756. if ($("#U_MD_D_K")[0]) {
  1757. //初始化桌面图标
  1758. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1759. // var clickUrl = ':12588/requestIp.php';
  1760. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1761. // U.MD.D.I.Ip = data;
  1762. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1763. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1764. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1765. // })
  1766. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1767. // })
  1768. }
  1769. }
  1770. /**
  1771. * 模式切换
  1772. *
  1773. */
  1774. U.MD.D.I.ModeCheck = function (type) {
  1775. if (US.Config.type == type) {
  1776. return
  1777. }
  1778. US.Config.type = type
  1779. $('.U_PBL_Check .active')[0].className = ''
  1780. if (type == 1) {
  1781. $('.U_PBL_Check div')[0].className = 'active'
  1782. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1783. } else {
  1784. $('.U_PBL_Check div')[1].className = 'active'
  1785. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1786. }
  1787. //初始化桌面图标
  1788. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1789. if (type == 2) {
  1790. U.MD.D.I.openApplication("project")
  1791. }
  1792. }
  1793. /**
  1794. * 隐藏任务栏
  1795. *
  1796. * @param {element} 桌面元素
  1797. */
  1798. U.MD.D.I.hiddenTaskbar = function (el) {
  1799. //任务栏位置变小
  1800. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1801. //桌面的位置变大
  1802. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1803. }
  1804. /**
  1805. * 隐藏任务栏
  1806. *
  1807. * @param {element} 桌面元素
  1808. */
  1809. U.MD.D.I.hiddenTaskbarout = function (el) {
  1810. //任务栏位置变小
  1811. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1812. //任务栏位置变化
  1813. U.selectEl(el).css({ "bottom": "-60px" });
  1814. //桌面的位置变大
  1815. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1816. }
  1817. }
  1818. /**
  1819. * 初始化打印桌面图标
  1820. *
  1821. * @param {element} 桌面元素
  1822. */
  1823. U.MD.D.I.initDesktopIcons = function (el, type) {
  1824. var i, //用于循环
  1825. _content, //桌面图标元素
  1826. _iconcontent, //桌面图标元素
  1827. _frag = $$("frag"), //定义一个碎片元素
  1828. _type = US.userInfo.type,
  1829. _org = US.userInfo.org,
  1830. _oid = US.userInfo.organizeid,
  1831. _role = US.userInfo.role,
  1832. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1833. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1834. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1835. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1836. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1837. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1838. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1839. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1840. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1841. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1842. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1843. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1844. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1845. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1846. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1847. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1848. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1849. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1850. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1851. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1852. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1853. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1854. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1855. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1856. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1857. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1858. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1859. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1860. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1861. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1862. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1863. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1864. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1865. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1866. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1867. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1868. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1869. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1870. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1871. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1872. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1873. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1874. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1875. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1876. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1877. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1878. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1879. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1880. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1881. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1882. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1883. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1884. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1885. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1886. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1887. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1888. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1889. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1890. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1891. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1892. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1893. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1894. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1895. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1896. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1897. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1898. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1899. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1900. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1901. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1902. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1903. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1904. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1905. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1906. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1907. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1908. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1909. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1910. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1911. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1912. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1913. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1914. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1915. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1916. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1917. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1918. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1919. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1920. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1921. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1922. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1923. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1924. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1925. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1926. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1927. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1928. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1929. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1930. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1931. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1932. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1933. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1934. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1935. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1936. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1937. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1938. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1939. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1940. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1941. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1942. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1943. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5'];
  1944. 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'];
  1945. //清楚桌面图标
  1946. el.innerHTML = "";
  1947. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1948. _teacherDesktopIconInfo.push(
  1949. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1950. { "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)" } },
  1951. )
  1952. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1953. }
  1954. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1955. _teacherDesktopIconInfo.push(
  1956. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1957. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1958. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1959. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1960. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1961. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1962. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1963. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1964. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1965. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1966. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1967. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1968. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1969. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1970. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1971. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1972. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1973. { "Name": "工作流中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1974. )
  1975. }
  1976. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1977. _teacherDesktopIconInfo.push(
  1978. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1979. )
  1980. }
  1981. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1982. // _teacherDesktopIconInfo.push(
  1983. // )
  1984. // }
  1985. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1986. _teacherDesktopIconInfo.push(
  1987. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1988. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1989. )
  1990. }
  1991. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1992. _teacherDesktopIconInfo.push(
  1993. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1994. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1995. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1996. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1997. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1998. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1999. )
  2000. _studentDesktopIconInfo.push(
  2001. )
  2002. }
  2003. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2004. _teacherDesktopIconInfo.push(
  2005. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2006. )
  2007. _studentDesktopIconInfo.push(
  2008. )
  2009. }
  2010. //010606 组织
  2011. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2012. _teacherDesktopIconInfo.push(
  2013. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2014. )
  2015. _studentDesktopIconInfo.push(
  2016. )
  2017. }
  2018. //麒麟二中 和 民新小学
  2019. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2020. _teacherDesktopIconInfo.push(
  2021. )
  2022. }
  2023. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2024. _teacherDesktopIconInfo.push(
  2025. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2026. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2027. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2028. )
  2029. }
  2030. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2031. _hkTeacherDeskIconInfo.push(
  2032. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2033. )
  2034. }
  2035. //北师大附中(010601)
  2036. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2037. // _teacherDesktopIconInfo.push(
  2038. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2039. // )
  2040. // _studentDesktopIconInfo.push(
  2041. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2042. // )
  2043. // }
  2044. //樂善堂余近卿中學
  2045. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2046. _teacherDesktopIconInfo.push(
  2047. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2048. )
  2049. }
  2050. // Education Artificial Intelligence
  2051. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2052. _teacherDesktopIconInfo.push(
  2053. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2054. )
  2055. }
  2056. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2057. _teacherDesktopIconInfo.push(
  2058. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2059. )
  2060. }
  2061. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2062. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2063. _teacherDesktopIconInfo.push(
  2064. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2065. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2066. )
  2067. }
  2068. //麒麟二中
  2069. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2070. _studentDesktopIconInfo.push(
  2071. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2072. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2073. )
  2074. }
  2075. //万科双语
  2076. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2077. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2078. if (el.Name == '项目管理') {
  2079. el.Name = 'PBL项目'
  2080. }
  2081. return el
  2082. })
  2083. _studentDesktopIconInfo3.push(
  2084. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2085. )
  2086. }
  2087. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2088. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2089. return el.Name != '魔盒识字' && el.Name != '24点'
  2090. })
  2091. }
  2092. 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) {
  2093. _studentDesktopIconInfo.push(
  2094. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2095. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2096. )
  2097. }
  2098. //循环创建桌面图标
  2099. if (type == 1) {
  2100. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2101. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2102. _content = $$("div", {
  2103. className: "U_MD_D_KO",
  2104. "onmousedown": U.UF.C.closure(function (obj) {
  2105. //防止拖动图标即打开了桌面应用
  2106. U.MD.D.click(this, obj);
  2107. }, [_studentDesktopIconInfo[i]]),
  2108. "onclick": U.UF.C.closure(function (obj) {
  2109. //防止拖动图标即打开了桌面应用
  2110. U.MD.D.click(this, obj);
  2111. }, [_studentDesktopIconInfo[i]])
  2112. }, _frag); //
  2113. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2114. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2115. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2116. }
  2117. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2118. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2119. _content = $$("div", {
  2120. className: "U_MD_D_KO",
  2121. "onmousedown": U.UF.C.closure(function (obj) {
  2122. //防止拖动图标即打开了桌面应用
  2123. U.MD.D.click(this, obj);
  2124. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2125. "onclick": U.UF.C.closure(function (obj) {
  2126. //防止拖动图标即打开了桌面应用
  2127. U.MD.D.click(this, obj);
  2128. }, [_hkZJLSStudentDeskIconInfo[i]])
  2129. }, _frag); //
  2130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2133. } //
  2134. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2135. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2136. _content = $$("div", {
  2137. className: "U_MD_D_KO",
  2138. "onmousedown": U.UF.C.closure(function (obj) {
  2139. //防止拖动图标即打开了桌面应用
  2140. U.MD.D.click(this, obj);
  2141. }, [_ytyStudentDeskIconInfo[i]]),
  2142. "onclick": U.UF.C.closure(function (obj) {
  2143. //防止拖动图标即打开了桌面应用
  2144. U.MD.D.click(this, obj);
  2145. }, [_ytyStudentDeskIconInfo[i]])
  2146. }, _frag); //
  2147. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2148. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2149. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2150. } //
  2151. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2152. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2153. _content = $$("div", {
  2154. className: "U_MD_D_KO",
  2155. "onmousedown": U.UF.C.closure(function (obj) {
  2156. //防止拖动图标即打开了桌面应用
  2157. U.MD.D.click(this, obj);
  2158. }, [_jccssylStudentDeskIconInfo[i]]),
  2159. "onclick": U.UF.C.closure(function (obj) {
  2160. //防止拖动图标即打开了桌面应用
  2161. U.MD.D.click(this, obj);
  2162. }, [_jccssylStudentDeskIconInfo[i]])
  2163. }, _frag); //
  2164. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2165. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2166. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2167. }
  2168. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2169. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2170. _content = $$("div", {
  2171. className: "U_MD_D_KO",
  2172. "onmousedown": U.UF.C.closure(function (obj) {
  2173. //防止拖动图标即打开了桌面应用
  2174. U.MD.D.click(this, obj);
  2175. }, [_scnuaiStudentDeskIconInfo[i]]),
  2176. "onclick": U.UF.C.closure(function (obj) {
  2177. //防止拖动图标即打开了桌面应用
  2178. U.MD.D.click(this, obj);
  2179. }, [_scnuaiStudentDeskIconInfo[i]])
  2180. }, _frag); //
  2181. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2182. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2183. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2184. }
  2185. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2186. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2187. _content = $$("div", {
  2188. className: "U_MD_D_KO",
  2189. "onmousedown": U.UF.C.closure(function (obj) {
  2190. //防止拖动图标即打开了桌面应用
  2191. U.MD.D.click(this, obj);
  2192. }, [_caleStudentDeskIconInfo[i]]),
  2193. "onclick": U.UF.C.closure(function (obj) {
  2194. //防止拖动图标即打开了桌面应用
  2195. U.MD.D.click(this, obj);
  2196. }, [_caleStudentDeskIconInfo[i]])
  2197. }, _frag); //
  2198. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2199. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2200. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2201. }
  2202. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2203. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2204. _content = $$("div", {
  2205. className: "U_MD_D_KO",
  2206. "onmousedown": U.UF.C.closure(function (obj) {
  2207. //防止拖动图标即打开了桌面应用
  2208. U.MD.D.click(this, obj);
  2209. }, [_thuioeStudentDeskIconInfo[i]]),
  2210. "onclick": U.UF.C.closure(function (obj) {
  2211. //防止拖动图标即打开了桌面应用
  2212. U.MD.D.click(this, obj);
  2213. }, [_thuioeStudentDeskIconInfo[i]])
  2214. }, _frag); //
  2215. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2216. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2217. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2218. }
  2219. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2220. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2221. _content = $$("div", {
  2222. className: "U_MD_D_KO",
  2223. "onmousedown": U.UF.C.closure(function (obj) {
  2224. //防止拖动图标即打开了桌面应用
  2225. U.MD.D.click(this, obj);
  2226. }, [_tpcStudentDeskIconInfo[i]]),
  2227. "onclick": U.UF.C.closure(function (obj) {
  2228. //防止拖动图标即打开了桌面应用
  2229. U.MD.D.click(this, obj);
  2230. }, [_tpcStudentDeskIconInfo[i]])
  2231. }, _frag); //
  2232. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2233. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2234. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2235. } //
  2236. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2237. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2238. _content = $$("div", {
  2239. className: "U_MD_D_KO",
  2240. "onmousedown": U.UF.C.closure(function (obj) {
  2241. //防止拖动图标即打开了桌面应用
  2242. U.MD.D.click(this, obj);
  2243. }, [_chjyjStudentDeskIconInfo[i]]),
  2244. "onclick": U.UF.C.closure(function (obj) {
  2245. //防止拖动图标即打开了桌面应用
  2246. U.MD.D.click(this, obj);
  2247. }, [_chjyjStudentDeskIconInfo[i]])
  2248. }, _frag); //
  2249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2252. }
  2253. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2254. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2255. _content = $$("div", {
  2256. className: "U_MD_D_KO",
  2257. "onmousedown": U.UF.C.closure(function (obj) {
  2258. //防止拖动图标即打开了桌面应用
  2259. U.MD.D.click(this, obj);
  2260. }, [_szjkyStudentDeskIconInfo[i]]),
  2261. "onclick": U.UF.C.closure(function (obj) {
  2262. //防止拖动图标即打开了桌面应用
  2263. U.MD.D.click(this, obj);
  2264. }, [_szjkyStudentDeskIconInfo[i]])
  2265. }, _frag); //
  2266. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2267. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2268. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2269. }
  2270. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2271. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2272. _content = $$("div", {
  2273. className: "U_MD_D_KO",
  2274. "onmousedown": U.UF.C.closure(function (obj) {
  2275. //防止拖动图标即打开了桌面应用
  2276. U.MD.D.click(this, obj);
  2277. }, [_x020201StudentDeskIconInfo[i]]),
  2278. "onclick": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_x020201StudentDeskIconInfo[i]])
  2282. }, _frag); //
  2283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2286. }
  2287. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2288. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2289. _content = $$("div", {
  2290. className: "U_MD_D_KO",
  2291. "onmousedown": U.UF.C.closure(function (obj) {
  2292. //防止拖动图标即打开了桌面应用
  2293. U.MD.D.click(this, obj);
  2294. }, [_SCNUETStudentDeskIconInfo[i]]),
  2295. "onclick": U.UF.C.closure(function (obj) {
  2296. //防止拖动图标即打开了桌面应用
  2297. U.MD.D.click(this, obj);
  2298. }, [_SCNUETStudentDeskIconInfo[i]])
  2299. }, _frag); //
  2300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2303. }
  2304. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2305. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2306. _content = $$("div", {
  2307. className: "U_MD_D_KO",
  2308. "onmousedown": U.UF.C.closure(function (obj) {
  2309. //防止拖动图标即打开了桌面应用
  2310. U.MD.D.click(this, obj);
  2311. }, [_dseiStudentDeskIconInfo[i]]),
  2312. "onclick": U.UF.C.closure(function (obj) {
  2313. //防止拖动图标即打开了桌面应用
  2314. U.MD.D.click(this, obj);
  2315. }, [_dseiStudentDeskIconInfo[i]])
  2316. }, _frag); //
  2317. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2318. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2319. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2320. }
  2321. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2322. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2323. _content = $$("div", {
  2324. className: "U_MD_D_KO",
  2325. "onmousedown": U.UF.C.closure(function (obj) {
  2326. //防止拖动图标即打开了桌面应用
  2327. U.MD.D.click(this, obj);
  2328. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2329. "onclick": U.UF.C.closure(function (obj) {
  2330. //防止拖动图标即打开了桌面应用
  2331. U.MD.D.click(this, obj);
  2332. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2333. }, _frag); //
  2334. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2335. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2336. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2337. }
  2338. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2339. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2340. _content = $$("div", {
  2341. className: "U_MD_D_KO",
  2342. "onmousedown": U.UF.C.closure(function (obj) {
  2343. //防止拖动图标即打开了桌面应用
  2344. U.MD.D.click(this, obj);
  2345. }, [_nsfxStudentDeskIconInfo[i]]),
  2346. "onclick": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_nsfxStudentDeskIconInfo[i]])
  2350. }, _frag); //
  2351. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2352. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2353. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2354. }
  2355. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2356. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2357. _content = $$("div", {
  2358. className: "U_MD_D_KO",
  2359. "onmousedown": U.UF.C.closure(function (obj) {
  2360. //防止拖动图标即打开了桌面应用
  2361. U.MD.D.click(this, obj);
  2362. }, [_stiaStudentDeskIconInfo[i]]),
  2363. "onclick": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_stiaStudentDeskIconInfo[i]])
  2367. }, _frag); //
  2368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2371. }
  2372. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2373. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2374. _content = $$("div", {
  2375. className: "U_MD_D_KO",
  2376. "onmousedown": U.UF.C.closure(function (obj) {
  2377. //防止拖动图标即打开了桌面应用
  2378. U.MD.D.click(this, obj);
  2379. }, [_szdjgStudentDeskIconInfo[i]]),
  2380. "onclick": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_szdjgStudentDeskIconInfo[i]])
  2384. }, _frag); //
  2385. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2386. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2387. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2388. }
  2389. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2390. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2391. _content = $$("div", {
  2392. className: "U_MD_D_KO",
  2393. "onmousedown": U.UF.C.closure(function (obj) {
  2394. //防止拖动图标即打开了桌面应用
  2395. U.MD.D.click(this, obj);
  2396. }, [_x010607StudentDeskIconInfo[i]]),
  2397. "onclick": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_x010607StudentDeskIconInfo[i]])
  2401. }, _frag); //
  2402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2405. }
  2406. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2407. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2408. _content = $$("div", {
  2409. className: "U_MD_D_KO",
  2410. "onmousedown": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_xhlyStudentDeskIconInfo[i]]),
  2414. "onclick": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_xhlyStudentDeskIconInfo[i]])
  2418. }, _frag); //
  2419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2422. }
  2423. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2424. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2425. _content = $$("div", {
  2426. className: "U_MD_D_KO",
  2427. "onmousedown": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2431. "onclick": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2435. }, _frag); //
  2436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2439. }
  2440. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2441. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2442. _content = $$("div", {
  2443. className: "U_MD_D_KO",
  2444. "onmousedown": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_x010503StudentDeskIconInfo[i]]),
  2448. "onclick": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_x010503StudentDeskIconInfo[i]])
  2452. }, _frag); //
  2453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2456. }
  2457. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2458. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2459. _content = $$("div", {
  2460. className: "U_MD_D_KO",
  2461. "onmousedown": U.UF.C.closure(function (obj) {
  2462. //防止拖动图标即打开了桌面应用
  2463. U.MD.D.click(this, obj);
  2464. }, [_x010504StudentDeskIconInfo[i]]),
  2465. "onclick": U.UF.C.closure(function (obj) {
  2466. //防止拖动图标即打开了桌面应用
  2467. U.MD.D.click(this, obj);
  2468. }, [_x010504StudentDeskIconInfo[i]])
  2469. }, _frag); //
  2470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2473. }
  2474. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2475. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2476. _content = $$("div", {
  2477. className: "U_MD_D_KO",
  2478. "onmousedown": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_x010204StudentDeskIconInfo[i]]),
  2482. "onclick": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_x010204StudentDeskIconInfo[i]])
  2486. }, _frag); //
  2487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2490. }
  2491. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2492. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2493. _content = $$("div", {
  2494. className: "U_MD_D_KO",
  2495. "onmousedown": U.UF.C.closure(function (obj) {
  2496. //防止拖动图标即打开了桌面应用
  2497. U.MD.D.click(this, obj);
  2498. }, [_trailStudentDeskIconInfo[i]]),
  2499. "onclick": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_trailStudentDeskIconInfo[i]])
  2503. }, _frag); //
  2504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2507. }
  2508. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2509. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2510. _content = $$("div", {
  2511. className: "U_MD_D_KO",
  2512. "onmousedown": U.UF.C.closure(function (obj) {
  2513. //防止拖动图标即打开了桌面应用
  2514. U.MD.D.click(this, obj);
  2515. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2516. "onclick": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2520. }, _frag); //
  2521. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2522. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2523. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2524. }
  2525. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2526. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2527. _content = $$("div", {
  2528. className: "U_MD_D_KO",
  2529. "onmousedown": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_x010608StudentDeskIconInfo[i]]),
  2533. "onclick": U.UF.C.closure(function (obj) {
  2534. //防止拖动图标即打开了桌面应用
  2535. U.MD.D.click(this, obj);
  2536. }, [_x010608StudentDeskIconInfo[i]])
  2537. }, _frag); //
  2538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2541. }
  2542. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2543. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2544. _content = $$("div", {
  2545. className: "U_MD_D_KO",
  2546. "onmousedown": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_x010611StudentDeskIconInfo[i]]),
  2550. "onclick": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_x010611StudentDeskIconInfo[i]])
  2554. }, _frag); //
  2555. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2556. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2557. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2558. }
  2559. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2560. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2561. _content = $$("div", {
  2562. className: "U_MD_D_KO",
  2563. "onmousedown": U.UF.C.closure(function (obj) {
  2564. //防止拖动图标即打开了桌面应用
  2565. U.MD.D.click(this, obj);
  2566. }, [_tianyuantudentDeskIconInfo[i]]),
  2567. "onclick": U.UF.C.closure(function (obj) {
  2568. //防止拖动图标即打开了桌面应用
  2569. U.MD.D.click(this, obj);
  2570. }, [_tianyuantudentDeskIconInfo[i]])
  2571. }, _frag); //
  2572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2575. }
  2576. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2577. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2578. _content = $$("div", {
  2579. className: "U_MD_D_KO",
  2580. "onmousedown": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_siesStudentDeskIconInfo[i]]),
  2584. "onclick": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_siesStudentDeskIconInfo[i]])
  2588. }, _frag); //
  2589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2592. }
  2593. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2594. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2595. _content = $$("div", {
  2596. className: "U_MD_D_KO",
  2597. "onmousedown": U.UF.C.closure(function (obj) {
  2598. //防止拖动图标即打开了桌面应用
  2599. U.MD.D.click(this, obj);
  2600. }, [_guzmsStudentDeskIconInfo[i]]),
  2601. "onclick": U.UF.C.closure(function (obj) {
  2602. //防止拖动图标即打开了桌面应用
  2603. U.MD.D.click(this, obj);
  2604. }, [_guzmsStudentDeskIconInfo[i]])
  2605. }, _frag); //
  2606. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2607. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2608. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2609. }
  2610. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2611. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2612. _content = $$("div", {
  2613. className: "U_MD_D_KO",
  2614. "onmousedown": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_hkStudentDeskIconInfo[i]]),
  2618. "onclick": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_hkStudentDeskIconInfo[i]])
  2622. }, _frag); //
  2623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2626. }
  2627. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2628. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2629. _content = $$("div", {
  2630. className: "U_MD_D_KO",
  2631. "onmousedown": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_hkaceStudentDeskIconInfo[i]]),
  2635. "onclick": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_hkaceStudentDeskIconInfo[i]])
  2639. }, _frag); //
  2640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2643. }
  2644. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2645. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2646. _content = $$("div", {
  2647. className: "U_MD_D_KO",
  2648. "onmousedown": U.UF.C.closure(function (obj) {
  2649. //防止拖动图标即打开了桌面应用
  2650. U.MD.D.click(this, obj);
  2651. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2652. "onclick": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_BSDNSstudentDesktopIconInfo[i]])
  2656. }, _frag); //
  2657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2660. }
  2661. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2662. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2663. _content = $$("div", {
  2664. className: "U_MD_D_KO",
  2665. "onmousedown": U.UF.C.closure(function (obj) {
  2666. //防止拖动图标即打开了桌面应用
  2667. U.MD.D.click(this, obj);
  2668. }, [_cocobizStudentDeskIconInfo[i]]),
  2669. "onclick": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_cocobizStudentDeskIconInfo[i]])
  2673. }, _frag); //
  2674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2677. }
  2678. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2679. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2680. _content = $$("div", {
  2681. className: "U_MD_D_KO",
  2682. "onmousedown": U.UF.C.closure(function (obj) {
  2683. //防止拖动图标即打开了桌面应用
  2684. U.MD.D.click(this, obj);
  2685. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2686. "onclick": U.UF.C.closure(function (obj) {
  2687. //防止拖动图标即打开了桌面应用
  2688. U.MD.D.click(this, obj);
  2689. }, [_xxzjkyStudentDeskIconInfo[i]])
  2690. }, _frag); //
  2691. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2692. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2693. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2694. }
  2695. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2696. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2697. _content = $$("div", {
  2698. className: "U_MD_D_KO",
  2699. "onmousedown": U.UF.C.closure(function (obj) {
  2700. //防止拖动图标即打开了桌面应用
  2701. U.MD.D.click(this, obj);
  2702. }, [_studentDesktopIconInfo[i]]),
  2703. "onclick": U.UF.C.closure(function (obj) {
  2704. //防止拖动图标即打开了桌面应用
  2705. U.MD.D.click(this, obj);
  2706. }, [_studentDesktopIconInfo[i]])
  2707. }, _frag); //
  2708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2711. }
  2712. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2713. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2714. _content = $$("div", {
  2715. className: "U_MD_D_KO",
  2716. "onmousedown": U.UF.C.closure(function (obj) {
  2717. //防止拖动图标即打开了桌面应用
  2718. U.MD.D.click(this, obj);
  2719. }, [_tcStudentDeskIconInfo[i]]),
  2720. "onclick": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_tcStudentDeskIconInfo[i]])
  2724. }, _frag); //
  2725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2728. }
  2729. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2730. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2731. _content = $$("div", {
  2732. className: "U_MD_D_KO",
  2733. "onmousedown": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_szscStudentDeskIconInfo[i]]),
  2737. "onclick": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_szscStudentDeskIconInfo[i]])
  2741. }, _frag); //
  2742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2745. }
  2746. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2747. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2748. _content = $$("div", {
  2749. className: "U_MD_D_KO",
  2750. "onmousedown": U.UF.C.closure(function (obj) {
  2751. //防止拖动图标即打开了桌面应用
  2752. U.MD.D.click(this, obj);
  2753. }, [_studentDesktopIconInfo3[i]]),
  2754. "onclick": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_studentDesktopIconInfo3[i]])
  2758. }, _frag); //
  2759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2762. }
  2763. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2764. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2765. _content = $$("div", {
  2766. className: "U_MD_D_KO",
  2767. "onmousedown": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_studentDesktopIconInfo2[i]]),
  2771. "onclick": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_studentDesktopIconInfo2[i]])
  2775. }, _frag); //
  2776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2779. }
  2780. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2781. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2782. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2783. continue
  2784. }
  2785. _content = $$("div", {
  2786. className: "U_MD_D_KO",
  2787. "onmousedown": U.UF.C.closure(function (obj) {
  2788. //防止拖动图标即打开了桌面应用
  2789. U.MD.D.click(this, obj);
  2790. }, [_wanketeacherDesktopIconInfo[i]]),
  2791. "onclick": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_wanketeacherDesktopIconInfo[i]])
  2795. }, _frag); //
  2796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2799. }
  2800. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2801. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2802. _content = $$("div", {
  2803. className: "U_MD_D_KO",
  2804. "onmousedown": U.UF.C.closure(function (obj) {
  2805. //防止拖动图标即打开了桌面应用
  2806. U.MD.D.click(this, obj);
  2807. }, [_wankeAdminDesktopIconInfo[i]]),
  2808. "onclick": U.UF.C.closure(function (obj) {
  2809. //防止拖动图标即打开了桌面应用
  2810. U.MD.D.click(this, obj);
  2811. }, [_wankeAdminDesktopIconInfo[i]])
  2812. }, _frag); //
  2813. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2814. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2815. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2816. }
  2817. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2818. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2819. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2820. continue
  2821. }
  2822. _content = $$("div", {
  2823. className: "U_MD_D_KO",
  2824. "onmousedown": U.UF.C.closure(function (obj) {
  2825. //防止拖动图标即打开了桌面应用
  2826. U.MD.D.click(this, obj);
  2827. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2828. "onclick": U.UF.C.closure(function (obj) {
  2829. //防止拖动图标即打开了桌面应用
  2830. U.MD.D.click(this, obj);
  2831. }, [_scnuaiTeacherDeskIconInfo[i]])
  2832. }, _frag); //
  2833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2836. }
  2837. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2838. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2839. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2840. continue
  2841. }
  2842. _content = $$("div", {
  2843. className: "U_MD_D_KO",
  2844. "onmousedown": U.UF.C.closure(function (obj) {
  2845. //防止拖动图标即打开了桌面应用
  2846. U.MD.D.click(this, obj);
  2847. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2848. "onclick": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_BSDNSteacherDesktopIconInfo[i]])
  2852. }, _frag); //
  2853. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2854. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2855. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2856. }
  2857. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2858. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2859. _content = $$("div", {
  2860. className: "U_MD_D_KO",
  2861. "onmousedown": U.UF.C.closure(function (obj) {
  2862. //防止拖动图标即打开了桌面应用
  2863. U.MD.D.click(this, obj);
  2864. }, [_scnuaiAdminDeskIconInfo[i]]),
  2865. "onclick": U.UF.C.closure(function (obj) {
  2866. //防止拖动图标即打开了桌面应用
  2867. U.MD.D.click(this, obj);
  2868. }, [_scnuaiAdminDeskIconInfo[i]])
  2869. }, _frag); //
  2870. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2871. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2872. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2873. }
  2874. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2875. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2876. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2877. continue
  2878. }
  2879. _content = $$("div", {
  2880. className: "U_MD_D_KO",
  2881. "onmousedown": U.UF.C.closure(function (obj) {
  2882. //防止拖动图标即打开了桌面应用
  2883. U.MD.D.click(this, obj);
  2884. }, [_jccssylTeacherDeskIconInfo[i]]),
  2885. "onclick": U.UF.C.closure(function (obj) {
  2886. //防止拖动图标即打开了桌面应用
  2887. U.MD.D.click(this, obj);
  2888. }, [_jccssylTeacherDeskIconInfo[i]])
  2889. }, _frag); //
  2890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2893. }
  2894. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2895. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2896. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2897. continue
  2898. }
  2899. _content = $$("div", {
  2900. className: "U_MD_D_KO",
  2901. "onmousedown": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_caleTeacherDeskIconInfo[i]]),
  2905. "onclick": U.UF.C.closure(function (obj) {
  2906. //防止拖动图标即打开了桌面应用
  2907. U.MD.D.click(this, obj);
  2908. }, [_caleTeacherDeskIconInfo[i]])
  2909. }, _frag); //
  2910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2913. }
  2914. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2915. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2916. _content = $$("div", {
  2917. className: "U_MD_D_KO",
  2918. "onmousedown": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_tpcOrganizerDeskIconInfo[i]]),
  2922. "onclick": U.UF.C.closure(function (obj) {
  2923. //防止拖动图标即打开了桌面应用
  2924. U.MD.D.click(this, obj);
  2925. }, [_tpcOrganizerDeskIconInfo[i]])
  2926. }, _frag); //
  2927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2930. }
  2931. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2932. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2933. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2934. continue
  2935. }
  2936. _content = $$("div", {
  2937. className: "U_MD_D_KO",
  2938. "onmousedown": U.UF.C.closure(function (obj) {
  2939. //防止拖动图标即打开了桌面应用
  2940. U.MD.D.click(this, obj);
  2941. }, [_tpcTeacherDeskIconInfo[i]]),
  2942. "onclick": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_tpcTeacherDeskIconInfo[i]])
  2946. }, _frag); //
  2947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2950. }
  2951. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2952. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2953. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2954. continue
  2955. }
  2956. _content = $$("div", {
  2957. className: "U_MD_D_KO",
  2958. "onmousedown": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_teacherDesktopIconInfo2[i]]),
  2962. "onclick": U.UF.C.closure(function (obj) {
  2963. //防止拖动图标即打开了桌面应用
  2964. U.MD.D.click(this, obj);
  2965. }, [_teacherDesktopIconInfo2[i]])
  2966. }, _frag); //
  2967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2970. }
  2971. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2972. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2973. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2974. continue
  2975. }
  2976. _content = $$("div", {
  2977. className: "U_MD_D_KO",
  2978. "onmousedown": U.UF.C.closure(function (obj) {
  2979. //防止拖动图标即打开了桌面应用
  2980. U.MD.D.click(this, obj);
  2981. }, [_thuioeTeacherDeskIconInfo[i]]),
  2982. "onclick": U.UF.C.closure(function (obj) {
  2983. //防止拖动图标即打开了桌面应用
  2984. U.MD.D.click(this, obj);
  2985. }, [_thuioeTeacherDeskIconInfo[i]])
  2986. }, _frag); //
  2987. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2988. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2989. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2990. }
  2991. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2992. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2993. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2994. continue
  2995. }
  2996. _content = $$("div", {
  2997. className: "U_MD_D_KO",
  2998. "onmousedown": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_lotechTeacherDeskIconInfo[i]]),
  3002. "onclick": U.UF.C.closure(function (obj) {
  3003. //防止拖动图标即打开了桌面应用
  3004. U.MD.D.click(this, obj);
  3005. }, [_lotechTeacherDeskIconInfo[i]])
  3006. }, _frag); //
  3007. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3008. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3009. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3010. }//
  3011. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3012. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3013. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3014. continue
  3015. }
  3016. _content = $$("div", {
  3017. className: "U_MD_D_KO",
  3018. "onmousedown": U.UF.C.closure(function (obj) {
  3019. //防止拖动图标即打开了桌面应用
  3020. U.MD.D.click(this, obj);
  3021. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3022. "onclick": U.UF.C.closure(function (obj) {
  3023. //防止拖动图标即打开了桌面应用
  3024. U.MD.D.click(this, obj);
  3025. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3026. }, _frag); //
  3027. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3028. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3029. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3030. }
  3031. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3032. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3033. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3034. continue
  3035. }
  3036. _content = $$("div", {
  3037. className: "U_MD_D_KO",
  3038. "onmousedown": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_siesTeacherDeskIconInfo[i]]),
  3042. "onclick": U.UF.C.closure(function (obj) {
  3043. //防止拖动图标即打开了桌面应用
  3044. U.MD.D.click(this, obj);
  3045. }, [_siesTeacherDeskIconInfo[i]])
  3046. }, _frag); //
  3047. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3048. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3049. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3050. }
  3051. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3052. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3053. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3054. continue
  3055. }
  3056. _content = $$("div", {
  3057. className: "U_MD_D_KO",
  3058. "onmousedown": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_guzmsTeacherDeskIconInfo[i]]),
  3062. "onclick": U.UF.C.closure(function (obj) {
  3063. //防止拖动图标即打开了桌面应用
  3064. U.MD.D.click(this, obj);
  3065. }, [_guzmsTeacherDeskIconInfo[i]])
  3066. }, _frag); //
  3067. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3068. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3069. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3070. }
  3071. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3072. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3073. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3074. continue
  3075. }
  3076. _content = $$("div", {
  3077. className: "U_MD_D_KO",
  3078. "onmousedown": U.UF.C.closure(function (obj) {
  3079. //防止拖动图标即打开了桌面应用
  3080. U.MD.D.click(this, obj);
  3081. }, [_longhuaTeacherDeskIconInfo[i]]),
  3082. "onclick": U.UF.C.closure(function (obj) {
  3083. //防止拖动图标即打开了桌面应用
  3084. U.MD.D.click(this, obj);
  3085. }, [_longhuaTeacherDeskIconInfo[i]])
  3086. }, _frag); //
  3087. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3090. }
  3091. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3092. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3093. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3094. continue
  3095. }
  3096. _content = $$("div", {
  3097. className: "U_MD_D_KO",
  3098. "onmousedown": U.UF.C.closure(function (obj) {
  3099. //防止拖动图标即打开了桌面应用
  3100. U.MD.D.click(this, obj);
  3101. }, [_ytyTeacherDeskIconInfo[i]]),
  3102. "onclick": U.UF.C.closure(function (obj) {
  3103. //防止拖动图标即打开了桌面应用
  3104. U.MD.D.click(this, obj);
  3105. }, [_ytyTeacherDeskIconInfo[i]])
  3106. }, _frag); //
  3107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3110. }
  3111. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3112. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3113. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3114. continue
  3115. }
  3116. _content = $$("div", {
  3117. className: "U_MD_D_KO",
  3118. "onmousedown": U.UF.C.closure(function (obj) {
  3119. //防止拖动图标即打开了桌面应用
  3120. U.MD.D.click(this, obj);
  3121. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3122. "onclick": U.UF.C.closure(function (obj) {
  3123. //防止拖动图标即打开了桌面应用
  3124. U.MD.D.click(this, obj);
  3125. }, [_yunhaiTeacherDeskIconInfo[i]])
  3126. }, _frag); //
  3127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3130. } //_hkStudentDeskIconInfo
  3131. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3132. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3133. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3134. continue
  3135. }
  3136. _content = $$("div", {
  3137. className: "U_MD_D_KO",
  3138. "onmousedown": U.UF.C.closure(function (obj) {
  3139. //防止拖动图标即打开了桌面应用
  3140. U.MD.D.click(this, obj);
  3141. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3142. "onclick": U.UF.C.closure(function (obj) {
  3143. //防止拖动图标即打开了桌面应用
  3144. U.MD.D.click(this, obj);
  3145. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3146. }, _frag); //
  3147. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3148. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3149. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3150. }
  3151. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3152. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3153. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3154. continue
  3155. }
  3156. _content = $$("div", {
  3157. className: "U_MD_D_KO",
  3158. "onmousedown": U.UF.C.closure(function (obj) {
  3159. //防止拖动图标即打开了桌面应用
  3160. U.MD.D.click(this, obj);
  3161. }, [_hkTeacherDeskIconInfo[i]]),
  3162. "onclick": U.UF.C.closure(function (obj) {
  3163. //防止拖动图标即打开了桌面应用
  3164. U.MD.D.click(this, obj);
  3165. }, [_hkTeacherDeskIconInfo[i]])
  3166. }, _frag); //
  3167. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3168. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3169. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3170. }
  3171. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3172. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3173. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3174. continue
  3175. }
  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. }, [_hkaceTeacherDeskIconInfo[i]]),
  3182. "onclick": U.UF.C.closure(function (obj) {
  3183. //防止拖动图标即打开了桌面应用
  3184. U.MD.D.click(this, obj);
  3185. }, [_hkaceTeacherDeskIconInfo[i]])
  3186. }, _frag); //
  3187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3190. }
  3191. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3192. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3193. if(_role === 0 && _cocobizTeacherDeskIconInfo[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. }, [_cocobizTeacherDeskIconInfo[i]]),
  3202. "onclick": U.UF.C.closure(function (obj) {
  3203. //防止拖动图标即打开了桌面应用
  3204. U.MD.D.click(this, obj);
  3205. }, [_cocobizTeacherDeskIconInfo[i]])
  3206. }, _frag); //
  3207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3210. }
  3211. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3212. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3213. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[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. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3222. "onclick": U.UF.C.closure(function (obj) {
  3223. //防止拖动图标即打开了桌面应用
  3224. U.MD.D.click(this, obj);
  3225. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3226. }, _frag); //
  3227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3230. }
  3231. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3232. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3233. _content = $$("div", {
  3234. className: "U_MD_D_KO",
  3235. "onmousedown": U.UF.C.closure(function (obj) {
  3236. //防止拖动图标即打开了桌面应用
  3237. U.MD.D.click(this, obj);
  3238. }, [_gdjgAdminDeskIconInfo[i]]),
  3239. "onclick": U.UF.C.closure(function (obj) {
  3240. //防止拖动图标即打开了桌面应用
  3241. U.MD.D.click(this, obj);
  3242. }, [_gdjgAdminDeskIconInfo[i]])
  3243. }, _frag); //
  3244. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3245. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3246. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3247. }
  3248. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3249. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3250. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3251. continue
  3252. }
  3253. _content = $$("div", {
  3254. className: "U_MD_D_KO",
  3255. "onmousedown": U.UF.C.closure(function (obj) {
  3256. //防止拖动图标即打开了桌面应用
  3257. U.MD.D.click(this, obj);
  3258. }, [_gdjgTeacherDeskIconInfo[i]]),
  3259. "onclick": U.UF.C.closure(function (obj) {
  3260. //防止拖动图标即打开了桌面应用
  3261. U.MD.D.click(this, obj);
  3262. }, [_gdjgTeacherDeskIconInfo[i]])
  3263. }, _frag); //
  3264. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3265. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3266. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3267. }
  3268. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3269. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3270. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3271. continue
  3272. }
  3273. _content = $$("div", {
  3274. className: "U_MD_D_KO",
  3275. "onmousedown": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_szherTeacherDeskIconInfo[i]]),
  3279. "onclick": U.UF.C.closure(function (obj) {
  3280. //防止拖动图标即打开了桌面应用
  3281. U.MD.D.click(this, obj);
  3282. }, [_szherTeacherDeskIconInfo[i]])
  3283. }, _frag); //
  3284. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3285. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3286. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3287. }
  3288. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3289. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3290. _content = $$("div", {
  3291. className: "U_MD_D_KO",
  3292. "onmousedown": U.UF.C.closure(function (obj) {
  3293. //防止拖动图标即打开了桌面应用
  3294. U.MD.D.click(this, obj);
  3295. }, [_heyuannAdminDeskIconInfo[i]]),
  3296. "onclick": U.UF.C.closure(function (obj) {
  3297. //防止拖动图标即打开了桌面应用
  3298. U.MD.D.click(this, obj);
  3299. }, [_heyuannAdminDeskIconInfo[i]])
  3300. }, _frag); //
  3301. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3302. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3303. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3304. }
  3305. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3306. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3307. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3308. continue
  3309. }
  3310. _content = $$("div", {
  3311. className: "U_MD_D_KO",
  3312. "onmousedown": U.UF.C.closure(function (obj) {
  3313. //防止拖动图标即打开了桌面应用
  3314. U.MD.D.click(this, obj);
  3315. }, [_heyuanTeacherDeskIconInfo[i]]),
  3316. "onclick": U.UF.C.closure(function (obj) {
  3317. //防止拖动图标即打开了桌面应用
  3318. U.MD.D.click(this, obj);
  3319. }, [_heyuanTeacherDeskIconInfo[i]])
  3320. }, _frag); //
  3321. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3322. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3323. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3324. } //
  3325. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3326. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3327. _content = $$("div", {
  3328. className: "U_MD_D_KO",
  3329. "onmousedown": U.UF.C.closure(function (obj) {
  3330. //防止拖动图标即打开了桌面应用
  3331. U.MD.D.click(this, obj);
  3332. }, [_dseiAdminDeskIconInfo[i]]),
  3333. "onclick": U.UF.C.closure(function (obj) {
  3334. //防止拖动图标即打开了桌面应用
  3335. U.MD.D.click(this, obj);
  3336. }, [_dseiAdminDeskIconInfo[i]])
  3337. }, _frag); //
  3338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3341. }
  3342. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3343. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3344. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3345. continue
  3346. }
  3347. _content = $$("div", {
  3348. className: "U_MD_D_KO",
  3349. "onmousedown": U.UF.C.closure(function (obj) {
  3350. //防止拖动图标即打开了桌面应用
  3351. U.MD.D.click(this, obj);
  3352. }, [_dseiTeacherDeskIconInfo[i]]),
  3353. "onclick": U.UF.C.closure(function (obj) {
  3354. //防止拖动图标即打开了桌面应用
  3355. U.MD.D.click(this, obj);
  3356. }, [_dseiTeacherDeskIconInfo[i]])
  3357. }, _frag); //
  3358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3361. } //
  3362. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3363. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3364. _content = $$("div", {
  3365. className: "U_MD_D_KO",
  3366. "onmousedown": U.UF.C.closure(function (obj) {
  3367. //防止拖动图标即打开了桌面应用
  3368. U.MD.D.click(this, obj);
  3369. }, [_chjyjAdminDeskIconInfo[i]]),
  3370. "onclick": U.UF.C.closure(function (obj) {
  3371. //防止拖动图标即打开了桌面应用
  3372. U.MD.D.click(this, obj);
  3373. }, [_chjyjAdminDeskIconInfo[i]])
  3374. }, _frag); //
  3375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3378. }//
  3379. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3380. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3381. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3382. continue
  3383. }
  3384. _content = $$("div", {
  3385. className: "U_MD_D_KO",
  3386. "onmousedown": U.UF.C.closure(function (obj) {
  3387. //防止拖动图标即打开了桌面应用
  3388. U.MD.D.click(this, obj);
  3389. }, [_chjyjTeacherDeskIconInfo[i]]),
  3390. "onclick": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_chjyjTeacherDeskIconInfo[i]])
  3394. }, _frag); //
  3395. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3396. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3397. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3398. }
  3399. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3400. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3401. _content = $$("div", {
  3402. className: "U_MD_D_KO",
  3403. "onmousedown": U.UF.C.closure(function (obj) {
  3404. //防止拖动图标即打开了桌面应用
  3405. U.MD.D.click(this, obj);
  3406. }, [_szjkyAdminDeskIconInfo[i]]),
  3407. "onclick": U.UF.C.closure(function (obj) {
  3408. //防止拖动图标即打开了桌面应用
  3409. U.MD.D.click(this, obj);
  3410. }, [_szjkyAdminDeskIconInfo[i]])
  3411. }, _frag); //
  3412. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3413. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3414. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3415. }//
  3416. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3417. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3418. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3419. continue
  3420. }
  3421. _content = $$("div", {
  3422. className: "U_MD_D_KO",
  3423. "onmousedown": U.UF.C.closure(function (obj) {
  3424. //防止拖动图标即打开了桌面应用
  3425. U.MD.D.click(this, obj);
  3426. }, [_szjkyTeacherDeskIconInfo[i]]),
  3427. "onclick": U.UF.C.closure(function (obj) {
  3428. //防止拖动图标即打开了桌面应用
  3429. U.MD.D.click(this, obj);
  3430. }, [_szjkyTeacherDeskIconInfo[i]])
  3431. }, _frag); //
  3432. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3433. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3434. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3435. }
  3436. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3437. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3438. _content = $$("div", {
  3439. className: "U_MD_D_KO",
  3440. "onmousedown": U.UF.C.closure(function (obj) {
  3441. //防止拖动图标即打开了桌面应用
  3442. U.MD.D.click(this, obj);
  3443. }, [_x020201AdminDeskIconInfo[i]]),
  3444. "onclick": U.UF.C.closure(function (obj) {
  3445. //防止拖动图标即打开了桌面应用
  3446. U.MD.D.click(this, obj);
  3447. }, [_x020201AdminDeskIconInfo[i]])
  3448. }, _frag); //
  3449. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3450. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3451. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3452. }//
  3453. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3454. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3455. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3456. continue
  3457. }
  3458. _content = $$("div", {
  3459. className: "U_MD_D_KO",
  3460. "onmousedown": U.UF.C.closure(function (obj) {
  3461. //防止拖动图标即打开了桌面应用
  3462. U.MD.D.click(this, obj);
  3463. }, [_x020201TeacherDeskIconInfo[i]]),
  3464. "onclick": U.UF.C.closure(function (obj) {
  3465. //防止拖动图标即打开了桌面应用
  3466. U.MD.D.click(this, obj);
  3467. }, [_x020201TeacherDeskIconInfo[i]])
  3468. }, _frag); //
  3469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3472. }
  3473. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3474. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3475. _content = $$("div", {
  3476. className: "U_MD_D_KO",
  3477. "onmousedown": U.UF.C.closure(function (obj) {
  3478. //防止拖动图标即打开了桌面应用
  3479. U.MD.D.click(this, obj);
  3480. }, [_SCNUETAdminDeskIconInfo[i]]),
  3481. "onclick": U.UF.C.closure(function (obj) {
  3482. //防止拖动图标即打开了桌面应用
  3483. U.MD.D.click(this, obj);
  3484. }, [_SCNUETAdminDeskIconInfo[i]])
  3485. }, _frag); //
  3486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3489. }//
  3490. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3491. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3492. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3493. continue
  3494. }
  3495. _content = $$("div", {
  3496. className: "U_MD_D_KO",
  3497. "onmousedown": U.UF.C.closure(function (obj) {
  3498. //防止拖动图标即打开了桌面应用
  3499. U.MD.D.click(this, obj);
  3500. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3501. "onclick": U.UF.C.closure(function (obj) {
  3502. //防止拖动图标即打开了桌面应用
  3503. U.MD.D.click(this, obj);
  3504. }, [_SCNUETTeacherDeskIconInfo[i]])
  3505. }, _frag); //
  3506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3509. }
  3510. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3511. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3512. _content = $$("div", {
  3513. className: "U_MD_D_KO",
  3514. "onmousedown": U.UF.C.closure(function (obj) {
  3515. //防止拖动图标即打开了桌面应用
  3516. U.MD.D.click(this, obj);
  3517. }, [_futianAdminDeskIconInfo[i]]),
  3518. "onclick": U.UF.C.closure(function (obj) {
  3519. //防止拖动图标即打开了桌面应用
  3520. U.MD.D.click(this, obj);
  3521. }, [_futianAdminDeskIconInfo[i]])
  3522. }, _frag); //
  3523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3526. }
  3527. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3528. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3529. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3530. continue
  3531. }
  3532. _content = $$("div", {
  3533. className: "U_MD_D_KO",
  3534. "onmousedown": U.UF.C.closure(function (obj) {
  3535. //防止拖动图标即打开了桌面应用
  3536. U.MD.D.click(this, obj);
  3537. }, [_futianTeacherDeskIconInfo[i]]),
  3538. "onclick": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_futianTeacherDeskIconInfo[i]])
  3542. }, _frag); //
  3543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3546. }
  3547. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3548. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3549. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3550. continue
  3551. }
  3552. _content = $$("div", {
  3553. className: "U_MD_D_KO",
  3554. "onmousedown": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_MingdeTeacherDeskIcon[i]]),
  3558. "onclick": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_MingdeTeacherDeskIcon[i]])
  3562. }, _frag); //
  3563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3566. }
  3567. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3568. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3569. _content = $$("div", {
  3570. className: "U_MD_D_KO",
  3571. "onmousedown": U.UF.C.closure(function (obj) {
  3572. //防止拖动图标即打开了桌面应用
  3573. U.MD.D.click(this, obj);
  3574. }, [_lhsAdminDesktopIconInfo[i]]),
  3575. "onclick": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_lhsAdminDesktopIconInfo[i]])
  3579. }, _frag); //
  3580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3583. }
  3584. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3585. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3586. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3587. continue
  3588. }
  3589. _content = $$("div", {
  3590. className: "U_MD_D_KO",
  3591. "onmousedown": U.UF.C.closure(function (obj) {
  3592. //防止拖动图标即打开了桌面应用
  3593. U.MD.D.click(this, obj);
  3594. }, [_lhsteacherDesktopIconInfo[i]]),
  3595. "onclick": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_lhsteacherDesktopIconInfo[i]])
  3599. }, _frag); //
  3600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3603. }
  3604. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3605. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3606. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3607. continue
  3608. }
  3609. _content = $$("div", {
  3610. className: "U_MD_D_KO",
  3611. "onmousedown": U.UF.C.closure(function (obj) {
  3612. //防止拖动图标即打开了桌面应用
  3613. U.MD.D.click(this, obj);
  3614. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3615. "onclick": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_zhoujiateacherDesktopIconInfo[i]])
  3619. }, _frag); //
  3620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3623. }
  3624. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3625. for (i = 0; i < _hanDeskIcon.length; i++) {
  3626. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3627. continue
  3628. }
  3629. _content = $$("div", {
  3630. className: "U_MD_D_KO",
  3631. "onmousedown": U.UF.C.closure(function (obj) {
  3632. //防止拖动图标即打开了桌面应用
  3633. U.MD.D.click(this, obj);
  3634. }, [_hanDeskIcon[i]]),
  3635. "onclick": U.UF.C.closure(function (obj) {
  3636. //防止拖动图标即打开了桌面应用
  3637. U.MD.D.click(this, obj);
  3638. }, [_hanDeskIcon[i]])
  3639. }, _frag); //
  3640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3643. }
  3644. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3645. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3646. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3647. continue
  3648. }
  3649. _content = $$("div", {
  3650. className: "U_MD_D_KO",
  3651. "onmousedown": U.UF.C.closure(function (obj) {
  3652. //防止拖动图标即打开了桌面应用
  3653. U.MD.D.click(this, obj);
  3654. }, [_orgStemDeskIcon[i]]),
  3655. "onclick": U.UF.C.closure(function (obj) {
  3656. //防止拖动图标即打开了桌面应用
  3657. U.MD.D.click(this, obj);
  3658. }, [_orgStemDeskIcon[i]])
  3659. }, _frag); //
  3660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3663. }
  3664. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3665. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3666. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3667. continue
  3668. }
  3669. _content = $$("div", {
  3670. className: "U_MD_D_KO",
  3671. "onmousedown": U.UF.C.closure(function (obj) {
  3672. //防止拖动图标即打开了桌面应用
  3673. U.MD.D.click(this, obj);
  3674. }, [_szulsDeskIcon[i]]),
  3675. "onclick": U.UF.C.closure(function (obj) {
  3676. //防止拖动图标即打开了桌面应用
  3677. U.MD.D.click(this, obj);
  3678. }, [_szulsDeskIcon[i]])
  3679. }, _frag); //
  3680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3683. }
  3684. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3685. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3686. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3687. continue
  3688. }
  3689. _content = $$("div", {
  3690. className: "U_MD_D_KO",
  3691. "onmousedown": U.UF.C.closure(function (obj) {
  3692. //防止拖动图标即打开了桌面应用
  3693. U.MD.D.click(this, obj);
  3694. }, [_orgDesktopIconInfo[i]]),
  3695. "onclick": U.UF.C.closure(function (obj) {
  3696. //防止拖动图标即打开了桌面应用
  3697. U.MD.D.click(this, obj);
  3698. }, [_orgDesktopIconInfo[i]])
  3699. }, _frag); //
  3700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3703. }
  3704. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3705. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3706. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3707. continue
  3708. }
  3709. _content = $$("div", {
  3710. className: "U_MD_D_KO",
  3711. "onmousedown": U.UF.C.closure(function (obj) {
  3712. //防止拖动图标即打开了桌面应用
  3713. U.MD.D.click(this, obj);
  3714. }, [_schoolDesktopIconInfo[i]]),
  3715. "onclick": U.UF.C.closure(function (obj) {
  3716. //防止拖动图标即打开了桌面应用
  3717. U.MD.D.click(this, obj);
  3718. }, [_schoolDesktopIconInfo[i]])
  3719. }, _frag); //
  3720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3723. }
  3724. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3725. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3726. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3727. continue
  3728. }
  3729. _content = $$("div", {
  3730. className: "U_MD_D_KO",
  3731. "onmousedown": U.UF.C.closure(function (obj) {
  3732. //防止拖动图标即打开了桌面应用
  3733. U.MD.D.click(this, obj);
  3734. }, [_GMteacherDesktopIconInfo[i]]),
  3735. "onclick": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_GMteacherDesktopIconInfo[i]])
  3739. }, _frag); //
  3740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3743. }
  3744. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3745. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3746. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3747. continue
  3748. }
  3749. _content = $$("div", {
  3750. className: "U_MD_D_KO",
  3751. "onmousedown": U.UF.C.closure(function (obj) {
  3752. //防止拖动图标即打开了桌面应用
  3753. U.MD.D.click(this, obj);
  3754. }, [_SONGteacherDesktopIconInfo[i]]),
  3755. "onclick": U.UF.C.closure(function (obj) {
  3756. //防止拖动图标即打开了桌面应用
  3757. U.MD.D.click(this, obj);
  3758. }, [_SONGteacherDesktopIconInfo[i]])
  3759. }, _frag); //
  3760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3763. }
  3764. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3765. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3766. _content = $$("div", {
  3767. className: "U_MD_D_KO",
  3768. "onmousedown": U.UF.C.closure(function (obj) {
  3769. //防止拖动图标即打开了桌面应用
  3770. U.MD.D.click(this, obj);
  3771. }, [_GMstudentDesktopIconInfo[i]]),
  3772. "onclick": U.UF.C.closure(function (obj) {
  3773. //防止拖动图标即打开了桌面应用
  3774. U.MD.D.click(this, obj);
  3775. }, [_GMstudentDesktopIconInfo[i]])
  3776. }, _frag); //
  3777. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3778. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3779. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3780. }
  3781. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3782. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3783. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3784. continue
  3785. }
  3786. _content = $$("div", {
  3787. className: "U_MD_D_KO",
  3788. "onmousedown": U.UF.C.closure(function (obj) {
  3789. //防止拖动图标即打开了桌面应用
  3790. U.MD.D.click(this, obj);
  3791. }, [_tcTeacherDeskIconInfo[i]]),
  3792. "onclick": U.UF.C.closure(function (obj) {
  3793. //防止拖动图标即打开了桌面应用
  3794. U.MD.D.click(this, obj);
  3795. }, [_tcTeacherDeskIconInfo[i]])
  3796. }, _frag); //
  3797. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3798. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3799. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3800. }
  3801. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3802. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3803. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3804. continue
  3805. }
  3806. _content = $$("div", {
  3807. className: "U_MD_D_KO",
  3808. "onmousedown": U.UF.C.closure(function (obj) {
  3809. //防止拖动图标即打开了桌面应用
  3810. U.MD.D.click(this, obj);
  3811. }, [_tcOrganizerDeskIconInfo[i]]),
  3812. "onclick": U.UF.C.closure(function (obj) {
  3813. //防止拖动图标即打开了桌面应用
  3814. U.MD.D.click(this, obj);
  3815. }, [_tcOrganizerDeskIconInfo[i]])
  3816. }, _frag); //
  3817. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3820. }
  3821. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3822. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3823. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3824. continue
  3825. }
  3826. _content = $$("div", {
  3827. className: "U_MD_D_KO",
  3828. "onmousedown": U.UF.C.closure(function (obj) {
  3829. //防止拖动图标即打开了桌面应用
  3830. U.MD.D.click(this, obj);
  3831. }, [_szscTeacherDeskIconInfo[i]]),
  3832. "onclick": U.UF.C.closure(function (obj) {
  3833. //防止拖动图标即打开了桌面应用
  3834. U.MD.D.click(this, obj);
  3835. }, [_szscTeacherDeskIconInfo[i]])
  3836. }, _frag); //
  3837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3840. }
  3841. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3842. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3843. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3844. continue
  3845. }
  3846. _content = $$("div", {
  3847. className: "U_MD_D_KO",
  3848. "onmousedown": U.UF.C.closure(function (obj) {
  3849. //防止拖动图标即打开了桌面应用
  3850. U.MD.D.click(this, obj);
  3851. }, [_szscOrganizerDeskIconInfo[i]]),
  3852. "onclick": U.UF.C.closure(function (obj) {
  3853. //防止拖动图标即打开了桌面应用
  3854. U.MD.D.click(this, obj);
  3855. }, [_szscOrganizerDeskIconInfo[i]])
  3856. }, _frag); //
  3857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3860. }
  3861. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3862. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3863. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3864. continue
  3865. }
  3866. _content = $$("div", {
  3867. className: "U_MD_D_KO",
  3868. "onmousedown": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_nsfxTeacherDeskIconInfo[i]]),
  3872. "onclick": U.UF.C.closure(function (obj) {
  3873. //防止拖动图标即打开了桌面应用
  3874. U.MD.D.click(this, obj);
  3875. }, [_nsfxTeacherDeskIconInfo[i]])
  3876. }, _frag); //
  3877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3880. }
  3881. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3882. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3883. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3884. continue
  3885. }
  3886. _content = $$("div", {
  3887. className: "U_MD_D_KO",
  3888. "onmousedown": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_stiaTeacherDeskIconInfo[i]]),
  3892. "onclick": U.UF.C.closure(function (obj) {
  3893. //防止拖动图标即打开了桌面应用
  3894. U.MD.D.click(this, obj);
  3895. }, [_stiaTeacherDeskIconInfo[i]])
  3896. }, _frag); //
  3897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3900. }
  3901. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3902. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3903. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3904. continue
  3905. }
  3906. _content = $$("div", {
  3907. className: "U_MD_D_KO",
  3908. "onmousedown": U.UF.C.closure(function (obj) {
  3909. //防止拖动图标即打开了桌面应用
  3910. U.MD.D.click(this, obj);
  3911. }, [_szdjgTeacherDeskIconInfo[i]]),
  3912. "onclick": U.UF.C.closure(function (obj) {
  3913. //防止拖动图标即打开了桌面应用
  3914. U.MD.D.click(this, obj);
  3915. }, [_szdjgTeacherDeskIconInfo[i]])
  3916. }, _frag); //
  3917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3920. }
  3921. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3922. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3923. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3924. continue
  3925. }
  3926. _content = $$("div", {
  3927. className: "U_MD_D_KO",
  3928. "onmousedown": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_x010607TeacherDeskIconInfo[i]]),
  3932. "onclick": U.UF.C.closure(function (obj) {
  3933. //防止拖动图标即打开了桌面应用
  3934. U.MD.D.click(this, obj);
  3935. }, [_x010607TeacherDeskIconInfo[i]])
  3936. }, _frag); //
  3937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3940. }
  3941. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3942. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3943. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3944. continue
  3945. }
  3946. _content = $$("div", {
  3947. className: "U_MD_D_KO",
  3948. "onmousedown": U.UF.C.closure(function (obj) {
  3949. //防止拖动图标即打开了桌面应用
  3950. U.MD.D.click(this, obj);
  3951. }, [_xhlyTeacherDeskIconInfo[i]]),
  3952. "onclick": U.UF.C.closure(function (obj) {
  3953. //防止拖动图标即打开了桌面应用
  3954. U.MD.D.click(this, obj);
  3955. }, [_xhlyTeacherDeskIconInfo[i]])
  3956. }, _frag); //
  3957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3960. }
  3961. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3962. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3963. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3964. continue
  3965. }
  3966. _content = $$("div", {
  3967. className: "U_MD_D_KO",
  3968. "onmousedown": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3972. "onclick": U.UF.C.closure(function (obj) {
  3973. //防止拖动图标即打开了桌面应用
  3974. U.MD.D.click(this, obj);
  3975. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3976. }, _frag); //
  3977. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3978. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3979. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3980. }
  3981. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3982. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3983. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3984. continue
  3985. }
  3986. _content = $$("div", {
  3987. className: "U_MD_D_KO",
  3988. "onmousedown": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_x010503TeacherDeskIconInfo[i]]),
  3992. "onclick": U.UF.C.closure(function (obj) {
  3993. //防止拖动图标即打开了桌面应用
  3994. U.MD.D.click(this, obj);
  3995. }, [_x010503TeacherDeskIconInfo[i]])
  3996. }, _frag); //
  3997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4000. }
  4001. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4002. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4003. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4004. continue
  4005. }
  4006. _content = $$("div", {
  4007. className: "U_MD_D_KO",
  4008. "onmousedown": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_x010504TeacherDeskIconInfo[i]]),
  4012. "onclick": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_x010504TeacherDeskIconInfo[i]])
  4016. }, _frag); //
  4017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4020. }
  4021. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4022. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4023. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4024. continue
  4025. }
  4026. _content = $$("div", {
  4027. className: "U_MD_D_KO",
  4028. "onmousedown": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_x010204TeacherDeskIconInfo[i]]),
  4032. "onclick": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_x010204TeacherDeskIconInfo[i]])
  4036. }, _frag); //
  4037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4040. }
  4041. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4042. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4043. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4044. continue
  4045. }
  4046. _content = $$("div", {
  4047. className: "U_MD_D_KO",
  4048. "onmousedown": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_trailTeacherDeskIconInfo[i]]),
  4052. "onclick": U.UF.C.closure(function (obj) {
  4053. //防止拖动图标即打开了桌面应用
  4054. U.MD.D.click(this, obj);
  4055. }, [_trailTeacherDeskIconInfo[i]])
  4056. }, _frag); //
  4057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4060. }
  4061. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4062. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4063. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4064. continue
  4065. }
  4066. _content = $$("div", {
  4067. className: "U_MD_D_KO",
  4068. "onmousedown": U.UF.C.closure(function (obj) {
  4069. //防止拖动图标即打开了桌面应用
  4070. U.MD.D.click(this, obj);
  4071. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4072. "onclick": U.UF.C.closure(function (obj) {
  4073. //防止拖动图标即打开了桌面应用
  4074. U.MD.D.click(this, obj);
  4075. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4076. }, _frag); //
  4077. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4078. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4079. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4080. }
  4081. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4082. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4083. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4084. continue
  4085. }
  4086. _content = $$("div", {
  4087. className: "U_MD_D_KO",
  4088. "onmousedown": U.UF.C.closure(function (obj) {
  4089. //防止拖动图标即打开了桌面应用
  4090. U.MD.D.click(this, obj);
  4091. }, [_x010608TeacherDeskIconInfo[i]]),
  4092. "onclick": U.UF.C.closure(function (obj) {
  4093. //防止拖动图标即打开了桌面应用
  4094. U.MD.D.click(this, obj);
  4095. }, [_x010608TeacherDeskIconInfo[i]])
  4096. }, _frag); //
  4097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4100. }
  4101. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4102. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4103. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4104. continue
  4105. }
  4106. _content = $$("div", {
  4107. className: "U_MD_D_KO",
  4108. "onmousedown": U.UF.C.closure(function (obj) {
  4109. //防止拖动图标即打开了桌面应用
  4110. U.MD.D.click(this, obj);
  4111. }, [_x010611TeacherDeskIconInfo[i]]),
  4112. "onclick": U.UF.C.closure(function (obj) {
  4113. //防止拖动图标即打开了桌面应用
  4114. U.MD.D.click(this, obj);
  4115. }, [_x010611TeacherDeskIconInfo[i]])
  4116. }, _frag); //
  4117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4120. }
  4121. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4122. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4123. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4124. continue
  4125. }
  4126. _content = $$("div", {
  4127. className: "U_MD_D_KO",
  4128. "onmousedown": U.UF.C.closure(function (obj) {
  4129. //防止拖动图标即打开了桌面应用
  4130. U.MD.D.click(this, obj);
  4131. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4132. "onclick": U.UF.C.closure(function (obj) {
  4133. //防止拖动图标即打开了桌面应用
  4134. U.MD.D.click(this, obj);
  4135. }, [_tianyuanTeacherDeskIconInfo[i]])
  4136. }, _frag); //
  4137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4140. }
  4141. } else {
  4142. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4143. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4144. continue
  4145. }
  4146. _content = $$("div", {
  4147. className: "U_MD_D_KO",
  4148. "onmousedown": U.UF.C.closure(function (obj) {
  4149. //防止拖动图标即打开了桌面应用
  4150. U.MD.D.click(this, obj);
  4151. }, [_teacherDesktopIconInfo[i]]),
  4152. "onclick": U.UF.C.closure(function (obj) {
  4153. //防止拖动图标即打开了桌面应用
  4154. U.MD.D.click(this, obj);
  4155. }, [_teacherDesktopIconInfo[i]])
  4156. }, _frag); //
  4157. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4158. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4159. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4160. }
  4161. }
  4162. } else {
  4163. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4164. _content = $$("div", {
  4165. className: "U_MD_D_KO",
  4166. style: { 'width': '124px', 'height': '145px' },
  4167. "onmousedown": U.UF.C.closure(function (obj) {
  4168. //防止拖动图标即打开了桌面应用
  4169. U.MD.D.click(this, obj);
  4170. }, [_easyDesktopIconInfo[i]]),
  4171. "onclick": U.UF.C.closure(function (obj) {
  4172. //防止拖动图标即打开了桌面应用
  4173. U.MD.D.click(this, obj);
  4174. }, [_easyDesktopIconInfo[i]])
  4175. }, _frag); //
  4176. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4177. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4178. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4179. }
  4180. }
  4181. if (type == 1) {
  4182. //加载好后给图标定位
  4183. U.MD.D.iconPostion($(_frag).Child());
  4184. } else {
  4185. //加载好后给图标定位
  4186. U.MD.D.iconPostion2($(_frag).Child());
  4187. }
  4188. //把图标加载到页面
  4189. el.appendChild(_frag);
  4190. }
  4191. /**
  4192. * 显示任务栏
  4193. *
  4194. * @param {element} 桌面元素
  4195. */
  4196. U.MD.D.I.displayTaskbar = function (el) {
  4197. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4198. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4199. //任务栏位置变化
  4200. U.selectEl(el).css({ "bottom": "0px" });
  4201. //桌面位置变话
  4202. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4203. }
  4204. }
  4205. //#region 桌面图标拖动逻辑
  4206. /**
  4207. * 桌面排列图标
  4208. *
  4209. * @param {element} 桌面元素
  4210. * @param {object} 上下相距的距离
  4211. * @param {object} 左右相距的距离
  4212. * @return {object} 命名空间
  4213. */
  4214. U.MD.D.iconPostion = function (childs, top, left) {
  4215. var i; //用于循环处理
  4216. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4217. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4218. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4219. for (i = 0; i < childs.length; i++) {
  4220. //如果竖排top超过了范围处理
  4221. if (top + 95 > US.height - 10) {
  4222. //left超过了页面范围处理,则向上重叠打印处理
  4223. if ((left + 180) > US.width) {
  4224. top -= 110;
  4225. left -= 90;
  4226. }
  4227. //没有超过范围,那么left+90添加到下一个竖排打印
  4228. else {
  4229. left += 90;
  4230. top = 15;
  4231. };
  4232. }
  4233. //给图标的位置赋值
  4234. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4235. if (i < childs.length - 1) {
  4236. //页面图标每次向下加95
  4237. top += 95;
  4238. }
  4239. }
  4240. //返回最后调用的图标的位置
  4241. return [top, left];
  4242. }
  4243. /**
  4244. * 桌面排列图标
  4245. *
  4246. * @param {element} 桌面元素
  4247. * @param {object} 上下相距的距离
  4248. * @param {object} 左右相距的距离
  4249. * @return {object} 命名空间
  4250. */
  4251. U.MD.D.iconPostion2 = function (childs, top, left) {
  4252. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4253. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4254. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4255. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4256. for (i = 0; i < childs.length; i++) {
  4257. //如果竖排top超过了范围处理
  4258. if (left + 150 > US.width - 10) {
  4259. //left超过了页面范围处理,则向上重叠打印处理
  4260. if ((top + 180) > US.Height) {
  4261. top -= 150;
  4262. left -= 150;
  4263. }
  4264. //没有超过范围,那么left+90添加到下一个竖排打印
  4265. else {
  4266. top += 150;
  4267. left = ol;
  4268. };
  4269. }
  4270. //给图标的位置赋值
  4271. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4272. if (i < childs.length - 1) {
  4273. //页面图标每次向下加95
  4274. left += 150;
  4275. }
  4276. }
  4277. //返回最后调用的图标的位置
  4278. return [top, left];
  4279. }
  4280. /**
  4281. * 桌面点击事件逻辑
  4282. *
  4283. * @param {element} 桌面元素
  4284. * @param {object} 上下相距的距离
  4285. * @param {object} 左右相距的距离
  4286. * @return {object} 命名空间
  4287. */
  4288. U.MD.D.click = function (el, obj) {
  4289. var _buttonnumber = event.button; //点击的按钮的事件值
  4290. var _userinfo = US.userInfo;
  4291. U.UF.EV.stopBubble(); //阻止向上冒泡
  4292. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4293. if (_buttonnumber < 2) {
  4294. //如果是click事件的处理
  4295. if (event.type == "click") {
  4296. //如果元素在mousemove事件中没有移动则出发click事件
  4297. if (!U.MD.D.I.IsDrag) {
  4298. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4299. U.alert("请先登录您的账号!");
  4300. setTimeout(() => {
  4301. U.MD.U.L.login();
  4302. }, 2000);
  4303. } else {
  4304. //打开应用处理
  4305. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4306. }
  4307. }
  4308. }
  4309. //如果是mouse事件的处理
  4310. else {
  4311. if (US.Config.type == '1') {
  4312. //拖动处理,添加拖动和拖动结束事件
  4313. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4314. }
  4315. }
  4316. U.MD.D.I.IsDrag = false;
  4317. }
  4318. }
  4319. /**
  4320. * 拖动的处理
  4321. *
  4322. */
  4323. U.MD.D.iconMove = function () {
  4324. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4325. U.MD.D.I.IsDrag = true;
  4326. }
  4327. /**
  4328. * 拖动结束后,这里是定位处理,以网状的形式定位
  4329. *
  4330. * @param {element} 拖动的元素
  4331. * @return {object} 命名空间
  4332. */
  4333. U.MD.D.iconUp = function (el) {
  4334. var _top = 15,
  4335. _left = 20,
  4336. _margin,
  4337. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4338. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4339. if (_positioninfo["OT"] > 15) {
  4340. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4341. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4342. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4343. }
  4344. if (_positioninfo["OL"] > 20) {
  4345. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4346. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4347. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4348. }
  4349. //while循环判断么一个重叠的元素
  4350. do {
  4351. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4352. _top = _positioninfo[0] + 95; //得到定位后的top
  4353. _left = _positioninfo[1]; //得到定位后的left
  4354. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4355. }
  4356. /**
  4357. * 判断拖动后图标是否重叠
  4358. *
  4359. * @param {element} 拖动的元素
  4360. * @param {element} 桌面所有的元素
  4361. * @param {array} 拖动元素的位置
  4362. ----------[0] 上 top
  4363. ----------[1] 左 left
  4364. * @return {object} 命名空间
  4365. */
  4366. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4367. //循环所有的图标
  4368. for (var i = 0; i < childs.length; i++) {
  4369. //判断有没有和该图标诶子重叠的元素
  4370. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4371. return childs[i]; //如果有返回
  4372. }
  4373. }
  4374. }
  4375. //#endregion
  4376. //#endregion
  4377. //#region 桌面应用
  4378. /**
  4379. * 打开应用
  4380. *
  4381. * @param {string} 类型
  4382. -----------------Disk 网盘系统
  4383. -----------------PDisk 学习系统网盘
  4384. -----------------Poto 图片
  4385. -----------------Video 视频
  4386. -----------------Music 音乐
  4387. -----------------Word word
  4388. -----------------Excel excel
  4389. -----------------Txt 记事本
  4390. -----------------PB 学习系统
  4391. -----------------Blog 朋友圈系统
  4392. -----------------FTP ftp系统
  4393. -----------------Group 好友群
  4394. -----------------SY 首页系统
  4395. -----------------Set 个人设置
  4396. -----------------XSet 系统设置
  4397. -----------------App 我们所有的app
  4398. -----------------BC c.1473.cn 平台
  4399. -----------------CWeb d.1473.cn 变成平台
  4400. -----------------其他的外联系统 我们统一用iframe打开
  4401. * @param {array} 类型
  4402. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4403. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4404. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4405. 如果第一个参数为其他,则无第二个参数
  4406. * @returns {array}
  4407. */
  4408. window.addEventListener('message', function (e) { // 监听 message 事件
  4409. // alert(e.data.type);
  4410. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4411. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4412. //3是展示全部阶段 2学生 1老师 4专家
  4413. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4414. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4415. //3是展示全部阶段 2学生 1老师 4专家
  4416. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4417. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4418. //3是展示全部阶段 2学生 1老师 4专家
  4419. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4420. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4421. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4422. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4423. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4424. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4425. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4426. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4427. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4428. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4429. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4430. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4431. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4432. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4433. //3是展示全部阶段 2学生 1老师 4专家
  4434. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4435. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4436. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4437. U.MD.D.I.selectUser();
  4438. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4439. var _formel = document.getElementById("study");
  4440. U.UF.F.windowZooming(_formel);
  4441. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4442. var _formel = document.getElementById("studyDetail");
  4443. U.UF.F.windowZooming(_formel);
  4444. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4445. var _formel = document.getElementById("studyDetail");
  4446. U.UF.F.windowZooming(_formel);
  4447. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4448. var _formel = document.getElementById("studentStudy");
  4449. U.UF.F.windowZooming(_formel);
  4450. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4451. // var _formel = document.getElementById("study");
  4452. //如果最大化了,那么就把他缩小
  4453. // if (_formel.ismaximize) {
  4454. // return;
  4455. // }
  4456. // U.UF.F.windowZooming(_formel);
  4457. // U.UF.F.topWindow(_formel);
  4458. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4459. // var _formel = document.getElementById("studyDetail");
  4460. //如果最大化了,那么就把他缩小
  4461. // if (_formel.ismaximize) {
  4462. // return;
  4463. // }
  4464. // U.UF.F.windowZooming(_formel);
  4465. // U.UF.F.topWindow(_formel);
  4466. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4467. // var _formel = document.getElementById("studentStudy");
  4468. // if (_formel.ismaximize) {
  4469. // return;
  4470. // }
  4471. // U.UF.F.windowZooming(_formel);
  4472. // U.UF.F.topWindow(_formel);
  4473. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4474. var _formel = document.getElementById("study");
  4475. // if (_formel.ismaximize) {
  4476. // return;
  4477. // }
  4478. // U.UF.F.windowZooming(_formel);
  4479. U.UF.F.topWindow(_formel);
  4480. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4481. var _formel = document.getElementById("studentIndex");
  4482. U.UF.F.windowZooming(_formel);
  4483. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4484. var _formel = document.getElementById("studyDetailS");
  4485. U.UF.F.windowZooming(_formel);
  4486. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4487. var _formel = document.getElementById("studioIndex");
  4488. U.UF.F.windowZooming(_formel);
  4489. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4490. var _formel = document.getElementById("studyDetailStudio");
  4491. U.UF.F.windowZooming(_formel);
  4492. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4493. var _formel = document.getElementById("studyDetailStudio");
  4494. U.UF.F.windowZooming(_formel);
  4495. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4496. var _formel = document.getElementById("studyDetailNT");
  4497. U.UF.F.windowZooming(_formel);
  4498. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4499. var _formel = document.getElementById("studyDetailS");
  4500. U.UF.F.windowZooming(_formel);
  4501. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4502. var _formel = document.getElementById("studyDetailS");
  4503. U.UF.F.topWindow(_formel);
  4504. } else if (e.data.tools && e.data.tools == "1") {
  4505. // U.MD.D.I.openApplication("whiteboard")
  4506. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4507. } else if (e.data.tools && e.data.tools == "2") {
  4508. U.MD.D.I.openApplication("note")
  4509. } else if (e.data.tools && e.data.tools == "3") {
  4510. // U.MD.D.I.openApplication("mind")
  4511. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4512. } else if (e.data.tools && e.data.tools == "4") {
  4513. U.MD.D.I.openApplication("investigation")
  4514. } else if (e.data.tools && e.data.tools == "6") {
  4515. // U.MD.D.I.openApplication("doc")
  4516. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4517. } else if (e.data.tools && e.data.tools == "7") {
  4518. // U.MD.D.I.openApplication("mindNetwork")
  4519. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4520. } else if (e.data.tools && e.data.tools == "8") {
  4521. U.MD.D.I.openApplication("library")
  4522. } else if (e.data.tools && e.data.tools == "17") {
  4523. U.MD.D.I.openApplication("stuLibrary")
  4524. } else if (e.data.tools && e.data.tools == "18") {
  4525. U.MD.D.I.openApplication("train")
  4526. } else if (e.data.tools && e.data.tools == "21") {
  4527. U.MD.D.I.openApplication("program")
  4528. } else if (e.data.tools && e.data.tools == "22") {
  4529. U.MD.D.I.openApplication("AIprogram2")
  4530. } else if (e.data.tools && e.data.tools == "23") {
  4531. U.MD.D.I.openApplication("Pythonprogram")
  4532. } else if (e.data.tools && e.data.tools == "24") {
  4533. U.MD.D.I.openApplication("AIprogram")
  4534. } else if (e.data.tools && e.data.tools == "25") {
  4535. U.MD.D.I.openApplication("sys")
  4536. } else if (e.data.tools && e.data.tools == "26") {
  4537. // U.MD.D.I.openApplication("courseDesign")
  4538. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4539. } else if (e.data.tools && e.data.tools == "31") {
  4540. U.MD.D.I.openApplication("netWorkPanel")
  4541. } else if (e.data.tools && e.data.tools == "32") {
  4542. U.MD.D.I.openApplication("codeEdit")
  4543. } else if (e.data.tools && e.data.tools == "57") {
  4544. U.MD.D.I.openApplication("CocoPi")
  4545. } else if (e.data.tools && e.data.tools == "63") {
  4546. U.MD.D.I.openApplication("Wood")
  4547. } else if (e.data.tools && e.data.tools == "58") {
  4548. U.MD.D.I.openApplication("car")
  4549. } else if (e.data.tools && e.data.tools == "59") {
  4550. U.MD.D.I.openApplication("lineSearch")
  4551. } else if (e.data.tools && e.data.tools == "60") {
  4552. U.MD.D.I.openApplication("deepLearning")
  4553. } else if (e.data.tools && e.data.tools == "61") {
  4554. U.MD.D.I.openApplication("allHistory")
  4555. } else if (e.data.tools && e.data.tools == "28") {
  4556. U.MD.D.I.openApplication("translation")
  4557. } else if (e.data.tools && e.data.tools == "37") {
  4558. U.MD.D.I.openApplication("mohe")
  4559. } else if (e.data.tools && e.data.tools == "38") {
  4560. U.MD.D.I.openApplication("24game")
  4561. } else if (e.data.tools && e.data.tools == "39") {
  4562. U.MD.D.I.openApplication("GeoGebra")
  4563. } else if (e.data.tools && e.data.tools == "43") {
  4564. U.MD.D.I.openApplication("studentEvaluate")
  4565. } else if (e.data.tools && e.data.tools == "44") {
  4566. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4567. } else if (e.data.tools && e.data.tools == "46") {
  4568. U.MD.D.I.openApplication("project")
  4569. } else if (e.data.tools && e.data.tools == "71") {
  4570. U.MD.D.I.openApplication("aigptCourse")
  4571. } else if (e.data.tools && e.data.tools == "1s") {
  4572. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4573. } else if (e.data.tools && e.data.tools == "3s") {
  4574. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4575. } else if (e.data.tools && e.data.tools == "6s") {
  4576. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4577. } else if (e.data.tools && e.data.tools == "1studio") {
  4578. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4579. } else if (e.data.tools && e.data.tools == "3studio") {
  4580. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4581. } else if (e.data.tools && e.data.tools == "6studio") {
  4582. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4583. } else if (e.data.tools && e.data.tools == "3y") {
  4584. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4585. } else if (e.data.tools && e.data.tools == "1y") {
  4586. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4587. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4588. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4589. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4590. U.MD.D.I.openApplication("AIAnalyse")
  4591. } else if (e.data.tools && e.data.tools == "1teacher") {
  4592. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4593. } else if (e.data.tools && e.data.tools == "3teacher") {
  4594. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4595. } else if (e.data.tools && e.data.tools == "7teacher") {
  4596. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4597. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4598. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4599. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4600. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4601. } else if (e.data.tools && e.data.tools == "1E") {
  4602. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4603. } else if (e.data.tools && e.data.tools == "3E") {
  4604. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4605. } else if (e.data.tools && e.data.tools == "57y") {
  4606. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4607. } else if (e.data.tools && e.data.tools == "57u") {
  4608. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4609. } else if (e.data.tools && e.data.tools == "57teacher") {
  4610. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4611. } else if (e.data.tools && e.data.tools == "64") {
  4612. U.MD.D.I.openApplication("AIChat")
  4613. } else if (e.data.tools && e.data.tools == "66") {
  4614. U.MD.D.I.openApplication("formulaEdi")
  4615. } else if (e.data.tools && e.data.tools == "67") {
  4616. U.MD.D.I.openApplication("molStr")
  4617. } else if (e.data.tools && e.data.tools == "68") {
  4618. U.MD.D.I.openApplication("timeAxis")
  4619. } else if (e.data.tools && e.data.tools == "openCourse") {
  4620. let _data = {
  4621. typea: e.data.typea || '',
  4622. typeb: e.data.typeb || '',
  4623. typed: e.data.typed || '',
  4624. }
  4625. U.MD.D.I.openInApplication("index", _data)
  4626. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4627. let _data = {
  4628. classid: e.data.classid || '',
  4629. }
  4630. U.MD.D.I.openInApplication("dataClass", _data)
  4631. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4632. let _data = {
  4633. cid: e.data.cid || '',
  4634. gid: e.data.gid || '',
  4635. }
  4636. U.MD.D.I.openInApplication("opencCscl", _data)
  4637. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4638. U.MD.D.I.openApplication("dataBoardTest")
  4639. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4640. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4641. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4642. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4643. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4644. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4645. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4646. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4647. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4648. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4649. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4650. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4651. }else if (e.data.tools && e.data.tools == "loginSz") {
  4652. U.MD.D.I.openInApplication("loginSz")
  4653. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4654. if($('#classroom_observation_board')[0]){
  4655. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4656. }
  4657. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4658. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4659. if($('#classroom_observation_ob_comment')[0]){
  4660. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4661. }
  4662. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4663. }else if (e.data.tools && e.data.tools == "logout"){
  4664. U.MD.U.LO.logoutSystem()
  4665. }else if (e.data.tools && e.data.tools == "getLogin"){
  4666. let _iframe = $('#UI_Login')[0];
  4667. if (_iframe) {
  4668. var userInfo = US.userInfo;
  4669. var type = 2
  4670. if(userInfo && userInfo.userid){
  4671. type = 1
  4672. }
  4673. _contentWindow = _iframe.contentWindow;
  4674. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4675. }
  4676. }
  4677. });
  4678. U.MD.D.I.selectUser = function () {
  4679. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4680. if (res.value[0].length > 0) {
  4681. US.userInfo = res.value[0][0];
  4682. $(".userName")[0].innerHTML = US.userInfo.username;
  4683. }
  4684. }, [], { "type": "GET", "withCredentials": true });
  4685. }
  4686. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4687. var _userinfo = US.userInfo, //登录用户信息
  4688. _userid = US.userInfo.userid, //登录用户id
  4689. _oid = _userinfo.organizeid,
  4690. _type = US.userInfo.type,
  4691. _org = US.userInfo.org,
  4692. _role = US.userInfo.role,
  4693. _classId = US.userInfo.classid;
  4694. if (_type == 4) {
  4695. tType = 4
  4696. }
  4697. switch (str) {
  4698. case "studyDetailNT": //无终端模式
  4699. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4700. setTimeout(() => {
  4701. U.MD.U.L.login();
  4702. }, 2000);
  4703. } else {
  4704. _formdiv = new U.UF.UI.form(
  4705. "课程详情",
  4706. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4707. "id": "studyDetailNT",
  4708. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4709. "onresize": function () { }
  4710. }, {
  4711. closecallback: function () { }
  4712. }, { "style": { "height": "36px" } }).form; //创建窗体
  4713. _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); } }
  4714. break;
  4715. }
  4716. case "studyDetail":
  4717. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4718. setTimeout(() => {
  4719. U.MD.U.L.login();
  4720. }, 2000);
  4721. } else {
  4722. _formdiv = new U.UF.UI.form(
  4723. "课程详情",
  4724. $$("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 }), {
  4725. "id": "studyDetail",
  4726. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4727. "onresize": function () { }
  4728. }, {
  4729. closecallback: function () { }
  4730. }, { "style": { "height": "36px" } }).form; //创建窗体
  4731. _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); } }
  4732. break;
  4733. }
  4734. case "studyDetailTrain":
  4735. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4736. setTimeout(() => {
  4737. U.MD.U.L.login();
  4738. }, 2000);
  4739. } else {
  4740. _formdiv = new U.UF.UI.form(
  4741. "培训详情",
  4742. $$("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 }), {
  4743. "id": "studyDetailTrain",
  4744. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4745. "onresize": function () { }
  4746. }, {
  4747. closecallback: function () { }
  4748. }, { "style": { "height": "36px" } }).form; //创建窗体
  4749. _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); } }
  4750. break;
  4751. }
  4752. case "studyDetailS":
  4753. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4754. setTimeout(() => {
  4755. U.MD.U.L.login();
  4756. }, 2000);
  4757. } else {
  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/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4761. "id": "studyDetailS",
  4762. "style": { "width": "95%", "height": "95%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4768. break;
  4769. }
  4770. case "studyDetailStudio":
  4771. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4772. setTimeout(() => {
  4773. U.MD.U.L.login();
  4774. }, 2000);
  4775. } else {
  4776. _formdiv = new U.UF.UI.form(
  4777. "工作详情",
  4778. $$("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 }), {
  4779. "id": "studyDetailStudio",
  4780. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4781. "onresize": function () { }
  4782. }, {
  4783. closecallback: function () { }
  4784. }, { "style": { "height": "36px" } }).form; //创建窗体
  4785. _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); } }
  4786. break;
  4787. }
  4788. case "studyDetailS5":
  4789. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4790. setTimeout(() => {
  4791. U.MD.U.L.login();
  4792. }, 2000);
  4793. } else {
  4794. _formdiv = new U.UF.UI.form(
  4795. "项目详情",
  4796. $$("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 }), {
  4797. "id": "studyDetailS",
  4798. "style": { "width": "95%", "height": "95%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4804. break;
  4805. }
  4806. case "studyDetailGM":
  4807. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4808. setTimeout(() => {
  4809. U.MD.U.L.login();
  4810. }, 2000);
  4811. } else {
  4812. _formdiv = new U.UF.UI.form(
  4813. "课程详情",
  4814. $$("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 }), {
  4815. "id": "studyDetail",
  4816. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4822. break;
  4823. }
  4824. case "hanUrl":
  4825. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4826. setTimeout(() => {
  4827. U.MD.U.L.login();
  4828. }, 2000);
  4829. } else {
  4830. _formdiv = new U.UF.UI.form(
  4831. "汉字宫",
  4832. $$("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" }), {
  4833. "id": "hanUrl",
  4834. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4835. "onresize": function () { }
  4836. }, {
  4837. closecallback: function () { }
  4838. }, { "style": { "height": "36px" } }).form; //创建窗体
  4839. _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); } }
  4840. break;
  4841. }
  4842. case "index":
  4843. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4844. setTimeout(() => {
  4845. U.MD.U.L.login();
  4846. }, 2000);
  4847. } else {
  4848. _formdiv = new U.UF.UI.form(
  4849. "课程中心",
  4850. $$("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 }), {
  4851. "id": "study",
  4852. "style": { "width": "100%", "height": "100%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4858. break;
  4859. }
  4860. case "dataClass":
  4861. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4862. setTimeout(() => {
  4863. U.MD.U.L.login();
  4864. }, 2000);
  4865. } else {
  4866. _formdiv = new U.UF.UI.form(
  4867. "数据报告",
  4868. $$("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 }), {
  4869. "id": "dataClass",
  4870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4871. "onresize": function () { }
  4872. }, {
  4873. closecallback: function () { }
  4874. }, { "style": { "height": "36px" } }).form; //创建窗体
  4875. _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); } }
  4876. break;
  4877. }
  4878. case "opencCscl":
  4879. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4880. setTimeout(() => {
  4881. U.MD.U.L.login();
  4882. }, 2000);
  4883. } else {
  4884. _formdiv = new U.UF.UI.form(
  4885. "协同建构",
  4886. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4887. "id": "futureClass",
  4888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4889. "onresize": function () { }
  4890. }, {
  4891. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4892. }, { "style": { "height": "36px" } }).form; //创建窗体
  4893. _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); } }
  4894. break;
  4895. }
  4896. case "openCourseUpdate":
  4897. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4898. setTimeout(() => {
  4899. U.MD.U.L.login();
  4900. }, 2000);
  4901. } else {
  4902. _formdiv = new U.UF.UI.form(
  4903. "课程管理",
  4904. $$("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 }), {
  4905. "id": "openCourseUpdate",
  4906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4907. "onresize": function () { }
  4908. }, {
  4909. closecallback: function () { }
  4910. }, { "style": { "height": "36px" } }).form; //创建窗体
  4911. break;
  4912. }
  4913. case "openNewCourseUpdate":
  4914. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4915. setTimeout(() => {
  4916. U.MD.U.L.login();
  4917. }, 2000);
  4918. } else {
  4919. _formdiv = new U.UF.UI.form(
  4920. "课程管理",
  4921. $$("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 }), {
  4922. "id": "openCourseUpdate",
  4923. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4924. "onresize": function () { }
  4925. }, {
  4926. closecallback: function () { }
  4927. }, { "style": { "height": "36px" } }).form; //创建窗体
  4928. break;
  4929. }
  4930. case "openCourseEUpdate":
  4931. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4932. setTimeout(() => {
  4933. U.MD.U.L.login();
  4934. }, 2000);
  4935. } else {
  4936. _formdiv = new U.UF.UI.form(
  4937. "课程管理",
  4938. $$("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 }), {
  4939. "id": "openCourseUpdate",
  4940. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4941. "onresize": function () { }
  4942. }, {
  4943. closecallback: function () { }
  4944. }, { "style": { "height": "36px" } }).form; //创建窗体
  4945. break;
  4946. }
  4947. case "openCourseAiUpdate":
  4948. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4949. setTimeout(() => {
  4950. U.MD.U.L.login();
  4951. }, 2000);
  4952. } else {
  4953. _formdiv = new U.UF.UI.form(
  4954. "课程管理",
  4955. $$("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 }), {
  4956. "id": "openCourseUpdate",
  4957. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4958. "onresize": function () { }
  4959. }, {
  4960. closecallback: function () { }
  4961. }, { "style": { "height": "36px" } }).form; //创建窗体
  4962. break;
  4963. }
  4964. case "openCourseAiUpdate2":
  4965. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4966. setTimeout(() => {
  4967. U.MD.U.L.login();
  4968. }, 2000);
  4969. } else {
  4970. _formdiv = new U.UF.UI.form(
  4971. "课程管理",
  4972. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4973. "id": "openCourseUpdate",
  4974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4975. "onresize": function () { }
  4976. }, {
  4977. closecallback: function () { }
  4978. }, { "style": { "height": "36px" } }).form; //创建窗体
  4979. break;
  4980. }
  4981. case "openCourseNewUpdate":
  4982. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4983. setTimeout(() => {
  4984. U.MD.U.L.login();
  4985. }, 2000);
  4986. } else {
  4987. _formdiv = new U.UF.UI.form(
  4988. "课程管理",
  4989. $$("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 }), {
  4990. "id": "openCourseUpdate",
  4991. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4992. "onresize": function () { }
  4993. }, {
  4994. closecallback: function () { }
  4995. }, { "style": { "height": "36px" } }).form; //创建窗体
  4996. break;
  4997. }
  4998. case "inviteLoginSz":
  4999. _formdiv = new U.UF.UI.form(
  5000. "随机码登录",
  5001. $$("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 }), {
  5002. "id": "loginSz",
  5003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5004. "onresize": function () { }
  5005. }, {
  5006. closecallback: function () { }
  5007. }, { "style": { "height": "36px" } }).form; //创建窗体
  5008. break;
  5009. case "loginSz":
  5010. _formdiv = new U.UF.UI.form(
  5011. "教师登录",
  5012. $$("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" }), {
  5013. "id": "loginSz",
  5014. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5015. "onresize": function () { }
  5016. }, {
  5017. closecallback: function () { }
  5018. }, { "style": { "height": "36px" } }).form; //创建窗体
  5019. break;
  5020. case "teacher":
  5021. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5022. setTimeout(() => {
  5023. U.MD.U.L.login();
  5024. }, 2000);
  5025. } else {
  5026. _formdiv = new U.UF.UI.form(
  5027. "教师管理",
  5028. $$("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 }), {
  5029. "id": "teacher",
  5030. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5031. "onresize": function () { }
  5032. }, {
  5033. closecallback: function () { }
  5034. }, { "style": { "height": "36px" } }).form; //创建窗体
  5035. break;
  5036. }
  5037. case "dataBoardSZArea":
  5038. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5039. setTimeout(() => {
  5040. U.MD.U.L.login();
  5041. }, 2000);
  5042. } else {
  5043. _formdiv = new U.UF.UI.form(
  5044. "综合数据看板",
  5045. $$("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 }), {
  5046. "id": "dataBoardSZArea",
  5047. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5048. "onresize": function () { }
  5049. }, {
  5050. closecallback: function () { }
  5051. }, { "style": { "height": "36px" } }).form; //创建窗体
  5052. break;
  5053. }
  5054. case "dataBoardSZCity":
  5055. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5056. setTimeout(() => {
  5057. U.MD.U.L.login();
  5058. }, 2000);
  5059. } else {
  5060. _formdiv = new U.UF.UI.form(
  5061. "综合数据看板",
  5062. $$("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 }), {
  5063. "id": "dataBoardSZCity",
  5064. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5065. "onresize": function () { }
  5066. }, {
  5067. closecallback: function () { }
  5068. }, { "style": { "height": "36px" } }).form; //创建窗体
  5069. break;
  5070. }
  5071. case "classroom_observation_board":
  5072. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5073. setTimeout(() => {
  5074. U.MD.U.L.login();
  5075. }, 2000);
  5076. } else {
  5077. _formdiv = new U.UF.UI.form(
  5078. "课堂观察",
  5079. $$("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 }), {
  5080. "id": "classroom_observation_board",
  5081. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5082. "onresize": function () { }
  5083. }, {
  5084. closecallback: function () { }
  5085. }, { "style": { "height": "36px" } }).form; //创建窗体
  5086. break;
  5087. }
  5088. case "classroom_observation_ob_comment":
  5089. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5090. setTimeout(() => {
  5091. U.MD.U.L.login();
  5092. }, 2000);
  5093. } else {
  5094. _formdiv = new U.UF.UI.form(
  5095. "课堂审核",
  5096. $$("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 }), {
  5097. "id": "classroom_observation_ob_comment",
  5098. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5099. "onresize": function () { }
  5100. }, {
  5101. closecallback: function () { }
  5102. }, { "style": { "height": "36px" } }).form; //创建窗体
  5103. break;
  5104. }
  5105. }
  5106. }
  5107. U.MD.D.I.openApplication = function (str, obj, info) {
  5108. obj = obj || {};
  5109. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5110. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5111. _userinfo = US.userInfo, //登录用户信息
  5112. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5113. _oid = obj.organizeid || _userinfo.organizeid,
  5114. _type = US.userInfo.type,
  5115. _org = US.userInfo.org,
  5116. _role = US.userInfo.role,
  5117. _classId = US.userInfo.classid,
  5118. _TscreenType = 1
  5119. _screenType = 2,
  5120. _SscreenType = 3;
  5121. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5122. return;
  5123. }
  5124. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5125. switch (str) {
  5126. case "studnetProject": //好友打开
  5127. _formdiv = new U.UF.UI.form(
  5128. "我的项目",
  5129. $$("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 }), {
  5130. "id": "studnetProject",
  5131. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5132. "onresize": function () { }
  5133. }, {
  5134. closecallback: function () { }
  5135. }, { "style": { "height": "36px" } }).form; //创建窗体
  5136. _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); } }
  5137. break;
  5138. case "studentEvaluate": //好友打开
  5139. _formdiv = new U.UF.UI.form(
  5140. "我的评价",
  5141. $$("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 }), {
  5142. "id": "studentEvaluate",
  5143. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5144. "onresize": function () { }
  5145. }, {
  5146. closecallback: function () { }
  5147. }, { "style": { "height": "36px" } }).form; //创建窗体
  5148. _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); } }
  5149. break;
  5150. case "my":
  5151. _formdiv = new U.UF.UI.form(
  5152. "我的资料",
  5153. $$("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 }), {
  5154. "id": "my",
  5155. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5156. "onresize": function () { }
  5157. }, {
  5158. closecallback: function () { }
  5159. }, { "style": { "height": "36px" } }).form; //创建窗体
  5160. _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); } }
  5161. break;
  5162. case "program":
  5163. _formdiv = new U.UF.UI.form(
  5164. "编程平台",
  5165. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5166. "id": "program",
  5167. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5168. "onresize": function () { }
  5169. }, {
  5170. closecallback: function () { }
  5171. }, { "style": { "height": "36px" } }).form; //创建窗体
  5172. _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); } }
  5173. break;
  5174. case "library":
  5175. _formdiv = new U.UF.UI.form(
  5176. "素材库",
  5177. $$("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 }), {
  5178. "id": "library",
  5179. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5180. "onresize": function () { }
  5181. }, {
  5182. closecallback: function () { }
  5183. }, { "style": { "height": "36px" } }).form; //创建窗体
  5184. _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); } }
  5185. break;
  5186. case "whiteboard":
  5187. _formdiv = new U.UF.UI.form(
  5188. "电子白板",
  5189. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5190. "id": "whiteboard",
  5191. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5192. "onresize": function () { }
  5193. }, {
  5194. closecallback: function () { }
  5195. }, { "style": { "height": "36px" } }).form; //创建窗体
  5196. _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); } }
  5197. break;
  5198. case "investigation":
  5199. _formdiv = new U.UF.UI.form(
  5200. "问卷调查",
  5201. $$("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 }), {
  5202. "id": "investigation",
  5203. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5204. "onresize": function () { }
  5205. }, {
  5206. closecallback: function () { }
  5207. }, { "style": { "height": "36px" } }).form; //创建窗体
  5208. _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); } }
  5209. break;
  5210. case "note":
  5211. _formdiv = new U.UF.UI.form(
  5212. "便签分类",
  5213. $$("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 }), {
  5214. "id": "note",
  5215. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5216. "onresize": function () { }
  5217. }, {
  5218. closecallback: function () { }
  5219. }, { "style": { "height": "36px" } }).form; //创建窗体
  5220. _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); } }
  5221. break;
  5222. // case "score":
  5223. // _formdiv = new U.UF.UI.form(
  5224. // "量规评分",
  5225. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5226. // "id": "score",
  5227. // "style": { "width": "90%", "height": "90%", "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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5233. // break;
  5234. case "mind":
  5235. _formdiv = new U.UF.UI.form(
  5236. "思维导图",
  5237. $$("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"
  5238. "id": "mind",
  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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5245. break;
  5246. case "doc":
  5247. // U.MD.D.I.isRoom();
  5248. _formdiv = new U.UF.UI.form(
  5249. "协同文档",
  5250. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5251. "id": "doc",
  5252. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5253. "onresize": function () { }
  5254. }, {
  5255. closecallback: function () { }
  5256. }, { "style": { "height": "36px" } }).form; //创建窗体
  5257. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5258. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5259. // })
  5260. _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); } }
  5261. break;
  5262. case "studentStudy":
  5263. _formdiv = new U.UF.UI.form(
  5264. "课程中心",
  5265. $$("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
  5266. "id": "studentStudy",
  5267. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5268. "onresize": function () { }
  5269. }, {
  5270. closecallback: function () { }
  5271. }, { "style": { "height": "36px" } }).form; //创建窗体
  5272. _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); } }
  5273. break;
  5274. case "train": //好友打开
  5275. _formdiv = new U.UF.UI.form(
  5276. "训练平台",
  5277. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5278. "id": "train",
  5279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5280. "onresize": function () { }
  5281. }, {
  5282. closecallback: function () { }
  5283. }, { "style": { "height": "36px" } }).form; //创建窗体
  5284. _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); } }
  5285. break;
  5286. case "mindNetwork": //好友打开
  5287. _formdiv = new U.UF.UI.form(
  5288. "思维网格",
  5289. $$("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 }), {
  5290. "id": "mindNetwork",
  5291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5292. "onresize": function () { }
  5293. }, {
  5294. closecallback: function () { }
  5295. }, { "style": { "height": "36px" } }).form; //创建窗体
  5296. _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); } }
  5297. break;
  5298. case "studentClassRoom": //好友打开
  5299. _formdiv = new U.UF.UI.form(
  5300. "实时课堂",
  5301. $$("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 }), {
  5302. "id": "studentClassRoom",
  5303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5304. "onresize": function () { }
  5305. }, {
  5306. closecallback: function () { }
  5307. }, { "style": { "height": "36px" } }).form; //创建窗体
  5308. _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); } }
  5309. setTimeout(() => {
  5310. U.UF.F.windowZooming(_formdiv)
  5311. }, 0);
  5312. break;
  5313. }
  5314. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5315. switch (str) {
  5316. case "studnetProject": //好友打开
  5317. _formdiv = new U.UF.UI.form(
  5318. "我的项目",
  5319. $$("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 }), {
  5320. "id": "studnetProject",
  5321. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5322. "onresize": function () { }
  5323. }, {
  5324. closecallback: function () { }
  5325. }, { "style": { "height": "36px" } }).form; //创建窗体
  5326. _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); } }
  5327. break;
  5328. case "studentEvaluate": //好友打开
  5329. _formdiv = new U.UF.UI.form(
  5330. "我的评价",
  5331. $$("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 }), {
  5332. "id": "studentEvaluate",
  5333. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5334. "onresize": function () { }
  5335. }, {
  5336. closecallback: function () { }
  5337. }, { "style": { "height": "36px" } }).form; //创建窗体
  5338. _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); } }
  5339. break;
  5340. case "my":
  5341. _formdiv = new U.UF.UI.form(
  5342. "我的资料",
  5343. $$("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 }), {
  5344. "id": "my",
  5345. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5346. "onresize": function () { }
  5347. }, {
  5348. closecallback: function () { }
  5349. }, { "style": { "height": "36px" } }).form; //创建窗体
  5350. _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); } }
  5351. break;
  5352. case "program":
  5353. _formdiv = new U.UF.UI.form(
  5354. "编程平台",
  5355. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5356. "id": "program",
  5357. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5358. "onresize": function () { }
  5359. }, {
  5360. closecallback: function () { }
  5361. }, { "style": { "height": "36px" } }).form; //创建窗体
  5362. _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); } }
  5363. break;
  5364. case "library":
  5365. _formdiv = new U.UF.UI.form(
  5366. "素材库",
  5367. $$("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 }), {
  5368. "id": "library",
  5369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5370. "onresize": function () { }
  5371. }, {
  5372. closecallback: function () { }
  5373. }, { "style": { "height": "36px" } }).form; //创建窗体
  5374. _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); } }
  5375. break;
  5376. case "whiteboard":
  5377. _formdiv = new U.UF.UI.form(
  5378. "电子白板",
  5379. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5380. "id": "whiteboard",
  5381. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5382. "onresize": function () { }
  5383. }, {
  5384. closecallback: function () { }
  5385. }, { "style": { "height": "36px" } }).form; //创建窗体
  5386. _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); } }
  5387. break;
  5388. case "investigation":
  5389. _formdiv = new U.UF.UI.form(
  5390. "问卷调查",
  5391. $$("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 }), {
  5392. "id": "investigation",
  5393. "style": { "width": "90%", "height": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5399. break;
  5400. case "note":
  5401. _formdiv = new U.UF.UI.form(
  5402. "便签分类",
  5403. $$("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 }), {
  5404. "id": "note",
  5405. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5411. break;
  5412. // case "score":
  5413. // _formdiv = new U.UF.UI.form(
  5414. // "量规评分",
  5415. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5416. // "id": "score",
  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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5423. // break;
  5424. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5428. "id": "mind",
  5429. "style": { "width": "90%", "height": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5435. break;
  5436. case "doc":
  5437. // U.MD.D.I.isRoom();
  5438. _formdiv = new U.UF.UI.form(
  5439. "协同文档",
  5440. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5441. "id": "doc",
  5442. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5443. "onresize": function () { }
  5444. }, {
  5445. closecallback: function () { }
  5446. }, { "style": { "height": "36px" } }).form; //创建窗体
  5447. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5448. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5449. })
  5450. _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); } }
  5451. break;
  5452. case "train": //好友打开
  5453. _formdiv = new U.UF.UI.form(
  5454. "训练平台",
  5455. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5456. "id": "train",
  5457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5458. "onresize": function () { }
  5459. }, {
  5460. closecallback: function () { }
  5461. }, { "style": { "height": "36px" } }).form; //创建窗体
  5462. _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); } }
  5463. break;
  5464. case "studentStudy":
  5465. _formdiv = new U.UF.UI.form(
  5466. "课程中心",
  5467. $$("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
  5468. "id": "studentStudy",
  5469. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5470. "onresize": function () { }
  5471. }, {
  5472. closecallback: function () { }
  5473. }, { "style": { "height": "36px" } }).form; //创建窗体
  5474. _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); } }
  5475. break;
  5476. case "mindNetwork": //好友打开
  5477. _formdiv = new U.UF.UI.form(
  5478. "思维网格",
  5479. $$("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 }), {
  5480. "id": "mindNetwork",
  5481. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5482. "onresize": function () { }
  5483. }, {
  5484. closecallback: function () { }
  5485. }, { "style": { "height": "36px" } }).form; //创建窗体
  5486. _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); } }
  5487. break;
  5488. case "studentClassRoom": //好友打开
  5489. _formdiv = new U.UF.UI.form(
  5490. "实时课堂",
  5491. $$("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 }), {
  5492. "id": "studentClassRoom",
  5493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5494. "onresize": function () { }
  5495. }, {
  5496. closecallback: function () { }
  5497. }, { "style": { "height": "36px" } }).form; //创建窗体
  5498. _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); } }
  5499. setTimeout(() => {
  5500. U.UF.F.windowZooming(_formdiv)
  5501. }, 0);
  5502. break;
  5503. }
  5504. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5505. //选择应用处理
  5506. switch (str) {
  5507. case "project": //好友打开
  5508. _formdiv = new U.UF.UI.form(
  5509. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5510. $$("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 }), {
  5511. "id": "project",
  5512. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5513. "onresize": function () { }
  5514. }, {
  5515. closecallback: function () { }
  5516. }, { "style": { "height": "36px" } }).form; //创建窗体
  5517. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5518. break;
  5519. case "student":
  5520. _formdiv = new U.UF.UI.form(
  5521. "学生管理",
  5522. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  5523. "id": "student",
  5524. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5525. "onresize": function () { }
  5526. }, {
  5527. closecallback: function () { }
  5528. }, { "style": { "height": "36px" } }).form; //创建窗体
  5529. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5530. break;
  5531. case "evaluate":
  5532. _formdiv = new U.UF.UI.form(
  5533. "学生评价",
  5534. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5535. "id": "evaluate",
  5536. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5537. "onresize": function () { }
  5538. }, {
  5539. closecallback: function () { }
  5540. }, { "style": { "height": "36px" } }).form; //创建窗体
  5541. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5542. break;
  5543. case "sys":
  5544. _formdiv = new U.UF.UI.form(
  5545. "目标管理",
  5546. $$("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 }), {
  5547. "id": "sys",
  5548. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5549. "onresize": function () { }
  5550. }, {
  5551. closecallback: function () { }
  5552. }, { "style": { "height": "36px" } }).form; //创建窗体
  5553. _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); } }
  5554. break;
  5555. case "courseDesign":
  5556. _formdiv = new U.UF.UI.form(
  5557. "项目设计",
  5558. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5559. "id": "courseDesign",
  5560. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5561. "onresize": function () { }
  5562. }, {
  5563. closecallback: function () { }
  5564. }, { "style": { "height": "36px" } }).form; //创建窗体
  5565. _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); } }
  5566. break;
  5567. case "program":
  5568. _formdiv = new U.UF.UI.form(
  5569. "编程平台",
  5570. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5571. "id": "program",
  5572. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5573. "onresize": function () { }
  5574. }, {
  5575. closecallback: function () { }
  5576. }, { "style": { "height": "36px" } }).form; //创建窗体
  5577. _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); } }
  5578. break;
  5579. case "class":
  5580. _formdiv = new U.UF.UI.form(
  5581. "班级管理",
  5582. $$("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 }), {
  5583. "id": "class",
  5584. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5585. "onresize": function () { }
  5586. }, {
  5587. closecallback: function () { }
  5588. }, { "style": { "height": "36px" } }).form; //创建窗体
  5589. _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); } }
  5590. break;
  5591. case "Grade":
  5592. _formdiv = new U.UF.UI.form(
  5593. "年级管理",
  5594. $$("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 }), {
  5595. "id": "Grade",
  5596. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5597. "onresize": function () { }
  5598. }, {
  5599. closecallback: function () { }
  5600. }, { "style": { "height": "36px" } }).form; //创建窗体
  5601. _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); } }
  5602. break;
  5603. case "teacherOffice":
  5604. _formdiv = new U.UF.UI.form(
  5605. "教研室",
  5606. $$("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 }), {
  5607. "id": "teacherOffice",
  5608. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5609. "onresize": function () { }
  5610. }, {
  5611. closecallback: function () { }
  5612. }, { "style": { "height": "36px" } }).form; //创建窗体
  5613. _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); } }
  5614. break;
  5615. case "my":
  5616. _formdiv = new U.UF.UI.form(
  5617. "我的资料",
  5618. $$("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 }), {
  5619. "id": "my",
  5620. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5621. "onresize": function () { }
  5622. }, {
  5623. closecallback: function () { }
  5624. }, { "style": { "height": "36px" } }).form; //创建窗体
  5625. _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); } }
  5626. break;
  5627. case "notice":
  5628. _formdiv = new U.UF.UI.form(
  5629. "通知公告",
  5630. $$("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 }), {
  5631. "id": "notice",
  5632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5633. "onresize": function () { }
  5634. }, {
  5635. closecallback: function () { }
  5636. }, { "style": { "height": "36px" } }).form; //创建窗体
  5637. _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); } }
  5638. break;
  5639. case "library":
  5640. _formdiv = new U.UF.UI.form(
  5641. "素材库",
  5642. $$("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 }), {
  5643. "id": "library",
  5644. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5645. "onresize": function () { }
  5646. }, {
  5647. closecallback: function () { }
  5648. }, { "style": { "height": "36px" } }).form; //创建窗体
  5649. _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); } }
  5650. break;
  5651. case "whiteboard":
  5652. _formdiv = new U.UF.UI.form(
  5653. "电子白板",
  5654. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5655. "id": "whiteboard",
  5656. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5657. "onresize": function () { }
  5658. }, {
  5659. closecallback: function () { }
  5660. }, { "style": { "height": "36px" } }).form; //创建窗体
  5661. _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); } }
  5662. break;
  5663. case "investigation":
  5664. _formdiv = new U.UF.UI.form(
  5665. "问卷调查",
  5666. $$("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 }), {
  5667. "id": "investigation",
  5668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { }
  5672. }, { "style": { "height": "36px" } }).form; //创建窗体
  5673. _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); } }
  5674. break;
  5675. case "note":
  5676. _formdiv = new U.UF.UI.form(
  5677. "便签分类",
  5678. $$("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 }), {
  5679. "id": "note",
  5680. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //创建窗体
  5685. _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); } }
  5686. break;
  5687. // case "score":
  5688. // _formdiv = new U.UF.UI.form(
  5689. // "量规评分",
  5690. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5691. // "id": "score",
  5692. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5693. // "onresize": function() {}
  5694. // }, {
  5695. // closecallback: function() {}
  5696. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5697. // _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); } }
  5698. // break;
  5699. case "mind":
  5700. _formdiv = new U.UF.UI.form(
  5701. "思维导图",
  5702. $$("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"
  5703. "id": "mind",
  5704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5705. "onresize": function () { }
  5706. }, {
  5707. closecallback: function () { }
  5708. }, { "style": { "height": "36px" } }).form; //创建窗体
  5709. _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); } }
  5710. break;
  5711. case "doc":
  5712. // U.MD.D.I.isRoom();
  5713. _formdiv = new U.UF.UI.form(
  5714. "协同文档",
  5715. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5716. "id": "doc",
  5717. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5718. "onresize": function () { }
  5719. }, {
  5720. closecallback: function () { }
  5721. }, { "style": { "height": "36px" } }).form; //创建窗体
  5722. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5723. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5724. })
  5725. _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); } }
  5726. break;
  5727. case "study":
  5728. _formdiv = new U.UF.UI.form(
  5729. "课程中心",
  5730. $$("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
  5731. "id": "study",
  5732. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5733. "onresize": function () { }
  5734. }, {
  5735. closecallback: function () { }
  5736. }, { "style": { "height": "36px" } }).form; //创建窗体
  5737. _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); } }
  5738. break;
  5739. case "mindNetwork": //好友打开
  5740. _formdiv = new U.UF.UI.form(
  5741. "思维网格",
  5742. $$("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 }), {
  5743. "id": "mindNetwork",
  5744. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5745. "onresize": function () { }
  5746. }, {
  5747. closecallback: function () { }
  5748. }, { "style": { "height": "36px" } }).form; //创建窗体
  5749. _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); } }
  5750. break;
  5751. case "train": //好友打开
  5752. _formdiv = new U.UF.UI.form(
  5753. "训练平台",
  5754. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5755. "id": "mindNetwork",
  5756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5757. "onresize": function () { }
  5758. }, {
  5759. closecallback: function () { }
  5760. }, { "style": { "height": "36px" } }).form; //创建窗体
  5761. _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); } }
  5762. break;
  5763. case "teacherClassRoom": //好友打开
  5764. _formdiv = new U.UF.UI.form(
  5765. "实时课堂",
  5766. $$("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 }), {
  5767. "id": "teacherClassRoom",
  5768. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5769. "onresize": function () { }
  5770. }, {
  5771. closecallback: function () { }
  5772. }, { "style": { "height": "36px" } }).form; //创建窗体
  5773. _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); } }
  5774. setTimeout(() => {
  5775. U.UF.F.windowZooming(_formdiv)
  5776. }, 0);
  5777. break;
  5778. }
  5779. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5780. switch (str) {
  5781. case "project": //好友打开
  5782. _formdiv = new U.UF.UI.form(
  5783. "课程管理",
  5784. $$("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 }), {
  5785. "id": "project",
  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/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5792. break;
  5793. case "evaluate":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5797. "id": "evaluate",
  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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5804. break;
  5805. case "notice":
  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/#/notice?userid=" + _userid + "&org=" + _org }), {
  5809. "id": "notice",
  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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5816. break;
  5817. case "stuLibrary":
  5818. _formdiv = new U.UF.UI.form(
  5819. "学习资料",
  5820. $$("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 }), {
  5821. "id": "stuLibrary",
  5822. "style": { "width": "90%", "height": "90%", "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/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5828. break;
  5829. case "program":
  5830. _formdiv = new U.UF.UI.form(
  5831. "编程平台",
  5832. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5833. "id": "program",
  5834. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5835. "onresize": function () { }
  5836. }, {
  5837. closecallback: function () { }
  5838. }, { "style": { "height": "36px" } }).form; //创建窗体
  5839. _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); } }
  5840. break;
  5841. case "whiteboard":
  5842. _formdiv = new U.UF.UI.form(
  5843. "电子白板",
  5844. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5845. "id": "whiteboard",
  5846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5847. "onresize": function () { }
  5848. }, {
  5849. closecallback: function () { }
  5850. }, { "style": { "height": "36px" } }).form; //创建窗体
  5851. _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); } }
  5852. break;
  5853. case "investigation":
  5854. _formdiv = new U.UF.UI.form(
  5855. "问卷调查",
  5856. $$("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 }), {
  5857. "id": "investigation",
  5858. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5859. "onresize": function () { }
  5860. }, {
  5861. closecallback: function () { }
  5862. }, { "style": { "height": "36px" } }).form; //创建窗体
  5863. _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); } }
  5864. break;
  5865. case "mind":
  5866. _formdiv = new U.UF.UI.form(
  5867. "思维导图",
  5868. $$("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"
  5869. "id": "mind",
  5870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5871. "onresize": function () { }
  5872. }, {
  5873. closecallback: function () { }
  5874. }, { "style": { "height": "36px" } }).form; //创建窗体
  5875. _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); } }
  5876. break;
  5877. case "doc":
  5878. // U.MD.D.I.isRoom();
  5879. _formdiv = new U.UF.UI.form(
  5880. "协同文档",
  5881. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5882. "id": "doc",
  5883. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5884. "onresize": function () { }
  5885. }, {
  5886. closecallback: function () { }
  5887. }, { "style": { "height": "36px" } }).form; //创建窗体
  5888. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5889. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5890. })
  5891. _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); } }
  5892. break;
  5893. case "study":
  5894. _formdiv = new U.UF.UI.form(
  5895. "课程中心",
  5896. $$("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
  5897. "id": "study",
  5898. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5899. "onresize": function () { }
  5900. }, {
  5901. closecallback: function () { }
  5902. }, { "style": { "height": "36px" } }).form; //创建窗体
  5903. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5904. break;
  5905. case "mindNetwork": //好友打开
  5906. _formdiv = new U.UF.UI.form(
  5907. "思维网格",
  5908. $$("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 }), {
  5909. "id": "mindNetwork",
  5910. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5911. "onresize": function () { }
  5912. }, {
  5913. closecallback: function () { }
  5914. }, { "style": { "height": "36px" } }).form; //创建窗体
  5915. _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); } }
  5916. break;
  5917. case "train": //好友打开
  5918. _formdiv = new U.UF.UI.form(
  5919. "训练平台",
  5920. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5921. "id": "train",
  5922. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5923. "onresize": function () { }
  5924. }, {
  5925. closecallback: function () { }
  5926. }, { "style": { "height": "36px" } }).form; //创建窗体
  5927. _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); } }
  5928. break;
  5929. case "sys":
  5930. _formdiv = new U.UF.UI.form(
  5931. "目标管理",
  5932. $$("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 }), {
  5933. "id": "sys",
  5934. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5935. "onresize": function () { }
  5936. }, {
  5937. closecallback: function () { }
  5938. }, { "style": { "height": "36px" } }).form; //创建窗体
  5939. _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); } }
  5940. break;
  5941. case "courseDesign":
  5942. _formdiv = new U.UF.UI.form(
  5943. "项目设计",
  5944. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5945. "id": "courseDesign",
  5946. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5947. "onresize": function () { }
  5948. }, {
  5949. closecallback: function () { }
  5950. }, { "style": { "height": "36px" } }).form; //创建窗体
  5951. _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); } }
  5952. break;
  5953. }
  5954. } else if (!_type) {
  5955. switch (str) {
  5956. case "my":
  5957. _formdiv = new U.UF.UI.form(
  5958. "我的资料",
  5959. $$("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 }), {
  5960. "id": "my",
  5961. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5962. "onresize": function () { }
  5963. }, {
  5964. closecallback: function () { }
  5965. }, { "style": { "height": "36px" } }).form; //创建窗体
  5966. _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); } }
  5967. break;
  5968. }
  5969. }
  5970. switch (str) {
  5971. // AIprogram2 AI体验 aihub.cocorobo.cn
  5972. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5973. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5974. case "formulaEdi": //公式编辑
  5975. _formdiv = new U.UF.UI.form(
  5976. "公式编辑",
  5977. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5978. "id": "formulaEdi",
  5979. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5980. "onresize": function () { }
  5981. }, {
  5982. closecallback: function () { }
  5983. }, { "style": { "height": "36px" } }).form; //创建窗体
  5984. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5985. break;
  5986. case "molStr": //分子结构
  5987. _formdiv = new U.UF.UI.form(
  5988. "分子结构",
  5989. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5990. "id": "molStr",
  5991. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5992. "onresize": function () { }
  5993. }, {
  5994. closecallback: function () { }
  5995. }, { "style": { "height": "36px" } }).form; //创建窗体
  5996. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5997. break;
  5998. case "timeAxis": //时间轴
  5999. _formdiv = new U.UF.UI.form(
  6000. "时间轴",
  6001. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6002. "id": "timeAxis",
  6003. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6004. "onresize": function () { }
  6005. }, {
  6006. closecallback: function () { }
  6007. }, { "style": { "height": "36px" } }).form; //创建窗体
  6008. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6009. break;
  6010. case "AIprogram2": //AI体验
  6011. _formdiv = new U.UF.UI.form(
  6012. "AI体验",
  6013. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6014. "id": "AIprogram2",
  6015. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6016. "onresize": function () { }
  6017. }, {
  6018. closecallback: function () { }
  6019. }, { "style": { "height": "36px" } }).form; //创建窗体
  6020. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6021. break;
  6022. case "Pythonprogram": //python编程
  6023. _formdiv = new U.UF.UI.form(
  6024. "Python编程",
  6025. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6026. "id": "Pythonprogram",
  6027. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6028. "onresize": function () { }
  6029. }, {
  6030. closecallback: function () { }
  6031. }, { "style": { "height": "36px" } }).form; //创建窗体
  6032. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6033. break;
  6034. case "AIprogram": //ai编程
  6035. _formdiv = new U.UF.UI.form(
  6036. "AI编程平台",
  6037. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6038. "id": "AIprogram",
  6039. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6040. "onresize": function () { }
  6041. }, {
  6042. closecallback: function () { }
  6043. }, { "style": { "height": "36px" } }).form; //创建窗体
  6044. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6045. break;
  6046. case "CocoPi": //CocoPi
  6047. _formdiv = new U.UF.UI.form(
  6048. "CocoPi",
  6049. $$("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" }), {
  6050. "id": "CocoPi",
  6051. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6052. "onresize": function () { }
  6053. }, {
  6054. closecallback: function () { }
  6055. }, { "style": { "height": "36px" } }).form; //创建窗体
  6056. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6057. break;
  6058. case "Wood": //Wood
  6059. _formdiv = new U.UF.UI.form(
  6060. "海龟编程",
  6061. $$("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/" }), {
  6062. "id": "Wood",
  6063. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6064. "onresize": function () { }
  6065. }, {
  6066. closecallback: function () { }
  6067. }, { "style": { "height": "36px" } }).form; //创建窗体
  6068. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6069. break;
  6070. case "car": //模拟驾驶
  6071. _formdiv = new U.UF.UI.form(
  6072. "模拟驾驶",
  6073. $$("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/" }), {
  6074. "id": "car",
  6075. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6076. "onresize": function () { }
  6077. }, {
  6078. closecallback: function () { }
  6079. }, { "style": { "height": "36px" } }).form; //创建窗体
  6080. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6081. break;
  6082. case "lineSearch": //路径搜索
  6083. _formdiv = new U.UF.UI.form(
  6084. "路径搜索",
  6085. $$("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/" }), {
  6086. "id": "lineSearch",
  6087. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6088. "onresize": function () { }
  6089. }, {
  6090. closecallback: function () { }
  6091. }, { "style": { "height": "36px" } }).form; //创建窗体
  6092. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6093. break;
  6094. case "deepLearning": //深度学习
  6095. _formdiv = new U.UF.UI.form(
  6096. "深度学习",
  6097. $$("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/#" }), {
  6098. "id": "deepLearning",
  6099. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6100. "onresize": function () { }
  6101. }, {
  6102. closecallback: function () { }
  6103. }, { "style": { "height": "36px" } }).form; //创建窗体
  6104. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6105. break;
  6106. case "allHistory": //深度学习
  6107. _formdiv = new U.UF.UI.form(
  6108. "全历史",
  6109. $$("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/" }), {
  6110. "id": "allHistory",
  6111. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6112. "onresize": function () { }
  6113. }, {
  6114. closecallback: function () { }
  6115. }, { "style": { "height": "36px" } }).form; //创建窗体
  6116. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6117. break;
  6118. case "chatPDF": //ai编程
  6119. _formdiv = new U.UF.UI.form(
  6120. "chatPDF",
  6121. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6122. "id": "chatPDF",
  6123. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6124. "onresize": function () { }
  6125. }, {
  6126. closecallback: function () { }
  6127. }, { "style": { "height": "36px" } }).form; //创建窗体
  6128. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6129. break;
  6130. case "resources": //国家教育
  6131. _formdiv = new U.UF.UI.form(
  6132. "国家教育",
  6133. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6134. "id": "resources",
  6135. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6136. "onresize": function () { }
  6137. }, {
  6138. closecallback: function () { }
  6139. }, { "style": { "height": "36px" } }).form; //创建窗体
  6140. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6141. break;
  6142. case "codeEdit": //源码编辑
  6143. _formdiv = new U.UF.UI.form(
  6144. "源码编辑",
  6145. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6146. "id": "codeEdit",
  6147. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6148. "onresize": function () { }
  6149. }, {
  6150. closecallback: function () { }
  6151. }, { "style": { "height": "36px" } }).form; //创建窗体
  6152. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6153. break; //
  6154. case "MindMap": //MindMap
  6155. _formdiv = new U.UF.UI.form(
  6156. "MindMap",
  6157. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6158. "id": "MindMap",
  6159. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6160. "onresize": function () { }
  6161. }, {
  6162. closecallback: function () { }
  6163. }, { "style": { "height": "36px" } }).form; //创建窗体
  6164. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6165. break;
  6166. case "netWorkPanel": //netWorkPanel
  6167. _formdiv = new U.UF.UI.form(
  6168. "netWorkPanel",
  6169. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6170. "id": "netWorkPanel",
  6171. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6172. "onresize": function () { }
  6173. }, {
  6174. closecallback: function () { }
  6175. }, { "style": { "height": "36px" } }).form; //创建窗体
  6176. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6177. break;
  6178. case "GeoGebra": //GeoGebra
  6179. _formdiv = new U.UF.UI.form(
  6180. "GeoGebra",
  6181. $$("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" }), {
  6182. "id": "GeoGebra",
  6183. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6184. "onresize": function () { }
  6185. }, {
  6186. closecallback: function () { }
  6187. }, { "style": { "height": "36px" } }).form; //创建窗体
  6188. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6189. break;
  6190. case "translation": //翻译
  6191. _formdiv = new U.UF.UI.form(
  6192. "翻译",
  6193. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6194. "id": "translation",
  6195. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6196. "onresize": function () { }
  6197. }, {
  6198. closecallback: function () { }
  6199. }, { "style": { "height": "36px" } }).form; //创建窗体
  6200. _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); } }
  6201. break;
  6202. case "mohe": //魔盒
  6203. _formdiv = new U.UF.UI.form(
  6204. "魔盒识字",
  6205. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6206. "id": "mohe",
  6207. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6208. "onresize": function () { }
  6209. }, {
  6210. closecallback: function () { }
  6211. }, { "style": { "height": "36px" } }).form; //创建窗体
  6212. _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); } }
  6213. break;
  6214. case "24game": //24点
  6215. _formdiv = new U.UF.UI.form(
  6216. "24点",
  6217. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6218. "id": "24game",
  6219. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6220. "onresize": function () { }
  6221. }, {
  6222. closecallback: function () { }
  6223. }, { "style": { "height": "36px" } }).form; //创建窗体
  6224. _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); } }
  6225. break;
  6226. case "case":
  6227. _formdiv = new U.UF.UI.form(
  6228. "课程进展",
  6229. $$("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 }), {
  6230. "id": "case",
  6231. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6232. "onresize": function () { }
  6233. }, {
  6234. closecallback: function () { }
  6235. }, { "style": { "height": "36px" } }).form; //创建窗体
  6236. _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); } }
  6237. break;
  6238. case "snf":
  6239. _formdiv = new U.UF.UI.form(
  6240. "赛诺梵",
  6241. $$("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" }), {
  6242. "id": "snf",
  6243. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6244. "onresize": function () { }
  6245. }, {
  6246. closecallback: function () { }
  6247. }, { "style": { "height": "36px" } }).form; //创建窗体
  6248. _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); } }
  6249. break;
  6250. case "hanFamily":
  6251. _formdiv = new U.UF.UI.form(
  6252. "汉字家族",
  6253. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6254. "id": "hanFamily",
  6255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6256. "onresize": function () { }
  6257. }, {
  6258. closecallback: function () { }
  6259. }, { "style": { "height": "36px" } }).form; //创建窗体
  6260. _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); } }
  6261. break;
  6262. case "hanClassics":
  6263. _formdiv = new U.UF.UI.form(
  6264. "国学经典",
  6265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6266. "id": "hanClassics",
  6267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6268. "onresize": function () { }
  6269. }, {
  6270. closecallback: function () { }
  6271. }, { "style": { "height": "36px" } }).form; //创建窗体
  6272. _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); } }
  6273. break;
  6274. case "hanTraining":
  6275. _formdiv = new U.UF.UI.form(
  6276. "笔画训练",
  6277. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6278. "id": "hanTraining",
  6279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6280. "onresize": function () { }
  6281. }, {
  6282. closecallback: function () { }
  6283. }, { "style": { "height": "36px" } }).form; //创建窗体
  6284. _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); } }
  6285. break;
  6286. case "hanClass":
  6287. _formdiv = new U.UF.UI.form(
  6288. "书法课堂",
  6289. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6290. "id": "hanClass",
  6291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //创建窗体
  6296. _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); } }
  6297. break;
  6298. case "han":
  6299. _formdiv = new U.UF.UI.form(
  6300. "汉字宫",
  6301. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6302. "id": "han",
  6303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6304. "onresize": function () { }
  6305. }, {
  6306. closecallback: function () { }
  6307. }, { "style": { "height": "36px" } }).form; //创建窗体
  6308. _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); } }
  6309. break;
  6310. case "projectGM": //课程管理
  6311. _formdiv = new U.UF.UI.form(
  6312. "课程管理",
  6313. $$("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 }), {
  6314. "id": "projectGM",
  6315. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6316. "onresize": function () { }
  6317. }, {
  6318. closecallback: function () { }
  6319. }, { "style": { "height": "36px" } }).form; //创建窗体
  6320. _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); } }
  6321. break;
  6322. case "studyGM": //课程中心
  6323. _formdiv = new U.UF.UI.form(
  6324. "课程中心",
  6325. $$("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
  6326. "id": "study",
  6327. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6328. "onresize": function () { }
  6329. }, {
  6330. closecallback: function () { }
  6331. }, { "style": { "height": "36px" } }).form; //创建窗体
  6332. _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); } }
  6333. break;
  6334. // studentGM
  6335. case "studentGM": //学生管理
  6336. _formdiv = new U.UF.UI.form(
  6337. "学生管理",
  6338. $$("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 }), {
  6339. "id": "studentGM",
  6340. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6341. "onresize": function () { }
  6342. }, {
  6343. closecallback: function () { }
  6344. }, { "style": { "height": "36px" } }).form; //创建窗体
  6345. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6346. break;
  6347. case "evaluateGM": //学生评价
  6348. _formdiv = new U.UF.UI.form(
  6349. "学生评价",
  6350. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6351. "id": "evaluateGM",
  6352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6353. "onresize": function () { }
  6354. }, {
  6355. closecallback: function () { }
  6356. }, { "style": { "height": "36px" } }).form; //创建窗体
  6357. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6358. break;
  6359. // classGM
  6360. case "classGM": //班级管理
  6361. _formdiv = new U.UF.UI.form(
  6362. "班级管理",
  6363. $$("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 }), {
  6364. "id": "classGM",
  6365. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6366. "onresize": function () { }
  6367. }, {
  6368. closecallback: function () { }
  6369. }, { "style": { "height": "36px" } }).form; //创建窗体
  6370. _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); } }
  6371. break;
  6372. // dataGM
  6373. case "dataGM":
  6374. _formdiv = new U.UF.UI.form(
  6375. "我的资料",
  6376. $$("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 }), {
  6377. "id": "dataGM",
  6378. "style": { "width": "42%", "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/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6384. break;
  6385. // caseGM
  6386. case "caseGM": //课程进展
  6387. _formdiv = new U.UF.UI.form(
  6388. "课程进展",
  6389. $$("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 }), {
  6390. "id": "caseGM",
  6391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6392. "onresize": function () { }
  6393. }, {
  6394. closecallback: function () { }
  6395. }, { "style": { "height": "36px" } }).form; //创建窗体
  6396. _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); } }
  6397. break;
  6398. // meterialGM
  6399. case "meterialGM": //素材库
  6400. _formdiv = new U.UF.UI.form(
  6401. "素材库",
  6402. $$("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 }), {
  6403. "id": "meterialGM",
  6404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6405. "onresize": function () { }
  6406. }, {
  6407. closecallback: function () { }
  6408. }, { "style": { "height": "36px" } }).form; //创建窗体
  6409. _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); } }
  6410. break;
  6411. // evaluateSGM
  6412. case "evaluateSGM": //我的评价
  6413. _formdiv = new U.UF.UI.form(
  6414. "我的评价",
  6415. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6416. "id": "evaluateSGM",
  6417. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6418. "onresize": function () { }
  6419. }, {
  6420. closecallback: function () { }
  6421. }, { "style": { "height": "36px" } }).form; //创建窗体
  6422. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6423. break;
  6424. case "jupyter": //jupyter
  6425. _formdiv = new U.UF.UI.form(
  6426. "jupyter",
  6427. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6428. "id": "jupyter",
  6429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6430. "onresize": function () { }
  6431. }, {
  6432. closecallback: function () { }
  6433. }, { "style": { "height": "36px" } }).form; //创建窗体
  6434. _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); } }
  6435. break;
  6436. case "number": //数字实验室
  6437. _formdiv = new U.UF.UI.form(
  6438. "数字实验室",
  6439. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6440. "id": "number",
  6441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6442. "onresize": function () { }
  6443. }, {
  6444. closecallback: function () { }
  6445. }, { "style": { "height": "36px" } }).form; //创建窗体
  6446. _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); } }
  6447. break;
  6448. case "studentCourse": //项目管理 学生
  6449. _formdiv = new U.UF.UI.form(
  6450. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6451. $$("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 }), {
  6452. "id": "studentCourse",
  6453. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6454. "onresize": function () { }
  6455. }, {
  6456. closecallback: function () { }
  6457. }, { "style": { "height": "36px" } }).form; //创建窗体
  6458. _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); } }
  6459. break;
  6460. case "studentCourseS": //项目管理 老师
  6461. _formdiv = new U.UF.UI.form(
  6462. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6463. $$("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 }), {
  6464. "id": "studentCourseS",
  6465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6466. "onresize": function () { }
  6467. }, {
  6468. closecallback: function () { }
  6469. }, { "style": { "height": "36px" } }).form; //创建窗体
  6470. _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); } }
  6471. break;
  6472. case "studentIndex": //项目中心
  6473. _formdiv = new U.UF.UI.form(
  6474. "项目中心",
  6475. $$("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 }), {
  6476. "id": "studentIndex",
  6477. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6478. "onresize": function () { }
  6479. }, {
  6480. closecallback: function () { }
  6481. }, { "style": { "height": "36px" } }).form; //创建窗体
  6482. _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); } }
  6483. break;
  6484. case "CaseDesignS":
  6485. _formdiv = new U.UF.UI.form(
  6486. "项目进展",
  6487. $$("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 }), {
  6488. "id": "case",
  6489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6490. "onresize": function () { }
  6491. }, {
  6492. closecallback: function () { }
  6493. }, { "style": { "height": "36px" } }).form; //创建窗体
  6494. _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); } }
  6495. break;
  6496. case "tcStudent": //腾讯学生管理
  6497. _formdiv = new U.UF.UI.form(
  6498. "学生管理",
  6499. $$("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 }), {
  6500. "id": "tcStudent",
  6501. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6502. "onresize": function () { }
  6503. }, {
  6504. closecallback: function () { }
  6505. }, { "style": { "height": "36px" } }).form; //创建窗体
  6506. _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); } }
  6507. break;
  6508. case "tcSchool": //腾讯学校管理
  6509. _formdiv = new U.UF.UI.form(
  6510. "学校管理",
  6511. $$("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 }), {
  6512. "id": "tcSchool",
  6513. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6514. "onresize": function () { }
  6515. }, {
  6516. closecallback: function () { }
  6517. }, { "style": { "height": "36px" } }).form; //创建窗体
  6518. _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); } }
  6519. break;
  6520. case "tcTeacher": //腾讯学校管理
  6521. _formdiv = new U.UF.UI.form(
  6522. "教师管理",
  6523. $$("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 }), {
  6524. "id": "tcTeacher",
  6525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6526. "onresize": function () { }
  6527. }, {
  6528. closecallback: function () { }
  6529. }, { "style": { "height": "36px" } }).form; //创建窗体
  6530. _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); } }
  6531. break;
  6532. case "teacher":
  6533. _formdiv = new U.UF.UI.form(
  6534. "教师管理",
  6535. $$("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 }), {
  6536. "id": "teacher",
  6537. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6538. "onresize": function () { }
  6539. }, {
  6540. closecallback: function () { }
  6541. }, { "style": { "height": "36px" } }).form; //创建窗体
  6542. _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); } }
  6543. break;
  6544. case "tcData": //腾讯我的资料
  6545. _formdiv = new U.UF.UI.form(
  6546. "我的资料",
  6547. $$("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 }), {
  6548. "id": "tcData",
  6549. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6550. "onresize": function () { }
  6551. }, {
  6552. closecallback: function () { }
  6553. }, { "style": { "height": "36px" } }).form; //创建窗体
  6554. _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); } }
  6555. break;
  6556. case "tcNotice": //腾讯消息通知
  6557. _formdiv = new U.UF.UI.form(
  6558. "消息通知",
  6559. $$("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 }), {
  6560. "id": "tcNotice",
  6561. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6562. "onresize": function () { }
  6563. }, {
  6564. closecallback: function () { }
  6565. }, { "style": { "height": "36px" } }).form; //创建窗体
  6566. _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); } }
  6567. break;
  6568. case "myReport": //好友打开
  6569. _formdiv = new U.UF.UI.form(
  6570. "我的评价",
  6571. $$("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 }), {
  6572. "id": "myReport",
  6573. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6574. "onresize": function () { }
  6575. }, {
  6576. closecallback: function () { }
  6577. }, { "style": { "height": "36px" } }).form; //创建窗体
  6578. _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); } }
  6579. break;
  6580. case "learnAna": //好友打开
  6581. _formdiv = new U.UF.UI.form(
  6582. "学习分析",
  6583. $$("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 }), {
  6584. "id": "learnAna",
  6585. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6586. "onresize": function () { }
  6587. }, {
  6588. closecallback: function () { }
  6589. }, { "style": { "height": "36px" } }).form; //创建窗体
  6590. _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); } }
  6591. break;
  6592. case "AIChat": //AI共创
  6593. _formdiv = new U.UF.UI.form(
  6594. "AI共创",
  6595. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6596. "id": "AIChat",
  6597. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6598. "onresize": function () { }
  6599. }, {
  6600. istop: true,
  6601. closecallback: function () { $("#aichat_icon").remove(); },
  6602. narrowcallback: function () {
  6603. if (!$("#aichat_icon")[0]) {
  6604. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6605. }
  6606. },
  6607. }, { "style": { "height": "36px" } }).form; //创建窗体
  6608. _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); } }
  6609. break;
  6610. case "ainew": //AI共创
  6611. _formdiv = new U.UF.UI.form(
  6612. "AI协同",
  6613. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6614. "id": "ainew",
  6615. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6616. "onresize": function () { }
  6617. }, {
  6618. closecallback: function () { }
  6619. }, { "style": { "height": "36px" } }).form; //创建窗体
  6620. _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); } }
  6621. break;
  6622. case "gpt4": //gpt4
  6623. _formdiv = new U.UF.UI.form(
  6624. "AI助手",
  6625. $$("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 }), {
  6626. "id": "gpt4",
  6627. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6628. "onresize": function () { }
  6629. }, {
  6630. closecallback: function () { }
  6631. }, { "style": { "height": "36px" } }).form; //创建窗体
  6632. _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); } }
  6633. break;
  6634. case "aigpt": //gpt4
  6635. _formdiv = new U.UF.UI.form(
  6636. "AI助手+",
  6637. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6638. "id": "aigpt",
  6639. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6640. "onresize": function () { }
  6641. }, {
  6642. closecallback: function () {
  6643. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6644. }
  6645. }, { "style": { "height": "36px" } }).form; //创建窗体
  6646. _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); } }
  6647. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6648. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6649. })
  6650. break;
  6651. case "aiKnowledge": //aiKnowledge
  6652. _formdiv = new U.UF.UI.form(
  6653. "知识建构",
  6654. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6655. "id": "aiKnowledge",
  6656. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6657. "onresize": function () { }
  6658. }, {
  6659. closecallback: function () { }
  6660. }, { "style": { "height": "36px" } }).form; //创建窗体
  6661. _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); } }
  6662. break;
  6663. case "futureClass": //AI共创
  6664. _formdiv = new U.UF.UI.form(
  6665. "协同建构",
  6666. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://beta.cscl.cocorobo.cn
  6667. "id": "synergyCourse",
  6668. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6669. "onresize": function () { }
  6670. }, {
  6671. closecallback: function () {
  6672. $("iframe", _formdiv)[0].contentWindow.loginout();
  6673. }
  6674. }, { "style": { "height": "36px" } }).form; //创建窗体
  6675. _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); } }
  6676. break;
  6677. case "aiagent": //ai agent
  6678. _formdiv = new U.UF.UI.form(
  6679. "AI Agent",
  6680. $$("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" }), {
  6681. "id": "AIAgent",
  6682. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6683. "onresize": function () { }
  6684. }, {
  6685. closecallback: function () { }
  6686. }, { "style": { "height": "36px" } }).form; //创建窗体
  6687. _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); } }
  6688. break;
  6689. case "dataBoard": //数据看板
  6690. _formdiv = new U.UF.UI.form(
  6691. "数据看板",
  6692. $$("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 }), {
  6693. "id": "dataBoard",
  6694. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6695. "onresize": function () { }
  6696. }, {
  6697. closecallback: function () { }
  6698. }, { "style": { "height": "36px" } }).form; //创建窗体
  6699. _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); } }
  6700. break;
  6701. case "dataBoardSies": //数据融合
  6702. _formdiv = new U.UF.UI.form(
  6703. "数据融合",
  6704. $$("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 }), {
  6705. "id": "dataBoardSies",
  6706. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6707. "onresize": function () { }
  6708. }, {
  6709. closecallback: function () { }
  6710. }, { "style": { "height": "36px" } }).form; //创建窗体
  6711. _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); } }
  6712. break;
  6713. case "dataBoardNew": //数据看板
  6714. _formdiv = new U.UF.UI.form(
  6715. "综合看板",
  6716. $$("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 }), {
  6717. "id": "dataBoardNew",
  6718. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6719. "onresize": function () { }
  6720. }, {
  6721. closecallback: function () { }
  6722. }, { "style": { "height": "36px" } }).form; //创建窗体
  6723. _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); } }
  6724. break;
  6725. case "dataBoardTest": //数据看板
  6726. _formdiv = new U.UF.UI.form(
  6727. "评测看板",
  6728. $$("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 }), {
  6729. "id": "dataBoardTest",
  6730. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6731. "onresize": function () { }
  6732. }, {
  6733. closecallback: function () { }
  6734. }, { "style": { "height": "36px" } }).form; //创建窗体
  6735. _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); } }
  6736. break;
  6737. case "AIAnalyse": //AI共创
  6738. _formdiv = new U.UF.UI.form(
  6739. "AI分析",
  6740. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6741. "id": "AIAnalyse",
  6742. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6743. "onresize": function () { }
  6744. }, {
  6745. closecallback: function () { }
  6746. }, { "style": { "height": "36px" } }).form; //创建窗体
  6747. _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); } }
  6748. break;
  6749. case "studioCourse": //AI共创
  6750. _formdiv = new U.UF.UI.form(
  6751. "工作管理",
  6752. $$("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 }), {
  6753. "id": "studioCourse",
  6754. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6755. "onresize": function () { }
  6756. }, {
  6757. closecallback: function () { }
  6758. }, { "style": { "height": "36px" } }).form; //创建窗体
  6759. _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); } }
  6760. break;
  6761. case "studioIndex": //AI共创
  6762. _formdiv = new U.UF.UI.form(
  6763. "工作中心",
  6764. $$("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 }), {
  6765. "id": "studioIndex",
  6766. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6767. "onresize": function () { }
  6768. }, {
  6769. closecallback: function () { }
  6770. }, { "style": { "height": "36px" } }).form; //创建窗体
  6771. _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); } }
  6772. break;
  6773. case "source":
  6774. _formdiv = new U.UF.UI.form(
  6775. "教学资源",
  6776. $$("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 }), {
  6777. "id": "source",
  6778. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6779. "onresize": function () { }
  6780. }, {
  6781. closecallback: function () { }
  6782. }, { "style": { "height": "36px" } }).form; //创建窗体
  6783. _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); } }
  6784. break;
  6785. case "testTeacher":
  6786. _formdiv = new U.UF.UI.form(
  6787. "智能表单",
  6788. $$("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 }), {
  6789. "id": "testTeacher",
  6790. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6791. "onresize": function () { }
  6792. }, {
  6793. closecallback: function () { }
  6794. }, { "style": { "height": "36px" } }).form; //创建窗体
  6795. _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); } }
  6796. break;
  6797. case "testStudent":
  6798. _formdiv = new U.UF.UI.form(
  6799. "教师中心",
  6800. $$("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 }), {
  6801. "id": "testStudent",
  6802. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6803. "onresize": function () { }
  6804. }, {
  6805. closecallback: function () { }
  6806. }, { "style": { "height": "36px" } }).form; //创建窗体
  6807. _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); } }
  6808. break;
  6809. case "testTeacherSies":
  6810. _formdiv = new U.UF.UI.form(
  6811. "教师管理",
  6812. $$("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 }), {
  6813. "id": "testTeacherSies",
  6814. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () { }
  6818. }, { "style": { "height": "36px" } }).form; //创建窗体
  6819. _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); } }
  6820. break;
  6821. case "testStudentSies":
  6822. _formdiv = new U.UF.UI.form(
  6823. "教师中心",
  6824. $$("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 }), {
  6825. "id": "testStudentSies",
  6826. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6827. "onresize": function () { }
  6828. }, {
  6829. closecallback: function () { }
  6830. }, { "style": { "height": "36px" } }).form; //创建窗体
  6831. _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); } }
  6832. break;
  6833. case "ytpbl": //消息通知
  6834. _formdiv = new U.UF.UI.form(
  6835. "案例征集",
  6836. $$("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 }), {
  6837. "id": "ytpbl",
  6838. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6839. "onresize": function () { }
  6840. }, {
  6841. closecallback: function () { }
  6842. }, { "style": { "height": "36px" } }).form; //创建窗体
  6843. _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); } }
  6844. // 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");
  6845. break;
  6846. case "aiCourseResource": //人工智能窗体
  6847. _formdiv = new U.UF.UI.form(
  6848. false,
  6849. $$("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 }), {
  6850. "id": "aiCourseResource",
  6851. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6852. "onresize": function () { },
  6853. "isdrag": false,
  6854. }, {
  6855. closecallback: function () { }
  6856. }, { "style": { "height": "36px" } }).form; //创建窗体
  6857. _taskbar = ''
  6858. break;
  6859. case "szdjgCocooroboX": //图形化编程
  6860. _formdiv = new U.UF.UI.form(
  6861. "图形化编程",
  6862. $$("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" }), {
  6863. "id": "szdjgCocooroboX",
  6864. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6865. "onresize": function () { }
  6866. }, {
  6867. closecallback: function () { }
  6868. }, { "style": { "height": "36px" } }).form; //创建窗体
  6869. _taskbar = ''
  6870. break;
  6871. case "szdjgPython": //python编程
  6872. _formdiv = new U.UF.UI.form(
  6873. "Python编程",
  6874. $$("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" }), {
  6875. "id": "szdjgPython",
  6876. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6877. "onresize": function () { }
  6878. }, {
  6879. closecallback: function () { }
  6880. }, { "style": { "height": "36px" } }).form; //创建窗体
  6881. _taskbar = ''
  6882. break;
  6883. case "Record":
  6884. _formdiv = new U.UF.UI.form(
  6885. "观察记录",
  6886. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6887. "id": "Record",
  6888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6889. "onresize": function () { }
  6890. }, {
  6891. closecallback: function () { }
  6892. }, { "style": { "height": "36px" } }).form; //创建窗体
  6893. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6894. break;
  6895. case "aigptCourse":
  6896. _formdiv = new U.UF.UI.form(
  6897. "AI智能体",
  6898. $$("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' }), {
  6899. "id": "aigptCourse",
  6900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6901. "onresize": function () { }
  6902. }, {
  6903. closecallback: function () { }
  6904. }, { "style": { "height": "36px" } }).form; //创建窗体
  6905. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6906. break;
  6907. case "classroomObservation":
  6908. _formdiv = new U.UF.UI.form(
  6909. "课堂观察",
  6910. $$("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 }), {
  6911. "id": "classroomObservation",
  6912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6913. "onresize": function () { }
  6914. }, {
  6915. closecallback: function () { }
  6916. }, { "style": { "height": "36px" } }).form; //创建窗体
  6917. _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); } }
  6918. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6919. break;
  6920. case "pblCourse":
  6921. _formdiv = new U.UF.UI.form(
  6922. "学生PBL",
  6923. $$("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 }), {
  6924. "id": "pblCourse",
  6925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6926. "onresize": function () { }
  6927. }, {
  6928. closecallback: function () { }
  6929. }, { "style": { "height": "36px" } }).form; //创建窗体
  6930. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6931. break;
  6932. case "appStore":
  6933. _formdiv = new U.UF.UI.form(
  6934. "工作流中心",
  6935. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.cloud.cocorobo.cn/aigpt/#/appCenter?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6936. "id": "pblCourse",
  6937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6938. "onresize": function () { }
  6939. }, {
  6940. closecallback: function () { }
  6941. }, { "style": { "height": "36px" } }).form; //创建窗体
  6942. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "工作流中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6943. break;
  6944. }
  6945. //U.MD.D.I.openClick(str);
  6946. //如果有任务栏信息
  6947. if (_taskbar) {
  6948. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6949. }
  6950. }
  6951. // U.MD.D.I.openClick = function(str){
  6952. // var click = '';
  6953. // switch(str){
  6954. // case 'friend':
  6955. // click = '我的好友';
  6956. // break;
  6957. // case 'domain':
  6958. // click = '域名管理';
  6959. // break;
  6960. // case 'disk':
  6961. // click = '我的云盘';
  6962. // break;
  6963. // case 'word':
  6964. // click = 'Word';
  6965. // break;
  6966. // case 'excel':
  6967. // click = 'Execl';
  6968. // break;
  6969. // case 'txt':
  6970. // click = '文本文件';
  6971. // break;
  6972. // case 'lookupFriend':
  6973. // click = '查找好友';
  6974. // break;
  6975. // case 'ftp':
  6976. // click = 'FTP';
  6977. // break;
  6978. // case 'group':
  6979. // click = '群组';
  6980. // break;
  6981. // case 'set':
  6982. // click = '我的设置';
  6983. // break;
  6984. // case 'systemSet':
  6985. // click = '系统设置';
  6986. // break;
  6987. // case 'boomYun':
  6988. // click = '互联办公';
  6989. // break;
  6990. // case 'xz':
  6991. // click = '云端下载';
  6992. // break;
  6993. // case 'client':
  6994. // click = '有思浏览器';
  6995. // break;
  6996. // case 'backEndProgramming':
  6997. // click = '在线后台编程';
  6998. // break;
  6999. // case 'frontEndProgramming':
  7000. // click = '在线前端编程';
  7001. // break;
  7002. // default: break;
  7003. // }
  7004. // if(U.MD.D.I.Ip && click){
  7005. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7006. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7007. // })
  7008. // }
  7009. // }
  7010. /**
  7011. *函数作用:ajax简易函数,使用post格式
  7012. *@param url {data} 后台地址
  7013. *@param data {data} 参数json
  7014. *@param fn {data} 回调函数
  7015. *
  7016. */
  7017. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7018. // var xhr = new XMLHttpRequest();
  7019. // xhr.open("GET",url,true);
  7020. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7021. // xhr.onreadystatechange = function(){
  7022. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7023. // fn.call(this,xhr.responseText);
  7024. // }
  7025. // };
  7026. // xhr.send();
  7027. // }
  7028. /*判断是否是内网IP*/
  7029. // U.MD.D.I.isInnerIPFn = function(str){
  7030. // var curPageUrl = str;
  7031. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7032. // curPageUrl =curPageUrl.replace(reg1,'');
  7033. // // console.log('curPageUrl-1 '+curPageUrl);
  7034. // var reg2 = /\:+/g;//替换冒号为一点
  7035. // curPageUrl =curPageUrl.replace(reg2,'.');
  7036. // // console.log('curPageUrl-2 '+curPageUrl);
  7037. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7038. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7039. // if(curPageUrl[2] != '16'){
  7040. // return ipAddress;
  7041. // }else{
  7042. // return false;
  7043. // }
  7044. // }
  7045. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7046. // //compatibility for firefox and chrome
  7047. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7048. // var pc = new myPeerConnection({
  7049. // iceServers: []
  7050. // }),
  7051. // noop = function() {},
  7052. // localIPs = {},
  7053. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7054. // key;
  7055. // function iterateIP(ip) {
  7056. // if (!localIPs[ip]) onNewIP(ip);
  7057. // localIPs[ip] = true;
  7058. // }
  7059. // //create a bogus data channel
  7060. // pc.createDataChannel("");
  7061. // // create offer and set local description
  7062. // pc.createOffer().then(function(sdp) {
  7063. // sdp.sdp.split('\n').forEach(function(line) {
  7064. // if (line.indexOf('candidate') < 0) return;
  7065. // line.match(ipRegex).forEach(iterateIP);
  7066. // });
  7067. // pc.setLocalDescription(sdp, noop, noop);
  7068. // }).catch(function(reason) {
  7069. // // An error occurred, so handle the failure to connect
  7070. // });
  7071. // //sten for candidate events
  7072. // pc.onicecandidate = function(ice) {
  7073. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7074. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7075. // };
  7076. // }
  7077. // U.MD.D.I.getUserIpBool = function(callback){
  7078. // U.MD.D.I.getUserIP(function(ip){
  7079. // alert("Got IP! :" + ip);
  7080. // });
  7081. //}
  7082. //#endregion
  7083. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7084. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7085. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7086. _userinfo = US.userInfo, //登录用户信息
  7087. _userid = US.userInfo.userid //登录用户id
  7088. let _iframe;
  7089. let _cid = cid,
  7090. _stage = stage,
  7091. _task = task,
  7092. _tool = tool;
  7093. var _jie = $$("div", {
  7094. "style": {
  7095. "position": "absolute",
  7096. "bottom": "50px",
  7097. "right": "50px",
  7098. "zIndex": "9999",
  7099. "backgroundColor": "#2268bc",
  7100. "color": "#fff",
  7101. "padding": "12px 20px",
  7102. "cursor": "pointer",
  7103. "borderRadius": "4px",
  7104. },
  7105. "innerHTML": "提交作业"
  7106. })
  7107. let aTool = ''
  7108. let _loading = document.createElement('div')
  7109. _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;"
  7110. // _loading.id = "";
  7111. let _lchild = document.createElement('div')
  7112. let _limg = document.createElement('img')
  7113. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7114. _limg.style = "width: 26px;margin-right: 10px;"
  7115. _lchild.appendChild(_limg)
  7116. let _lspan = document.createElement('span')
  7117. _lspan.innerHTML = "上传中..."
  7118. _lchild.appendChild(_lspan)
  7119. _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%);"
  7120. _loading.appendChild(_lchild)
  7121. var _box = $$('div', {
  7122. "style": {
  7123. "position": "relative",
  7124. "width": "100%",
  7125. "height": "100%",
  7126. },
  7127. })
  7128. _box.appendChild(_loading)
  7129. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7130. switch (str) {
  7131. case "whiteboard":
  7132. aTool = 1;
  7133. _iframe = $$("iframe", {
  7134. "frameborder": "no",
  7135. "border": "0",
  7136. "scrolling ": "no",
  7137. "style": {
  7138. "cssText": "border:0;width:100%;height:100%"
  7139. },
  7140. "src": "https://beta.iwb.cocorobo.cn/"
  7141. })
  7142. _box.appendChild(_iframe);
  7143. _box.appendChild(_jie);
  7144. _formdiv = new U.UF.UI.form(
  7145. "电子白板",
  7146. _box, {
  7147. "id": "whiteboard" + cid + stage + task + tool,
  7148. "style": {
  7149. "width": "90%",
  7150. "height": "90%",
  7151. "overflow": 'hidden'
  7152. },
  7153. "onresize": function () { }
  7154. }, {
  7155. closecallback: function () { }
  7156. }, {
  7157. "style": {
  7158. "height": "36px"
  7159. }
  7160. }).form; //创建窗体
  7161. _taskbar = {
  7162. "id": str + _formdiv.id,
  7163. "style": {
  7164. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7165. },
  7166. "name": "电子白板",
  7167. "forms": _formdiv,
  7168. "click": function () {
  7169. U.MD.D.I.openApplication(str, obj, info);
  7170. }
  7171. }
  7172. break;
  7173. case "mind":
  7174. aTool = 3;
  7175. _iframe = $$("iframe", {
  7176. "frameborder": "no",
  7177. "border": "0",
  7178. "scrolling ": "no",
  7179. "style": {
  7180. "cssText": "border:0;width:100%;height:100%"
  7181. },
  7182. "src": "/kityminder-editor/dist/index.html"
  7183. })
  7184. _box.appendChild(_iframe);
  7185. _box.appendChild(_jie);
  7186. _formdiv = new U.UF.UI.form(
  7187. "思维导图",
  7188. _box, { //"/jsmind/example/demo.html"
  7189. "id": "mind" + cid + stage + task + tool,
  7190. "style": {
  7191. "width": "90%",
  7192. "height": "90%",
  7193. "overflow": 'hidden'
  7194. },
  7195. "onresize": function () { }
  7196. }, {
  7197. closecallback: function () { }
  7198. }, {
  7199. "style": {
  7200. "height": "36px"
  7201. }
  7202. }).form; //创建窗体
  7203. _taskbar = {
  7204. "id": str + _formdiv.id,
  7205. "style": {
  7206. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7207. },
  7208. "name": "思维导图",
  7209. "forms": _formdiv,
  7210. "click": function () {
  7211. U.MD.D.I.openApplication(str, obj, info);
  7212. }
  7213. }
  7214. break;
  7215. case "MindMap":
  7216. aTool = 3;
  7217. _iframe = $$("iframe", {
  7218. "frameborder": "no",
  7219. "border": "0",
  7220. "scrolling ": "no",
  7221. "style": {
  7222. "cssText": "border:0;width:100%;height:100%"
  7223. },
  7224. "src": "//cloud.cocorobo.cn/mind/"
  7225. })
  7226. _box.appendChild(_iframe);
  7227. _box.appendChild(_jie);
  7228. _formdiv = new U.UF.UI.form(
  7229. "思维导图",
  7230. _box, { //"/jsmind/example/demo.html"
  7231. "id": "mind" + cid + stage + task + tool,
  7232. "style": {
  7233. "width": "90%",
  7234. "height": "90%",
  7235. "overflow": 'hidden'
  7236. },
  7237. "onresize": function () { }
  7238. }, {
  7239. closecallback: function () { }
  7240. }, {
  7241. "style": {
  7242. "height": "36px"
  7243. }
  7244. }).form; //创建窗体
  7245. _taskbar = {
  7246. "id": str + _formdiv.id,
  7247. "style": {
  7248. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7249. },
  7250. "name": "思维导图",
  7251. "forms": _formdiv,
  7252. "click": function () {
  7253. U.MD.D.I.openApplication(str, obj, info);
  7254. }
  7255. }
  7256. break;
  7257. case "doc":
  7258. aTool = 6;
  7259. _iframe = $$("iframe", {
  7260. "frameborder": "no",
  7261. "border": "0",
  7262. "scrolling ": "no",
  7263. "style": {
  7264. "cssText": "border:0;width:100%;height:100%"
  7265. },
  7266. "src": "/Office/Word/WordEditArea.htm"
  7267. })
  7268. _box.appendChild(_iframe);
  7269. _box.appendChild(_jie);
  7270. _formdiv = new U.UF.UI.form(
  7271. "协同文档",
  7272. _box, {
  7273. "id": "doc" + cid + stage + task + tool,
  7274. "style": {
  7275. "width": "90%",
  7276. "height": "90%",
  7277. "overflow": 'hidden'
  7278. },
  7279. "onresize": function () { }
  7280. }, {
  7281. closecallback: function () { }
  7282. }, {
  7283. "style": {
  7284. "height": "36px"
  7285. }
  7286. }).form; //创建窗体
  7287. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7288. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7289. })
  7290. _taskbar = {
  7291. "id": str + _formdiv.id,
  7292. "style": {
  7293. "backgroundImage": "url(/img/icon/doc.png)"
  7294. },
  7295. "name": "协同文档",
  7296. "forms": _formdiv,
  7297. "click": function () {
  7298. U.MD.D.I.openApplication(str, obj, info);
  7299. }
  7300. }
  7301. break;
  7302. case "mindNetwork": //好友打开
  7303. aTool = 7;
  7304. _iframe = $$("iframe", {
  7305. "webkitallowfullscreen": "",
  7306. "mozallowfullscreen": "",
  7307. "allowfullscreen": "",
  7308. "frameborder": "no",
  7309. "border": "0",
  7310. "scrolling ": "no",
  7311. "style": {
  7312. "cssText": "border:0; width:100%; height:100%;"
  7313. },
  7314. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7315. })
  7316. _box.appendChild(_iframe);
  7317. _box.appendChild(_jie);
  7318. _formdiv = new U.UF.UI.form(
  7319. "思维网格",
  7320. _box, {
  7321. "id": "mindNetwork" + cid + stage + task + tool,
  7322. "style": {
  7323. "width": "90%",
  7324. "height": "90%",
  7325. "overflow": 'hidden'
  7326. },
  7327. "onresize": function () { }
  7328. }, {
  7329. closecallback: function () { }
  7330. }, {
  7331. "style": {
  7332. "height": "36px"
  7333. }
  7334. }).form; //创建窗体
  7335. _taskbar = {
  7336. "id": str + _formdiv.id,
  7337. "style": {
  7338. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7339. },
  7340. "name": "思维网格",
  7341. "forms": _formdiv,
  7342. "click": function () {
  7343. U.MD.D.I.openApplication(str, obj, info);
  7344. }
  7345. }
  7346. break;
  7347. case "courseDesign":
  7348. _iframe = $$("iframe", {
  7349. "webkitallowfullscreen": "",
  7350. "mozallowfullscreen": "",
  7351. "allowfullscreen": "",
  7352. "frameborder": "no",
  7353. "border": "0",
  7354. "scrolling ": "no",
  7355. "style": {
  7356. "cssText": "border:0; width:100%; height:100%;"
  7357. },
  7358. "src": "/course-design-vue"
  7359. })
  7360. _box.appendChild(_iframe);
  7361. _box.appendChild(_jie);
  7362. _formdiv = new U.UF.UI.form(
  7363. "项目设计",
  7364. _box, {
  7365. "id": "courseDesign" + cid + stage + task + tool,
  7366. "style": {
  7367. "width": "90%",
  7368. "height": "90%",
  7369. "overflow": 'hidden'
  7370. },
  7371. "onresize": function () { }
  7372. }, {
  7373. closecallback: function () { }
  7374. }, {
  7375. "style": {
  7376. "height": "36px"
  7377. }
  7378. }).form; //创建窗体
  7379. _taskbar = {
  7380. "id": str + _formdiv.id,
  7381. "style": {
  7382. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7383. },
  7384. "name": "项目设计",
  7385. "forms": _formdiv,
  7386. "click": function () {
  7387. U.MD.D.I.openApplication(str, obj, info);
  7388. }
  7389. }
  7390. break;
  7391. }
  7392. const script1 = document.createElement("script");
  7393. script1.type = "text/javascript";
  7394. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7395. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7396. const script2 = document.createElement("script");
  7397. script2.type = "text/javascript";
  7398. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7399. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7400. const script3 = document.createElement("script");
  7401. script3.type = "text/javascript";
  7402. script3.charset = "UTF-8";
  7403. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7404. const script4 = document.createElement("script");
  7405. script4.type = "text/javascript";
  7406. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7407. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7408. if (_iframe) {
  7409. if (str == 'doc') {
  7410. _iframe = _formdiv.querySelector('iframe')
  7411. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7412. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7413. _iframe.contentWindow.document.body.appendChild(script1);
  7414. _iframe.contentWindow.document.body.appendChild(script2);
  7415. // _iframe.contentWindow.document.body.appendChild(script3);
  7416. _iframe.contentWindow.document.body.appendChild(script4);
  7417. })
  7418. if (onloadListener) {
  7419. _iframe.contentDocument.location.reload()
  7420. } else {
  7421. _iframe.contentDocument.location.reload()
  7422. }
  7423. } else if (str == 'courseDesign') {
  7424. U.UF.DL.iframeLoad(_iframe, function () {
  7425. // _iframe.contentWindow.U.MD.O.W.load();
  7426. // _iframe.contentWindow.document.body.appendChild(script1);
  7427. _iframe.contentWindow.document.body.appendChild(script2);
  7428. _iframe.contentWindow.document.body.appendChild(script4);
  7429. })
  7430. } else if (str == 'mind') {
  7431. _iframe = _formdiv.querySelector('iframe')
  7432. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7433. //
  7434. _iframe.contentWindow.document.body.appendChild(script1);
  7435. _iframe.contentWindow.document.body.appendChild(script2);
  7436. _iframe.contentWindow.document.body.appendChild(script4);
  7437. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7438. })
  7439. if (onloadListener) {
  7440. _iframe.contentDocument.location.reload()
  7441. } else {
  7442. _iframe.contentDocument.location.reload()
  7443. }
  7444. } else if (str == 'whiteboard') {
  7445. _iframe = _formdiv.querySelector('iframe')
  7446. let onloadListener = _iframe.onload = () => {
  7447. _iframe.contentWindow.document.body.appendChild(script1);
  7448. _iframe.contentWindow.document.body.appendChild(script2);
  7449. _iframe.contentWindow.document.body.appendChild(script4);
  7450. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7451. };
  7452. // if (onloadListener) {
  7453. // try {
  7454. // _iframe.src += "?cocorobo="+new Date().getTime()
  7455. // _iframe.contentWindow.document.location.reload()
  7456. // } catch (error) {
  7457. // }
  7458. // } else {
  7459. // _iframe.contentDocument.location.reload()
  7460. // }
  7461. } else {
  7462. _iframe.onload = () => {
  7463. _iframe.contentWindow.document.body.appendChild(script1);
  7464. _iframe.contentWindow.document.body.appendChild(script2);
  7465. // _iframe.contentWindow.document.body.appendChild(script3);
  7466. _iframe.contentWindow.document.body.appendChild(script4);
  7467. };
  7468. }
  7469. _jie.onclick = async () => {
  7470. let text = ''
  7471. if (aTool == 1) {
  7472. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7473. } else if (aTool == 6) {
  7474. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7475. } else if (aTool == 3) {
  7476. text = await U.MD.D.I.getEditorContent(_iframe);
  7477. }
  7478. _loading.style.display = 'flex'
  7479. console.log(_loading);
  7480. var _ajs = _iframe.contentWindow.document.createElement("script");
  7481. _ajs.type = "text/javascript";
  7482. _ajs.innerHTML =
  7483. // 'console.log(' + _loading + ');\n' +
  7484. 'var _js = document.createElement("script");\n' +
  7485. '_js.type="text/javascript";\n' +
  7486. '_js.charset="UTF-8";\n' +
  7487. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7488. "_js.onload = function(){\n" +
  7489. ' var a = document.getElementsByTagName("img")\n' +
  7490. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7491. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7492. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7493. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7494. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7495. "beforeUpload_shishi(file," +
  7496. "'" +
  7497. _userid +
  7498. "'" +
  7499. ", " +
  7500. "'" +
  7501. _cid +
  7502. "'" +
  7503. ", " +
  7504. "'" +
  7505. _stage +
  7506. "'" +
  7507. ", " +
  7508. "'" +
  7509. _task +
  7510. "'" +
  7511. ", " +
  7512. "'" +
  7513. _tool +
  7514. "'" +
  7515. ", " +
  7516. "'" +
  7517. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7518. "'" +
  7519. ", " +
  7520. "'" +
  7521. aTool +
  7522. "'" +
  7523. ", " +
  7524. "`" +
  7525. text +
  7526. "`" +
  7527. ")\n" +
  7528. " });\n" +
  7529. "}\n" +
  7530. "document.head.appendChild(_js);\n";
  7531. _iframe.contentWindow.document.head.appendChild(_ajs);
  7532. }
  7533. }
  7534. //U.MD.D.I.openClick(str);
  7535. //如果有任务栏信息
  7536. // if (_taskbar) {
  7537. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7538. // }
  7539. }
  7540. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7541. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7542. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7543. _userinfo = US.userInfo, //登录用户信息
  7544. _userid = US.userInfo.userid //登录用户id
  7545. let _iframe;
  7546. let _cid = cid,
  7547. _stage = stage,
  7548. _task = task,
  7549. _tool = tool;
  7550. var _jie = $$("div", {
  7551. "style": {
  7552. "position": "absolute",
  7553. "bottom": "50px",
  7554. "right": "50px",
  7555. "zIndex": "9999",
  7556. "backgroundColor": "#2268bc",
  7557. "color": "#fff",
  7558. "padding": "12px 20px",
  7559. "cursor": "pointer",
  7560. "borderRadius": "4px",
  7561. },
  7562. "innerHTML": "提交作业"
  7563. })
  7564. let aTool = ''
  7565. let _loading = document.createElement('div')
  7566. _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;"
  7567. // _loading.id = "";
  7568. let _lchild = document.createElement('div')
  7569. let _limg = document.createElement('img')
  7570. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7571. _limg.style = "width: 26px;margin-right: 10px;"
  7572. _lchild.appendChild(_limg)
  7573. let _lspan = document.createElement('span')
  7574. _lspan.innerHTML = "上传中..."
  7575. _lchild.appendChild(_lspan)
  7576. _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%);"
  7577. _loading.appendChild(_lchild)
  7578. let _box = $$('div', {
  7579. "style": {
  7580. "position": "relative",
  7581. "width": "100%",
  7582. "height": "100%",
  7583. },
  7584. })
  7585. _box.appendChild(_loading)
  7586. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7587. switch (str) {
  7588. case "whiteboard":
  7589. aTool = 1;
  7590. _iframe = $$("iframe", {
  7591. "frameborder": "no",
  7592. "border": "0",
  7593. "scrolling ": "no",
  7594. "style": {
  7595. "cssText": "border:0;width:100%;height:100%"
  7596. },
  7597. "src": "https://beta.iwb.cocorobo.cn/"
  7598. })
  7599. _box.appendChild(_iframe);
  7600. _box.appendChild(_jie);
  7601. _formdiv = new U.UF.UI.form(
  7602. "电子白板",
  7603. _box, {
  7604. "id": "whiteboard" + cid + stage + task + tool,
  7605. "style": {
  7606. "width": "90%",
  7607. "height": "90%",
  7608. "overflow": 'hidden'
  7609. },
  7610. "onresize": function () { }
  7611. }, {
  7612. closecallback: function () { }
  7613. }, {
  7614. "style": {
  7615. "height": "36px"
  7616. }
  7617. }).form; //创建窗体
  7618. _taskbar = {
  7619. "id": str + _formdiv.id,
  7620. "style": {
  7621. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7622. },
  7623. "name": "电子白板",
  7624. "forms": _formdiv,
  7625. "click": function () {
  7626. U.MD.D.I.openApplication(str, obj, info);
  7627. }
  7628. }
  7629. break;
  7630. case "mind":
  7631. aTool = 3;
  7632. _iframe = $$("iframe", {
  7633. "frameborder": "no",
  7634. "border": "0",
  7635. "scrolling ": "no",
  7636. "style": {
  7637. "cssText": "border:0;width:100%;height:100%"
  7638. },
  7639. "src": "/kityminder-editor/dist/index.html"
  7640. })
  7641. _box.appendChild(_iframe);
  7642. _box.appendChild(_jie);
  7643. _formdiv = new U.UF.UI.form(
  7644. "思维导图",
  7645. _box, { //"/jsmind/example/demo.html"
  7646. "id": "mind" + cid + stage + task + tool,
  7647. "style": {
  7648. "width": "90%",
  7649. "height": "90%",
  7650. "overflow": 'hidden'
  7651. },
  7652. "onresize": function () { }
  7653. }, {
  7654. closecallback: function () { }
  7655. }, {
  7656. "style": {
  7657. "height": "36px"
  7658. }
  7659. }).form; //创建窗体
  7660. _taskbar = {
  7661. "id": str + _formdiv.id,
  7662. "style": {
  7663. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7664. },
  7665. "name": "思维导图",
  7666. "forms": _formdiv,
  7667. "click": function () {
  7668. U.MD.D.I.openApplication(str, obj, info);
  7669. }
  7670. }
  7671. break;
  7672. case "MindMap":
  7673. aTool = 3;
  7674. _iframe = $$("iframe", {
  7675. "frameborder": "no",
  7676. "border": "0",
  7677. "scrolling ": "no",
  7678. "style": {
  7679. "cssText": "border:0;width:100%;height:100%"
  7680. },
  7681. "src": "//cloud.cocorobo.cn/mind/"
  7682. })
  7683. _box.appendChild(_iframe);
  7684. _box.appendChild(_jie);
  7685. _formdiv = new U.UF.UI.form(
  7686. "思维导图",
  7687. _box, { //"/jsmind/example/demo.html"
  7688. "id": "mind" + cid + stage + task + tool,
  7689. "style": {
  7690. "width": "90%",
  7691. "height": "90%",
  7692. "overflow": 'hidden'
  7693. },
  7694. "onresize": function () { }
  7695. }, {
  7696. closecallback: function () { }
  7697. }, {
  7698. "style": {
  7699. "height": "36px"
  7700. }
  7701. }).form; //创建窗体
  7702. _taskbar = {
  7703. "id": str + _formdiv.id,
  7704. "style": {
  7705. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7706. },
  7707. "name": "思维导图",
  7708. "forms": _formdiv,
  7709. "click": function () {
  7710. U.MD.D.I.openApplication(str, obj, info);
  7711. }
  7712. }
  7713. break;
  7714. case "doc":
  7715. aTool = 6;
  7716. _iframe = $$("iframe", {
  7717. "frameborder": "no",
  7718. "border": "0",
  7719. "scrolling ": "no",
  7720. "style": {
  7721. "cssText": "border:0;width:100%;height:100%"
  7722. },
  7723. "src": "/Office/Word/WordEditArea.htm"
  7724. })
  7725. _box.appendChild(_iframe);
  7726. _box.appendChild(_jie);
  7727. _formdiv = new U.UF.UI.form(
  7728. "协同文档",
  7729. _box, {
  7730. "id": "doc" + cid + stage + task + tool,
  7731. "style": {
  7732. "width": "90%",
  7733. "height": "90%",
  7734. "overflow": 'hidden'
  7735. },
  7736. "onresize": function () { }
  7737. }, {
  7738. closecallback: function () { }
  7739. }, {
  7740. "style": {
  7741. "height": "36px"
  7742. }
  7743. }).form; //创建窗体
  7744. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7745. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7746. })
  7747. _taskbar = {
  7748. "id": str + _formdiv.id,
  7749. "style": {
  7750. "backgroundImage": "url(/img/icon/doc.png)"
  7751. },
  7752. "name": "协同文档",
  7753. "forms": _formdiv,
  7754. "click": function () {
  7755. U.MD.D.I.openApplication(str, obj, info);
  7756. }
  7757. }
  7758. break;
  7759. case "mindNetwork": //好友打开
  7760. aTool = 7;
  7761. _iframe = $$("iframe", {
  7762. "webkitallowfullscreen": "",
  7763. "mozallowfullscreen": "",
  7764. "allowfullscreen": "",
  7765. "frameborder": "no",
  7766. "border": "0",
  7767. "scrolling ": "no",
  7768. "style": {
  7769. "cssText": "border:0; width:100%; height:100%;"
  7770. },
  7771. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7772. })
  7773. _box.appendChild(_iframe);
  7774. _box.appendChild(_jie);
  7775. _formdiv = new U.UF.UI.form(
  7776. "思维网格",
  7777. _box, {
  7778. "id": "mindNetwork" + cid + stage + task + tool,
  7779. "style": {
  7780. "width": "90%",
  7781. "height": "90%",
  7782. "overflow": 'hidden'
  7783. },
  7784. "onresize": function () { }
  7785. }, {
  7786. closecallback: function () { }
  7787. }, {
  7788. "style": {
  7789. "height": "36px"
  7790. }
  7791. }).form; //创建窗体
  7792. _taskbar = {
  7793. "id": str + _formdiv.id,
  7794. "style": {
  7795. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7796. },
  7797. "name": "思维网格",
  7798. "forms": _formdiv,
  7799. "click": function () {
  7800. U.MD.D.I.openApplication(str, obj, info);
  7801. }
  7802. }
  7803. break;
  7804. case "courseDesign":
  7805. _iframe = $$("iframe", {
  7806. "webkitallowfullscreen": "",
  7807. "mozallowfullscreen": "",
  7808. "allowfullscreen": "",
  7809. "frameborder": "no",
  7810. "border": "0",
  7811. "scrolling ": "no",
  7812. "style": {
  7813. "cssText": "border:0; width:100%; height:100%;"
  7814. },
  7815. "src": "/course-design-vue"
  7816. })
  7817. _box.appendChild(_iframe);
  7818. _box.appendChild(_jie);
  7819. _formdiv = new U.UF.UI.form(
  7820. "项目设计",
  7821. _box, {
  7822. "id": "courseDesign" + cid + stage + task + tool,
  7823. "style": {
  7824. "width": "90%",
  7825. "height": "90%",
  7826. "overflow": 'hidden'
  7827. },
  7828. "onresize": function () { }
  7829. }, {
  7830. closecallback: function () { }
  7831. }, {
  7832. "style": {
  7833. "height": "36px"
  7834. }
  7835. }).form; //创建窗体
  7836. _taskbar = {
  7837. "id": str + _formdiv.id,
  7838. "style": {
  7839. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7840. },
  7841. "name": "项目设计",
  7842. "forms": _formdiv,
  7843. "click": function () {
  7844. U.MD.D.I.openApplication(str, obj, info);
  7845. }
  7846. }
  7847. break;
  7848. }
  7849. const script1 = document.createElement("script");
  7850. script1.type = "text/javascript";
  7851. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7852. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7853. const script2 = document.createElement("script");
  7854. script2.type = "text/javascript";
  7855. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7856. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7857. const script3 = document.createElement("script");
  7858. script3.type = "text/javascript";
  7859. script3.charset = "UTF-8";
  7860. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7861. const script4 = document.createElement("script");
  7862. script4.type = "text/javascript";
  7863. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7864. script4.src = window.origin + "/js/Common/jietu2E.js";
  7865. if (_iframe) {
  7866. if (str == 'doc') {
  7867. _iframe = _formdiv.querySelector('iframe')
  7868. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7869. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7870. _iframe.contentWindow.document.body.appendChild(script1);
  7871. _iframe.contentWindow.document.body.appendChild(script2);
  7872. // _iframe.contentWindow.document.body.appendChild(script3);
  7873. _iframe.contentWindow.document.body.appendChild(script4);
  7874. })
  7875. if (onloadListener) {
  7876. _iframe.contentDocument.location.reload()
  7877. } else {
  7878. _iframe.contentDocument.location.reload()
  7879. }
  7880. } else if (str == 'courseDesign') {
  7881. U.UF.DL.iframeLoad(_iframe, function () {
  7882. // _iframe.contentWindow.U.MD.O.W.load();
  7883. // _iframe.contentWindow.document.body.appendChild(script1);
  7884. _iframe.contentWindow.document.body.appendChild(script2);
  7885. _iframe.contentWindow.document.body.appendChild(script4);
  7886. })
  7887. } else if (str == 'mind') {
  7888. _iframe = _formdiv.querySelector('iframe')
  7889. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7890. //
  7891. _iframe.contentWindow.document.body.appendChild(script1);
  7892. _iframe.contentWindow.document.body.appendChild(script2);
  7893. _iframe.contentWindow.document.body.appendChild(script4);
  7894. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7895. })
  7896. if (onloadListener) {
  7897. _iframe.contentDocument.location.reload()
  7898. } else {
  7899. _iframe.contentDocument.location.reload()
  7900. }
  7901. } else if (str == 'whiteboard') {
  7902. _iframe = _formdiv.querySelector('iframe')
  7903. let onloadListener = _iframe.onload = () => {
  7904. _iframe.contentWindow.document.body.appendChild(script1);
  7905. _iframe.contentWindow.document.body.appendChild(script2);
  7906. _iframe.contentWindow.document.body.appendChild(script4);
  7907. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7908. };
  7909. // if (onloadListener) {
  7910. // try {
  7911. // _iframe.src += "?cocorobo="+new Date().getTime()
  7912. // _iframe.contentWindow.document.location.reload()
  7913. // } catch (error) {
  7914. // }
  7915. // } else {
  7916. // _iframe.contentDocument.location.reload()
  7917. // }
  7918. } else {
  7919. _iframe.onload = () => {
  7920. _iframe.contentWindow.document.body.appendChild(script1);
  7921. _iframe.contentWindow.document.body.appendChild(script2);
  7922. // _iframe.contentWindow.document.body.appendChild(script3);
  7923. _iframe.contentWindow.document.body.appendChild(script4);
  7924. };
  7925. }
  7926. _jie.onclick = async () => {
  7927. let text = ''
  7928. if (aTool == 1) {
  7929. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7930. } else if (aTool == 6) {
  7931. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7932. } else if (aTool == 3) {
  7933. text = await U.MD.D.I.getEditorContent(_iframe);
  7934. }
  7935. _loading.style.display = 'flex'
  7936. console.log(_loading);
  7937. var _ajs = _iframe.contentWindow.document.createElement("script");
  7938. _ajs.type = "text/javascript";
  7939. _ajs.innerHTML =
  7940. // 'console.log(' + _loading + ');\n' +
  7941. 'var _js = document.createElement("script");\n' +
  7942. '_js.type="text/javascript";\n' +
  7943. '_js.charset="UTF-8";\n' +
  7944. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7945. "_js.onload = function(){\n" +
  7946. ' var a = document.getElementsByTagName("img")\n' +
  7947. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7948. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7949. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7950. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7951. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7952. "beforeUpload_shishi(file," +
  7953. "'" +
  7954. _userid +
  7955. "'" +
  7956. ", " +
  7957. "'" +
  7958. _cid +
  7959. "'" +
  7960. ", " +
  7961. "'" +
  7962. _stage +
  7963. "'" +
  7964. ", " +
  7965. "'" +
  7966. _task +
  7967. "'" +
  7968. ", " +
  7969. "'" +
  7970. _tool +
  7971. "'" +
  7972. ", " +
  7973. "'" +
  7974. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7975. "'" +
  7976. ", " +
  7977. "'" +
  7978. aTool +
  7979. "'" +
  7980. ", " +
  7981. "`" +
  7982. text +
  7983. "`" +
  7984. ")\n" +
  7985. " });\n" +
  7986. "}\n" +
  7987. "document.head.appendChild(_js);\n";
  7988. _iframe.contentWindow.document.head.appendChild(_ajs);
  7989. }
  7990. }
  7991. //U.MD.D.I.openClick(str);
  7992. //如果有任务栏信息
  7993. // if (_taskbar) {
  7994. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7995. // }
  7996. }
  7997. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7998. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7999. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8000. _userid = student.userid, //登录用户id
  8001. _username = student.student //用户名字
  8002. let _iframe;
  8003. let _cid = cid,
  8004. _stage = stage,
  8005. _task = task,
  8006. _tool = tool;
  8007. var _jie = $$("div", {
  8008. "style": {
  8009. "position": "absolute",
  8010. "bottom": "50px",
  8011. "right": "50px",
  8012. "zIndex": "9999",
  8013. "backgroundColor": "#2268bc",
  8014. "color": "#fff",
  8015. "padding": "12px 20px",
  8016. "cursor": "pointer",
  8017. "borderRadius": "4px",
  8018. },
  8019. "innerHTML": "提交作业"
  8020. })
  8021. let aTool = ''
  8022. let _loading = document.createElement('div')
  8023. _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;"
  8024. // _loading.id = "";
  8025. let _lchild = document.createElement('div')
  8026. let _limg = document.createElement('img')
  8027. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8028. _limg.style = "width: 26px;margin-right: 10px;"
  8029. _lchild.appendChild(_limg)
  8030. let _lspan = document.createElement('span')
  8031. _lspan.innerHTML = "上传中..."
  8032. _lchild.appendChild(_lspan)
  8033. _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%);"
  8034. _loading.appendChild(_lchild)
  8035. var _box = $$('div', {
  8036. "style": {
  8037. "position": "relative",
  8038. "width": "100%",
  8039. "height": "100%",
  8040. },
  8041. })
  8042. _box.appendChild(_loading)
  8043. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8044. switch (str) {
  8045. case "whiteboard":
  8046. aTool = 1;
  8047. _iframe = $$("iframe", {
  8048. "frameborder": "no",
  8049. "border": "0",
  8050. "scrolling ": "no",
  8051. "style": {
  8052. "cssText": "border:0;width:100%;height:100%"
  8053. },
  8054. "src": "https://beta.iwb.cocorobo.cn/"
  8055. })
  8056. _box.appendChild(_iframe);
  8057. _box.appendChild(_jie);
  8058. _formdiv = new U.UF.UI.form(
  8059. "电子白板-" + _username,
  8060. _box, {
  8061. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8062. "style": {
  8063. "width": "90%",
  8064. "height": "90%",
  8065. "overflow": 'hidden'
  8066. },
  8067. "onresize": function () { }
  8068. }, {
  8069. closecallback: function () { }
  8070. }, {
  8071. "style": {
  8072. "height": "36px"
  8073. }
  8074. }).form; //创建窗体
  8075. _taskbar = {
  8076. "id": str + _formdiv.id,
  8077. "style": {
  8078. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8079. },
  8080. "name": "电子白板",
  8081. "forms": _formdiv,
  8082. "click": function () {
  8083. U.MD.D.I.openApplication(str, obj, info);
  8084. }
  8085. }
  8086. break;
  8087. case "mind":
  8088. aTool = 3;
  8089. _iframe = $$("iframe", {
  8090. "frameborder": "no",
  8091. "border": "0",
  8092. "scrolling ": "no",
  8093. "style": {
  8094. "cssText": "border:0;width:100%;height:100%"
  8095. },
  8096. "src": "/kityminder-editor/dist/index.html"
  8097. })
  8098. _box.appendChild(_iframe);
  8099. _box.appendChild(_jie);
  8100. _formdiv = new U.UF.UI.form(
  8101. "思维导图-" + _username,
  8102. _box, { //"/jsmind/example/demo.html"
  8103. "id": "mind" + cid + stage + task + tool + _userid,
  8104. "style": {
  8105. "width": "90%",
  8106. "height": "90%",
  8107. "overflow": 'hidden'
  8108. },
  8109. "onresize": function () { }
  8110. }, {
  8111. closecallback: function () { }
  8112. }, {
  8113. "style": {
  8114. "height": "36px"
  8115. }
  8116. }).form; //创建窗体
  8117. _taskbar = {
  8118. "id": str + _formdiv.id,
  8119. "style": {
  8120. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8121. },
  8122. "name": "思维导图",
  8123. "forms": _formdiv,
  8124. "click": function () {
  8125. U.MD.D.I.openApplication(str, obj, info);
  8126. }
  8127. }
  8128. break;
  8129. case "MindMap":
  8130. aTool = 3;
  8131. _iframe = $$("iframe", {
  8132. "frameborder": "no",
  8133. "border": "0",
  8134. "scrolling ": "no",
  8135. "style": {
  8136. "cssText": "border:0;width:100%;height:100%"
  8137. },
  8138. "src": "//cloud.cocorobo.cn/mind/"
  8139. })
  8140. _box.appendChild(_iframe);
  8141. _box.appendChild(_jie);
  8142. _formdiv = new U.UF.UI.form(
  8143. "思维导图-" + _username,
  8144. _box, { //"/jsmind/example/demo.html"
  8145. "id": "mind" + cid + stage + task + tool + _userid,
  8146. "style": {
  8147. "width": "90%",
  8148. "height": "90%",
  8149. "overflow": 'hidden'
  8150. },
  8151. "onresize": function () { }
  8152. }, {
  8153. closecallback: function () { }
  8154. }, {
  8155. "style": {
  8156. "height": "36px"
  8157. }
  8158. }).form; //创建窗体
  8159. _taskbar = {
  8160. "id": str + _formdiv.id,
  8161. "style": {
  8162. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8163. },
  8164. "name": "思维导图",
  8165. "forms": _formdiv,
  8166. "click": function () {
  8167. U.MD.D.I.openApplication(str, obj, info);
  8168. }
  8169. }
  8170. break;
  8171. case "doc":
  8172. aTool = 6;
  8173. _iframe = $$("iframe", {
  8174. "frameborder": "no",
  8175. "border": "0",
  8176. "scrolling ": "no",
  8177. "style": {
  8178. "cssText": "border:0;width:100%;height:100%"
  8179. },
  8180. "src": "/Office/Word/WordEditArea.htm"
  8181. })
  8182. _box.appendChild(_iframe);
  8183. _box.appendChild(_jie);
  8184. _formdiv = new U.UF.UI.form(
  8185. "协同文档-" + _username,
  8186. _box, {
  8187. "id": "doc" + cid + stage + task + tool + _userid,
  8188. "style": {
  8189. "width": "90%",
  8190. "height": "90%",
  8191. "overflow": 'hidden'
  8192. },
  8193. "onresize": function () { }
  8194. }, {
  8195. closecallback: function () { }
  8196. }, {
  8197. "style": {
  8198. "height": "36px"
  8199. }
  8200. }).form; //创建窗体
  8201. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8202. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8203. })
  8204. _taskbar = {
  8205. "id": str + _formdiv.id,
  8206. "style": {
  8207. "backgroundImage": "url(/img/icon/doc.png)"
  8208. },
  8209. "name": "协同文档",
  8210. "forms": _formdiv,
  8211. "click": function () {
  8212. U.MD.D.I.openApplication(str, obj, info);
  8213. }
  8214. }
  8215. break;
  8216. case "mindNetwork": //好友打开
  8217. aTool = 7;
  8218. _iframe = $$("iframe", {
  8219. "webkitallowfullscreen": "",
  8220. "mozallowfullscreen": "",
  8221. "allowfullscreen": "",
  8222. "frameborder": "no",
  8223. "border": "0",
  8224. "scrolling ": "no",
  8225. "style": {
  8226. "cssText": "border:0; width:100%; height:100%;"
  8227. },
  8228. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8229. })
  8230. _box.appendChild(_iframe);
  8231. _box.appendChild(_jie);
  8232. _formdiv = new U.UF.UI.form(
  8233. "思维网格-" + _username,
  8234. _box, {
  8235. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8236. "style": {
  8237. "width": "90%",
  8238. "height": "90%",
  8239. "overflow": 'hidden'
  8240. },
  8241. "onresize": function () { }
  8242. }, {
  8243. closecallback: function () { }
  8244. }, {
  8245. "style": {
  8246. "height": "36px"
  8247. }
  8248. }).form; //创建窗体
  8249. _taskbar = {
  8250. "id": str + _formdiv.id,
  8251. "style": {
  8252. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8253. },
  8254. "name": "思维网格",
  8255. "forms": _formdiv,
  8256. "click": function () {
  8257. U.MD.D.I.openApplication(str, obj, info);
  8258. }
  8259. }
  8260. break;
  8261. case "courseDesign":
  8262. _iframe = $$("iframe", {
  8263. "webkitallowfullscreen": "",
  8264. "mozallowfullscreen": "",
  8265. "allowfullscreen": "",
  8266. "frameborder": "no",
  8267. "border": "0",
  8268. "scrolling ": "no",
  8269. "style": {
  8270. "cssText": "border:0; width:100%; height:100%;"
  8271. },
  8272. "src": "/course-design-vue"
  8273. })
  8274. _box.appendChild(_iframe);
  8275. _box.appendChild(_jie);
  8276. _formdiv = new U.UF.UI.form(
  8277. "项目设计-" + _username,
  8278. _box, {
  8279. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8280. "style": {
  8281. "width": "90%",
  8282. "height": "90%",
  8283. "overflow": 'hidden'
  8284. },
  8285. "onresize": function () { }
  8286. }, {
  8287. closecallback: function () { }
  8288. }, {
  8289. "style": {
  8290. "height": "36px"
  8291. }
  8292. }).form; //创建窗体
  8293. _taskbar = {
  8294. "id": str + _formdiv.id,
  8295. "style": {
  8296. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8297. },
  8298. "name": "项目设计",
  8299. "forms": _formdiv,
  8300. "click": function () {
  8301. U.MD.D.I.openApplication(str, obj, info);
  8302. }
  8303. }
  8304. break;
  8305. }
  8306. const script1 = document.createElement("script");
  8307. script1.type = "text/javascript";
  8308. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8309. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8310. const script2 = document.createElement("script");
  8311. script2.type = "text/javascript";
  8312. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8313. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8314. const script3 = document.createElement("script");
  8315. script3.type = "text/javascript";
  8316. script3.charset = "UTF-8";
  8317. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8318. const script4 = document.createElement("script");
  8319. script4.type = "text/javascript";
  8320. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8321. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8322. if (_iframe) {
  8323. if (str == 'doc') {
  8324. _iframe = _formdiv.querySelector('iframe')
  8325. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8326. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8327. _iframe.contentWindow.document.body.appendChild(script1);
  8328. _iframe.contentWindow.document.body.appendChild(script2);
  8329. // _iframe.contentWindow.document.body.appendChild(script3);
  8330. _iframe.contentWindow.document.body.appendChild(script4);
  8331. })
  8332. if (onloadListener) {
  8333. _iframe.contentDocument.location.reload()
  8334. } else {
  8335. _iframe.contentDocument.location.reload()
  8336. }
  8337. } else if (str == 'courseDesign') {
  8338. U.UF.DL.iframeLoad(_iframe, function () {
  8339. // _iframe.contentWindow.U.MD.O.W.load();
  8340. // _iframe.contentWindow.document.body.appendChild(script1);
  8341. _iframe.contentWindow.document.body.appendChild(script2);
  8342. _iframe.contentWindow.document.body.appendChild(script4);
  8343. })
  8344. } else if (str == 'mind') {
  8345. _iframe = _formdiv.querySelector('iframe')
  8346. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8347. //
  8348. _iframe.contentWindow.document.body.appendChild(script1);
  8349. _iframe.contentWindow.document.body.appendChild(script2);
  8350. _iframe.contentWindow.document.body.appendChild(script4);
  8351. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8352. })
  8353. if (onloadListener) {
  8354. _iframe.contentDocument.location.reload()
  8355. } else {
  8356. _iframe.contentDocument.location.reload()
  8357. }
  8358. } else if (str == 'whiteboard') {
  8359. _iframe = _formdiv.querySelector('iframe')
  8360. let onloadListener = _iframe.onload = () => {
  8361. _iframe.contentWindow.document.body.appendChild(script1);
  8362. _iframe.contentWindow.document.body.appendChild(script2);
  8363. _iframe.contentWindow.document.body.appendChild(script4);
  8364. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8365. };
  8366. // if (onloadListener) {
  8367. // try {
  8368. // _iframe.src += "?cocorobo="+new Date().getTime()
  8369. // _iframe.contentWindow.document.location.reload()
  8370. // } catch (error) {
  8371. // }
  8372. // } else {
  8373. // _iframe.contentDocument.location.reload()
  8374. // }
  8375. } else {
  8376. _iframe.onload = () => {
  8377. _iframe.contentWindow.document.body.appendChild(script1);
  8378. _iframe.contentWindow.document.body.appendChild(script2);
  8379. // _iframe.contentWindow.document.body.appendChild(script3);
  8380. _iframe.contentWindow.document.body.appendChild(script4);
  8381. };
  8382. }
  8383. _jie.onclick = async () => {
  8384. let text = ''
  8385. if (aTool == 1) {
  8386. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8387. } else if (aTool == 6) {
  8388. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8389. } else if (aTool == 3) {
  8390. text = await U.MD.D.I.getEditorContent(_iframe);
  8391. }
  8392. _loading.style.display = 'flex'
  8393. console.log(_loading);
  8394. var _ajs = _iframe.contentWindow.document.createElement("script");
  8395. _ajs.type = "text/javascript";
  8396. _ajs.innerHTML =
  8397. // 'console.log(' + _loading + ');\n' +
  8398. 'var _js = document.createElement("script");\n' +
  8399. '_js.type="text/javascript";\n' +
  8400. '_js.charset="UTF-8";\n' +
  8401. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8402. "_js.onload = function(){\n" +
  8403. ' var a = document.getElementsByTagName("img")\n' +
  8404. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8405. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8406. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8407. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8408. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8409. "beforeUpload_shishi(file," +
  8410. "'" +
  8411. _userid +
  8412. "'" +
  8413. ", " +
  8414. "'" +
  8415. _cid +
  8416. "'" +
  8417. ", " +
  8418. "'" +
  8419. _stage +
  8420. "'" +
  8421. ", " +
  8422. "'" +
  8423. _task +
  8424. "'" +
  8425. ", " +
  8426. "'" +
  8427. _tool +
  8428. "'" +
  8429. ", " +
  8430. "'" +
  8431. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8432. "'" +
  8433. ", " +
  8434. "'" +
  8435. aTool +
  8436. "'" +
  8437. ", " +
  8438. "`" +
  8439. text +
  8440. "`" +
  8441. ")\n" +
  8442. " });\n" +
  8443. "}\n" +
  8444. "document.head.appendChild(_js);\n";
  8445. _iframe.contentWindow.document.head.appendChild(_ajs);
  8446. }
  8447. }
  8448. }
  8449. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8450. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8451. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8452. _userid = student.userid, //登录用户id
  8453. _username = student.student //用户名字
  8454. let _iframe;
  8455. let _cid = cid,
  8456. _stage = stage,
  8457. _task = task,
  8458. _tool = tool;
  8459. var _jie = $$("div", {
  8460. "style": {
  8461. "position": "absolute",
  8462. "bottom": "50px",
  8463. "right": "50px",
  8464. "zIndex": "9999",
  8465. "backgroundColor": "#2268bc",
  8466. "color": "#fff",
  8467. "padding": "12px 20px",
  8468. "cursor": "pointer",
  8469. "borderRadius": "4px",
  8470. },
  8471. "innerHTML": "提交作业"
  8472. })
  8473. let aTool = ''
  8474. let _loading = document.createElement('div')
  8475. _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;"
  8476. // _loading.id = "";
  8477. let _lchild = document.createElement('div')
  8478. let _limg = document.createElement('img')
  8479. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8480. _limg.style = "width: 26px;margin-right: 10px;"
  8481. _lchild.appendChild(_limg)
  8482. let _lspan = document.createElement('span')
  8483. _lspan.innerHTML = "上传中..."
  8484. _lchild.appendChild(_lspan)
  8485. _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%);"
  8486. _loading.appendChild(_lchild)
  8487. var _box = $$('div', {
  8488. "style": {
  8489. "position": "relative",
  8490. "width": "100%",
  8491. "height": "100%",
  8492. },
  8493. })
  8494. _box.appendChild(_loading)
  8495. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8496. switch (str) {
  8497. case "whiteboard":
  8498. aTool = 1;
  8499. _iframe = $$("iframe", {
  8500. "frameborder": "no",
  8501. "border": "0",
  8502. "scrolling ": "no",
  8503. "style": {
  8504. "cssText": "border:0;width:100%;height:100%"
  8505. },
  8506. "src": "https://beta.iwb.cocorobo.cn/"
  8507. })
  8508. _box.appendChild(_iframe);
  8509. _box.appendChild(_jie);
  8510. _formdiv = new U.UF.UI.form(
  8511. "电子白板-" + _username,
  8512. _box, {
  8513. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8514. "style": {
  8515. "width": "90%",
  8516. "height": "90%",
  8517. "overflow": 'hidden'
  8518. },
  8519. "onresize": function () { }
  8520. }, {
  8521. closecallback: function () { }
  8522. }, {
  8523. "style": {
  8524. "height": "36px"
  8525. }
  8526. }).form; //创建窗体
  8527. _taskbar = {
  8528. "id": str + _formdiv.id,
  8529. "style": {
  8530. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8531. },
  8532. "name": "电子白板",
  8533. "forms": _formdiv,
  8534. "click": function () {
  8535. U.MD.D.I.openApplication(str, obj, info);
  8536. }
  8537. }
  8538. break;
  8539. case "mind":
  8540. aTool = 3;
  8541. _iframe = $$("iframe", {
  8542. "frameborder": "no",
  8543. "border": "0",
  8544. "scrolling ": "no",
  8545. "style": {
  8546. "cssText": "border:0;width:100%;height:100%"
  8547. },
  8548. "src": "/kityminder-editor/dist/index.html"
  8549. })
  8550. _box.appendChild(_iframe);
  8551. _box.appendChild(_jie);
  8552. _formdiv = new U.UF.UI.form(
  8553. "思维导图-" + _username,
  8554. _box, { //"/jsmind/example/demo.html"
  8555. "id": "mind" + cid + stage + task + tool + _userid,
  8556. "style": {
  8557. "width": "90%",
  8558. "height": "90%",
  8559. "overflow": 'hidden'
  8560. },
  8561. "onresize": function () { }
  8562. }, {
  8563. closecallback: function () { }
  8564. }, {
  8565. "style": {
  8566. "height": "36px"
  8567. }
  8568. }).form; //创建窗体
  8569. _taskbar = {
  8570. "id": str + _formdiv.id,
  8571. "style": {
  8572. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8573. },
  8574. "name": "思维导图",
  8575. "forms": _formdiv,
  8576. "click": function () {
  8577. U.MD.D.I.openApplication(str, obj, info);
  8578. }
  8579. }
  8580. break;
  8581. case "MindMap":
  8582. aTool = 3;
  8583. _iframe = $$("iframe", {
  8584. "frameborder": "no",
  8585. "border": "0",
  8586. "scrolling ": "no",
  8587. "style": {
  8588. "cssText": "border:0;width:100%;height:100%"
  8589. },
  8590. "src": "//cloud.cocorobo.cn/mind/"
  8591. })
  8592. _box.appendChild(_iframe);
  8593. _box.appendChild(_jie);
  8594. _formdiv = new U.UF.UI.form(
  8595. "思维导图-" + _username,
  8596. _box, { //"/jsmind/example/demo.html"
  8597. "id": "mind" + cid + stage + task + tool + _userid,
  8598. "style": {
  8599. "width": "90%",
  8600. "height": "90%",
  8601. "overflow": 'hidden'
  8602. },
  8603. "onresize": function () { }
  8604. }, {
  8605. closecallback: function () { }
  8606. }, {
  8607. "style": {
  8608. "height": "36px"
  8609. }
  8610. }).form; //创建窗体
  8611. _taskbar = {
  8612. "id": str + _formdiv.id,
  8613. "style": {
  8614. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8615. },
  8616. "name": "思维导图",
  8617. "forms": _formdiv,
  8618. "click": function () {
  8619. U.MD.D.I.openApplication(str, obj, info);
  8620. }
  8621. }
  8622. break;
  8623. case "doc":
  8624. aTool = 6;
  8625. _iframe = $$("iframe", {
  8626. "frameborder": "no",
  8627. "border": "0",
  8628. "scrolling ": "no",
  8629. "style": {
  8630. "cssText": "border:0;width:100%;height:100%"
  8631. },
  8632. "src": "/Office/Word/WordEditArea.htm"
  8633. })
  8634. _box.appendChild(_iframe);
  8635. _box.appendChild(_jie);
  8636. _formdiv = new U.UF.UI.form(
  8637. "协同文档-" + _username,
  8638. _box, {
  8639. "id": "doc" + cid + stage + task + tool + _userid,
  8640. "style": {
  8641. "width": "90%",
  8642. "height": "90%",
  8643. "overflow": 'hidden'
  8644. },
  8645. "onresize": function () { }
  8646. }, {
  8647. closecallback: function () { }
  8648. }, {
  8649. "style": {
  8650. "height": "36px"
  8651. }
  8652. }).form; //创建窗体
  8653. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8654. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8655. })
  8656. _taskbar = {
  8657. "id": str + _formdiv.id,
  8658. "style": {
  8659. "backgroundImage": "url(/img/icon/doc.png)"
  8660. },
  8661. "name": "协同文档",
  8662. "forms": _formdiv,
  8663. "click": function () {
  8664. U.MD.D.I.openApplication(str, obj, info);
  8665. }
  8666. }
  8667. break;
  8668. case "mindNetwork": //好友打开
  8669. aTool = 7;
  8670. _iframe = $$("iframe", {
  8671. "webkitallowfullscreen": "",
  8672. "mozallowfullscreen": "",
  8673. "allowfullscreen": "",
  8674. "frameborder": "no",
  8675. "border": "0",
  8676. "scrolling ": "no",
  8677. "style": {
  8678. "cssText": "border:0; width:100%; height:100%;"
  8679. },
  8680. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8681. })
  8682. _box.appendChild(_iframe);
  8683. _box.appendChild(_jie);
  8684. _formdiv = new U.UF.UI.form(
  8685. "思维网格-" + _username,
  8686. _box, {
  8687. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8688. "style": {
  8689. "width": "90%",
  8690. "height": "90%",
  8691. "overflow": 'hidden'
  8692. },
  8693. "onresize": function () { }
  8694. }, {
  8695. closecallback: function () { }
  8696. }, {
  8697. "style": {
  8698. "height": "36px"
  8699. }
  8700. }).form; //创建窗体
  8701. _taskbar = {
  8702. "id": str + _formdiv.id,
  8703. "style": {
  8704. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8705. },
  8706. "name": "思维网格",
  8707. "forms": _formdiv,
  8708. "click": function () {
  8709. U.MD.D.I.openApplication(str, obj, info);
  8710. }
  8711. }
  8712. break;
  8713. case "courseDesign":
  8714. _iframe = $$("iframe", {
  8715. "webkitallowfullscreen": "",
  8716. "mozallowfullscreen": "",
  8717. "allowfullscreen": "",
  8718. "frameborder": "no",
  8719. "border": "0",
  8720. "scrolling ": "no",
  8721. "style": {
  8722. "cssText": "border:0; width:100%; height:100%;"
  8723. },
  8724. "src": "/course-design-vue"
  8725. })
  8726. _box.appendChild(_iframe);
  8727. _box.appendChild(_jie);
  8728. _formdiv = new U.UF.UI.form(
  8729. "项目设计-" + _username,
  8730. _box, {
  8731. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8732. "style": {
  8733. "width": "90%",
  8734. "height": "90%",
  8735. "overflow": 'hidden'
  8736. },
  8737. "onresize": function () { }
  8738. }, {
  8739. closecallback: function () { }
  8740. }, {
  8741. "style": {
  8742. "height": "36px"
  8743. }
  8744. }).form; //创建窗体
  8745. _taskbar = {
  8746. "id": str + _formdiv.id,
  8747. "style": {
  8748. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8749. },
  8750. "name": "项目设计",
  8751. "forms": _formdiv,
  8752. "click": function () {
  8753. U.MD.D.I.openApplication(str, obj, info);
  8754. }
  8755. }
  8756. break;
  8757. }
  8758. const script1 = document.createElement("script");
  8759. script1.type = "text/javascript";
  8760. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8761. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8762. const script2 = document.createElement("script");
  8763. script2.type = "text/javascript";
  8764. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8765. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8766. const script3 = document.createElement("script");
  8767. script3.type = "text/javascript";
  8768. script3.charset = "UTF-8";
  8769. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8770. const script4 = document.createElement("script");
  8771. script4.type = "text/javascript";
  8772. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8773. script4.src = window.origin + "/js/Common/jietu2E.js";
  8774. if (_iframe) {
  8775. if (str == 'doc') {
  8776. _iframe = _formdiv.querySelector('iframe')
  8777. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8778. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8779. _iframe.contentWindow.document.body.appendChild(script1);
  8780. _iframe.contentWindow.document.body.appendChild(script2);
  8781. // _iframe.contentWindow.document.body.appendChild(script3);
  8782. _iframe.contentWindow.document.body.appendChild(script4);
  8783. })
  8784. if (onloadListener) {
  8785. _iframe.contentDocument.location.reload()
  8786. } else {
  8787. _iframe.contentDocument.location.reload()
  8788. }
  8789. } else if (str == 'courseDesign') {
  8790. U.UF.DL.iframeLoad(_iframe, function () {
  8791. // _iframe.contentWindow.U.MD.O.W.load();
  8792. // _iframe.contentWindow.document.body.appendChild(script1);
  8793. _iframe.contentWindow.document.body.appendChild(script2);
  8794. _iframe.contentWindow.document.body.appendChild(script4);
  8795. })
  8796. } else if (str == 'mind') {
  8797. _iframe = _formdiv.querySelector('iframe')
  8798. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8799. //
  8800. _iframe.contentWindow.document.body.appendChild(script1);
  8801. _iframe.contentWindow.document.body.appendChild(script2);
  8802. _iframe.contentWindow.document.body.appendChild(script4);
  8803. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8804. })
  8805. if (onloadListener) {
  8806. _iframe.contentDocument.location.reload()
  8807. } else {
  8808. _iframe.contentDocument.location.reload()
  8809. }
  8810. } else if (str == 'whiteboard') {
  8811. _iframe = _formdiv.querySelector('iframe')
  8812. let onloadListener = _iframe.onload = () => {
  8813. _iframe.contentWindow.document.body.appendChild(script1);
  8814. _iframe.contentWindow.document.body.appendChild(script2);
  8815. _iframe.contentWindow.document.body.appendChild(script4);
  8816. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8817. };
  8818. // if (onloadListener) {
  8819. // try {
  8820. // _iframe.src += "?cocorobo="+new Date().getTime()
  8821. // _iframe.contentWindow.document.location.reload()
  8822. // } catch (error) {
  8823. // }
  8824. // } else {
  8825. // _iframe.contentDocument.location.reload()
  8826. // }
  8827. } else {
  8828. _iframe.onload = () => {
  8829. _iframe.contentWindow.document.body.appendChild(script1);
  8830. _iframe.contentWindow.document.body.appendChild(script2);
  8831. // _iframe.contentWindow.document.body.appendChild(script3);
  8832. _iframe.contentWindow.document.body.appendChild(script4);
  8833. };
  8834. }
  8835. _jie.onclick = async () => {
  8836. let text = ''
  8837. if (aTool == 1) {
  8838. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8839. } else if (aTool == 6) {
  8840. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8841. } else if (aTool == 3) {
  8842. text = await U.MD.D.I.getEditorContent(_iframe);
  8843. }
  8844. _loading.style.display = 'flex'
  8845. console.log(_loading);
  8846. var _ajs = _iframe.contentWindow.document.createElement("script");
  8847. _ajs.type = "text/javascript";
  8848. _ajs.innerHTML =
  8849. // 'console.log(' + _loading + ');\n' +
  8850. 'var _js = document.createElement("script");\n' +
  8851. '_js.type="text/javascript";\n' +
  8852. '_js.charset="UTF-8";\n' +
  8853. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8854. "_js.onload = function(){\n" +
  8855. ' var a = document.getElementsByTagName("img")\n' +
  8856. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8857. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8858. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8859. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8860. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8861. "beforeUpload_shishi(file," +
  8862. "'" +
  8863. _userid +
  8864. "'" +
  8865. ", " +
  8866. "'" +
  8867. _cid +
  8868. "'" +
  8869. ", " +
  8870. "'" +
  8871. _stage +
  8872. "'" +
  8873. ", " +
  8874. "'" +
  8875. _task +
  8876. "'" +
  8877. ", " +
  8878. "'" +
  8879. _tool +
  8880. "'" +
  8881. ", " +
  8882. "'" +
  8883. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8884. "'" +
  8885. ", " +
  8886. "'" +
  8887. aTool +
  8888. "'" +
  8889. ", " +
  8890. "`" +
  8891. text +
  8892. "`" +
  8893. ")\n" +
  8894. " });\n" +
  8895. "}\n" +
  8896. "document.head.appendChild(_js);\n";
  8897. _iframe.contentWindow.document.head.appendChild(_ajs);
  8898. }
  8899. }
  8900. }
  8901. U.MD.D.I.getEditorContent = function (iframe) {
  8902. return new Promise((resolve, reject) => {
  8903. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8904. console.log(content);
  8905. resolve(content)
  8906. });
  8907. });
  8908. }
  8909. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8910. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8911. // if (res.value[0].length > 0) {
  8912. // // resolve(res.value[0][0].text);
  8913. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8914. // $(fileInput).val('');
  8915. // });
  8916. // }
  8917. // }, [], { "type": "GET", "withCredentials": true });
  8918. var xmlhttp;
  8919. var Mac, Sn, DeviceId
  8920. if (window.XMLHttpRequest) {
  8921. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8922. xmlhttp = new XMLHttpRequest();
  8923. } else {
  8924. // IE6, IE5 浏览器执行代码
  8925. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8926. }
  8927. xmlhttp.onreadystatechange = function () {
  8928. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8929. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8930. // resolve(res.value[0][0].text);
  8931. if (type == '2') {
  8932. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8933. } else if (type == '3') {
  8934. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8935. }
  8936. } else {
  8937. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8938. }
  8939. }
  8940. }
  8941. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8942. xmlhttp.send();
  8943. }
  8944. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8945. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8946. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8947. _userinfo = US.userInfo, //登录用户信息
  8948. _userid = US.userInfo.userid //登录用户id
  8949. let _iframe;
  8950. let _cid = cid,
  8951. _stage = stage,
  8952. _task = task,
  8953. _tool = tool;
  8954. var _jie = $$("div", {
  8955. "style": {
  8956. "position": "absolute",
  8957. "bottom": "50px",
  8958. "right": "50px",
  8959. "zIndex": "9999",
  8960. "backgroundColor": "#2268bc",
  8961. "color": "#fff",
  8962. "padding": "12px 20px",
  8963. "cursor": "pointer",
  8964. "borderRadius": "4px",
  8965. },
  8966. "innerHTML": "确认并提交"
  8967. })
  8968. let aTool = ''
  8969. let _loading = document.createElement('div')
  8970. _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;"
  8971. // _loading.id = "";
  8972. let _lchild = document.createElement('div')
  8973. let _limg = document.createElement('img')
  8974. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8975. _limg.style = "width: 26px;margin-right: 10px;"
  8976. _lchild.appendChild(_limg)
  8977. let _lspan = document.createElement('span')
  8978. _lspan.innerHTML = "上传中..."
  8979. _lchild.appendChild(_lspan)
  8980. _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%);"
  8981. _loading.appendChild(_lchild)
  8982. var _box = $$('div', {
  8983. "style": {
  8984. "position": "relative",
  8985. "width": "100%",
  8986. "height": "100%",
  8987. },
  8988. })
  8989. _box.appendChild(_loading)
  8990. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8991. switch (str) {
  8992. case "whiteboard":
  8993. aTool = 1;
  8994. _iframe = $$("iframe", {
  8995. "frameborder": "no",
  8996. "border": "0",
  8997. "scrolling ": "no",
  8998. "style": {
  8999. "cssText": "border:0;width:100%;height:100%"
  9000. },
  9001. "src": "https://beta.iwb.cocorobo.cn/"
  9002. })
  9003. _box.appendChild(_iframe);
  9004. _box.appendChild(_jie);
  9005. _formdiv = new U.UF.UI.form(
  9006. "电子白板",
  9007. _box, {
  9008. "id": "whiteboards" + cid + stage + task + tool,
  9009. "style": {
  9010. "width": "90%",
  9011. "height": "90%",
  9012. "overflow": 'hidden'
  9013. },
  9014. "onresize": function () { }
  9015. }, {
  9016. closecallback: function () { }
  9017. }, {
  9018. "style": {
  9019. "height": "36px"
  9020. }
  9021. }).form; //创建窗体
  9022. _taskbar = {
  9023. "id": str + _formdiv.id,
  9024. "style": {
  9025. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9026. },
  9027. "name": "电子白板",
  9028. "forms": _formdiv,
  9029. "click": function () {
  9030. U.MD.D.I.openApplication(str, obj, info);
  9031. }
  9032. }
  9033. break;
  9034. case "mind":
  9035. aTool = 3;
  9036. _iframe = $$("iframe", {
  9037. "frameborder": "no",
  9038. "border": "0",
  9039. "scrolling ": "no",
  9040. "style": {
  9041. "cssText": "border:0;width:100%;height:100%"
  9042. },
  9043. "src": "/kityminder-editor/dist/index.html"
  9044. });
  9045. _box.appendChild(_iframe);
  9046. _box.appendChild(_jie);
  9047. _formdiv = new U.UF.UI.form(
  9048. "思维导图",
  9049. _box, { //"/jsmind/example/demo.html"
  9050. "id": "minds" + cid + stage + task + tool,
  9051. "style": {
  9052. "width": "90%",
  9053. "height": "90%",
  9054. "overflow": 'hidden'
  9055. },
  9056. "onresize": function () { }
  9057. }, {
  9058. closecallback: function () { }
  9059. }, {
  9060. "style": {
  9061. "height": "36px"
  9062. }
  9063. }).form; //创建窗体
  9064. _taskbar = {
  9065. "id": str + _formdiv.id,
  9066. "style": {
  9067. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9068. },
  9069. "name": "思维导图",
  9070. "forms": _formdiv,
  9071. "click": function () {
  9072. U.MD.D.I.openApplication(str, obj, info);
  9073. }
  9074. }
  9075. break;
  9076. case "doc":
  9077. aTool = 6;
  9078. _iframe = $$("iframe", {
  9079. "frameborder": "no",
  9080. "border": "0",
  9081. "scrolling ": "no",
  9082. "style": {
  9083. "cssText": "border:0;width:100%;height:100%"
  9084. },
  9085. "src": "/Office/Word/WordEditArea.htm"
  9086. })
  9087. _box.appendChild(_iframe);
  9088. _box.appendChild(_jie);
  9089. _formdiv = new U.UF.UI.form(
  9090. "协同文档",
  9091. _box, {
  9092. "id": "docs" + cid + stage + task + tool,
  9093. "style": {
  9094. "width": "90%",
  9095. "height": "90%",
  9096. "overflow": 'hidden'
  9097. },
  9098. "onresize": function () { }
  9099. }, {
  9100. closecallback: function () { }
  9101. }, {
  9102. "style": {
  9103. "height": "36px"
  9104. }
  9105. }).form; //创建窗体
  9106. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9107. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9108. })
  9109. _taskbar = {
  9110. "id": str + _formdiv.id,
  9111. "style": {
  9112. "backgroundImage": "url(/img/icon/doc.png)"
  9113. },
  9114. "name": "协同文档",
  9115. "forms": _formdiv,
  9116. "click": function () {
  9117. U.MD.D.I.openApplication(str, obj, info);
  9118. }
  9119. }
  9120. break;
  9121. }
  9122. const script1 = document.createElement("script");
  9123. script1.type = "text/javascript";
  9124. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9125. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9126. const script2 = document.createElement("script");
  9127. script2.type = "text/javascript";
  9128. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9129. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9130. const script3 = document.createElement("script");
  9131. script3.type = "text/javascript";
  9132. script3.charset = "UTF-8";
  9133. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9134. const script4 = document.createElement("script");
  9135. script4.type = "text/javascript";
  9136. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9137. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9138. if (_iframe) {
  9139. if (str == 'doc') {
  9140. _iframe = _formdiv.querySelector('iframe')
  9141. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9142. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9143. _iframe.contentWindow.document.body.appendChild(script1);
  9144. _iframe.contentWindow.document.body.appendChild(script2);
  9145. // _iframe.contentWindow.document.body.appendChild(script3);
  9146. _iframe.contentWindow.document.body.appendChild(script4);
  9147. })
  9148. if (onloadListener) {
  9149. _iframe.contentDocument.location.reload()
  9150. } else {
  9151. _iframe.contentDocument.location.reload()
  9152. }
  9153. } else if (str == 'mind') {
  9154. _iframe = _formdiv.querySelector('iframe')
  9155. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9156. _iframe.contentWindow.document.body.appendChild(script1);
  9157. _iframe.contentWindow.document.body.appendChild(script2);
  9158. _iframe.contentWindow.document.body.appendChild(script4);
  9159. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9160. })
  9161. if (onloadListener) {
  9162. _iframe.contentDocument.location.reload()
  9163. } else {
  9164. _iframe.contentDocument.location.reload()
  9165. }
  9166. } else {
  9167. _iframe.onload = () => {
  9168. _iframe.contentWindow.document.body.appendChild(script1);
  9169. _iframe.contentWindow.document.body.appendChild(script2);
  9170. // _iframe.contentWindow.document.body.appendChild(script3);
  9171. _iframe.contentWindow.document.body.appendChild(script4);
  9172. };
  9173. }
  9174. _jie.onclick = async () => {
  9175. let text = ''
  9176. if (aTool == 6) {
  9177. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9178. } else if (aTool == 3) {
  9179. text = await U.MD.D.I.getEditorContent(_iframe);
  9180. }
  9181. _loading.style.display = 'flex'
  9182. console.log(_loading);
  9183. var _ajs = _iframe.contentWindow.document.createElement("script");
  9184. _ajs.type = "text/javascript";
  9185. _ajs.innerHTML =
  9186. // 'console.log(' + _loading + ');\n' +
  9187. 'var _js = document.createElement("script");\n' +
  9188. '_js.type="text/javascript";\n' +
  9189. '_js.charset="UTF-8";\n' +
  9190. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9191. "_js.onload = function(){\n" +
  9192. ' var a = document.getElementsByTagName("img")\n' +
  9193. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9194. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9195. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9196. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9197. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9198. "beforeUpload_shishi(file," +
  9199. "'" +
  9200. _userid +
  9201. "'" +
  9202. ", " +
  9203. "'" +
  9204. _cid +
  9205. "'" +
  9206. ", " +
  9207. "'" +
  9208. _stage +
  9209. "'" +
  9210. ", " +
  9211. "'" +
  9212. _task +
  9213. "'" +
  9214. ", " +
  9215. "'" +
  9216. _tool +
  9217. "'" +
  9218. ", " +
  9219. "'" +
  9220. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9221. "'" +
  9222. ", " +
  9223. "'" +
  9224. aTool +
  9225. "'" +
  9226. ", " +
  9227. "`" +
  9228. text +
  9229. "`" +
  9230. ")\n" +
  9231. " });\n" +
  9232. "}\n" +
  9233. "document.head.appendChild(_js);\n";
  9234. _iframe.contentWindow.document.head.appendChild(_ajs);
  9235. }
  9236. }
  9237. //U.MD.D.I.openClick(str);
  9238. //如果有任务栏信息
  9239. // if (_taskbar) {
  9240. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9241. // }
  9242. }
  9243. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9244. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9245. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9246. _userinfo = US.userInfo, //登录用户信息
  9247. _userid = US.userInfo.userid //登录用户id
  9248. let _iframe;
  9249. let _cid = cid,
  9250. _stage = stage,
  9251. _task = task,
  9252. _tool = tool;
  9253. var _jie = $$("div", {
  9254. "style": {
  9255. "position": "absolute",
  9256. "bottom": "50px",
  9257. "right": "50px",
  9258. "zIndex": "9999",
  9259. "backgroundColor": "#2268bc",
  9260. "color": "#fff",
  9261. "padding": "12px 20px",
  9262. "cursor": "pointer",
  9263. "borderRadius": "4px",
  9264. },
  9265. "innerHTML": "确认并提交"
  9266. })
  9267. let aTool = ''
  9268. let _loading = document.createElement('div')
  9269. _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;"
  9270. // _loading.id = "";
  9271. let _lchild = document.createElement('div')
  9272. let _limg = document.createElement('img')
  9273. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9274. _limg.style = "width: 26px;margin-right: 10px;"
  9275. _lchild.appendChild(_limg)
  9276. let _lspan = document.createElement('span')
  9277. _lspan.innerHTML = "上传中..."
  9278. _lchild.appendChild(_lspan)
  9279. _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%);"
  9280. _loading.appendChild(_lchild)
  9281. var _box = $$('div', {
  9282. "style": {
  9283. "position": "relative",
  9284. "width": "100%",
  9285. "height": "100%",
  9286. },
  9287. })
  9288. _box.appendChild(_loading)
  9289. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9290. switch (str) {
  9291. case "whiteboard":
  9292. aTool = 1;
  9293. _iframe = $$("iframe", {
  9294. "frameborder": "no",
  9295. "border": "0",
  9296. "scrolling ": "no",
  9297. "style": {
  9298. "cssText": "border:0;width:100%;height:100%"
  9299. },
  9300. "src": "https://beta.iwb.cocorobo.cn/"
  9301. })
  9302. _box.appendChild(_iframe);
  9303. _box.appendChild(_jie);
  9304. _formdiv = new U.UF.UI.form(
  9305. "电子白板",
  9306. _box, {
  9307. "id": "whiteboards" + cid + stage + task + tool,
  9308. "style": {
  9309. "width": "90%",
  9310. "height": "90%",
  9311. "overflow": 'hidden'
  9312. },
  9313. "onresize": function () { }
  9314. }, {
  9315. closecallback: function () { }
  9316. }, {
  9317. "style": {
  9318. "height": "36px"
  9319. }
  9320. }).form; //创建窗体
  9321. _taskbar = {
  9322. "id": str + _formdiv.id,
  9323. "style": {
  9324. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9325. },
  9326. "name": "电子白板",
  9327. "forms": _formdiv,
  9328. "click": function () {
  9329. U.MD.D.I.openApplication(str, obj, info);
  9330. }
  9331. }
  9332. break;
  9333. case "mind":
  9334. aTool = 3;
  9335. _iframe = $$("iframe", {
  9336. "frameborder": "no",
  9337. "border": "0",
  9338. "scrolling ": "no",
  9339. "style": {
  9340. "cssText": "border:0;width:100%;height:100%"
  9341. },
  9342. "src": "/kityminder-editor/dist/index.html"
  9343. });
  9344. _box.appendChild(_iframe);
  9345. _box.appendChild(_jie);
  9346. _formdiv = new U.UF.UI.form(
  9347. "思维导图",
  9348. _box, { //"/jsmind/example/demo.html"
  9349. "id": "minds" + cid + stage + task + tool,
  9350. "style": {
  9351. "width": "90%",
  9352. "height": "90%",
  9353. "overflow": 'hidden'
  9354. },
  9355. "onresize": function () { }
  9356. }, {
  9357. closecallback: function () { }
  9358. }, {
  9359. "style": {
  9360. "height": "36px"
  9361. }
  9362. }).form; //创建窗体
  9363. _taskbar = {
  9364. "id": str + _formdiv.id,
  9365. "style": {
  9366. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9367. },
  9368. "name": "思维导图",
  9369. "forms": _formdiv,
  9370. "click": function () {
  9371. U.MD.D.I.openApplication(str, obj, info);
  9372. }
  9373. }
  9374. break;
  9375. case "doc":
  9376. aTool = 6;
  9377. _iframe = $$("iframe", {
  9378. "frameborder": "no",
  9379. "border": "0",
  9380. "scrolling ": "no",
  9381. "style": {
  9382. "cssText": "border:0;width:100%;height:100%"
  9383. },
  9384. "src": "/Office/Word/WordEditArea.htm"
  9385. })
  9386. _box.appendChild(_iframe);
  9387. _box.appendChild(_jie);
  9388. _formdiv = new U.UF.UI.form(
  9389. "协同文档",
  9390. _box, {
  9391. "id": "docs" + cid + stage + task + tool,
  9392. "style": {
  9393. "width": "90%",
  9394. "height": "90%",
  9395. "overflow": 'hidden'
  9396. },
  9397. "onresize": function () { }
  9398. }, {
  9399. closecallback: function () { }
  9400. }, {
  9401. "style": {
  9402. "height": "36px"
  9403. }
  9404. }).form; //创建窗体
  9405. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9406. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9407. })
  9408. _taskbar = {
  9409. "id": str + _formdiv.id,
  9410. "style": {
  9411. "backgroundImage": "url(/img/icon/doc.png)"
  9412. },
  9413. "name": "协同文档",
  9414. "forms": _formdiv,
  9415. "click": function () {
  9416. U.MD.D.I.openApplication(str, obj, info);
  9417. }
  9418. }
  9419. break;
  9420. }
  9421. const script1 = document.createElement("script");
  9422. script1.type = "text/javascript";
  9423. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9424. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9425. const script2 = document.createElement("script");
  9426. script2.type = "text/javascript";
  9427. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9428. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9429. const script3 = document.createElement("script");
  9430. script3.type = "text/javascript";
  9431. script3.charset = "UTF-8";
  9432. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9433. const script4 = document.createElement("script");
  9434. script4.type = "text/javascript";
  9435. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9436. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9437. if (_iframe) {
  9438. if (str == 'doc') {
  9439. _iframe = _formdiv.querySelector('iframe')
  9440. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9441. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9442. _iframe.contentWindow.document.body.appendChild(script1);
  9443. _iframe.contentWindow.document.body.appendChild(script2);
  9444. // _iframe.contentWindow.document.body.appendChild(script3);
  9445. _iframe.contentWindow.document.body.appendChild(script4);
  9446. })
  9447. if (onloadListener) {
  9448. _iframe.contentDocument.location.reload()
  9449. } else {
  9450. _iframe.contentDocument.location.reload()
  9451. }
  9452. } else if (str == 'mind') {
  9453. _iframe = _formdiv.querySelector('iframe')
  9454. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9455. _iframe.contentWindow.document.body.appendChild(script1);
  9456. _iframe.contentWindow.document.body.appendChild(script2);
  9457. _iframe.contentWindow.document.body.appendChild(script4);
  9458. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9459. })
  9460. if (onloadListener) {
  9461. _iframe.contentDocument.location.reload()
  9462. } else {
  9463. _iframe.contentDocument.location.reload()
  9464. }
  9465. } else {
  9466. _iframe.onload = () => {
  9467. _iframe.contentWindow.document.body.appendChild(script1);
  9468. _iframe.contentWindow.document.body.appendChild(script2);
  9469. // _iframe.contentWindow.document.body.appendChild(script3);
  9470. _iframe.contentWindow.document.body.appendChild(script4);
  9471. };
  9472. }
  9473. _jie.onclick = async () => {
  9474. let text = ''
  9475. if (aTool == 6) {
  9476. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9477. } else if (aTool == 3) {
  9478. text = await U.MD.D.I.getEditorContent(_iframe);
  9479. }
  9480. _loading.style.display = 'flex'
  9481. console.log(_loading);
  9482. var _ajs = _iframe.contentWindow.document.createElement("script");
  9483. _ajs.type = "text/javascript";
  9484. _ajs.innerHTML =
  9485. // 'console.log(' + _loading + ');\n' +
  9486. 'var _js = document.createElement("script");\n' +
  9487. '_js.type="text/javascript";\n' +
  9488. '_js.charset="UTF-8";\n' +
  9489. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9490. "_js.onload = function(){\n" +
  9491. ' var a = document.getElementsByTagName("img")\n' +
  9492. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9493. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9494. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9495. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9496. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9497. "beforeUpload_shishi(file," +
  9498. "'" +
  9499. _userid +
  9500. "'" +
  9501. ", " +
  9502. "'" +
  9503. _cid +
  9504. "'" +
  9505. ", " +
  9506. "'" +
  9507. _stage +
  9508. "'" +
  9509. ", " +
  9510. "'" +
  9511. _task +
  9512. "'" +
  9513. ", " +
  9514. "'" +
  9515. _tool +
  9516. "'" +
  9517. ", " +
  9518. "'" +
  9519. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9520. "'" +
  9521. ", " +
  9522. "'" +
  9523. aTool +
  9524. "'" +
  9525. ", " +
  9526. "`" +
  9527. text +
  9528. "`" +
  9529. ")\n" +
  9530. " });\n" +
  9531. "}\n" +
  9532. "document.head.appendChild(_js);\n";
  9533. _iframe.contentWindow.document.head.appendChild(_ajs);
  9534. }
  9535. }
  9536. //U.MD.D.I.openClick(str);
  9537. //如果有任务栏信息
  9538. // if (_taskbar) {
  9539. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9540. // }
  9541. }
  9542. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9543. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9544. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9545. _userinfo = US.userInfo, //登录用户信息
  9546. _userid = US.userInfo.userid //登录用户id
  9547. let _iframe;
  9548. let _cid = cid,
  9549. _stage = stage,
  9550. _task = task,
  9551. _tool = tool;
  9552. var _jie = $$("div", {
  9553. "style": {
  9554. "position": "absolute",
  9555. "bottom": "50px",
  9556. "right": "50px",
  9557. "zIndex": "9999",
  9558. "backgroundColor": "#2268bc",
  9559. "color": "#fff",
  9560. "padding": "12px 20px",
  9561. "cursor": "pointer",
  9562. "borderRadius": "4px",
  9563. },
  9564. "innerHTML": "上传模板"
  9565. })
  9566. let aTool = ''
  9567. let _loading = document.createElement('div')
  9568. _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;"
  9569. // _loading.id = "";
  9570. let _lchild = document.createElement('div')
  9571. let _limg = document.createElement('img')
  9572. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9573. _limg.style = "width: 26px;margin-right: 10px;"
  9574. _lchild.appendChild(_limg)
  9575. let _lspan = document.createElement('span')
  9576. _lspan.innerHTML = "上传中..."
  9577. _lchild.appendChild(_lspan)
  9578. _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%);"
  9579. _loading.appendChild(_lchild)
  9580. var _box = $$('div', {
  9581. "style": {
  9582. "position": "relative",
  9583. "width": "100%",
  9584. "height": "100%",
  9585. },
  9586. })
  9587. _box.appendChild(_loading)
  9588. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9589. switch (str) {
  9590. case "whiteboard":
  9591. aTool = 1;
  9592. _iframe = $$("iframe", {
  9593. "frameborder": "no",
  9594. "border": "0",
  9595. "scrolling ": "no",
  9596. "style": {
  9597. "cssText": "border:0;width:100%;height:100%"
  9598. },
  9599. "src": "https://beta.iwb.cocorobo.cn/"
  9600. })
  9601. _box.appendChild(_iframe);
  9602. _box.appendChild(_jie);
  9603. _formdiv = new U.UF.UI.form(
  9604. "电子白板",
  9605. _box, {
  9606. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9607. "style": {
  9608. "width": "90%",
  9609. "height": "90%",
  9610. "overflow": 'hidden'
  9611. },
  9612. "onresize": function () { }
  9613. }, {
  9614. closecallback: function () { }
  9615. }, {
  9616. "style": {
  9617. "height": "36px"
  9618. }
  9619. }).form; //创建窗体
  9620. _taskbar = {
  9621. "id": str + _formdiv.id,
  9622. "style": {
  9623. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9624. },
  9625. "name": "电子白板",
  9626. "forms": _formdiv,
  9627. "click": function () {
  9628. U.MD.D.I.openApplication(str, obj, info);
  9629. }
  9630. }
  9631. break;
  9632. case "mind":
  9633. aTool = 3;
  9634. _iframe = $$("iframe", {
  9635. "frameborder": "no",
  9636. "border": "0",
  9637. "scrolling ": "no",
  9638. "style": {
  9639. "cssText": "border:0;width:100%;height:100%"
  9640. },
  9641. "src": "/kityminder-editor/dist/index.html"
  9642. });
  9643. _box.appendChild(_iframe);
  9644. _box.appendChild(_jie);
  9645. _formdiv = new U.UF.UI.form(
  9646. "思维导图",
  9647. _box, { //"/jsmind/example/demo.html"
  9648. "id": "minds_Yu" + cid + stage + task + tool,
  9649. "style": {
  9650. "width": "90%",
  9651. "height": "90%",
  9652. "overflow": 'hidden'
  9653. },
  9654. "onresize": function () { }
  9655. }, {
  9656. closecallback: function () { }
  9657. }, {
  9658. "style": {
  9659. "height": "36px"
  9660. }
  9661. }).form; //创建窗体
  9662. _taskbar = {
  9663. "id": str + _formdiv.id,
  9664. "style": {
  9665. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9666. },
  9667. "name": "思维导图",
  9668. "forms": _formdiv,
  9669. "click": function () {
  9670. U.MD.D.I.openApplication(str, obj, info);
  9671. }
  9672. }
  9673. break;
  9674. case "doc":
  9675. aTool = 6;
  9676. _iframe = $$("iframe", {
  9677. "frameborder": "no",
  9678. "border": "0",
  9679. "scrolling ": "no",
  9680. "style": {
  9681. "cssText": "border:0;width:100%;height:100%"
  9682. },
  9683. "src": "/Office/Word/WordEditArea.htm"
  9684. })
  9685. _box.appendChild(_iframe);
  9686. _box.appendChild(_jie);
  9687. _formdiv = new U.UF.UI.form(
  9688. "协同文档",
  9689. _box, {
  9690. "id": "docs_Yu" + cid + stage + task + tool,
  9691. "style": {
  9692. "width": "90%",
  9693. "height": "90%",
  9694. "overflow": 'hidden'
  9695. },
  9696. "onresize": function () { }
  9697. }, {
  9698. closecallback: function () { }
  9699. }, {
  9700. "style": {
  9701. "height": "36px"
  9702. }
  9703. }).form; //创建窗体
  9704. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9705. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9706. })
  9707. _taskbar = {
  9708. "id": str + _formdiv.id,
  9709. "style": {
  9710. "backgroundImage": "url(/img/icon/doc.png)"
  9711. },
  9712. "name": "协同文档",
  9713. "forms": _formdiv,
  9714. "click": function () {
  9715. U.MD.D.I.openApplication(str, obj, info);
  9716. }
  9717. }
  9718. break;
  9719. case "CocoPi":
  9720. aTool = 57;
  9721. _iframe = $$("iframe", {
  9722. "allowpaymentrequest": "allowpaymentrequest",
  9723. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9724. "webkitallowfullscreen": "",
  9725. "mozallowfullscreen": "",
  9726. "frameborder": "no",
  9727. "border": "0",
  9728. "scrolling ": "no",
  9729. "style": {
  9730. "cssText": "border:0;width:100%;height:100%"
  9731. },
  9732. "src": "https://pi.cocorobo.cn/"
  9733. })
  9734. _box.appendChild(_iframe);
  9735. _box.appendChild(_jie);
  9736. _formdiv = new U.UF.UI.form(
  9737. "CocoPi",
  9738. _box, {
  9739. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9740. "style": {
  9741. "width": "90%",
  9742. "height": "90%",
  9743. "overflow": 'hidden'
  9744. },
  9745. "onresize": function () { }
  9746. }, {
  9747. closecallback: function () { }
  9748. }, {
  9749. "style": {
  9750. "height": "36px"
  9751. }
  9752. }).form; //创建窗体
  9753. _taskbar = {
  9754. "id": str + _formdiv.id,
  9755. "style": {
  9756. "backgroundImage": "url(/img/icon/cocopi.png)"
  9757. },
  9758. "name": "CocoPi",
  9759. "forms": _formdiv,
  9760. "click": function () {
  9761. U.MD.D.I.openApplication(str, obj, info);
  9762. }
  9763. }
  9764. break;
  9765. }
  9766. if (_iframe) {
  9767. if (str == 'doc') {
  9768. _iframe = _formdiv.querySelector('iframe')
  9769. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9770. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9771. })
  9772. if (onloadListener) {
  9773. _iframe.contentDocument.location.reload()
  9774. } else {
  9775. _iframe.contentDocument.location.reload()
  9776. }
  9777. } else if (str == 'mind') {
  9778. _iframe = _formdiv.querySelector('iframe')
  9779. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9780. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9781. })
  9782. if (onloadListener) {
  9783. _iframe.contentDocument.location.reload()
  9784. } else {
  9785. _iframe.contentDocument.location.reload()
  9786. }
  9787. } else if (str == 'whiteboard') {
  9788. _iframe = _formdiv.querySelector('iframe')
  9789. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9790. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9791. })
  9792. // if (onloadListener) {
  9793. // try {
  9794. // _iframe.src += "?cocorobo="+new Date().getTime()
  9795. // _iframe.contentWindow.document.location.reload()
  9796. // } catch (error) {
  9797. // }
  9798. // } else {
  9799. // _iframe.contentDocument.location.reload()
  9800. // }
  9801. } else if (str == 'CocoPi') {
  9802. _iframe = _formdiv.querySelector('iframe')
  9803. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9804. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9805. })
  9806. if (onloadListener) {
  9807. _iframe.contentDocument.location.reload()
  9808. } else {
  9809. _iframe.contentDocument.location.reload()
  9810. }
  9811. } else {
  9812. _iframe.onload = () => { };
  9813. }
  9814. _jie.onclick = async () => {
  9815. let text = ''
  9816. let type = '2'
  9817. if (aTool == 1) {
  9818. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9819. type = '3'
  9820. } else if (aTool == 6) {
  9821. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9822. type = '1'
  9823. } else if (aTool == 3) {
  9824. text = await U.MD.D.I.getEditorContent(_iframe);
  9825. type = '2'
  9826. } else if (aTool == 57) {
  9827. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9828. type = '4'
  9829. }
  9830. _loading.style.display = 'flex'
  9831. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9832. }
  9833. }
  9834. //U.MD.D.I.openClick(str);
  9835. //如果有任务栏信息
  9836. // if (_taskbar) {
  9837. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9838. // }
  9839. }
  9840. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9841. var xmlhttp;
  9842. var Mac, Sn, DeviceId
  9843. if (window.XMLHttpRequest) {
  9844. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9845. xmlhttp = new XMLHttpRequest();
  9846. } else {
  9847. // IE6, IE5 浏览器执行代码
  9848. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9849. }
  9850. xmlhttp.onreadystatechange = function () {
  9851. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9852. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9853. // resolve(res.value[0][0].text);
  9854. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9855. }
  9856. }
  9857. }
  9858. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9859. xmlhttp.send();
  9860. }
  9861. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9862. var xmlhttp;
  9863. var Mac, Sn, DeviceId
  9864. if (window.XMLHttpRequest) {
  9865. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9866. xmlhttp = new XMLHttpRequest();
  9867. } else {
  9868. // IE6, IE5 浏览器执行代码
  9869. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9870. }
  9871. xmlhttp.onreadystatechange = function () {
  9872. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9873. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9874. // resolve(res.value[0][0].text);
  9875. if (type == '2') {
  9876. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9877. } else if (type == '3') {
  9878. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9879. } else if (type == '4') {
  9880. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9881. }
  9882. } else {
  9883. if (type == '2') {
  9884. iframe.contentWindow.editor.minder.importData('json', '')
  9885. } else if (type == '3') {
  9886. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9887. } else if (type == '4') {
  9888. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9889. }
  9890. }
  9891. }
  9892. }
  9893. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9894. xmlhttp.send();
  9895. }
  9896. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9897. var xmlhttp;
  9898. var Mac, Sn, DeviceId
  9899. if (window.XMLHttpRequest) {
  9900. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9901. xmlhttp = new XMLHttpRequest();
  9902. } else {
  9903. // IE6, IE5 浏览器执行代码
  9904. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9905. }
  9906. xmlhttp.onreadystatechange = function () {
  9907. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9908. if (xmlhttp.response) {
  9909. // resolve(res.value[0][0].text);
  9910. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9911. // $(fileInput).val('');
  9912. // });
  9913. span.innerHTML = '上传成功'
  9914. setTimeout(() => {
  9915. loading.style.display = 'none'
  9916. }, 1000);
  9917. }
  9918. }
  9919. }
  9920. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9921. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9922. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9923. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9924. // 设置请求头,表示请求体的编码格式
  9925. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9926. // 设置请求体,使用url-encoded格式的数据
  9927. }
  9928. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9929. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9930. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9931. _userinfo = US.userInfo, //登录用户信息
  9932. _userid = US.userInfo.userid //登录用户id
  9933. let _iframe;
  9934. let _cid = cid,
  9935. _stage = stage,
  9936. _task = task,
  9937. _tool = tool;
  9938. var _jie = $$("div", {
  9939. "style": {
  9940. "position": "absolute",
  9941. "bottom": "50px",
  9942. "right": "50px",
  9943. "zIndex": "9999",
  9944. "backgroundColor": "#2268bc",
  9945. "color": "#fff",
  9946. "padding": "12px 20px",
  9947. "cursor": "pointer",
  9948. "borderRadius": "4px",
  9949. },
  9950. "innerHTML": "提交作业"
  9951. })
  9952. let aTool = ''
  9953. let _loading = document.createElement('div')
  9954. _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;"
  9955. // _loading.id = "";
  9956. let _lchild = document.createElement('div')
  9957. let _limg = document.createElement('img')
  9958. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9959. _limg.style = "width: 26px;margin-right: 10px;"
  9960. _lchild.appendChild(_limg)
  9961. let _lspan = document.createElement('span')
  9962. _lspan.innerHTML = "上传中..."
  9963. _lchild.appendChild(_lspan)
  9964. _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%);"
  9965. _loading.appendChild(_lchild)
  9966. var _box = $$('div', {
  9967. "style": {
  9968. "position": "relative",
  9969. "width": "100%",
  9970. "height": "100%",
  9971. },
  9972. })
  9973. _box.appendChild(_loading)
  9974. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9975. switch (str) {
  9976. case "CocoPi":
  9977. aTool = 57;
  9978. _iframe = $$("iframe", {
  9979. "allowpaymentrequest": "allowpaymentrequest",
  9980. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9981. "webkitallowfullscreen": "",
  9982. "mozallowfullscreen": "",
  9983. "frameborder": "no",
  9984. "border": "0",
  9985. "scrolling ": "no",
  9986. "style": {
  9987. "cssText": "border:0;width:100%;height:100%"
  9988. },
  9989. "src": "https://pi.cocorobo.cn/"
  9990. })
  9991. _box.appendChild(_iframe);
  9992. _box.appendChild(_jie);
  9993. _formdiv = new U.UF.UI.form(
  9994. "CocoPi",
  9995. _box, {
  9996. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9997. "style": {
  9998. "width": "90%",
  9999. "height": "90%",
  10000. "overflow": 'hidden'
  10001. },
  10002. "onresize": function () { }
  10003. }, {
  10004. closecallback: function () { }
  10005. }, {
  10006. "style": {
  10007. "height": "36px"
  10008. }
  10009. }).form; //创建窗体
  10010. _taskbar = {
  10011. "id": str + _formdiv.id,
  10012. "style": {
  10013. "backgroundImage": "url(/img/icon/cocopi.png)"
  10014. },
  10015. "name": "CocoPi",
  10016. "forms": _formdiv,
  10017. "click": function () {
  10018. U.MD.D.I.openApplication(str, obj, info);
  10019. }
  10020. }
  10021. break;
  10022. }
  10023. if (_iframe) {
  10024. if (str == 'CocoPi') {
  10025. _iframe = _formdiv.querySelector('iframe')
  10026. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10027. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10028. })
  10029. if (onloadListener) {
  10030. _iframe.contentDocument.location.reload()
  10031. } else {
  10032. _iframe.contentDocument.location.reload()
  10033. }
  10034. }
  10035. _jie.onclick = async () => {
  10036. let text = ''
  10037. if (aTool == 57) {
  10038. text = _iframe.contentWindow.getLoadXmlStr()
  10039. }
  10040. _loading.style.display = 'flex'
  10041. console.log(_loading);
  10042. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10043. _loading.style.display = 'none'
  10044. let _div = document.createElement('div')
  10045. _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;"
  10046. let _inner = document.createElement('div')
  10047. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10048. _inner.innerHTML = "上传成功"
  10049. _div.appendChild(_inner)
  10050. _iframe.contentWindow.window.document.body.appendChild(_div)
  10051. _div.onclick = () => {
  10052. _iframe.contentWindow.window.document.body.removeChild(_div)
  10053. }
  10054. setTimeout(() => {
  10055. _iframe.contentWindow.window.document.body.removeChild(_div)
  10056. }, 1000);
  10057. }, [], { "type": "POST", "withCredentials": true });
  10058. }
  10059. }
  10060. }
  10061. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10062. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10063. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10064. _userid = student.userid, //登录用户id
  10065. _username = student.student //用户名字
  10066. let _iframe;
  10067. let _cid = cid,
  10068. _stage = stage,
  10069. _task = task,
  10070. _tool = tool;
  10071. var _jie = $$("div", {
  10072. "style": {
  10073. "position": "absolute",
  10074. "bottom": "50px",
  10075. "right": "50px",
  10076. "zIndex": "9999",
  10077. "backgroundColor": "#2268bc",
  10078. "color": "#fff",
  10079. "padding": "12px 20px",
  10080. "cursor": "pointer",
  10081. "borderRadius": "4px",
  10082. },
  10083. "innerHTML": "提交作业"
  10084. })
  10085. let aTool = ''
  10086. let _loading = document.createElement('div')
  10087. _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;"
  10088. // _loading.id = "";
  10089. let _lchild = document.createElement('div')
  10090. let _limg = document.createElement('img')
  10091. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10092. _limg.style = "width: 26px;margin-right: 10px;"
  10093. _lchild.appendChild(_limg)
  10094. let _lspan = document.createElement('span')
  10095. _lspan.innerHTML = "上传中..."
  10096. _lchild.appendChild(_lspan)
  10097. _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%);"
  10098. _loading.appendChild(_lchild)
  10099. var _box = $$('div', {
  10100. "style": {
  10101. "position": "relative",
  10102. "width": "100%",
  10103. "height": "100%",
  10104. },
  10105. })
  10106. _box.appendChild(_loading)
  10107. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10108. switch (str) {
  10109. case "CocoPi":
  10110. aTool = 57;
  10111. _iframe = $$("iframe", {
  10112. "allowpaymentrequest": "allowpaymentrequest",
  10113. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10114. "webkitallowfullscreen": "",
  10115. "mozallowfullscreen": "",
  10116. "frameborder": "no",
  10117. "border": "0",
  10118. "scrolling ": "no",
  10119. "style": {
  10120. "cssText": "border:0;width:100%;height:100%"
  10121. },
  10122. "src": "https://pi.cocorobo.cn/"
  10123. })
  10124. _box.appendChild(_iframe);
  10125. _box.appendChild(_jie);
  10126. _formdiv = new U.UF.UI.form(
  10127. "CocoPi-" + _username,
  10128. _box, {
  10129. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10130. "style": {
  10131. "width": "90%",
  10132. "height": "90%",
  10133. "overflow": 'hidden'
  10134. },
  10135. "onresize": function () { }
  10136. }, {
  10137. closecallback: function () { }
  10138. }, {
  10139. "style": {
  10140. "height": "36px"
  10141. }
  10142. }).form; //创建窗体
  10143. _taskbar = {
  10144. "id": str + _formdiv.id,
  10145. "style": {
  10146. "backgroundImage": "url(/img/icon/cocopi.png)"
  10147. },
  10148. "name": "CocoPi",
  10149. "forms": _formdiv,
  10150. "click": function () {
  10151. U.MD.D.I.openApplication(str, obj, info);
  10152. }
  10153. }
  10154. break;
  10155. }
  10156. if (_iframe) {
  10157. if (str == 'CocoPi') {
  10158. _iframe = _formdiv.querySelector('iframe')
  10159. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10160. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10161. })
  10162. if (onloadListener) {
  10163. _iframe.contentDocument.location.reload()
  10164. } else {
  10165. _iframe.contentDocument.location.reload()
  10166. }
  10167. }
  10168. _jie.onclick = async () => {
  10169. let text = ''
  10170. if (aTool == 57) {
  10171. text = _iframe.contentWindow.getLoadXmlStr()
  10172. }
  10173. _loading.style.display = 'flex'
  10174. console.log(_loading);
  10175. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10176. _loading.style.display = 'none'
  10177. let _div = document.createElement('div')
  10178. _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;"
  10179. let _inner = document.createElement('div')
  10180. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10181. _inner.innerHTML = "上传成功"
  10182. _div.appendChild(_inner)
  10183. _iframe.contentWindow.window.document.body.appendChild(_div)
  10184. _div.onclick = () => {
  10185. _iframe.contentWindow.window.document.body.removeChild(_div)
  10186. }
  10187. setTimeout(() => {
  10188. _iframe.contentWindow.window.document.body.removeChild(_div)
  10189. }, 1000);
  10190. }, [], { "type": "POST", "withCredentials": true });
  10191. }
  10192. }
  10193. }
  10194. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10195. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10196. if (res.value[0].length > 0) {
  10197. if (atool == 57) {
  10198. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10199. }
  10200. } else {
  10201. if (atool == 57) {
  10202. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10203. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10204. }
  10205. }
  10206. }, [], { "type": "POST", "withCredentials": true });
  10207. }