DeskTop.js 606 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  928. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  929. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  930. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  931. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  932. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  933. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  935. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  936. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  937. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  938. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  939. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  940. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  941. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  942. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  943. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  944. ];
  945. //未来教育基地
  946. U.MD.D.I.szjkyAdminDeskIcon = [
  947. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  948. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  949. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  950. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  951. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  952. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  953. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  954. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  955. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  956. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  957. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  958. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  959. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  960. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  961. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  962. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  963. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  964. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  965. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  966. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  967. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  968. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  969. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  970. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  971. ];
  972. //未来教育基地
  973. U.MD.D.I.szjkyStudentDeskIcon = [
  974. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  975. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  976. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  977. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  978. ];
  979. //成华教育局
  980. U.MD.D.I.chjyjTeacherDeskIcon = [
  981. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  982. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  983. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  984. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  985. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  986. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  987. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  988. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  989. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  990. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  991. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  992. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  993. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  994. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  995. ];
  996. //成华教育局chjyj
  997. U.MD.D.I.chjyjAdminDeskIcon = [
  998. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  999. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1001. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1002. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1003. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1004. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1005. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1006. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1007. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1008. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1009. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1010. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1011. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1012. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1013. ];
  1014. //成华教育局chjyj
  1015. U.MD.D.I.chjyjStudentDeskIcon = [
  1016. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1017. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. ];
  1021. //tpc
  1022. U.MD.D.I.tpcStudentDeskIcon = [
  1023. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1024. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1025. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1026. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1027. ];
  1028. //tpc
  1029. U.MD.D.I.tpcTeacherDeskIcon = [
  1030. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1031. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1032. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1033. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1034. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1035. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1036. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcAdminDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //THU-IOE
  1049. U.MD.D.I.thuioeTeacherDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1053. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1054. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1055. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1056. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1057. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1058. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1059. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1060. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1061. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1062. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1063. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1064. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1065. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1066. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1067. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1068. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1069. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1070. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1071. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1072. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1073. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1074. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1075. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1076. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1077. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1078. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1079. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1080. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1081. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1082. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1083. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1084. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1085. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1086. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1087. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1089. ];
  1090. //THU-IOE
  1091. U.MD.D.I.thuioeStudentDeskIcon = [
  1092. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1093. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1094. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. ];
  1097. //jccssyl
  1098. U.MD.D.I.jccssylTeacherDeskIcon = [
  1099. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1100. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1101. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1102. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1106. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1107. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1108. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1109. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1110. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1112. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1114. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1115. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1116. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1117. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1118. ];
  1119. //jccssyl
  1120. U.MD.D.I.jccssylStudentDeskIcon = [
  1121. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1122. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1123. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. ];
  1126. //cale
  1127. U.MD.D.I.caleTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1135. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1136. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1137. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1138. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1139. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1140. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1141. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1142. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1144. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1145. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1147. ];
  1148. //cale
  1149. U.MD.D.I.caleStudentDeskIcon = [
  1150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1151. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1152. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. ];
  1155. //lqwmsgzs
  1156. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1157. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1158. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1159. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1160. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1167. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1168. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1169. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1170. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1171. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1172. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1173. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1174. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1175. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1176. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1177. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1178. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1179. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1180. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1181. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1182. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1183. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1184. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1185. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1186. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1187. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1188. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1189. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1190. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1191. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1192. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1193. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1194. ];
  1195. //lqwmsgzs
  1196. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1197. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1198. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1199. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. ];
  1202. //盐田区幼儿园
  1203. U.MD.D.I.ytyTeacherDeskIcon = [
  1204. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1205. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1206. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1207. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1210. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1211. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1212. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1213. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1214. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1215. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1216. ];
  1217. //盐田区幼儿园
  1218. U.MD.D.I.ytyStudentDeskIcon = [
  1219. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. ];
  1223. //scnuai
  1224. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1225. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1226. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1228. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1229. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1230. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1231. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1232. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1235. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1236. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1237. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1238. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1243. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1244. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1245. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1246. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1247. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1248. ];
  1249. //scnuai
  1250. U.MD.D.I.scnuaiAdminDeskIcon = [
  1251. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1252. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1253. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1254. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1255. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1256. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1257. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1258. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1259. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1260. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1261. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1262. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1263. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1264. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1266. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1267. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1268. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1269. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1270. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1271. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1272. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1273. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1274. ];
  1275. //scnuai
  1276. U.MD.D.I.scnuaiStudentDeskIcon = [
  1277. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1278. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1279. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1280. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1281. ];
  1282. //cocobiz
  1283. U.MD.D.I.cocobizteacherDeskIcon = [
  1284. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1285. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1289. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1290. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1291. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1292. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1293. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1294. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1295. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1296. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1297. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1298. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1299. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1300. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1301. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1302. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1303. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1304. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1305. ];
  1306. //cocobiz
  1307. U.MD.D.I.cocobizStudentDeskIcon = [
  1308. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1309. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1310. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1311. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. ];
  1315. //xxzjky
  1316. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1317. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1318. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1319. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1320. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1321. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1322. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1323. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1324. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1325. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1326. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1327. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1328. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1329. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1330. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1331. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1332. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1333. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1334. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1335. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1336. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1337. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1338. ];
  1339. //xxzjky
  1340. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1341. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1344. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. ];
  1348. //nsfx
  1349. U.MD.D.I.nsfxTeacherDeskIcon = [
  1350. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1352. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1353. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1354. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1355. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1356. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1357. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1358. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1359. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1360. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1361. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1362. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1365. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1366. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1367. ];
  1368. //nsfx
  1369. U.MD.D.I.nsfxStudentDeskIcon = [
  1370. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. ];
  1375. //stia
  1376. U.MD.D.I.stiaTeacherDeskIcon = [
  1377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1381. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1386. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1387. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1388. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1389. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1390. ];
  1391. //stia
  1392. U.MD.D.I.stiaStudentDeskIcon = [
  1393. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1394. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1395. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1396. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1397. ];
  1398. //szdjg
  1399. U.MD.D.I.szdjgTeacherDeskIcon = [
  1400. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1401. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. ];
  1403. //szdjg
  1404. U.MD.D.I.szdjgStudentDeskIcon = [
  1405. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1406. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1407. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1409. ];
  1410. //010607
  1411. U.MD.D.I.x010607TeacherDeskIcon = [
  1412. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1413. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1415. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1416. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1417. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1418. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1419. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1420. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1421. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1422. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1423. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1424. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1425. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1426. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1427. ];
  1428. //010607
  1429. U.MD.D.I.x010607StudentDeskIcon = [
  1430. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1431. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1432. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. ];
  1435. //010608
  1436. U.MD.D.I.x010608TeacherDeskIcon = [
  1437. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1438. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1440. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1441. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1442. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1443. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1445. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1447. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1448. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1449. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1450. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608StudentDeskIcon = [
  1454. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1455. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1456. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1457. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. ];
  1459. //xhly
  1460. U.MD.D.I.xhlyTeacherDeskIcon = [
  1461. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1462. ];
  1463. //010608
  1464. U.MD.D.I.xhlyStudentDeskIcon = [
  1465. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. ];
  1467. //北师大
  1468. U.MD.D.I.BSDNSteacherDeskIcon = [
  1469. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1470. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1472. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1473. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1474. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1475. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1476. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1477. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1478. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1479. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1480. ];
  1481. //北师大
  1482. U.MD.D.I.BSDNSstudentDeskIcon = [
  1483. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1484. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1485. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1487. ];
  1488. //CUHK_EDU
  1489. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1490. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1491. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1493. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1494. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1495. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1496. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1500. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1501. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1502. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1503. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1507. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1508. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1509. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. ];
  1512. //#region 桌面初始化a
  1513. /**
  1514. * 初始化桌面的起始函数
  1515. *
  1516. */
  1517. U.MD.D.I.init = function () {
  1518. if ($("#U_MD_D_K")[0]) {
  1519. //初始化桌面图标
  1520. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1521. // var clickUrl = ':12588/requestIp.php';
  1522. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1523. // U.MD.D.I.Ip = data;
  1524. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1525. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1526. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1527. // })
  1528. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1529. // })
  1530. }
  1531. }
  1532. /**
  1533. * 模式切换
  1534. *
  1535. */
  1536. U.MD.D.I.ModeCheck = function (type) {
  1537. if (US.Config.type == type) {
  1538. return
  1539. }
  1540. US.Config.type = type
  1541. $('.U_PBL_Check .active')[0].className = ''
  1542. if (type == 1) {
  1543. $('.U_PBL_Check div')[0].className = 'active'
  1544. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1545. } else {
  1546. $('.U_PBL_Check div')[1].className = 'active'
  1547. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1548. }
  1549. //初始化桌面图标
  1550. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1551. if (type == 2) {
  1552. U.MD.D.I.openApplication("project")
  1553. }
  1554. }
  1555. /**
  1556. * 隐藏任务栏
  1557. *
  1558. * @param {element} 桌面元素
  1559. */
  1560. U.MD.D.I.hiddenTaskbar = function (el) {
  1561. //任务栏位置变小
  1562. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1563. //桌面的位置变大
  1564. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1565. }
  1566. /**
  1567. * 隐藏任务栏
  1568. *
  1569. * @param {element} 桌面元素
  1570. */
  1571. U.MD.D.I.hiddenTaskbarout = function (el) {
  1572. //任务栏位置变小
  1573. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1574. //任务栏位置变化
  1575. U.selectEl(el).css({ "bottom": "-60px" });
  1576. //桌面的位置变大
  1577. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1578. }
  1579. }
  1580. /**
  1581. * 初始化打印桌面图标
  1582. *
  1583. * @param {element} 桌面元素
  1584. */
  1585. U.MD.D.I.initDesktopIcons = function (el, type) {
  1586. var i, //用于循环
  1587. _content, //桌面图标元素
  1588. _iconcontent, //桌面图标元素
  1589. _frag = $$("frag"), //定义一个碎片元素
  1590. _type = US.userInfo.type,
  1591. _org = US.userInfo.org,
  1592. _oid = US.userInfo.organizeid,
  1593. _role = US.userInfo.role,
  1594. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1595. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1596. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1597. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1598. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1599. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1600. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1601. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1602. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1603. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1604. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1605. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1606. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1607. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1608. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1609. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1610. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1611. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1612. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1613. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1614. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1615. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1616. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1617. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1618. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1619. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1620. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1621. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1622. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1623. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1624. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1625. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1626. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1627. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1628. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1629. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1630. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1631. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1632. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1633. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1634. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1635. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1636. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1637. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1638. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1639. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1640. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1641. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1642. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1643. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1644. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1645. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1646. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1647. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1648. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1649. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1650. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1651. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1652. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1653. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1654. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1655. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1656. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1657. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1658. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1659. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1660. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1661. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1662. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1663. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1664. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1665. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1666. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1667. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1668. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1669. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1670. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1671. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1672. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1673. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1674. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1675. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1676. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1677. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1678. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1679. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1680. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1681. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1682. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1683. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1684. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1685. 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'];
  1686. 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'];
  1687. //清楚桌面图标
  1688. el.innerHTML = "";
  1689. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1690. _teacherDesktopIconInfo.push(
  1691. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1692. { "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)" } },
  1693. )
  1694. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1695. }
  1696. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1697. _teacherDesktopIconInfo.push(
  1698. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1699. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1700. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1701. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1702. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1703. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1704. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1705. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1706. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1707. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1708. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1709. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1710. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1711. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1712. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1713. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1714. )
  1715. }
  1716. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1717. _teacherDesktopIconInfo.push(
  1718. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1719. )
  1720. }
  1721. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1722. // _teacherDesktopIconInfo.push(
  1723. // )
  1724. // }
  1725. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1726. _teacherDesktopIconInfo.push(
  1727. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1728. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1729. )
  1730. }
  1731. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1732. _teacherDesktopIconInfo.push(
  1733. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1734. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1735. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1736. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1737. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1738. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1739. )
  1740. _studentDesktopIconInfo.push(
  1741. )
  1742. }
  1743. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1744. _teacherDesktopIconInfo.push(
  1745. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1746. )
  1747. _studentDesktopIconInfo.push(
  1748. )
  1749. }
  1750. //010606 组织
  1751. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1752. _teacherDesktopIconInfo.push(
  1753. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1754. )
  1755. _studentDesktopIconInfo.push(
  1756. )
  1757. }
  1758. //麒麟二中 和 民新小学
  1759. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1760. _teacherDesktopIconInfo.push(
  1761. )
  1762. }
  1763. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1764. _teacherDesktopIconInfo.push(
  1765. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1766. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1767. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1768. )
  1769. }
  1770. //北师大附中(010601)
  1771. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1772. // _teacherDesktopIconInfo.push(
  1773. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1774. // )
  1775. // _studentDesktopIconInfo.push(
  1776. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1777. // )
  1778. // }
  1779. //樂善堂余近卿中學
  1780. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1781. _teacherDesktopIconInfo.push(
  1782. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1783. )
  1784. }
  1785. // Education Artificial Intelligence
  1786. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1787. _teacherDesktopIconInfo.push(
  1788. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1789. )
  1790. }
  1791. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1792. _teacherDesktopIconInfo.push(
  1793. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1794. )
  1795. }
  1796. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1797. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1798. _teacherDesktopIconInfo.push(
  1799. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1800. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1801. )
  1802. }
  1803. //麒麟二中
  1804. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1805. _studentDesktopIconInfo.push(
  1806. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1808. )
  1809. }
  1810. //万科双语
  1811. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1812. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1813. if (el.Name == '项目管理') {
  1814. el.Name = 'PBL项目'
  1815. }
  1816. return el
  1817. })
  1818. _studentDesktopIconInfo3.push(
  1819. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1820. )
  1821. }
  1822. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1823. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1824. return el.Name != '魔盒识字' && el.Name != '24点'
  1825. })
  1826. }
  1827. 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) {
  1828. _studentDesktopIconInfo.push(
  1829. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1830. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1831. )
  1832. }
  1833. //循环创建桌面图标
  1834. if (type == 1) {
  1835. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1836. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1837. _content = $$("div", {
  1838. className: "U_MD_D_KO",
  1839. "onmousedown": U.UF.C.closure(function (obj) {
  1840. //防止拖动图标即打开了桌面应用
  1841. U.MD.D.click(this, obj);
  1842. }, [_studentDesktopIconInfo[i]]),
  1843. "onclick": U.UF.C.closure(function (obj) {
  1844. //防止拖动图标即打开了桌面应用
  1845. U.MD.D.click(this, obj);
  1846. }, [_studentDesktopIconInfo[i]])
  1847. }, _frag); //
  1848. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1849. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1850. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1851. }
  1852. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1853. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1854. _content = $$("div", {
  1855. className: "U_MD_D_KO",
  1856. "onmousedown": U.UF.C.closure(function (obj) {
  1857. //防止拖动图标即打开了桌面应用
  1858. U.MD.D.click(this, obj);
  1859. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1860. "onclick": U.UF.C.closure(function (obj) {
  1861. //防止拖动图标即打开了桌面应用
  1862. U.MD.D.click(this, obj);
  1863. }, [_hkZJLSStudentDeskIconInfo[i]])
  1864. }, _frag); //
  1865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1868. } //
  1869. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1870. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1871. _content = $$("div", {
  1872. className: "U_MD_D_KO",
  1873. "onmousedown": U.UF.C.closure(function (obj) {
  1874. //防止拖动图标即打开了桌面应用
  1875. U.MD.D.click(this, obj);
  1876. }, [_ytyStudentDeskIconInfo[i]]),
  1877. "onclick": U.UF.C.closure(function (obj) {
  1878. //防止拖动图标即打开了桌面应用
  1879. U.MD.D.click(this, obj);
  1880. }, [_ytyStudentDeskIconInfo[i]])
  1881. }, _frag); //
  1882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1885. } //
  1886. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1887. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1888. _content = $$("div", {
  1889. className: "U_MD_D_KO",
  1890. "onmousedown": U.UF.C.closure(function (obj) {
  1891. //防止拖动图标即打开了桌面应用
  1892. U.MD.D.click(this, obj);
  1893. }, [_jccssylStudentDeskIconInfo[i]]),
  1894. "onclick": U.UF.C.closure(function (obj) {
  1895. //防止拖动图标即打开了桌面应用
  1896. U.MD.D.click(this, obj);
  1897. }, [_jccssylStudentDeskIconInfo[i]])
  1898. }, _frag); //
  1899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1902. }
  1903. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1904. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1905. _content = $$("div", {
  1906. className: "U_MD_D_KO",
  1907. "onmousedown": U.UF.C.closure(function (obj) {
  1908. //防止拖动图标即打开了桌面应用
  1909. U.MD.D.click(this, obj);
  1910. }, [_scnuaiStudentDeskIconInfo[i]]),
  1911. "onclick": U.UF.C.closure(function (obj) {
  1912. //防止拖动图标即打开了桌面应用
  1913. U.MD.D.click(this, obj);
  1914. }, [_scnuaiStudentDeskIconInfo[i]])
  1915. }, _frag); //
  1916. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1917. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1918. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1919. }
  1920. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1921. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1922. _content = $$("div", {
  1923. className: "U_MD_D_KO",
  1924. "onmousedown": U.UF.C.closure(function (obj) {
  1925. //防止拖动图标即打开了桌面应用
  1926. U.MD.D.click(this, obj);
  1927. }, [_caleStudentDeskIconInfo[i]]),
  1928. "onclick": U.UF.C.closure(function (obj) {
  1929. //防止拖动图标即打开了桌面应用
  1930. U.MD.D.click(this, obj);
  1931. }, [_caleStudentDeskIconInfo[i]])
  1932. }, _frag); //
  1933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1936. }
  1937. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1938. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1939. _content = $$("div", {
  1940. className: "U_MD_D_KO",
  1941. "onmousedown": U.UF.C.closure(function (obj) {
  1942. //防止拖动图标即打开了桌面应用
  1943. U.MD.D.click(this, obj);
  1944. }, [_thuioeStudentDeskIconInfo[i]]),
  1945. "onclick": U.UF.C.closure(function (obj) {
  1946. //防止拖动图标即打开了桌面应用
  1947. U.MD.D.click(this, obj);
  1948. }, [_thuioeStudentDeskIconInfo[i]])
  1949. }, _frag); //
  1950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1953. }
  1954. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1955. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1956. _content = $$("div", {
  1957. className: "U_MD_D_KO",
  1958. "onmousedown": U.UF.C.closure(function (obj) {
  1959. //防止拖动图标即打开了桌面应用
  1960. U.MD.D.click(this, obj);
  1961. }, [_tpcStudentDeskIconInfo[i]]),
  1962. "onclick": U.UF.C.closure(function (obj) {
  1963. //防止拖动图标即打开了桌面应用
  1964. U.MD.D.click(this, obj);
  1965. }, [_tpcStudentDeskIconInfo[i]])
  1966. }, _frag); //
  1967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1970. } //
  1971. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1972. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1973. _content = $$("div", {
  1974. className: "U_MD_D_KO",
  1975. "onmousedown": U.UF.C.closure(function (obj) {
  1976. //防止拖动图标即打开了桌面应用
  1977. U.MD.D.click(this, obj);
  1978. }, [_chjyjStudentDeskIconInfo[i]]),
  1979. "onclick": U.UF.C.closure(function (obj) {
  1980. //防止拖动图标即打开了桌面应用
  1981. U.MD.D.click(this, obj);
  1982. }, [_chjyjStudentDeskIconInfo[i]])
  1983. }, _frag); //
  1984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1987. }
  1988. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1989. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1990. _content = $$("div", {
  1991. className: "U_MD_D_KO",
  1992. "onmousedown": U.UF.C.closure(function (obj) {
  1993. //防止拖动图标即打开了桌面应用
  1994. U.MD.D.click(this, obj);
  1995. }, [_szjkyStudentDeskIconInfo[i]]),
  1996. "onclick": U.UF.C.closure(function (obj) {
  1997. //防止拖动图标即打开了桌面应用
  1998. U.MD.D.click(this, obj);
  1999. }, [_szjkyStudentDeskIconInfo[i]])
  2000. }, _frag); //
  2001. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2002. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2003. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2004. }
  2005. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2006. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2007. _content = $$("div", {
  2008. className: "U_MD_D_KO",
  2009. "onmousedown": U.UF.C.closure(function (obj) {
  2010. //防止拖动图标即打开了桌面应用
  2011. U.MD.D.click(this, obj);
  2012. }, [_dseiStudentDeskIconInfo[i]]),
  2013. "onclick": U.UF.C.closure(function (obj) {
  2014. //防止拖动图标即打开了桌面应用
  2015. U.MD.D.click(this, obj);
  2016. }, [_dseiStudentDeskIconInfo[i]])
  2017. }, _frag); //
  2018. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2019. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2020. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2021. }
  2022. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2023. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2024. _content = $$("div", {
  2025. className: "U_MD_D_KO",
  2026. "onmousedown": U.UF.C.closure(function (obj) {
  2027. //防止拖动图标即打开了桌面应用
  2028. U.MD.D.click(this, obj);
  2029. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2030. "onclick": U.UF.C.closure(function (obj) {
  2031. //防止拖动图标即打开了桌面应用
  2032. U.MD.D.click(this, obj);
  2033. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2034. }, _frag); //
  2035. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2036. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2037. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2038. }
  2039. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2040. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2041. _content = $$("div", {
  2042. className: "U_MD_D_KO",
  2043. "onmousedown": U.UF.C.closure(function (obj) {
  2044. //防止拖动图标即打开了桌面应用
  2045. U.MD.D.click(this, obj);
  2046. }, [_nsfxStudentDeskIconInfo[i]]),
  2047. "onclick": U.UF.C.closure(function (obj) {
  2048. //防止拖动图标即打开了桌面应用
  2049. U.MD.D.click(this, obj);
  2050. }, [_nsfxStudentDeskIconInfo[i]])
  2051. }, _frag); //
  2052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2055. }
  2056. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2057. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2058. _content = $$("div", {
  2059. className: "U_MD_D_KO",
  2060. "onmousedown": U.UF.C.closure(function (obj) {
  2061. //防止拖动图标即打开了桌面应用
  2062. U.MD.D.click(this, obj);
  2063. }, [_stiaStudentDeskIconInfo[i]]),
  2064. "onclick": U.UF.C.closure(function (obj) {
  2065. //防止拖动图标即打开了桌面应用
  2066. U.MD.D.click(this, obj);
  2067. }, [_stiaStudentDeskIconInfo[i]])
  2068. }, _frag); //
  2069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2072. }
  2073. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2074. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2075. _content = $$("div", {
  2076. className: "U_MD_D_KO",
  2077. "onmousedown": U.UF.C.closure(function (obj) {
  2078. //防止拖动图标即打开了桌面应用
  2079. U.MD.D.click(this, obj);
  2080. }, [_szdjgStudentDeskIconInfo[i]]),
  2081. "onclick": U.UF.C.closure(function (obj) {
  2082. //防止拖动图标即打开了桌面应用
  2083. U.MD.D.click(this, obj);
  2084. }, [_szdjgStudentDeskIconInfo[i]])
  2085. }, _frag); //
  2086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2089. }
  2090. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2091. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2092. _content = $$("div", {
  2093. className: "U_MD_D_KO",
  2094. "onmousedown": U.UF.C.closure(function (obj) {
  2095. //防止拖动图标即打开了桌面应用
  2096. U.MD.D.click(this, obj);
  2097. }, [_x010607StudentDeskIconInfo[i]]),
  2098. "onclick": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_x010607StudentDeskIconInfo[i]])
  2102. }, _frag); //
  2103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2106. }
  2107. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2108. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2109. _content = $$("div", {
  2110. className: "U_MD_D_KO",
  2111. "onmousedown": U.UF.C.closure(function (obj) {
  2112. //防止拖动图标即打开了桌面应用
  2113. U.MD.D.click(this, obj);
  2114. }, [_xhlyStudentDeskIconInfo[i]]),
  2115. "onclick": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_xhlyStudentDeskIconInfo[i]])
  2119. }, _frag); //
  2120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2123. }
  2124. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2125. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2126. _content = $$("div", {
  2127. className: "U_MD_D_KO",
  2128. "onmousedown": U.UF.C.closure(function (obj) {
  2129. //防止拖动图标即打开了桌面应用
  2130. U.MD.D.click(this, obj);
  2131. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2132. "onclick": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2136. }, _frag); //
  2137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2140. }
  2141. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2142. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2143. _content = $$("div", {
  2144. className: "U_MD_D_KO",
  2145. "onmousedown": U.UF.C.closure(function (obj) {
  2146. //防止拖动图标即打开了桌面应用
  2147. U.MD.D.click(this, obj);
  2148. }, [_x010608StudentDeskIconInfo[i]]),
  2149. "onclick": U.UF.C.closure(function (obj) {
  2150. //防止拖动图标即打开了桌面应用
  2151. U.MD.D.click(this, obj);
  2152. }, [_x010608StudentDeskIconInfo[i]])
  2153. }, _frag); //
  2154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2157. }
  2158. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2159. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2160. _content = $$("div", {
  2161. className: "U_MD_D_KO",
  2162. "onmousedown": U.UF.C.closure(function (obj) {
  2163. //防止拖动图标即打开了桌面应用
  2164. U.MD.D.click(this, obj);
  2165. }, [_siesStudentDeskIconInfo[i]]),
  2166. "onclick": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_siesStudentDeskIconInfo[i]])
  2170. }, _frag); //
  2171. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2174. }
  2175. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2176. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2177. _content = $$("div", {
  2178. className: "U_MD_D_KO",
  2179. "onmousedown": U.UF.C.closure(function (obj) {
  2180. //防止拖动图标即打开了桌面应用
  2181. U.MD.D.click(this, obj);
  2182. }, [_guzmsStudentDeskIconInfo[i]]),
  2183. "onclick": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_guzmsStudentDeskIconInfo[i]])
  2187. }, _frag); //
  2188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2191. }
  2192. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2193. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2194. _content = $$("div", {
  2195. className: "U_MD_D_KO",
  2196. "onmousedown": U.UF.C.closure(function (obj) {
  2197. //防止拖动图标即打开了桌面应用
  2198. U.MD.D.click(this, obj);
  2199. }, [_hkStudentDeskIconInfo[i]]),
  2200. "onclick": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_hkStudentDeskIconInfo[i]])
  2204. }, _frag); //
  2205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2208. }
  2209. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2210. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2211. _content = $$("div", {
  2212. className: "U_MD_D_KO",
  2213. "onmousedown": U.UF.C.closure(function (obj) {
  2214. //防止拖动图标即打开了桌面应用
  2215. U.MD.D.click(this, obj);
  2216. }, [_hkaceStudentDeskIconInfo[i]]),
  2217. "onclick": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_hkaceStudentDeskIconInfo[i]])
  2221. }, _frag); //
  2222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2225. }
  2226. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2227. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2228. _content = $$("div", {
  2229. className: "U_MD_D_KO",
  2230. "onmousedown": U.UF.C.closure(function (obj) {
  2231. //防止拖动图标即打开了桌面应用
  2232. U.MD.D.click(this, obj);
  2233. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2234. "onclick": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_BSDNSstudentDesktopIconInfo[i]])
  2238. }, _frag); //
  2239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2242. }
  2243. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2244. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2245. _content = $$("div", {
  2246. className: "U_MD_D_KO",
  2247. "onmousedown": U.UF.C.closure(function (obj) {
  2248. //防止拖动图标即打开了桌面应用
  2249. U.MD.D.click(this, obj);
  2250. }, [_cocobizStudentDeskIconInfo[i]]),
  2251. "onclick": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_cocobizStudentDeskIconInfo[i]])
  2255. }, _frag); //
  2256. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2257. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2258. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2259. }
  2260. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2261. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2262. _content = $$("div", {
  2263. className: "U_MD_D_KO",
  2264. "onmousedown": U.UF.C.closure(function (obj) {
  2265. //防止拖动图标即打开了桌面应用
  2266. U.MD.D.click(this, obj);
  2267. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2268. "onclick": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_xxzjkyStudentDeskIconInfo[i]])
  2272. }, _frag); //
  2273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2276. }
  2277. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2278. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2279. _content = $$("div", {
  2280. className: "U_MD_D_KO",
  2281. "onmousedown": U.UF.C.closure(function (obj) {
  2282. //防止拖动图标即打开了桌面应用
  2283. U.MD.D.click(this, obj);
  2284. }, [_studentDesktopIconInfo[i]]),
  2285. "onclick": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_studentDesktopIconInfo[i]])
  2289. }, _frag); //
  2290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2293. }
  2294. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2295. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2296. _content = $$("div", {
  2297. className: "U_MD_D_KO",
  2298. "onmousedown": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_tcStudentDeskIconInfo[i]]),
  2302. "onclick": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_tcStudentDeskIconInfo[i]])
  2306. }, _frag); //
  2307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2310. }
  2311. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2312. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2313. _content = $$("div", {
  2314. className: "U_MD_D_KO",
  2315. "onmousedown": U.UF.C.closure(function (obj) {
  2316. //防止拖动图标即打开了桌面应用
  2317. U.MD.D.click(this, obj);
  2318. }, [_szscStudentDeskIconInfo[i]]),
  2319. "onclick": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_szscStudentDeskIconInfo[i]])
  2323. }, _frag); //
  2324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2327. }
  2328. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2329. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2330. _content = $$("div", {
  2331. className: "U_MD_D_KO",
  2332. "onmousedown": U.UF.C.closure(function (obj) {
  2333. //防止拖动图标即打开了桌面应用
  2334. U.MD.D.click(this, obj);
  2335. }, [_studentDesktopIconInfo3[i]]),
  2336. "onclick": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_studentDesktopIconInfo3[i]])
  2340. }, _frag); //
  2341. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2342. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2343. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2344. }
  2345. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2346. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2347. _content = $$("div", {
  2348. className: "U_MD_D_KO",
  2349. "onmousedown": U.UF.C.closure(function (obj) {
  2350. //防止拖动图标即打开了桌面应用
  2351. U.MD.D.click(this, obj);
  2352. }, [_studentDesktopIconInfo2[i]]),
  2353. "onclick": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_studentDesktopIconInfo2[i]])
  2357. }, _frag); //
  2358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2361. }
  2362. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2363. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2364. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2365. continue
  2366. }
  2367. _content = $$("div", {
  2368. className: "U_MD_D_KO",
  2369. "onmousedown": U.UF.C.closure(function (obj) {
  2370. //防止拖动图标即打开了桌面应用
  2371. U.MD.D.click(this, obj);
  2372. }, [_wanketeacherDesktopIconInfo[i]]),
  2373. "onclick": U.UF.C.closure(function (obj) {
  2374. //防止拖动图标即打开了桌面应用
  2375. U.MD.D.click(this, obj);
  2376. }, [_wanketeacherDesktopIconInfo[i]])
  2377. }, _frag); //
  2378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2381. }
  2382. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2383. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2384. _content = $$("div", {
  2385. className: "U_MD_D_KO",
  2386. "onmousedown": U.UF.C.closure(function (obj) {
  2387. //防止拖动图标即打开了桌面应用
  2388. U.MD.D.click(this, obj);
  2389. }, [_wankeAdminDesktopIconInfo[i]]),
  2390. "onclick": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_wankeAdminDesktopIconInfo[i]])
  2394. }, _frag); //
  2395. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2396. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2397. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2398. }
  2399. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2400. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2401. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2402. continue
  2403. }
  2404. _content = $$("div", {
  2405. className: "U_MD_D_KO",
  2406. "onmousedown": U.UF.C.closure(function (obj) {
  2407. //防止拖动图标即打开了桌面应用
  2408. U.MD.D.click(this, obj);
  2409. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2410. "onclick": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_scnuaiTeacherDeskIconInfo[i]])
  2414. }, _frag); //
  2415. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2416. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2417. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2418. }
  2419. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2420. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2421. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2422. continue
  2423. }
  2424. _content = $$("div", {
  2425. className: "U_MD_D_KO",
  2426. "onmousedown": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2430. "onclick": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_BSDNSteacherDesktopIconInfo[i]])
  2434. }, _frag); //
  2435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2438. }
  2439. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2440. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2441. _content = $$("div", {
  2442. className: "U_MD_D_KO",
  2443. "onmousedown": U.UF.C.closure(function (obj) {
  2444. //防止拖动图标即打开了桌面应用
  2445. U.MD.D.click(this, obj);
  2446. }, [_scnuaiAdminDeskIconInfo[i]]),
  2447. "onclick": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_scnuaiAdminDeskIconInfo[i]])
  2451. }, _frag); //
  2452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2455. }
  2456. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2457. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2458. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2459. continue
  2460. }
  2461. _content = $$("div", {
  2462. className: "U_MD_D_KO",
  2463. "onmousedown": U.UF.C.closure(function (obj) {
  2464. //防止拖动图标即打开了桌面应用
  2465. U.MD.D.click(this, obj);
  2466. }, [_jccssylTeacherDeskIconInfo[i]]),
  2467. "onclick": U.UF.C.closure(function (obj) {
  2468. //防止拖动图标即打开了桌面应用
  2469. U.MD.D.click(this, obj);
  2470. }, [_jccssylTeacherDeskIconInfo[i]])
  2471. }, _frag); //
  2472. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2473. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2474. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2475. }
  2476. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2477. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2478. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2479. continue
  2480. }
  2481. _content = $$("div", {
  2482. className: "U_MD_D_KO",
  2483. "onmousedown": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_caleTeacherDeskIconInfo[i]]),
  2487. "onclick": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_caleTeacherDeskIconInfo[i]])
  2491. }, _frag); //
  2492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2495. }
  2496. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2497. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2498. _content = $$("div", {
  2499. className: "U_MD_D_KO",
  2500. "onmousedown": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_tpcOrganizerDeskIconInfo[i]]),
  2504. "onclick": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_tpcOrganizerDeskIconInfo[i]])
  2508. }, _frag); //
  2509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2512. }
  2513. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2514. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2515. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2516. continue
  2517. }
  2518. _content = $$("div", {
  2519. className: "U_MD_D_KO",
  2520. "onmousedown": U.UF.C.closure(function (obj) {
  2521. //防止拖动图标即打开了桌面应用
  2522. U.MD.D.click(this, obj);
  2523. }, [_tpcTeacherDeskIconInfo[i]]),
  2524. "onclick": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_tpcTeacherDeskIconInfo[i]])
  2528. }, _frag); //
  2529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2532. }
  2533. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2534. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2535. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2536. continue
  2537. }
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_teacherDesktopIconInfo2[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_teacherDesktopIconInfo2[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2552. }
  2553. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2554. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2555. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2556. continue
  2557. }
  2558. _content = $$("div", {
  2559. className: "U_MD_D_KO",
  2560. "onmousedown": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_thuioeTeacherDeskIconInfo[i]]),
  2564. "onclick": U.UF.C.closure(function (obj) {
  2565. //防止拖动图标即打开了桌面应用
  2566. U.MD.D.click(this, obj);
  2567. }, [_thuioeTeacherDeskIconInfo[i]])
  2568. }, _frag); //
  2569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2572. }
  2573. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2574. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2575. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2576. continue
  2577. }
  2578. _content = $$("div", {
  2579. className: "U_MD_D_KO",
  2580. "onmousedown": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_lotechTeacherDeskIconInfo[i]]),
  2584. "onclick": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_lotechTeacherDeskIconInfo[i]])
  2588. }, _frag); //
  2589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2592. }//
  2593. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2594. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2595. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2596. continue
  2597. }
  2598. _content = $$("div", {
  2599. className: "U_MD_D_KO",
  2600. "onmousedown": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2604. "onclick": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2608. }, _frag); //
  2609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2612. }
  2613. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2614. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2615. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2616. continue
  2617. }
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. "onmousedown": U.UF.C.closure(function (obj) {
  2621. //防止拖动图标即打开了桌面应用
  2622. U.MD.D.click(this, obj);
  2623. }, [_siesTeacherDeskIconInfo[i]]),
  2624. "onclick": U.UF.C.closure(function (obj) {
  2625. //防止拖动图标即打开了桌面应用
  2626. U.MD.D.click(this, obj);
  2627. }, [_siesTeacherDeskIconInfo[i]])
  2628. }, _frag); //
  2629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2632. }
  2633. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2634. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2635. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2636. continue
  2637. }
  2638. _content = $$("div", {
  2639. className: "U_MD_D_KO",
  2640. "onmousedown": U.UF.C.closure(function (obj) {
  2641. //防止拖动图标即打开了桌面应用
  2642. U.MD.D.click(this, obj);
  2643. }, [_guzmsTeacherDeskIconInfo[i]]),
  2644. "onclick": U.UF.C.closure(function (obj) {
  2645. //防止拖动图标即打开了桌面应用
  2646. U.MD.D.click(this, obj);
  2647. }, [_guzmsTeacherDeskIconInfo[i]])
  2648. }, _frag); //
  2649. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2650. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2651. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2652. }
  2653. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2654. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2655. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2656. continue
  2657. }
  2658. _content = $$("div", {
  2659. className: "U_MD_D_KO",
  2660. "onmousedown": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_longhuaTeacherDeskIconInfo[i]]),
  2664. "onclick": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_longhuaTeacherDeskIconInfo[i]])
  2668. }, _frag); //
  2669. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2670. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2671. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2672. }
  2673. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2674. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2675. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2676. continue
  2677. }
  2678. _content = $$("div", {
  2679. className: "U_MD_D_KO",
  2680. "onmousedown": U.UF.C.closure(function (obj) {
  2681. //防止拖动图标即打开了桌面应用
  2682. U.MD.D.click(this, obj);
  2683. }, [_ytyTeacherDeskIconInfo[i]]),
  2684. "onclick": U.UF.C.closure(function (obj) {
  2685. //防止拖动图标即打开了桌面应用
  2686. U.MD.D.click(this, obj);
  2687. }, [_ytyTeacherDeskIconInfo[i]])
  2688. }, _frag); //
  2689. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2690. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2691. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2692. }
  2693. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2694. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2695. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2696. continue
  2697. }
  2698. _content = $$("div", {
  2699. className: "U_MD_D_KO",
  2700. "onmousedown": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2704. "onclick": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_yunhaiTeacherDeskIconInfo[i]])
  2708. }, _frag); //
  2709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2712. } //_hkStudentDeskIconInfo
  2713. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2714. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2715. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2716. continue
  2717. }
  2718. _content = $$("div", {
  2719. className: "U_MD_D_KO",
  2720. "onmousedown": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2724. "onclick": U.UF.C.closure(function (obj) {
  2725. //防止拖动图标即打开了桌面应用
  2726. U.MD.D.click(this, obj);
  2727. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2728. }, _frag); //
  2729. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2730. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2731. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2732. }
  2733. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2734. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2735. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2736. continue
  2737. }
  2738. _content = $$("div", {
  2739. className: "U_MD_D_KO",
  2740. "onmousedown": U.UF.C.closure(function (obj) {
  2741. //防止拖动图标即打开了桌面应用
  2742. U.MD.D.click(this, obj);
  2743. }, [_hkTeacherDeskIconInfo[i]]),
  2744. "onclick": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_hkTeacherDeskIconInfo[i]])
  2748. }, _frag); //
  2749. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2750. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2751. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2752. }
  2753. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2754. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2755. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2756. continue
  2757. }
  2758. _content = $$("div", {
  2759. className: "U_MD_D_KO",
  2760. "onmousedown": U.UF.C.closure(function (obj) {
  2761. //防止拖动图标即打开了桌面应用
  2762. U.MD.D.click(this, obj);
  2763. }, [_hkaceTeacherDeskIconInfo[i]]),
  2764. "onclick": U.UF.C.closure(function (obj) {
  2765. //防止拖动图标即打开了桌面应用
  2766. U.MD.D.click(this, obj);
  2767. }, [_hkaceTeacherDeskIconInfo[i]])
  2768. }, _frag); //
  2769. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2770. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2771. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2772. }
  2773. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2774. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2775. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2776. continue
  2777. }
  2778. _content = $$("div", {
  2779. className: "U_MD_D_KO",
  2780. "onmousedown": U.UF.C.closure(function (obj) {
  2781. //防止拖动图标即打开了桌面应用
  2782. U.MD.D.click(this, obj);
  2783. }, [_cocobizTeacherDeskIconInfo[i]]),
  2784. "onclick": U.UF.C.closure(function (obj) {
  2785. //防止拖动图标即打开了桌面应用
  2786. U.MD.D.click(this, obj);
  2787. }, [_cocobizTeacherDeskIconInfo[i]])
  2788. }, _frag); //
  2789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2792. }
  2793. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2794. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2795. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2796. continue
  2797. }
  2798. _content = $$("div", {
  2799. className: "U_MD_D_KO",
  2800. "onmousedown": U.UF.C.closure(function (obj) {
  2801. //防止拖动图标即打开了桌面应用
  2802. U.MD.D.click(this, obj);
  2803. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2804. "onclick": U.UF.C.closure(function (obj) {
  2805. //防止拖动图标即打开了桌面应用
  2806. U.MD.D.click(this, obj);
  2807. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2808. }, _frag); //
  2809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2812. }
  2813. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2814. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2815. _content = $$("div", {
  2816. className: "U_MD_D_KO",
  2817. "onmousedown": U.UF.C.closure(function (obj) {
  2818. //防止拖动图标即打开了桌面应用
  2819. U.MD.D.click(this, obj);
  2820. }, [_gdjgAdminDeskIconInfo[i]]),
  2821. "onclick": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_gdjgAdminDeskIconInfo[i]])
  2825. }, _frag); //
  2826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2829. }
  2830. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2831. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2832. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2833. continue
  2834. }
  2835. _content = $$("div", {
  2836. className: "U_MD_D_KO",
  2837. "onmousedown": U.UF.C.closure(function (obj) {
  2838. //防止拖动图标即打开了桌面应用
  2839. U.MD.D.click(this, obj);
  2840. }, [_gdjgTeacherDeskIconInfo[i]]),
  2841. "onclick": U.UF.C.closure(function (obj) {
  2842. //防止拖动图标即打开了桌面应用
  2843. U.MD.D.click(this, obj);
  2844. }, [_gdjgTeacherDeskIconInfo[i]])
  2845. }, _frag); //
  2846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2849. }
  2850. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2851. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2852. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2853. continue
  2854. }
  2855. _content = $$("div", {
  2856. className: "U_MD_D_KO",
  2857. "onmousedown": U.UF.C.closure(function (obj) {
  2858. //防止拖动图标即打开了桌面应用
  2859. U.MD.D.click(this, obj);
  2860. }, [_szherTeacherDeskIconInfo[i]]),
  2861. "onclick": U.UF.C.closure(function (obj) {
  2862. //防止拖动图标即打开了桌面应用
  2863. U.MD.D.click(this, obj);
  2864. }, [_szherTeacherDeskIconInfo[i]])
  2865. }, _frag); //
  2866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2869. }
  2870. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2871. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2872. _content = $$("div", {
  2873. className: "U_MD_D_KO",
  2874. "onmousedown": U.UF.C.closure(function (obj) {
  2875. //防止拖动图标即打开了桌面应用
  2876. U.MD.D.click(this, obj);
  2877. }, [_heyuannAdminDeskIconInfo[i]]),
  2878. "onclick": U.UF.C.closure(function (obj) {
  2879. //防止拖动图标即打开了桌面应用
  2880. U.MD.D.click(this, obj);
  2881. }, [_heyuannAdminDeskIconInfo[i]])
  2882. }, _frag); //
  2883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2886. }
  2887. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2888. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2889. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2890. continue
  2891. }
  2892. _content = $$("div", {
  2893. className: "U_MD_D_KO",
  2894. "onmousedown": U.UF.C.closure(function (obj) {
  2895. //防止拖动图标即打开了桌面应用
  2896. U.MD.D.click(this, obj);
  2897. }, [_heyuanTeacherDeskIconInfo[i]]),
  2898. "onclick": U.UF.C.closure(function (obj) {
  2899. //防止拖动图标即打开了桌面应用
  2900. U.MD.D.click(this, obj);
  2901. }, [_heyuanTeacherDeskIconInfo[i]])
  2902. }, _frag); //
  2903. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2904. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2905. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2906. } //
  2907. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2908. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2909. _content = $$("div", {
  2910. className: "U_MD_D_KO",
  2911. "onmousedown": U.UF.C.closure(function (obj) {
  2912. //防止拖动图标即打开了桌面应用
  2913. U.MD.D.click(this, obj);
  2914. }, [_dseiAdminDeskIconInfo[i]]),
  2915. "onclick": U.UF.C.closure(function (obj) {
  2916. //防止拖动图标即打开了桌面应用
  2917. U.MD.D.click(this, obj);
  2918. }, [_dseiAdminDeskIconInfo[i]])
  2919. }, _frag); //
  2920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2923. }
  2924. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2925. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2926. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2927. continue
  2928. }
  2929. _content = $$("div", {
  2930. className: "U_MD_D_KO",
  2931. "onmousedown": U.UF.C.closure(function (obj) {
  2932. //防止拖动图标即打开了桌面应用
  2933. U.MD.D.click(this, obj);
  2934. }, [_dseiTeacherDeskIconInfo[i]]),
  2935. "onclick": U.UF.C.closure(function (obj) {
  2936. //防止拖动图标即打开了桌面应用
  2937. U.MD.D.click(this, obj);
  2938. }, [_dseiTeacherDeskIconInfo[i]])
  2939. }, _frag); //
  2940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2943. } //
  2944. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2945. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2946. _content = $$("div", {
  2947. className: "U_MD_D_KO",
  2948. "onmousedown": U.UF.C.closure(function (obj) {
  2949. //防止拖动图标即打开了桌面应用
  2950. U.MD.D.click(this, obj);
  2951. }, [_chjyjAdminDeskIconInfo[i]]),
  2952. "onclick": U.UF.C.closure(function (obj) {
  2953. //防止拖动图标即打开了桌面应用
  2954. U.MD.D.click(this, obj);
  2955. }, [_chjyjAdminDeskIconInfo[i]])
  2956. }, _frag); //
  2957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2960. }//
  2961. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2962. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2963. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2964. continue
  2965. }
  2966. _content = $$("div", {
  2967. className: "U_MD_D_KO",
  2968. "onmousedown": U.UF.C.closure(function (obj) {
  2969. //防止拖动图标即打开了桌面应用
  2970. U.MD.D.click(this, obj);
  2971. }, [_chjyjTeacherDeskIconInfo[i]]),
  2972. "onclick": U.UF.C.closure(function (obj) {
  2973. //防止拖动图标即打开了桌面应用
  2974. U.MD.D.click(this, obj);
  2975. }, [_chjyjTeacherDeskIconInfo[i]])
  2976. }, _frag); //
  2977. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2978. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2979. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2980. }
  2981. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2982. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2983. _content = $$("div", {
  2984. className: "U_MD_D_KO",
  2985. "onmousedown": U.UF.C.closure(function (obj) {
  2986. //防止拖动图标即打开了桌面应用
  2987. U.MD.D.click(this, obj);
  2988. }, [_szjkyAdminDeskIconInfo[i]]),
  2989. "onclick": U.UF.C.closure(function (obj) {
  2990. //防止拖动图标即打开了桌面应用
  2991. U.MD.D.click(this, obj);
  2992. }, [_szjkyAdminDeskIconInfo[i]])
  2993. }, _frag); //
  2994. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2995. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2996. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2997. }//
  2998. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2999. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3000. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3001. continue
  3002. }
  3003. _content = $$("div", {
  3004. className: "U_MD_D_KO",
  3005. "onmousedown": U.UF.C.closure(function (obj) {
  3006. //防止拖动图标即打开了桌面应用
  3007. U.MD.D.click(this, obj);
  3008. }, [_szjkyTeacherDeskIconInfo[i]]),
  3009. "onclick": U.UF.C.closure(function (obj) {
  3010. //防止拖动图标即打开了桌面应用
  3011. U.MD.D.click(this, obj);
  3012. }, [_szjkyTeacherDeskIconInfo[i]])
  3013. }, _frag); //
  3014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3017. }
  3018. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3019. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3020. _content = $$("div", {
  3021. className: "U_MD_D_KO",
  3022. "onmousedown": U.UF.C.closure(function (obj) {
  3023. //防止拖动图标即打开了桌面应用
  3024. U.MD.D.click(this, obj);
  3025. }, [_futianAdminDeskIconInfo[i]]),
  3026. "onclick": U.UF.C.closure(function (obj) {
  3027. //防止拖动图标即打开了桌面应用
  3028. U.MD.D.click(this, obj);
  3029. }, [_futianAdminDeskIconInfo[i]])
  3030. }, _frag); //
  3031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3034. }
  3035. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3036. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3037. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3038. continue
  3039. }
  3040. _content = $$("div", {
  3041. className: "U_MD_D_KO",
  3042. "onmousedown": U.UF.C.closure(function (obj) {
  3043. //防止拖动图标即打开了桌面应用
  3044. U.MD.D.click(this, obj);
  3045. }, [_futianTeacherDeskIconInfo[i]]),
  3046. "onclick": U.UF.C.closure(function (obj) {
  3047. //防止拖动图标即打开了桌面应用
  3048. U.MD.D.click(this, obj);
  3049. }, [_futianTeacherDeskIconInfo[i]])
  3050. }, _frag); //
  3051. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3052. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3053. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3054. }
  3055. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3056. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3057. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3058. continue
  3059. }
  3060. _content = $$("div", {
  3061. className: "U_MD_D_KO",
  3062. "onmousedown": U.UF.C.closure(function (obj) {
  3063. //防止拖动图标即打开了桌面应用
  3064. U.MD.D.click(this, obj);
  3065. }, [_MingdeTeacherDeskIcon[i]]),
  3066. "onclick": U.UF.C.closure(function (obj) {
  3067. //防止拖动图标即打开了桌面应用
  3068. U.MD.D.click(this, obj);
  3069. }, [_MingdeTeacherDeskIcon[i]])
  3070. }, _frag); //
  3071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3074. }
  3075. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3076. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3077. _content = $$("div", {
  3078. className: "U_MD_D_KO",
  3079. "onmousedown": U.UF.C.closure(function (obj) {
  3080. //防止拖动图标即打开了桌面应用
  3081. U.MD.D.click(this, obj);
  3082. }, [_lhsAdminDesktopIconInfo[i]]),
  3083. "onclick": U.UF.C.closure(function (obj) {
  3084. //防止拖动图标即打开了桌面应用
  3085. U.MD.D.click(this, obj);
  3086. }, [_lhsAdminDesktopIconInfo[i]])
  3087. }, _frag); //
  3088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3091. }
  3092. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3093. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3094. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3095. continue
  3096. }
  3097. _content = $$("div", {
  3098. className: "U_MD_D_KO",
  3099. "onmousedown": U.UF.C.closure(function (obj) {
  3100. //防止拖动图标即打开了桌面应用
  3101. U.MD.D.click(this, obj);
  3102. }, [_lhsteacherDesktopIconInfo[i]]),
  3103. "onclick": U.UF.C.closure(function (obj) {
  3104. //防止拖动图标即打开了桌面应用
  3105. U.MD.D.click(this, obj);
  3106. }, [_lhsteacherDesktopIconInfo[i]])
  3107. }, _frag); //
  3108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3111. }
  3112. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3113. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3114. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3115. continue
  3116. }
  3117. _content = $$("div", {
  3118. className: "U_MD_D_KO",
  3119. "onmousedown": U.UF.C.closure(function (obj) {
  3120. //防止拖动图标即打开了桌面应用
  3121. U.MD.D.click(this, obj);
  3122. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3123. "onclick": U.UF.C.closure(function (obj) {
  3124. //防止拖动图标即打开了桌面应用
  3125. U.MD.D.click(this, obj);
  3126. }, [_zhoujiateacherDesktopIconInfo[i]])
  3127. }, _frag); //
  3128. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3129. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3130. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3131. }
  3132. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3133. for (i = 0; i < _hanDeskIcon.length; i++) {
  3134. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3135. continue
  3136. }
  3137. _content = $$("div", {
  3138. className: "U_MD_D_KO",
  3139. "onmousedown": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_hanDeskIcon[i]]),
  3143. "onclick": U.UF.C.closure(function (obj) {
  3144. //防止拖动图标即打开了桌面应用
  3145. U.MD.D.click(this, obj);
  3146. }, [_hanDeskIcon[i]])
  3147. }, _frag); //
  3148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3151. }
  3152. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3153. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3154. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3155. continue
  3156. }
  3157. _content = $$("div", {
  3158. className: "U_MD_D_KO",
  3159. "onmousedown": U.UF.C.closure(function (obj) {
  3160. //防止拖动图标即打开了桌面应用
  3161. U.MD.D.click(this, obj);
  3162. }, [_orgStemDeskIcon[i]]),
  3163. "onclick": U.UF.C.closure(function (obj) {
  3164. //防止拖动图标即打开了桌面应用
  3165. U.MD.D.click(this, obj);
  3166. }, [_orgStemDeskIcon[i]])
  3167. }, _frag); //
  3168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3171. }
  3172. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3173. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3174. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3175. continue
  3176. }
  3177. _content = $$("div", {
  3178. className: "U_MD_D_KO",
  3179. "onmousedown": U.UF.C.closure(function (obj) {
  3180. //防止拖动图标即打开了桌面应用
  3181. U.MD.D.click(this, obj);
  3182. }, [_szulsDeskIcon[i]]),
  3183. "onclick": U.UF.C.closure(function (obj) {
  3184. //防止拖动图标即打开了桌面应用
  3185. U.MD.D.click(this, obj);
  3186. }, [_szulsDeskIcon[i]])
  3187. }, _frag); //
  3188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3191. }
  3192. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3193. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3194. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3195. continue
  3196. }
  3197. _content = $$("div", {
  3198. className: "U_MD_D_KO",
  3199. "onmousedown": U.UF.C.closure(function (obj) {
  3200. //防止拖动图标即打开了桌面应用
  3201. U.MD.D.click(this, obj);
  3202. }, [_orgDesktopIconInfo[i]]),
  3203. "onclick": U.UF.C.closure(function (obj) {
  3204. //防止拖动图标即打开了桌面应用
  3205. U.MD.D.click(this, obj);
  3206. }, [_orgDesktopIconInfo[i]])
  3207. }, _frag); //
  3208. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3209. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3210. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3211. }
  3212. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3213. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3214. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3215. continue
  3216. }
  3217. _content = $$("div", {
  3218. className: "U_MD_D_KO",
  3219. "onmousedown": U.UF.C.closure(function (obj) {
  3220. //防止拖动图标即打开了桌面应用
  3221. U.MD.D.click(this, obj);
  3222. }, [_schoolDesktopIconInfo[i]]),
  3223. "onclick": U.UF.C.closure(function (obj) {
  3224. //防止拖动图标即打开了桌面应用
  3225. U.MD.D.click(this, obj);
  3226. }, [_schoolDesktopIconInfo[i]])
  3227. }, _frag); //
  3228. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3229. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3230. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3231. }
  3232. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3233. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3234. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3235. continue
  3236. }
  3237. _content = $$("div", {
  3238. className: "U_MD_D_KO",
  3239. "onmousedown": U.UF.C.closure(function (obj) {
  3240. //防止拖动图标即打开了桌面应用
  3241. U.MD.D.click(this, obj);
  3242. }, [_GMteacherDesktopIconInfo[i]]),
  3243. "onclick": U.UF.C.closure(function (obj) {
  3244. //防止拖动图标即打开了桌面应用
  3245. U.MD.D.click(this, obj);
  3246. }, [_GMteacherDesktopIconInfo[i]])
  3247. }, _frag); //
  3248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3251. }
  3252. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3253. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3254. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3255. continue
  3256. }
  3257. _content = $$("div", {
  3258. className: "U_MD_D_KO",
  3259. "onmousedown": U.UF.C.closure(function (obj) {
  3260. //防止拖动图标即打开了桌面应用
  3261. U.MD.D.click(this, obj);
  3262. }, [_SONGteacherDesktopIconInfo[i]]),
  3263. "onclick": U.UF.C.closure(function (obj) {
  3264. //防止拖动图标即打开了桌面应用
  3265. U.MD.D.click(this, obj);
  3266. }, [_SONGteacherDesktopIconInfo[i]])
  3267. }, _frag); //
  3268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3271. }
  3272. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3273. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3274. _content = $$("div", {
  3275. className: "U_MD_D_KO",
  3276. "onmousedown": U.UF.C.closure(function (obj) {
  3277. //防止拖动图标即打开了桌面应用
  3278. U.MD.D.click(this, obj);
  3279. }, [_GMstudentDesktopIconInfo[i]]),
  3280. "onclick": U.UF.C.closure(function (obj) {
  3281. //防止拖动图标即打开了桌面应用
  3282. U.MD.D.click(this, obj);
  3283. }, [_GMstudentDesktopIconInfo[i]])
  3284. }, _frag); //
  3285. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3286. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3287. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3288. }
  3289. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3290. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3291. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3292. continue
  3293. }
  3294. _content = $$("div", {
  3295. className: "U_MD_D_KO",
  3296. "onmousedown": U.UF.C.closure(function (obj) {
  3297. //防止拖动图标即打开了桌面应用
  3298. U.MD.D.click(this, obj);
  3299. }, [_tcTeacherDeskIconInfo[i]]),
  3300. "onclick": U.UF.C.closure(function (obj) {
  3301. //防止拖动图标即打开了桌面应用
  3302. U.MD.D.click(this, obj);
  3303. }, [_tcTeacherDeskIconInfo[i]])
  3304. }, _frag); //
  3305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3308. }
  3309. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3310. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3311. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3312. continue
  3313. }
  3314. _content = $$("div", {
  3315. className: "U_MD_D_KO",
  3316. "onmousedown": U.UF.C.closure(function (obj) {
  3317. //防止拖动图标即打开了桌面应用
  3318. U.MD.D.click(this, obj);
  3319. }, [_tcOrganizerDeskIconInfo[i]]),
  3320. "onclick": U.UF.C.closure(function (obj) {
  3321. //防止拖动图标即打开了桌面应用
  3322. U.MD.D.click(this, obj);
  3323. }, [_tcOrganizerDeskIconInfo[i]])
  3324. }, _frag); //
  3325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3328. }
  3329. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3330. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3331. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3332. continue
  3333. }
  3334. _content = $$("div", {
  3335. className: "U_MD_D_KO",
  3336. "onmousedown": U.UF.C.closure(function (obj) {
  3337. //防止拖动图标即打开了桌面应用
  3338. U.MD.D.click(this, obj);
  3339. }, [_szscTeacherDeskIconInfo[i]]),
  3340. "onclick": U.UF.C.closure(function (obj) {
  3341. //防止拖动图标即打开了桌面应用
  3342. U.MD.D.click(this, obj);
  3343. }, [_szscTeacherDeskIconInfo[i]])
  3344. }, _frag); //
  3345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3348. }
  3349. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3350. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3351. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3352. continue
  3353. }
  3354. _content = $$("div", {
  3355. className: "U_MD_D_KO",
  3356. "onmousedown": U.UF.C.closure(function (obj) {
  3357. //防止拖动图标即打开了桌面应用
  3358. U.MD.D.click(this, obj);
  3359. }, [_szscOrganizerDeskIconInfo[i]]),
  3360. "onclick": U.UF.C.closure(function (obj) {
  3361. //防止拖动图标即打开了桌面应用
  3362. U.MD.D.click(this, obj);
  3363. }, [_szscOrganizerDeskIconInfo[i]])
  3364. }, _frag); //
  3365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3368. }
  3369. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3370. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3371. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3372. continue
  3373. }
  3374. _content = $$("div", {
  3375. className: "U_MD_D_KO",
  3376. "onmousedown": U.UF.C.closure(function (obj) {
  3377. //防止拖动图标即打开了桌面应用
  3378. U.MD.D.click(this, obj);
  3379. }, [_nsfxTeacherDeskIconInfo[i]]),
  3380. "onclick": U.UF.C.closure(function (obj) {
  3381. //防止拖动图标即打开了桌面应用
  3382. U.MD.D.click(this, obj);
  3383. }, [_nsfxTeacherDeskIconInfo[i]])
  3384. }, _frag); //
  3385. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3386. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3387. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3388. }
  3389. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3390. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3391. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3392. continue
  3393. }
  3394. _content = $$("div", {
  3395. className: "U_MD_D_KO",
  3396. "onmousedown": U.UF.C.closure(function (obj) {
  3397. //防止拖动图标即打开了桌面应用
  3398. U.MD.D.click(this, obj);
  3399. }, [_stiaTeacherDeskIconInfo[i]]),
  3400. "onclick": U.UF.C.closure(function (obj) {
  3401. //防止拖动图标即打开了桌面应用
  3402. U.MD.D.click(this, obj);
  3403. }, [_stiaTeacherDeskIconInfo[i]])
  3404. }, _frag); //
  3405. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3406. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3407. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3408. }
  3409. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3410. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3411. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3412. continue
  3413. }
  3414. _content = $$("div", {
  3415. className: "U_MD_D_KO",
  3416. "onmousedown": U.UF.C.closure(function (obj) {
  3417. //防止拖动图标即打开了桌面应用
  3418. U.MD.D.click(this, obj);
  3419. }, [_szdjgTeacherDeskIconInfo[i]]),
  3420. "onclick": U.UF.C.closure(function (obj) {
  3421. //防止拖动图标即打开了桌面应用
  3422. U.MD.D.click(this, obj);
  3423. }, [_szdjgTeacherDeskIconInfo[i]])
  3424. }, _frag); //
  3425. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3426. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3427. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3428. }
  3429. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3430. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3431. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3432. continue
  3433. }
  3434. _content = $$("div", {
  3435. className: "U_MD_D_KO",
  3436. "onmousedown": U.UF.C.closure(function (obj) {
  3437. //防止拖动图标即打开了桌面应用
  3438. U.MD.D.click(this, obj);
  3439. }, [_x010607TeacherDeskIconInfo[i]]),
  3440. "onclick": U.UF.C.closure(function (obj) {
  3441. //防止拖动图标即打开了桌面应用
  3442. U.MD.D.click(this, obj);
  3443. }, [_x010607TeacherDeskIconInfo[i]])
  3444. }, _frag); //
  3445. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3446. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3447. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3448. }
  3449. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3450. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3451. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3452. continue
  3453. }
  3454. _content = $$("div", {
  3455. className: "U_MD_D_KO",
  3456. "onmousedown": U.UF.C.closure(function (obj) {
  3457. //防止拖动图标即打开了桌面应用
  3458. U.MD.D.click(this, obj);
  3459. }, [_xhlyTeacherDeskIconInfo[i]]),
  3460. "onclick": U.UF.C.closure(function (obj) {
  3461. //防止拖动图标即打开了桌面应用
  3462. U.MD.D.click(this, obj);
  3463. }, [_xhlyTeacherDeskIconInfo[i]])
  3464. }, _frag); //
  3465. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3466. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3467. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3468. }
  3469. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3470. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3471. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3472. continue
  3473. }
  3474. _content = $$("div", {
  3475. className: "U_MD_D_KO",
  3476. "onmousedown": U.UF.C.closure(function (obj) {
  3477. //防止拖动图标即打开了桌面应用
  3478. U.MD.D.click(this, obj);
  3479. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3480. "onclick": U.UF.C.closure(function (obj) {
  3481. //防止拖动图标即打开了桌面应用
  3482. U.MD.D.click(this, obj);
  3483. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3484. }, _frag); //
  3485. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3486. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3487. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3488. }
  3489. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3490. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3491. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3492. continue
  3493. }
  3494. _content = $$("div", {
  3495. className: "U_MD_D_KO",
  3496. "onmousedown": U.UF.C.closure(function (obj) {
  3497. //防止拖动图标即打开了桌面应用
  3498. U.MD.D.click(this, obj);
  3499. }, [_x010608TeacherDeskIconInfo[i]]),
  3500. "onclick": U.UF.C.closure(function (obj) {
  3501. //防止拖动图标即打开了桌面应用
  3502. U.MD.D.click(this, obj);
  3503. }, [_x010608TeacherDeskIconInfo[i]])
  3504. }, _frag); //
  3505. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3506. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  3507. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  3508. }
  3509. } else {
  3510. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3511. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3512. continue
  3513. }
  3514. _content = $$("div", {
  3515. className: "U_MD_D_KO",
  3516. "onmousedown": U.UF.C.closure(function (obj) {
  3517. //防止拖动图标即打开了桌面应用
  3518. U.MD.D.click(this, obj);
  3519. }, [_teacherDesktopIconInfo[i]]),
  3520. "onclick": U.UF.C.closure(function (obj) {
  3521. //防止拖动图标即打开了桌面应用
  3522. U.MD.D.click(this, obj);
  3523. }, [_teacherDesktopIconInfo[i]])
  3524. }, _frag); //
  3525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3528. }
  3529. }
  3530. } else {
  3531. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3532. _content = $$("div", {
  3533. className: "U_MD_D_KO",
  3534. style: { 'width': '124px', 'height': '145px' },
  3535. "onmousedown": U.UF.C.closure(function (obj) {
  3536. //防止拖动图标即打开了桌面应用
  3537. U.MD.D.click(this, obj);
  3538. }, [_easyDesktopIconInfo[i]]),
  3539. "onclick": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_easyDesktopIconInfo[i]])
  3543. }, _frag); //
  3544. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3547. }
  3548. }
  3549. if (type == 1) {
  3550. //加载好后给图标定位
  3551. U.MD.D.iconPostion($(_frag).Child());
  3552. } else {
  3553. //加载好后给图标定位
  3554. U.MD.D.iconPostion2($(_frag).Child());
  3555. }
  3556. //把图标加载到页面
  3557. el.appendChild(_frag);
  3558. }
  3559. /**
  3560. * 显示任务栏
  3561. *
  3562. * @param {element} 桌面元素
  3563. */
  3564. U.MD.D.I.displayTaskbar = function (el) {
  3565. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3566. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3567. //任务栏位置变化
  3568. U.selectEl(el).css({ "bottom": "0px" });
  3569. //桌面位置变话
  3570. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3571. }
  3572. }
  3573. //#region 桌面图标拖动逻辑
  3574. /**
  3575. * 桌面排列图标
  3576. *
  3577. * @param {element} 桌面元素
  3578. * @param {object} 上下相距的距离
  3579. * @param {object} 左右相距的距离
  3580. * @return {object} 命名空间
  3581. */
  3582. U.MD.D.iconPostion = function (childs, top, left) {
  3583. var i; //用于循环处理
  3584. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3585. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3586. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3587. for (i = 0; i < childs.length; i++) {
  3588. //如果竖排top超过了范围处理
  3589. if (top + 95 > US.height - 10) {
  3590. //left超过了页面范围处理,则向上重叠打印处理
  3591. if ((left + 180) > US.width) {
  3592. top -= 110;
  3593. left -= 90;
  3594. }
  3595. //没有超过范围,那么left+90添加到下一个竖排打印
  3596. else {
  3597. left += 90;
  3598. top = 15;
  3599. };
  3600. }
  3601. //给图标的位置赋值
  3602. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3603. if (i < childs.length - 1) {
  3604. //页面图标每次向下加95
  3605. top += 95;
  3606. }
  3607. }
  3608. //返回最后调用的图标的位置
  3609. return [top, left];
  3610. }
  3611. /**
  3612. * 桌面排列图标
  3613. *
  3614. * @param {element} 桌面元素
  3615. * @param {object} 上下相距的距离
  3616. * @param {object} 左右相距的距离
  3617. * @return {object} 命名空间
  3618. */
  3619. U.MD.D.iconPostion2 = function (childs, top, left) {
  3620. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3621. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3622. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3623. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3624. for (i = 0; i < childs.length; i++) {
  3625. //如果竖排top超过了范围处理
  3626. if (left + 150 > US.width - 10) {
  3627. //left超过了页面范围处理,则向上重叠打印处理
  3628. if ((top + 180) > US.Height) {
  3629. top -= 150;
  3630. left -= 150;
  3631. }
  3632. //没有超过范围,那么left+90添加到下一个竖排打印
  3633. else {
  3634. top += 150;
  3635. left = ol;
  3636. };
  3637. }
  3638. //给图标的位置赋值
  3639. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3640. if (i < childs.length - 1) {
  3641. //页面图标每次向下加95
  3642. left += 150;
  3643. }
  3644. }
  3645. //返回最后调用的图标的位置
  3646. return [top, left];
  3647. }
  3648. /**
  3649. * 桌面点击事件逻辑
  3650. *
  3651. * @param {element} 桌面元素
  3652. * @param {object} 上下相距的距离
  3653. * @param {object} 左右相距的距离
  3654. * @return {object} 命名空间
  3655. */
  3656. U.MD.D.click = function (el, obj) {
  3657. var _buttonnumber = event.button; //点击的按钮的事件值
  3658. var _userinfo = US.userInfo;
  3659. U.UF.EV.stopBubble(); //阻止向上冒泡
  3660. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3661. if (_buttonnumber < 2) {
  3662. //如果是click事件的处理
  3663. if (event.type == "click") {
  3664. //如果元素在mousemove事件中没有移动则出发click事件
  3665. if (!U.MD.D.I.IsDrag) {
  3666. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3667. U.alert("请先登录您的账号!");
  3668. setTimeout(() => {
  3669. U.MD.U.L.login();
  3670. }, 2000);
  3671. } else {
  3672. //打开应用处理
  3673. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3674. }
  3675. }
  3676. }
  3677. //如果是mouse事件的处理
  3678. else {
  3679. if (US.Config.type == '1') {
  3680. //拖动处理,添加拖动和拖动结束事件
  3681. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3682. }
  3683. }
  3684. U.MD.D.I.IsDrag = false;
  3685. }
  3686. }
  3687. /**
  3688. * 拖动的处理
  3689. *
  3690. */
  3691. U.MD.D.iconMove = function () {
  3692. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3693. U.MD.D.I.IsDrag = true;
  3694. }
  3695. /**
  3696. * 拖动结束后,这里是定位处理,以网状的形式定位
  3697. *
  3698. * @param {element} 拖动的元素
  3699. * @return {object} 命名空间
  3700. */
  3701. U.MD.D.iconUp = function (el) {
  3702. var _top = 15,
  3703. _left = 20,
  3704. _margin,
  3705. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3706. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3707. if (_positioninfo["OT"] > 15) {
  3708. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3709. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3710. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3711. }
  3712. if (_positioninfo["OL"] > 20) {
  3713. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3714. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3715. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3716. }
  3717. //while循环判断么一个重叠的元素
  3718. do {
  3719. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3720. _top = _positioninfo[0] + 95; //得到定位后的top
  3721. _left = _positioninfo[1]; //得到定位后的left
  3722. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3723. }
  3724. /**
  3725. * 判断拖动后图标是否重叠
  3726. *
  3727. * @param {element} 拖动的元素
  3728. * @param {element} 桌面所有的元素
  3729. * @param {array} 拖动元素的位置
  3730. ----------[0] 上 top
  3731. ----------[1] 左 left
  3732. * @return {object} 命名空间
  3733. */
  3734. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3735. //循环所有的图标
  3736. for (var i = 0; i < childs.length; i++) {
  3737. //判断有没有和该图标诶子重叠的元素
  3738. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3739. return childs[i]; //如果有返回
  3740. }
  3741. }
  3742. }
  3743. //#endregion
  3744. //#endregion
  3745. //#region 桌面应用
  3746. /**
  3747. * 打开应用
  3748. *
  3749. * @param {string} 类型
  3750. -----------------Disk 网盘系统
  3751. -----------------PDisk 学习系统网盘
  3752. -----------------Poto 图片
  3753. -----------------Video 视频
  3754. -----------------Music 音乐
  3755. -----------------Word word
  3756. -----------------Excel excel
  3757. -----------------Txt 记事本
  3758. -----------------PB 学习系统
  3759. -----------------Blog 朋友圈系统
  3760. -----------------FTP ftp系统
  3761. -----------------Group 好友群
  3762. -----------------SY 首页系统
  3763. -----------------Set 个人设置
  3764. -----------------XSet 系统设置
  3765. -----------------App 我们所有的app
  3766. -----------------BC c.1473.cn 平台
  3767. -----------------CWeb d.1473.cn 变成平台
  3768. -----------------其他的外联系统 我们统一用iframe打开
  3769. * @param {array} 类型
  3770. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3771. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3772. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3773. 如果第一个参数为其他,则无第二个参数
  3774. * @returns {array}
  3775. */
  3776. window.addEventListener('message', function (e) { // 监听 message 事件
  3777. // alert(e.data.type);
  3778. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3779. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3780. //3是展示全部阶段 2学生 1老师 4专家
  3781. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3782. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3783. //3是展示全部阶段 2学生 1老师 4专家
  3784. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3785. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3786. //3是展示全部阶段 2学生 1老师 4专家
  3787. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3788. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3789. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3790. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3791. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3792. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3793. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3794. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3795. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3796. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3797. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3798. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3799. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3800. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3801. //3是展示全部阶段 2学生 1老师 4专家
  3802. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3803. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3804. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3805. U.MD.D.I.selectUser();
  3806. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3807. var _formel = document.getElementById("study");
  3808. U.UF.F.windowZooming(_formel);
  3809. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3810. var _formel = document.getElementById("studyDetail");
  3811. U.UF.F.windowZooming(_formel);
  3812. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3813. var _formel = document.getElementById("studyDetail");
  3814. U.UF.F.windowZooming(_formel);
  3815. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3816. var _formel = document.getElementById("studentStudy");
  3817. U.UF.F.windowZooming(_formel);
  3818. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3819. // var _formel = document.getElementById("study");
  3820. //如果最大化了,那么就把他缩小
  3821. // if (_formel.ismaximize) {
  3822. // return;
  3823. // }
  3824. // U.UF.F.windowZooming(_formel);
  3825. // U.UF.F.topWindow(_formel);
  3826. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3827. // var _formel = document.getElementById("studyDetail");
  3828. //如果最大化了,那么就把他缩小
  3829. // if (_formel.ismaximize) {
  3830. // return;
  3831. // }
  3832. // U.UF.F.windowZooming(_formel);
  3833. // U.UF.F.topWindow(_formel);
  3834. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3835. // var _formel = document.getElementById("studentStudy");
  3836. // if (_formel.ismaximize) {
  3837. // return;
  3838. // }
  3839. // U.UF.F.windowZooming(_formel);
  3840. // U.UF.F.topWindow(_formel);
  3841. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3842. var _formel = document.getElementById("study");
  3843. // if (_formel.ismaximize) {
  3844. // return;
  3845. // }
  3846. // U.UF.F.windowZooming(_formel);
  3847. U.UF.F.topWindow(_formel);
  3848. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3849. var _formel = document.getElementById("studentIndex");
  3850. U.UF.F.windowZooming(_formel);
  3851. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3852. var _formel = document.getElementById("studyDetailS");
  3853. U.UF.F.windowZooming(_formel);
  3854. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3855. var _formel = document.getElementById("studioIndex");
  3856. U.UF.F.windowZooming(_formel);
  3857. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3858. var _formel = document.getElementById("studyDetailStudio");
  3859. U.UF.F.windowZooming(_formel);
  3860. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3861. var _formel = document.getElementById("studyDetailStudio");
  3862. U.UF.F.windowZooming(_formel);
  3863. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3864. var _formel = document.getElementById("studyDetailNT");
  3865. U.UF.F.windowZooming(_formel);
  3866. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3867. var _formel = document.getElementById("studyDetailS");
  3868. U.UF.F.windowZooming(_formel);
  3869. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3870. var _formel = document.getElementById("studyDetailS");
  3871. U.UF.F.topWindow(_formel);
  3872. } else if (e.data.tools && e.data.tools == "1") {
  3873. // U.MD.D.I.openApplication("whiteboard")
  3874. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3875. } else if (e.data.tools && e.data.tools == "2") {
  3876. U.MD.D.I.openApplication("note")
  3877. } else if (e.data.tools && e.data.tools == "3") {
  3878. // U.MD.D.I.openApplication("mind")
  3879. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3880. } else if (e.data.tools && e.data.tools == "4") {
  3881. U.MD.D.I.openApplication("investigation")
  3882. } else if (e.data.tools && e.data.tools == "6") {
  3883. // U.MD.D.I.openApplication("doc")
  3884. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3885. } else if (e.data.tools && e.data.tools == "7") {
  3886. // U.MD.D.I.openApplication("mindNetwork")
  3887. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3888. } else if (e.data.tools && e.data.tools == "8") {
  3889. U.MD.D.I.openApplication("library")
  3890. } else if (e.data.tools && e.data.tools == "17") {
  3891. U.MD.D.I.openApplication("stuLibrary")
  3892. } else if (e.data.tools && e.data.tools == "18") {
  3893. U.MD.D.I.openApplication("train")
  3894. } else if (e.data.tools && e.data.tools == "21") {
  3895. U.MD.D.I.openApplication("program")
  3896. } else if (e.data.tools && e.data.tools == "22") {
  3897. U.MD.D.I.openApplication("AIprogram2")
  3898. } else if (e.data.tools && e.data.tools == "23") {
  3899. U.MD.D.I.openApplication("Pythonprogram")
  3900. } else if (e.data.tools && e.data.tools == "24") {
  3901. U.MD.D.I.openApplication("AIprogram")
  3902. } else if (e.data.tools && e.data.tools == "25") {
  3903. U.MD.D.I.openApplication("sys")
  3904. } else if (e.data.tools && e.data.tools == "26") {
  3905. // U.MD.D.I.openApplication("courseDesign")
  3906. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3907. } else if (e.data.tools && e.data.tools == "31") {
  3908. U.MD.D.I.openApplication("netWorkPanel")
  3909. } else if (e.data.tools && e.data.tools == "32") {
  3910. U.MD.D.I.openApplication("codeEdit")
  3911. } else if (e.data.tools && e.data.tools == "57") {
  3912. U.MD.D.I.openApplication("CocoPi")
  3913. } else if (e.data.tools && e.data.tools == "63") {
  3914. U.MD.D.I.openApplication("Wood")
  3915. } else if (e.data.tools && e.data.tools == "58") {
  3916. U.MD.D.I.openApplication("car")
  3917. } else if (e.data.tools && e.data.tools == "59") {
  3918. U.MD.D.I.openApplication("lineSearch")
  3919. } else if (e.data.tools && e.data.tools == "60") {
  3920. U.MD.D.I.openApplication("deepLearning")
  3921. } else if (e.data.tools && e.data.tools == "61") {
  3922. U.MD.D.I.openApplication("allHistory")
  3923. } else if (e.data.tools && e.data.tools == "28") {
  3924. U.MD.D.I.openApplication("translation")
  3925. } else if (e.data.tools && e.data.tools == "37") {
  3926. U.MD.D.I.openApplication("mohe")
  3927. } else if (e.data.tools && e.data.tools == "38") {
  3928. U.MD.D.I.openApplication("24game")
  3929. } else if (e.data.tools && e.data.tools == "39") {
  3930. U.MD.D.I.openApplication("GeoGebra")
  3931. } else if (e.data.tools && e.data.tools == "43") {
  3932. U.MD.D.I.openApplication("studentEvaluate")
  3933. } else if (e.data.tools && e.data.tools == "44") {
  3934. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3935. } else if (e.data.tools && e.data.tools == "46") {
  3936. U.MD.D.I.openApplication("project")
  3937. } else if (e.data.tools && e.data.tools == "71") {
  3938. U.MD.D.I.openApplication("aigptCourse")
  3939. } else if (e.data.tools && e.data.tools == "1s") {
  3940. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3941. } else if (e.data.tools && e.data.tools == "3s") {
  3942. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3943. } else if (e.data.tools && e.data.tools == "6s") {
  3944. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3945. } else if (e.data.tools && e.data.tools == "1studio") {
  3946. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3947. } else if (e.data.tools && e.data.tools == "3studio") {
  3948. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3949. } else if (e.data.tools && e.data.tools == "6studio") {
  3950. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3951. } else if (e.data.tools && e.data.tools == "3y") {
  3952. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3953. } else if (e.data.tools && e.data.tools == "1y") {
  3954. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3955. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3956. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3957. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3958. U.MD.D.I.openApplication("AIAnalyse")
  3959. } else if (e.data.tools && e.data.tools == "1teacher") {
  3960. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3961. } else if (e.data.tools && e.data.tools == "3teacher") {
  3962. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3963. } else if (e.data.tools && e.data.tools == "7teacher") {
  3964. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3965. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3966. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3967. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3968. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3969. } else if (e.data.tools && e.data.tools == "1E") {
  3970. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3971. } else if (e.data.tools && e.data.tools == "3E") {
  3972. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3973. } else if (e.data.tools && e.data.tools == "57y") {
  3974. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3975. } else if (e.data.tools && e.data.tools == "57u") {
  3976. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3977. } else if (e.data.tools && e.data.tools == "57teacher") {
  3978. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3979. } else if (e.data.tools && e.data.tools == "64") {
  3980. U.MD.D.I.openApplication("AIChat")
  3981. } else if (e.data.tools && e.data.tools == "66") {
  3982. U.MD.D.I.openApplication("formulaEdi")
  3983. } else if (e.data.tools && e.data.tools == "67") {
  3984. U.MD.D.I.openApplication("molStr")
  3985. } else if (e.data.tools && e.data.tools == "68") {
  3986. U.MD.D.I.openApplication("timeAxis")
  3987. } else if (e.data.tools && e.data.tools == "openCourse") {
  3988. let _data = {
  3989. typea: e.data.typea || '',
  3990. typeb: e.data.typeb || '',
  3991. typed: e.data.typed || '',
  3992. }
  3993. U.MD.D.I.openInApplication("index", _data)
  3994. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3995. let _data = {
  3996. classid: e.data.classid || '',
  3997. }
  3998. U.MD.D.I.openInApplication("dataClass", _data)
  3999. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4000. let _data = {
  4001. cid: e.data.cid || '',
  4002. gid: e.data.gid || '',
  4003. }
  4004. U.MD.D.I.openInApplication("opencCscl", _data)
  4005. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4006. U.MD.D.I.openApplication("dataBoardTest")
  4007. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4008. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4009. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4010. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4011. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4012. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4013. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4014. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4015. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4016. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4017. }else if (e.data.tools && e.data.tools == "loginSz") {
  4018. U.MD.D.I.openInApplication("loginSz")
  4019. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4020. if($('#classroom_observation_board')[0]){
  4021. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4022. }
  4023. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4024. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4025. if($('#classroom_observation_ob_comment')[0]){
  4026. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4027. }
  4028. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4029. }
  4030. });
  4031. U.MD.D.I.selectUser = function () {
  4032. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4033. if (res.value[0].length > 0) {
  4034. US.userInfo = res.value[0][0];
  4035. $(".userName")[0].innerHTML = US.userInfo.username;
  4036. }
  4037. }, [], { "type": "GET", "withCredentials": true });
  4038. }
  4039. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4040. var _userinfo = US.userInfo, //登录用户信息
  4041. _userid = US.userInfo.userid, //登录用户id
  4042. _oid = _userinfo.organizeid,
  4043. _type = US.userInfo.type,
  4044. _org = US.userInfo.org,
  4045. _role = US.userInfo.role,
  4046. _classId = US.userInfo.classid;
  4047. if (_type == 4) {
  4048. tType = 4
  4049. }
  4050. switch (str) {
  4051. case "studyDetailNT": //无终端模式
  4052. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4053. setTimeout(() => {
  4054. U.MD.U.L.login();
  4055. }, 2000);
  4056. } else {
  4057. _formdiv = new U.UF.UI.form(
  4058. "课程详情",
  4059. $$("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 }), {
  4060. "id": "studyDetailNT",
  4061. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4062. "onresize": function () { }
  4063. }, {
  4064. closecallback: function () { }
  4065. }, { "style": { "height": "36px" } }).form; //创建窗体
  4066. _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); } }
  4067. break;
  4068. }
  4069. case "studyDetail":
  4070. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4071. setTimeout(() => {
  4072. U.MD.U.L.login();
  4073. }, 2000);
  4074. } else {
  4075. _formdiv = new U.UF.UI.form(
  4076. "课程详情",
  4077. $$("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 }), {
  4078. "id": "studyDetail",
  4079. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4080. "onresize": function () { }
  4081. }, {
  4082. closecallback: function () { }
  4083. }, { "style": { "height": "36px" } }).form; //创建窗体
  4084. _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); } }
  4085. break;
  4086. }
  4087. case "studyDetailTrain":
  4088. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4089. setTimeout(() => {
  4090. U.MD.U.L.login();
  4091. }, 2000);
  4092. } else {
  4093. _formdiv = new U.UF.UI.form(
  4094. "培训详情",
  4095. $$("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 }), {
  4096. "id": "studyDetailTrain",
  4097. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4098. "onresize": function () { }
  4099. }, {
  4100. closecallback: function () { }
  4101. }, { "style": { "height": "36px" } }).form; //创建窗体
  4102. _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); } }
  4103. break;
  4104. }
  4105. case "studyDetailS":
  4106. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4107. setTimeout(() => {
  4108. U.MD.U.L.login();
  4109. }, 2000);
  4110. } else {
  4111. _formdiv = new U.UF.UI.form(
  4112. "项目详情",
  4113. $$("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 }), {
  4114. "id": "studyDetailS",
  4115. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4116. "onresize": function () { }
  4117. }, {
  4118. closecallback: function () { }
  4119. }, { "style": { "height": "36px" } }).form; //创建窗体
  4120. _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); } }
  4121. break;
  4122. }
  4123. case "studyDetailStudio":
  4124. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4125. setTimeout(() => {
  4126. U.MD.U.L.login();
  4127. }, 2000);
  4128. } else {
  4129. _formdiv = new U.UF.UI.form(
  4130. "工作详情",
  4131. $$("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 }), {
  4132. "id": "studyDetailStudio",
  4133. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4134. "onresize": function () { }
  4135. }, {
  4136. closecallback: function () { }
  4137. }, { "style": { "height": "36px" } }).form; //创建窗体
  4138. _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); } }
  4139. break;
  4140. }
  4141. case "studyDetailS5":
  4142. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4143. setTimeout(() => {
  4144. U.MD.U.L.login();
  4145. }, 2000);
  4146. } else {
  4147. _formdiv = new U.UF.UI.form(
  4148. "项目详情",
  4149. $$("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 }), {
  4150. "id": "studyDetailS",
  4151. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4152. "onresize": function () { }
  4153. }, {
  4154. closecallback: function () { }
  4155. }, { "style": { "height": "36px" } }).form; //创建窗体
  4156. _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); } }
  4157. break;
  4158. }
  4159. case "studyDetailGM":
  4160. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4161. setTimeout(() => {
  4162. U.MD.U.L.login();
  4163. }, 2000);
  4164. } else {
  4165. _formdiv = new U.UF.UI.form(
  4166. "课程详情",
  4167. $$("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 }), {
  4168. "id": "studyDetail",
  4169. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4170. "onresize": function () { }
  4171. }, {
  4172. closecallback: function () { }
  4173. }, { "style": { "height": "36px" } }).form; //创建窗体
  4174. _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); } }
  4175. break;
  4176. }
  4177. case "hanUrl":
  4178. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4179. setTimeout(() => {
  4180. U.MD.U.L.login();
  4181. }, 2000);
  4182. } else {
  4183. _formdiv = new U.UF.UI.form(
  4184. "汉字宫",
  4185. $$("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" }), {
  4186. "id": "hanUrl",
  4187. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4188. "onresize": function () { }
  4189. }, {
  4190. closecallback: function () { }
  4191. }, { "style": { "height": "36px" } }).form; //创建窗体
  4192. _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); } }
  4193. break;
  4194. }
  4195. case "index":
  4196. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4197. setTimeout(() => {
  4198. U.MD.U.L.login();
  4199. }, 2000);
  4200. } else {
  4201. _formdiv = new U.UF.UI.form(
  4202. "课程中心",
  4203. $$("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 }), {
  4204. "id": "study",
  4205. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4206. "onresize": function () { }
  4207. }, {
  4208. closecallback: function () { }
  4209. }, { "style": { "height": "36px" } }).form; //创建窗体
  4210. _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); } }
  4211. break;
  4212. }
  4213. case "dataClass":
  4214. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4215. setTimeout(() => {
  4216. U.MD.U.L.login();
  4217. }, 2000);
  4218. } else {
  4219. _formdiv = new U.UF.UI.form(
  4220. "数据报告",
  4221. $$("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 }), {
  4222. "id": "dataClass",
  4223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4224. "onresize": function () { }
  4225. }, {
  4226. closecallback: function () { }
  4227. }, { "style": { "height": "36px" } }).form; //创建窗体
  4228. _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); } }
  4229. break;
  4230. }
  4231. case "opencCscl":
  4232. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4233. setTimeout(() => {
  4234. U.MD.U.L.login();
  4235. }, 2000);
  4236. } else {
  4237. _formdiv = new U.UF.UI.form(
  4238. "协同建构",
  4239. $$("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 }), {
  4240. "id": "futureClass",
  4241. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4242. "onresize": function () { }
  4243. }, {
  4244. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4245. }, { "style": { "height": "36px" } }).form; //创建窗体
  4246. _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); } }
  4247. break;
  4248. }
  4249. case "openCourseUpdate":
  4250. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4251. setTimeout(() => {
  4252. U.MD.U.L.login();
  4253. }, 2000);
  4254. } else {
  4255. _formdiv = new U.UF.UI.form(
  4256. "课程管理",
  4257. $$("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 }), {
  4258. "id": "openCourseUpdate",
  4259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4260. "onresize": function () { }
  4261. }, {
  4262. closecallback: function () { }
  4263. }, { "style": { "height": "36px" } }).form; //创建窗体
  4264. break;
  4265. }
  4266. case "openNewCourseUpdate":
  4267. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4268. setTimeout(() => {
  4269. U.MD.U.L.login();
  4270. }, 2000);
  4271. } else {
  4272. _formdiv = new U.UF.UI.form(
  4273. "课程管理",
  4274. $$("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 }), {
  4275. "id": "openCourseUpdate",
  4276. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4277. "onresize": function () { }
  4278. }, {
  4279. closecallback: function () { }
  4280. }, { "style": { "height": "36px" } }).form; //创建窗体
  4281. break;
  4282. }
  4283. case "openCourseEUpdate":
  4284. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4285. setTimeout(() => {
  4286. U.MD.U.L.login();
  4287. }, 2000);
  4288. } else {
  4289. _formdiv = new U.UF.UI.form(
  4290. "课程管理",
  4291. $$("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 }), {
  4292. "id": "openCourseUpdate",
  4293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4294. "onresize": function () { }
  4295. }, {
  4296. closecallback: function () { }
  4297. }, { "style": { "height": "36px" } }).form; //创建窗体
  4298. break;
  4299. }
  4300. case "openCourseAiUpdate":
  4301. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4302. setTimeout(() => {
  4303. U.MD.U.L.login();
  4304. }, 2000);
  4305. } else {
  4306. _formdiv = new U.UF.UI.form(
  4307. "课程管理",
  4308. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4309. "id": "openCourseUpdate",
  4310. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4311. "onresize": function () { }
  4312. }, {
  4313. closecallback: function () { }
  4314. }, { "style": { "height": "36px" } }).form; //创建窗体
  4315. break;
  4316. }
  4317. case "openCourseNewUpdate":
  4318. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4319. setTimeout(() => {
  4320. U.MD.U.L.login();
  4321. }, 2000);
  4322. } else {
  4323. _formdiv = new U.UF.UI.form(
  4324. "课程管理",
  4325. $$("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 }), {
  4326. "id": "openCourseUpdate",
  4327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4328. "onresize": function () { }
  4329. }, {
  4330. closecallback: function () { }
  4331. }, { "style": { "height": "36px" } }).form; //创建窗体
  4332. break;
  4333. }
  4334. case "inviteLoginSz":
  4335. _formdiv = new U.UF.UI.form(
  4336. "随机码登录",
  4337. $$("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 }), {
  4338. "id": "loginSz",
  4339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4340. "onresize": function () { }
  4341. }, {
  4342. closecallback: function () { }
  4343. }, { "style": { "height": "36px" } }).form; //创建窗体
  4344. break;
  4345. case "loginSz":
  4346. _formdiv = new U.UF.UI.form(
  4347. "教师登录",
  4348. $$("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" }), {
  4349. "id": "loginSz",
  4350. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4351. "onresize": function () { }
  4352. }, {
  4353. closecallback: function () { }
  4354. }, { "style": { "height": "36px" } }).form; //创建窗体
  4355. break;
  4356. case "teacher":
  4357. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4358. setTimeout(() => {
  4359. U.MD.U.L.login();
  4360. }, 2000);
  4361. } else {
  4362. _formdiv = new U.UF.UI.form(
  4363. "教师管理",
  4364. $$("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 }), {
  4365. "id": "teacher",
  4366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4367. "onresize": function () { }
  4368. }, {
  4369. closecallback: function () { }
  4370. }, { "style": { "height": "36px" } }).form; //创建窗体
  4371. break;
  4372. }
  4373. case "dataBoardSZArea":
  4374. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4375. setTimeout(() => {
  4376. U.MD.U.L.login();
  4377. }, 2000);
  4378. } else {
  4379. _formdiv = new U.UF.UI.form(
  4380. "综合数据看板",
  4381. $$("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 }), {
  4382. "id": "dataBoardSZArea",
  4383. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4384. "onresize": function () { }
  4385. }, {
  4386. closecallback: function () { }
  4387. }, { "style": { "height": "36px" } }).form; //创建窗体
  4388. break;
  4389. }
  4390. case "dataBoardSZCity":
  4391. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4392. setTimeout(() => {
  4393. U.MD.U.L.login();
  4394. }, 2000);
  4395. } else {
  4396. _formdiv = new U.UF.UI.form(
  4397. "综合数据看板",
  4398. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4399. "id": "dataBoardSZCity",
  4400. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4401. "onresize": function () { }
  4402. }, {
  4403. closecallback: function () { }
  4404. }, { "style": { "height": "36px" } }).form; //创建窗体
  4405. break;
  4406. }
  4407. case "classroom_observation_board":
  4408. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4409. setTimeout(() => {
  4410. U.MD.U.L.login();
  4411. }, 2000);
  4412. } else {
  4413. _formdiv = new U.UF.UI.form(
  4414. "课堂观察",
  4415. $$("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 }), {
  4416. "id": "classroom_observation_board",
  4417. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4418. "onresize": function () { }
  4419. }, {
  4420. closecallback: function () { }
  4421. }, { "style": { "height": "36px" } }).form; //创建窗体
  4422. break;
  4423. }
  4424. case "classroom_observation_ob_comment":
  4425. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4426. setTimeout(() => {
  4427. U.MD.U.L.login();
  4428. }, 2000);
  4429. } else {
  4430. _formdiv = new U.UF.UI.form(
  4431. "课堂审核",
  4432. $$("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 }), {
  4433. "id": "classroom_observation_ob_comment",
  4434. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4435. "onresize": function () { }
  4436. }, {
  4437. closecallback: function () { }
  4438. }, { "style": { "height": "36px" } }).form; //创建窗体
  4439. break;
  4440. }
  4441. }
  4442. }
  4443. U.MD.D.I.openApplication = function (str, obj, info) {
  4444. obj = obj || {};
  4445. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4446. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4447. _userinfo = US.userInfo, //登录用户信息
  4448. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4449. _oid = obj.organizeid || _userinfo.organizeid,
  4450. _type = US.userInfo.type,
  4451. _org = US.userInfo.org,
  4452. _role = US.userInfo.role,
  4453. _classId = US.userInfo.classid,
  4454. _TscreenType = 1
  4455. _screenType = 2,
  4456. _SscreenType = 3;
  4457. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4458. return;
  4459. }
  4460. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4461. switch (str) {
  4462. case "studnetProject": //好友打开
  4463. _formdiv = new U.UF.UI.form(
  4464. "我的项目",
  4465. $$("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 }), {
  4466. "id": "studnetProject",
  4467. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4468. "onresize": function () { }
  4469. }, {
  4470. closecallback: function () { }
  4471. }, { "style": { "height": "36px" } }).form; //创建窗体
  4472. _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); } }
  4473. break;
  4474. case "studentEvaluate": //好友打开
  4475. _formdiv = new U.UF.UI.form(
  4476. "我的评价",
  4477. $$("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 }), {
  4478. "id": "studentEvaluate",
  4479. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4480. "onresize": function () { }
  4481. }, {
  4482. closecallback: function () { }
  4483. }, { "style": { "height": "36px" } }).form; //创建窗体
  4484. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4485. break;
  4486. case "my":
  4487. _formdiv = new U.UF.UI.form(
  4488. "我的资料",
  4489. $$("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 }), {
  4490. "id": "my",
  4491. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4492. "onresize": function () { }
  4493. }, {
  4494. closecallback: function () { }
  4495. }, { "style": { "height": "36px" } }).form; //创建窗体
  4496. _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); } }
  4497. break;
  4498. case "program":
  4499. _formdiv = new U.UF.UI.form(
  4500. "编程平台",
  4501. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4502. "id": "program",
  4503. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4504. "onresize": function () { }
  4505. }, {
  4506. closecallback: function () { }
  4507. }, { "style": { "height": "36px" } }).form; //创建窗体
  4508. _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); } }
  4509. break;
  4510. case "library":
  4511. _formdiv = new U.UF.UI.form(
  4512. "素材库",
  4513. $$("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 }), {
  4514. "id": "library",
  4515. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4516. "onresize": function () { }
  4517. }, {
  4518. closecallback: function () { }
  4519. }, { "style": { "height": "36px" } }).form; //创建窗体
  4520. _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); } }
  4521. break;
  4522. case "whiteboard":
  4523. _formdiv = new U.UF.UI.form(
  4524. "电子白板",
  4525. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4526. "id": "whiteboard",
  4527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4528. "onresize": function () { }
  4529. }, {
  4530. closecallback: function () { }
  4531. }, { "style": { "height": "36px" } }).form; //创建窗体
  4532. _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); } }
  4533. break;
  4534. case "investigation":
  4535. _formdiv = new U.UF.UI.form(
  4536. "问卷调查",
  4537. $$("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 }), {
  4538. "id": "investigation",
  4539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4540. "onresize": function () { }
  4541. }, {
  4542. closecallback: function () { }
  4543. }, { "style": { "height": "36px" } }).form; //创建窗体
  4544. _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); } }
  4545. break;
  4546. case "note":
  4547. _formdiv = new U.UF.UI.form(
  4548. "便签分类",
  4549. $$("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 }), {
  4550. "id": "note",
  4551. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4552. "onresize": function () { }
  4553. }, {
  4554. closecallback: function () { }
  4555. }, { "style": { "height": "36px" } }).form; //创建窗体
  4556. _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); } }
  4557. break;
  4558. // case "score":
  4559. // _formdiv = new U.UF.UI.form(
  4560. // "量规评分",
  4561. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4562. // "id": "score",
  4563. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4564. // "onresize": function() {}
  4565. // }, {
  4566. // closecallback: function() {}
  4567. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4568. // _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); } }
  4569. // break;
  4570. case "mind":
  4571. _formdiv = new U.UF.UI.form(
  4572. "思维导图",
  4573. $$("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"
  4574. "id": "mind",
  4575. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4576. "onresize": function () { }
  4577. }, {
  4578. closecallback: function () { }
  4579. }, { "style": { "height": "36px" } }).form; //创建窗体
  4580. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4581. break;
  4582. case "doc":
  4583. // U.MD.D.I.isRoom();
  4584. _formdiv = new U.UF.UI.form(
  4585. "协同文档",
  4586. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4587. "id": "doc",
  4588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4589. "onresize": function () { }
  4590. }, {
  4591. closecallback: function () { }
  4592. }, { "style": { "height": "36px" } }).form; //创建窗体
  4593. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4594. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4595. // })
  4596. _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); } }
  4597. break;
  4598. case "studentStudy":
  4599. _formdiv = new U.UF.UI.form(
  4600. "课程中心",
  4601. $$("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
  4602. "id": "studentStudy",
  4603. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4604. "onresize": function () { }
  4605. }, {
  4606. closecallback: function () { }
  4607. }, { "style": { "height": "36px" } }).form; //创建窗体
  4608. _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); } }
  4609. break;
  4610. case "train": //好友打开
  4611. _formdiv = new U.UF.UI.form(
  4612. "训练平台",
  4613. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4614. "id": "train",
  4615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4616. "onresize": function () { }
  4617. }, {
  4618. closecallback: function () { }
  4619. }, { "style": { "height": "36px" } }).form; //创建窗体
  4620. _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); } }
  4621. break;
  4622. case "mindNetwork": //好友打开
  4623. _formdiv = new U.UF.UI.form(
  4624. "思维网格",
  4625. $$("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 }), {
  4626. "id": "mindNetwork",
  4627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4628. "onresize": function () { }
  4629. }, {
  4630. closecallback: function () { }
  4631. }, { "style": { "height": "36px" } }).form; //创建窗体
  4632. _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); } }
  4633. break;
  4634. case "studentClassRoom": //好友打开
  4635. _formdiv = new U.UF.UI.form(
  4636. "实时课堂",
  4637. $$("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 }), {
  4638. "id": "studentClassRoom",
  4639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4640. "onresize": function () { }
  4641. }, {
  4642. closecallback: function () { }
  4643. }, { "style": { "height": "36px" } }).form; //创建窗体
  4644. _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); } }
  4645. setTimeout(() => {
  4646. U.UF.F.windowZooming(_formdiv)
  4647. }, 0);
  4648. break;
  4649. }
  4650. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4651. switch (str) {
  4652. case "studnetProject": //好友打开
  4653. _formdiv = new U.UF.UI.form(
  4654. "我的项目",
  4655. $$("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 }), {
  4656. "id": "studnetProject",
  4657. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4658. "onresize": function () { }
  4659. }, {
  4660. closecallback: function () { }
  4661. }, { "style": { "height": "36px" } }).form; //创建窗体
  4662. _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); } }
  4663. break;
  4664. case "studentEvaluate": //好友打开
  4665. _formdiv = new U.UF.UI.form(
  4666. "我的评价",
  4667. $$("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 }), {
  4668. "id": "studentEvaluate",
  4669. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4670. "onresize": function () { }
  4671. }, {
  4672. closecallback: function () { }
  4673. }, { "style": { "height": "36px" } }).form; //创建窗体
  4674. _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); } }
  4675. break;
  4676. case "my":
  4677. _formdiv = new U.UF.UI.form(
  4678. "我的资料",
  4679. $$("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 }), {
  4680. "id": "my",
  4681. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4682. "onresize": function () { }
  4683. }, {
  4684. closecallback: function () { }
  4685. }, { "style": { "height": "36px" } }).form; //创建窗体
  4686. _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); } }
  4687. break;
  4688. case "program":
  4689. _formdiv = new U.UF.UI.form(
  4690. "编程平台",
  4691. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4692. "id": "program",
  4693. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4694. "onresize": function () { }
  4695. }, {
  4696. closecallback: function () { }
  4697. }, { "style": { "height": "36px" } }).form; //创建窗体
  4698. _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); } }
  4699. break;
  4700. case "library":
  4701. _formdiv = new U.UF.UI.form(
  4702. "素材库",
  4703. $$("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 }), {
  4704. "id": "library",
  4705. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4706. "onresize": function () { }
  4707. }, {
  4708. closecallback: function () { }
  4709. }, { "style": { "height": "36px" } }).form; //创建窗体
  4710. _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); } }
  4711. break;
  4712. case "whiteboard":
  4713. _formdiv = new U.UF.UI.form(
  4714. "电子白板",
  4715. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4716. "id": "whiteboard",
  4717. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4718. "onresize": function () { }
  4719. }, {
  4720. closecallback: function () { }
  4721. }, { "style": { "height": "36px" } }).form; //创建窗体
  4722. _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); } }
  4723. break;
  4724. case "investigation":
  4725. _formdiv = new U.UF.UI.form(
  4726. "问卷调查",
  4727. $$("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 }), {
  4728. "id": "investigation",
  4729. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4730. "onresize": function () { }
  4731. }, {
  4732. closecallback: function () { }
  4733. }, { "style": { "height": "36px" } }).form; //创建窗体
  4734. _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); } }
  4735. break;
  4736. case "note":
  4737. _formdiv = new U.UF.UI.form(
  4738. "便签分类",
  4739. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  4740. "id": "note",
  4741. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4742. "onresize": function () { }
  4743. }, {
  4744. closecallback: function () { }
  4745. }, { "style": { "height": "36px" } }).form; //创建窗体
  4746. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4747. break;
  4748. // case "score":
  4749. // _formdiv = new U.UF.UI.form(
  4750. // "量规评分",
  4751. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4752. // "id": "score",
  4753. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4754. // "onresize": function() {}
  4755. // }, {
  4756. // closecallback: function() {}
  4757. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4758. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4759. // break;
  4760. case "mind":
  4761. _formdiv = new U.UF.UI.form(
  4762. "思维导图",
  4763. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  4764. "id": "mind",
  4765. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4766. "onresize": function () { }
  4767. }, {
  4768. closecallback: function () { }
  4769. }, { "style": { "height": "36px" } }).form; //创建窗体
  4770. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4771. break;
  4772. case "doc":
  4773. // U.MD.D.I.isRoom();
  4774. _formdiv = new U.UF.UI.form(
  4775. "协同文档",
  4776. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4777. "id": "doc",
  4778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4779. "onresize": function () { }
  4780. }, {
  4781. closecallback: function () { }
  4782. }, { "style": { "height": "36px" } }).form; //创建窗体
  4783. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4784. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4785. })
  4786. _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); } }
  4787. break;
  4788. case "train": //好友打开
  4789. _formdiv = new U.UF.UI.form(
  4790. "训练平台",
  4791. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4792. "id": "train",
  4793. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4794. "onresize": function () { }
  4795. }, {
  4796. closecallback: function () { }
  4797. }, { "style": { "height": "36px" } }).form; //创建窗体
  4798. _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); } }
  4799. break;
  4800. case "studentStudy":
  4801. _formdiv = new U.UF.UI.form(
  4802. "课程中心",
  4803. $$("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
  4804. "id": "studentStudy",
  4805. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4806. "onresize": function () { }
  4807. }, {
  4808. closecallback: function () { }
  4809. }, { "style": { "height": "36px" } }).form; //创建窗体
  4810. _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); } }
  4811. break;
  4812. case "mindNetwork": //好友打开
  4813. _formdiv = new U.UF.UI.form(
  4814. "思维网格",
  4815. $$("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 }), {
  4816. "id": "mindNetwork",
  4817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4818. "onresize": function () { }
  4819. }, {
  4820. closecallback: function () { }
  4821. }, { "style": { "height": "36px" } }).form; //创建窗体
  4822. _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); } }
  4823. break;
  4824. case "studentClassRoom": //好友打开
  4825. _formdiv = new U.UF.UI.form(
  4826. "实时课堂",
  4827. $$("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 }), {
  4828. "id": "studentClassRoom",
  4829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4830. "onresize": function () { }
  4831. }, {
  4832. closecallback: function () { }
  4833. }, { "style": { "height": "36px" } }).form; //创建窗体
  4834. _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); } }
  4835. setTimeout(() => {
  4836. U.UF.F.windowZooming(_formdiv)
  4837. }, 0);
  4838. break;
  4839. }
  4840. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4841. //选择应用处理
  4842. switch (str) {
  4843. case "project": //好友打开
  4844. _formdiv = new U.UF.UI.form(
  4845. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4846. $$("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 }), {
  4847. "id": "project",
  4848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4849. "onresize": function () { }
  4850. }, {
  4851. closecallback: function () { }
  4852. }, { "style": { "height": "36px" } }).form; //创建窗体
  4853. _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); } }
  4854. break;
  4855. case "student":
  4856. _formdiv = new U.UF.UI.form(
  4857. "学生管理",
  4858. $$("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 }), {
  4859. "id": "student",
  4860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4861. "onresize": function () { }
  4862. }, {
  4863. closecallback: function () { }
  4864. }, { "style": { "height": "36px" } }).form; //创建窗体
  4865. _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); } }
  4866. break;
  4867. case "evaluate":
  4868. _formdiv = new U.UF.UI.form(
  4869. "学生评价",
  4870. $$("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 }), {
  4871. "id": "evaluate",
  4872. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4873. "onresize": function () { }
  4874. }, {
  4875. closecallback: function () { }
  4876. }, { "style": { "height": "36px" } }).form; //创建窗体
  4877. _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); } }
  4878. break;
  4879. case "sys":
  4880. _formdiv = new U.UF.UI.form(
  4881. "目标管理",
  4882. $$("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 }), {
  4883. "id": "sys",
  4884. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4885. "onresize": function () { }
  4886. }, {
  4887. closecallback: function () { }
  4888. }, { "style": { "height": "36px" } }).form; //创建窗体
  4889. _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); } }
  4890. break;
  4891. case "courseDesign":
  4892. _formdiv = new U.UF.UI.form(
  4893. "项目设计",
  4894. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4895. "id": "courseDesign",
  4896. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4897. "onresize": function () { }
  4898. }, {
  4899. closecallback: function () { }
  4900. }, { "style": { "height": "36px" } }).form; //创建窗体
  4901. _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); } }
  4902. break;
  4903. case "program":
  4904. _formdiv = new U.UF.UI.form(
  4905. "编程平台",
  4906. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4907. "id": "program",
  4908. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4909. "onresize": function () { }
  4910. }, {
  4911. closecallback: function () { }
  4912. }, { "style": { "height": "36px" } }).form; //创建窗体
  4913. _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); } }
  4914. break;
  4915. case "class":
  4916. _formdiv = new U.UF.UI.form(
  4917. "班级管理",
  4918. $$("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 }), {
  4919. "id": "class",
  4920. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4921. "onresize": function () { }
  4922. }, {
  4923. closecallback: function () { }
  4924. }, { "style": { "height": "36px" } }).form; //创建窗体
  4925. _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); } }
  4926. break;
  4927. case "Grade":
  4928. _formdiv = new U.UF.UI.form(
  4929. "年级管理",
  4930. $$("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 }), {
  4931. "id": "Grade",
  4932. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4933. "onresize": function () { }
  4934. }, {
  4935. closecallback: function () { }
  4936. }, { "style": { "height": "36px" } }).form; //创建窗体
  4937. _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); } }
  4938. break;
  4939. case "teacherOffice":
  4940. _formdiv = new U.UF.UI.form(
  4941. "教研室",
  4942. $$("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 }), {
  4943. "id": "teacherOffice",
  4944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4945. "onresize": function () { }
  4946. }, {
  4947. closecallback: function () { }
  4948. }, { "style": { "height": "36px" } }).form; //创建窗体
  4949. _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); } }
  4950. break;
  4951. case "my":
  4952. _formdiv = new U.UF.UI.form(
  4953. "我的资料",
  4954. $$("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 }), {
  4955. "id": "my",
  4956. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4957. "onresize": function () { }
  4958. }, {
  4959. closecallback: function () { }
  4960. }, { "style": { "height": "36px" } }).form; //创建窗体
  4961. _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); } }
  4962. break;
  4963. case "notice":
  4964. _formdiv = new U.UF.UI.form(
  4965. "通知公告",
  4966. $$("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 }), {
  4967. "id": "notice",
  4968. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4969. "onresize": function () { }
  4970. }, {
  4971. closecallback: function () { }
  4972. }, { "style": { "height": "36px" } }).form; //创建窗体
  4973. _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); } }
  4974. break;
  4975. case "library":
  4976. _formdiv = new U.UF.UI.form(
  4977. "素材库",
  4978. $$("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 }), {
  4979. "id": "library",
  4980. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4981. "onresize": function () { }
  4982. }, {
  4983. closecallback: function () { }
  4984. }, { "style": { "height": "36px" } }).form; //创建窗体
  4985. _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); } }
  4986. break;
  4987. case "whiteboard":
  4988. _formdiv = new U.UF.UI.form(
  4989. "电子白板",
  4990. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4991. "id": "whiteboard",
  4992. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4993. "onresize": function () { }
  4994. }, {
  4995. closecallback: function () { }
  4996. }, { "style": { "height": "36px" } }).form; //创建窗体
  4997. _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); } }
  4998. break;
  4999. case "investigation":
  5000. _formdiv = new U.UF.UI.form(
  5001. "问卷调查",
  5002. $$("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 }), {
  5003. "id": "investigation",
  5004. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5005. "onresize": function () { }
  5006. }, {
  5007. closecallback: function () { }
  5008. }, { "style": { "height": "36px" } }).form; //创建窗体
  5009. _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); } }
  5010. break;
  5011. case "note":
  5012. _formdiv = new U.UF.UI.form(
  5013. "便签分类",
  5014. $$("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 }), {
  5015. "id": "note",
  5016. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5017. "onresize": function () { }
  5018. }, {
  5019. closecallback: function () { }
  5020. }, { "style": { "height": "36px" } }).form; //创建窗体
  5021. _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); } }
  5022. break;
  5023. // case "score":
  5024. // _formdiv = new U.UF.UI.form(
  5025. // "量规评分",
  5026. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5027. // "id": "score",
  5028. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5029. // "onresize": function() {}
  5030. // }, {
  5031. // closecallback: function() {}
  5032. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5033. // _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); } }
  5034. // break;
  5035. case "mind":
  5036. _formdiv = new U.UF.UI.form(
  5037. "思维导图",
  5038. $$("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"
  5039. "id": "mind",
  5040. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5041. "onresize": function () { }
  5042. }, {
  5043. closecallback: function () { }
  5044. }, { "style": { "height": "36px" } }).form; //创建窗体
  5045. _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); } }
  5046. break;
  5047. case "doc":
  5048. // U.MD.D.I.isRoom();
  5049. _formdiv = new U.UF.UI.form(
  5050. "协同文档",
  5051. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5052. "id": "doc",
  5053. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5054. "onresize": function () { }
  5055. }, {
  5056. closecallback: function () { }
  5057. }, { "style": { "height": "36px" } }).form; //创建窗体
  5058. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5059. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5060. })
  5061. _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); } }
  5062. break;
  5063. case "study":
  5064. _formdiv = new U.UF.UI.form(
  5065. "课程中心",
  5066. $$("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
  5067. "id": "study",
  5068. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5069. "onresize": function () { }
  5070. }, {
  5071. closecallback: function () { }
  5072. }, { "style": { "height": "36px" } }).form; //创建窗体
  5073. _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); } }
  5074. break;
  5075. case "mindNetwork": //好友打开
  5076. _formdiv = new U.UF.UI.form(
  5077. "思维网格",
  5078. $$("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 }), {
  5079. "id": "mindNetwork",
  5080. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5081. "onresize": function () { }
  5082. }, {
  5083. closecallback: function () { }
  5084. }, { "style": { "height": "36px" } }).form; //创建窗体
  5085. _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); } }
  5086. break;
  5087. case "train": //好友打开
  5088. _formdiv = new U.UF.UI.form(
  5089. "训练平台",
  5090. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5091. "id": "mindNetwork",
  5092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5093. "onresize": function () { }
  5094. }, {
  5095. closecallback: function () { }
  5096. }, { "style": { "height": "36px" } }).form; //创建窗体
  5097. _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); } }
  5098. break;
  5099. case "teacherClassRoom": //好友打开
  5100. _formdiv = new U.UF.UI.form(
  5101. "实时课堂",
  5102. $$("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 }), {
  5103. "id": "teacherClassRoom",
  5104. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5105. "onresize": function () { }
  5106. }, {
  5107. closecallback: function () { }
  5108. }, { "style": { "height": "36px" } }).form; //创建窗体
  5109. _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); } }
  5110. setTimeout(() => {
  5111. U.UF.F.windowZooming(_formdiv)
  5112. }, 0);
  5113. break;
  5114. }
  5115. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5116. switch (str) {
  5117. case "project": //好友打开
  5118. _formdiv = new U.UF.UI.form(
  5119. "课程管理",
  5120. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5121. "id": "project",
  5122. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5123. "onresize": function () { }
  5124. }, {
  5125. closecallback: function () { }
  5126. }, { "style": { "height": "36px" } }).form; //创建窗体
  5127. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5128. break;
  5129. case "evaluate":
  5130. _formdiv = new U.UF.UI.form(
  5131. "学生评价",
  5132. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5133. "id": "evaluate",
  5134. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5135. "onresize": function () { }
  5136. }, {
  5137. closecallback: function () { }
  5138. }, { "style": { "height": "36px" } }).form; //创建窗体
  5139. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5140. break;
  5141. case "notice":
  5142. _formdiv = new U.UF.UI.form(
  5143. "通知公告",
  5144. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5145. "id": "notice",
  5146. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5147. "onresize": function () { }
  5148. }, {
  5149. closecallback: function () { }
  5150. }, { "style": { "height": "36px" } }).form; //创建窗体
  5151. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5152. break;
  5153. case "stuLibrary":
  5154. _formdiv = new U.UF.UI.form(
  5155. "学习资料",
  5156. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  5157. "id": "stuLibrary",
  5158. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5159. "onresize": function () { }
  5160. }, {
  5161. closecallback: function () { }
  5162. }, { "style": { "height": "36px" } }).form; //创建窗体
  5163. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5164. break;
  5165. case "program":
  5166. _formdiv = new U.UF.UI.form(
  5167. "编程平台",
  5168. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5169. "id": "program",
  5170. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5171. "onresize": function () { }
  5172. }, {
  5173. closecallback: function () { }
  5174. }, { "style": { "height": "36px" } }).form; //创建窗体
  5175. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5176. break;
  5177. case "whiteboard":
  5178. _formdiv = new U.UF.UI.form(
  5179. "电子白板",
  5180. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5181. "id": "whiteboard",
  5182. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5183. "onresize": function () { }
  5184. }, {
  5185. closecallback: function () { }
  5186. }, { "style": { "height": "36px" } }).form; //创建窗体
  5187. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5188. break;
  5189. case "investigation":
  5190. _formdiv = new U.UF.UI.form(
  5191. "问卷调查",
  5192. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5193. "id": "investigation",
  5194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5195. "onresize": function () { }
  5196. }, {
  5197. closecallback: function () { }
  5198. }, { "style": { "height": "36px" } }).form; //创建窗体
  5199. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5200. break;
  5201. case "mind":
  5202. _formdiv = new U.UF.UI.form(
  5203. "思维导图",
  5204. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5205. "id": "mind",
  5206. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5207. "onresize": function () { }
  5208. }, {
  5209. closecallback: function () { }
  5210. }, { "style": { "height": "36px" } }).form; //创建窗体
  5211. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5212. break;
  5213. case "doc":
  5214. // U.MD.D.I.isRoom();
  5215. _formdiv = new U.UF.UI.form(
  5216. "协同文档",
  5217. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5218. "id": "doc",
  5219. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5220. "onresize": function () { }
  5221. }, {
  5222. closecallback: function () { }
  5223. }, { "style": { "height": "36px" } }).form; //创建窗体
  5224. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5225. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5226. })
  5227. _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); } }
  5228. break;
  5229. case "study":
  5230. _formdiv = new U.UF.UI.form(
  5231. "课程中心",
  5232. $$("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
  5233. "id": "study",
  5234. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5235. "onresize": function () { }
  5236. }, {
  5237. closecallback: function () { }
  5238. }, { "style": { "height": "36px" } }).form; //创建窗体
  5239. _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); } }
  5240. break;
  5241. case "mindNetwork": //好友打开
  5242. _formdiv = new U.UF.UI.form(
  5243. "思维网格",
  5244. $$("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 }), {
  5245. "id": "mindNetwork",
  5246. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5247. "onresize": function () { }
  5248. }, {
  5249. closecallback: function () { }
  5250. }, { "style": { "height": "36px" } }).form; //创建窗体
  5251. _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); } }
  5252. break;
  5253. case "train": //好友打开
  5254. _formdiv = new U.UF.UI.form(
  5255. "训练平台",
  5256. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5257. "id": "train",
  5258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5259. "onresize": function () { }
  5260. }, {
  5261. closecallback: function () { }
  5262. }, { "style": { "height": "36px" } }).form; //创建窗体
  5263. _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); } }
  5264. break;
  5265. case "sys":
  5266. _formdiv = new U.UF.UI.form(
  5267. "目标管理",
  5268. $$("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 }), {
  5269. "id": "sys",
  5270. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5271. "onresize": function () { }
  5272. }, {
  5273. closecallback: function () { }
  5274. }, { "style": { "height": "36px" } }).form; //创建窗体
  5275. _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); } }
  5276. break;
  5277. case "courseDesign":
  5278. _formdiv = new U.UF.UI.form(
  5279. "项目设计",
  5280. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5281. "id": "courseDesign",
  5282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5283. "onresize": function () { }
  5284. }, {
  5285. closecallback: function () { }
  5286. }, { "style": { "height": "36px" } }).form; //创建窗体
  5287. _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); } }
  5288. break;
  5289. }
  5290. } else if (!_type) {
  5291. switch (str) {
  5292. case "my":
  5293. _formdiv = new U.UF.UI.form(
  5294. "我的资料",
  5295. $$("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 }), {
  5296. "id": "my",
  5297. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5298. "onresize": function () { }
  5299. }, {
  5300. closecallback: function () { }
  5301. }, { "style": { "height": "36px" } }).form; //创建窗体
  5302. _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); } }
  5303. break;
  5304. }
  5305. }
  5306. switch (str) {
  5307. // AIprogram2 AI体验 aihub.cocorobo.cn
  5308. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5309. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5310. case "formulaEdi": //公式编辑
  5311. _formdiv = new U.UF.UI.form(
  5312. "公式编辑",
  5313. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5314. "id": "formulaEdi",
  5315. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5316. "onresize": function () { }
  5317. }, {
  5318. closecallback: function () { }
  5319. }, { "style": { "height": "36px" } }).form; //创建窗体
  5320. _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); } }
  5321. break;
  5322. case "molStr": //分子结构
  5323. _formdiv = new U.UF.UI.form(
  5324. "分子结构",
  5325. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5326. "id": "molStr",
  5327. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5328. "onresize": function () { }
  5329. }, {
  5330. closecallback: function () { }
  5331. }, { "style": { "height": "36px" } }).form; //创建窗体
  5332. _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); } }
  5333. break;
  5334. case "timeAxis": //时间轴
  5335. _formdiv = new U.UF.UI.form(
  5336. "时间轴",
  5337. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5338. "id": "timeAxis",
  5339. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5340. "onresize": function () { }
  5341. }, {
  5342. closecallback: function () { }
  5343. }, { "style": { "height": "36px" } }).form; //创建窗体
  5344. _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); } }
  5345. break;
  5346. case "AIprogram2": //AI体验
  5347. _formdiv = new U.UF.UI.form(
  5348. "AI体验",
  5349. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5350. "id": "AIprogram2",
  5351. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5352. "onresize": function () { }
  5353. }, {
  5354. closecallback: function () { }
  5355. }, { "style": { "height": "36px" } }).form; //创建窗体
  5356. _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); } }
  5357. break;
  5358. case "Pythonprogram": //python编程
  5359. _formdiv = new U.UF.UI.form(
  5360. "Python编程",
  5361. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5362. "id": "Pythonprogram",
  5363. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5364. "onresize": function () { }
  5365. }, {
  5366. closecallback: function () { }
  5367. }, { "style": { "height": "36px" } }).form; //创建窗体
  5368. _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); } }
  5369. break;
  5370. case "AIprogram": //ai编程
  5371. _formdiv = new U.UF.UI.form(
  5372. "AI编程平台",
  5373. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5374. "id": "AIprogram",
  5375. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5376. "onresize": function () { }
  5377. }, {
  5378. closecallback: function () { }
  5379. }, { "style": { "height": "36px" } }).form; //创建窗体
  5380. _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); } }
  5381. break;
  5382. case "CocoPi": //CocoPi
  5383. _formdiv = new U.UF.UI.form(
  5384. "CocoPi",
  5385. $$("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" }), {
  5386. "id": "CocoPi",
  5387. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5388. "onresize": function () { }
  5389. }, {
  5390. closecallback: function () { }
  5391. }, { "style": { "height": "36px" } }).form; //创建窗体
  5392. _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); } }
  5393. break;
  5394. case "Wood": //Wood
  5395. _formdiv = new U.UF.UI.form(
  5396. "海龟编程",
  5397. $$("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/" }), {
  5398. "id": "Wood",
  5399. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5400. "onresize": function () { }
  5401. }, {
  5402. closecallback: function () { }
  5403. }, { "style": { "height": "36px" } }).form; //创建窗体
  5404. _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); } }
  5405. break;
  5406. case "car": //模拟驾驶
  5407. _formdiv = new U.UF.UI.form(
  5408. "模拟驾驶",
  5409. $$("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/" }), {
  5410. "id": "car",
  5411. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5412. "onresize": function () { }
  5413. }, {
  5414. closecallback: function () { }
  5415. }, { "style": { "height": "36px" } }).form; //创建窗体
  5416. _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); } }
  5417. break;
  5418. case "lineSearch": //路径搜索
  5419. _formdiv = new U.UF.UI.form(
  5420. "路径搜索",
  5421. $$("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/" }), {
  5422. "id": "lineSearch",
  5423. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5424. "onresize": function () { }
  5425. }, {
  5426. closecallback: function () { }
  5427. }, { "style": { "height": "36px" } }).form; //创建窗体
  5428. _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); } }
  5429. break;
  5430. case "deepLearning": //深度学习
  5431. _formdiv = new U.UF.UI.form(
  5432. "深度学习",
  5433. $$("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/#" }), {
  5434. "id": "deepLearning",
  5435. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5436. "onresize": function () { }
  5437. }, {
  5438. closecallback: function () { }
  5439. }, { "style": { "height": "36px" } }).form; //创建窗体
  5440. _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); } }
  5441. break;
  5442. case "allHistory": //深度学习
  5443. _formdiv = new U.UF.UI.form(
  5444. "全历史",
  5445. $$("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/" }), {
  5446. "id": "allHistory",
  5447. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5448. "onresize": function () { }
  5449. }, {
  5450. closecallback: function () { }
  5451. }, { "style": { "height": "36px" } }).form; //创建窗体
  5452. _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); } }
  5453. break;
  5454. case "chatPDF": //ai编程
  5455. _formdiv = new U.UF.UI.form(
  5456. "chatPDF",
  5457. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5458. "id": "chatPDF",
  5459. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5460. "onresize": function () { }
  5461. }, {
  5462. closecallback: function () { }
  5463. }, { "style": { "height": "36px" } }).form; //创建窗体
  5464. _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); } }
  5465. break;
  5466. case "resources": //国家教育
  5467. _formdiv = new U.UF.UI.form(
  5468. "国家教育",
  5469. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5470. "id": "resources",
  5471. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5472. "onresize": function () { }
  5473. }, {
  5474. closecallback: function () { }
  5475. }, { "style": { "height": "36px" } }).form; //创建窗体
  5476. _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); } }
  5477. break;
  5478. case "codeEdit": //源码编辑
  5479. _formdiv = new U.UF.UI.form(
  5480. "源码编辑",
  5481. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5482. "id": "codeEdit",
  5483. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5484. "onresize": function () { }
  5485. }, {
  5486. closecallback: function () { }
  5487. }, { "style": { "height": "36px" } }).form; //创建窗体
  5488. _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); } }
  5489. break; //
  5490. case "MindMap": //MindMap
  5491. _formdiv = new U.UF.UI.form(
  5492. "MindMap",
  5493. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5494. "id": "MindMap",
  5495. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5496. "onresize": function () { }
  5497. }, {
  5498. closecallback: function () { }
  5499. }, { "style": { "height": "36px" } }).form; //创建窗体
  5500. _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); } }
  5501. break;
  5502. case "netWorkPanel": //netWorkPanel
  5503. _formdiv = new U.UF.UI.form(
  5504. "netWorkPanel",
  5505. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5506. "id": "netWorkPanel",
  5507. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5508. "onresize": function () { }
  5509. }, {
  5510. closecallback: function () { }
  5511. }, { "style": { "height": "36px" } }).form; //创建窗体
  5512. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5513. break;
  5514. case "GeoGebra": //GeoGebra
  5515. _formdiv = new U.UF.UI.form(
  5516. "GeoGebra",
  5517. $$("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" }), {
  5518. "id": "GeoGebra",
  5519. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5520. "onresize": function () { }
  5521. }, {
  5522. closecallback: function () { }
  5523. }, { "style": { "height": "36px" } }).form; //创建窗体
  5524. _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); } }
  5525. break;
  5526. case "translation": //翻译
  5527. _formdiv = new U.UF.UI.form(
  5528. "翻译",
  5529. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5530. "id": "translation",
  5531. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5532. "onresize": function () { }
  5533. }, {
  5534. closecallback: function () { }
  5535. }, { "style": { "height": "36px" } }).form; //创建窗体
  5536. _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); } }
  5537. break;
  5538. case "mohe": //魔盒
  5539. _formdiv = new U.UF.UI.form(
  5540. "魔盒识字",
  5541. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5542. "id": "mohe",
  5543. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5544. "onresize": function () { }
  5545. }, {
  5546. closecallback: function () { }
  5547. }, { "style": { "height": "36px" } }).form; //创建窗体
  5548. _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); } }
  5549. break;
  5550. case "24game": //24点
  5551. _formdiv = new U.UF.UI.form(
  5552. "24点",
  5553. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5554. "id": "24game",
  5555. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5556. "onresize": function () { }
  5557. }, {
  5558. closecallback: function () { }
  5559. }, { "style": { "height": "36px" } }).form; //创建窗体
  5560. _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); } }
  5561. break;
  5562. case "case":
  5563. _formdiv = new U.UF.UI.form(
  5564. "课程进展",
  5565. $$("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 }), {
  5566. "id": "case",
  5567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5568. "onresize": function () { }
  5569. }, {
  5570. closecallback: function () { }
  5571. }, { "style": { "height": "36px" } }).form; //创建窗体
  5572. _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); } }
  5573. break;
  5574. case "snf":
  5575. _formdiv = new U.UF.UI.form(
  5576. "赛诺梵",
  5577. $$("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" }), {
  5578. "id": "snf",
  5579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5580. "onresize": function () { }
  5581. }, {
  5582. closecallback: function () { }
  5583. }, { "style": { "height": "36px" } }).form; //创建窗体
  5584. _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); } }
  5585. break;
  5586. case "hanFamily":
  5587. _formdiv = new U.UF.UI.form(
  5588. "汉字家族",
  5589. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5590. "id": "hanFamily",
  5591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5592. "onresize": function () { }
  5593. }, {
  5594. closecallback: function () { }
  5595. }, { "style": { "height": "36px" } }).form; //创建窗体
  5596. _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); } }
  5597. break;
  5598. case "hanClassics":
  5599. _formdiv = new U.UF.UI.form(
  5600. "国学经典",
  5601. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5602. "id": "hanClassics",
  5603. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5604. "onresize": function () { }
  5605. }, {
  5606. closecallback: function () { }
  5607. }, { "style": { "height": "36px" } }).form; //创建窗体
  5608. _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); } }
  5609. break;
  5610. case "hanTraining":
  5611. _formdiv = new U.UF.UI.form(
  5612. "笔画训练",
  5613. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5614. "id": "hanTraining",
  5615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5616. "onresize": function () { }
  5617. }, {
  5618. closecallback: function () { }
  5619. }, { "style": { "height": "36px" } }).form; //创建窗体
  5620. _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); } }
  5621. break;
  5622. case "hanClass":
  5623. _formdiv = new U.UF.UI.form(
  5624. "书法课堂",
  5625. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5626. "id": "hanClass",
  5627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5628. "onresize": function () { }
  5629. }, {
  5630. closecallback: function () { }
  5631. }, { "style": { "height": "36px" } }).form; //创建窗体
  5632. _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); } }
  5633. break;
  5634. case "han":
  5635. _formdiv = new U.UF.UI.form(
  5636. "汉字宫",
  5637. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5638. "id": "han",
  5639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5640. "onresize": function () { }
  5641. }, {
  5642. closecallback: function () { }
  5643. }, { "style": { "height": "36px" } }).form; //创建窗体
  5644. _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); } }
  5645. break;
  5646. case "projectGM": //课程管理
  5647. _formdiv = new U.UF.UI.form(
  5648. "课程管理",
  5649. $$("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 }), {
  5650. "id": "projectGM",
  5651. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5652. "onresize": function () { }
  5653. }, {
  5654. closecallback: function () { }
  5655. }, { "style": { "height": "36px" } }).form; //创建窗体
  5656. _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); } }
  5657. break;
  5658. case "studyGM": //课程中心
  5659. _formdiv = new U.UF.UI.form(
  5660. "课程中心",
  5661. $$("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
  5662. "id": "study",
  5663. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5664. "onresize": function () { }
  5665. }, {
  5666. closecallback: function () { }
  5667. }, { "style": { "height": "36px" } }).form; //创建窗体
  5668. _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); } }
  5669. break;
  5670. // studentGM
  5671. case "studentGM": //学生管理
  5672. _formdiv = new U.UF.UI.form(
  5673. "学生管理",
  5674. $$("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 }), {
  5675. "id": "studentGM",
  5676. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5677. "onresize": function () { }
  5678. }, {
  5679. closecallback: function () { }
  5680. }, { "style": { "height": "36px" } }).form; //创建窗体
  5681. _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); } }
  5682. break;
  5683. case "evaluateGM": //学生评价
  5684. _formdiv = new U.UF.UI.form(
  5685. "学生评价",
  5686. $$("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 }), {
  5687. "id": "evaluateGM",
  5688. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5689. "onresize": function () { }
  5690. }, {
  5691. closecallback: function () { }
  5692. }, { "style": { "height": "36px" } }).form; //创建窗体
  5693. _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); } }
  5694. break;
  5695. // classGM
  5696. case "classGM": //班级管理
  5697. _formdiv = new U.UF.UI.form(
  5698. "班级管理",
  5699. $$("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 }), {
  5700. "id": "classGM",
  5701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5702. "onresize": function () { }
  5703. }, {
  5704. closecallback: function () { }
  5705. }, { "style": { "height": "36px" } }).form; //创建窗体
  5706. _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); } }
  5707. break;
  5708. // dataGM
  5709. case "dataGM":
  5710. _formdiv = new U.UF.UI.form(
  5711. "我的资料",
  5712. $$("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 }), {
  5713. "id": "dataGM",
  5714. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //创建窗体
  5719. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5720. break;
  5721. // caseGM
  5722. case "caseGM": //课程进展
  5723. _formdiv = new U.UF.UI.form(
  5724. "课程进展",
  5725. $$("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 }), {
  5726. "id": "caseGM",
  5727. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5728. "onresize": function () { }
  5729. }, {
  5730. closecallback: function () { }
  5731. }, { "style": { "height": "36px" } }).form; //创建窗体
  5732. _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); } }
  5733. break;
  5734. // meterialGM
  5735. case "meterialGM": //素材库
  5736. _formdiv = new U.UF.UI.form(
  5737. "素材库",
  5738. $$("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 }), {
  5739. "id": "meterialGM",
  5740. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5741. "onresize": function () { }
  5742. }, {
  5743. closecallback: function () { }
  5744. }, { "style": { "height": "36px" } }).form; //创建窗体
  5745. _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); } }
  5746. break;
  5747. // evaluateSGM
  5748. case "evaluateSGM": //我的评价
  5749. _formdiv = new U.UF.UI.form(
  5750. "我的评价",
  5751. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5752. "id": "evaluateSGM",
  5753. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5754. "onresize": function () { }
  5755. }, {
  5756. closecallback: function () { }
  5757. }, { "style": { "height": "36px" } }).form; //创建窗体
  5758. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5759. break;
  5760. case "jupyter": //jupyter
  5761. _formdiv = new U.UF.UI.form(
  5762. "jupyter",
  5763. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5764. "id": "jupyter",
  5765. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5766. "onresize": function () { }
  5767. }, {
  5768. closecallback: function () { }
  5769. }, { "style": { "height": "36px" } }).form; //创建窗体
  5770. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5771. break;
  5772. case "number": //数字实验室
  5773. _formdiv = new U.UF.UI.form(
  5774. "数字实验室",
  5775. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5776. "id": "number",
  5777. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5778. "onresize": function () { }
  5779. }, {
  5780. closecallback: function () { }
  5781. }, { "style": { "height": "36px" } }).form; //创建窗体
  5782. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5783. break;
  5784. case "studentCourse": //项目管理 学生
  5785. _formdiv = new U.UF.UI.form(
  5786. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5787. $$("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 }), {
  5788. "id": "studentCourse",
  5789. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5790. "onresize": function () { }
  5791. }, {
  5792. closecallback: function () { }
  5793. }, { "style": { "height": "36px" } }).form; //创建窗体
  5794. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5795. break;
  5796. case "studentCourseS": //项目管理 老师
  5797. _formdiv = new U.UF.UI.form(
  5798. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5799. $$("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 }), {
  5800. "id": "studentCourseS",
  5801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5802. "onresize": function () { }
  5803. }, {
  5804. closecallback: function () { }
  5805. }, { "style": { "height": "36px" } }).form; //创建窗体
  5806. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5807. break;
  5808. case "studentIndex": //项目中心
  5809. _formdiv = new U.UF.UI.form(
  5810. "项目中心",
  5811. $$("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 }), {
  5812. "id": "studentIndex",
  5813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5814. "onresize": function () { }
  5815. }, {
  5816. closecallback: function () { }
  5817. }, { "style": { "height": "36px" } }).form; //创建窗体
  5818. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5819. break;
  5820. case "CaseDesignS":
  5821. _formdiv = new U.UF.UI.form(
  5822. "项目进展",
  5823. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5824. "id": "case",
  5825. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5826. "onresize": function () { }
  5827. }, {
  5828. closecallback: function () { }
  5829. }, { "style": { "height": "36px" } }).form; //创建窗体
  5830. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5831. break;
  5832. case "tcStudent": //腾讯学生管理
  5833. _formdiv = new U.UF.UI.form(
  5834. "学生管理",
  5835. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5836. "id": "tcStudent",
  5837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5838. "onresize": function () { }
  5839. }, {
  5840. closecallback: function () { }
  5841. }, { "style": { "height": "36px" } }).form; //创建窗体
  5842. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5843. break;
  5844. case "tcSchool": //腾讯学校管理
  5845. _formdiv = new U.UF.UI.form(
  5846. "学校管理",
  5847. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5848. "id": "tcSchool",
  5849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5850. "onresize": function () { }
  5851. }, {
  5852. closecallback: function () { }
  5853. }, { "style": { "height": "36px" } }).form; //创建窗体
  5854. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5855. break;
  5856. case "tcTeacher": //腾讯学校管理
  5857. _formdiv = new U.UF.UI.form(
  5858. "教师管理",
  5859. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5860. "id": "tcTeacher",
  5861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5862. "onresize": function () { }
  5863. }, {
  5864. closecallback: function () { }
  5865. }, { "style": { "height": "36px" } }).form; //创建窗体
  5866. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5867. break;
  5868. case "tcData": //腾讯我的资料
  5869. _formdiv = new U.UF.UI.form(
  5870. "我的资料",
  5871. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5872. "id": "tcData",
  5873. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5874. "onresize": function () { }
  5875. }, {
  5876. closecallback: function () { }
  5877. }, { "style": { "height": "36px" } }).form; //创建窗体
  5878. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5879. break;
  5880. case "tcNotice": //腾讯消息通知
  5881. _formdiv = new U.UF.UI.form(
  5882. "消息通知",
  5883. $$("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 }), {
  5884. "id": "tcNotice",
  5885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5886. "onresize": function () { }
  5887. }, {
  5888. closecallback: function () { }
  5889. }, { "style": { "height": "36px" } }).form; //创建窗体
  5890. _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); } }
  5891. break;
  5892. case "myReport": //好友打开
  5893. _formdiv = new U.UF.UI.form(
  5894. "我的评价",
  5895. $$("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 }), {
  5896. "id": "myReport",
  5897. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5898. "onresize": function () { }
  5899. }, {
  5900. closecallback: function () { }
  5901. }, { "style": { "height": "36px" } }).form; //创建窗体
  5902. _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); } }
  5903. break;
  5904. case "learnAna": //好友打开
  5905. _formdiv = new U.UF.UI.form(
  5906. "学习分析",
  5907. $$("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 }), {
  5908. "id": "learnAna",
  5909. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5910. "onresize": function () { }
  5911. }, {
  5912. closecallback: function () { }
  5913. }, { "style": { "height": "36px" } }).form; //创建窗体
  5914. _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); } }
  5915. break;
  5916. case "AIChat": //AI共创
  5917. _formdiv = new U.UF.UI.form(
  5918. "AI共创",
  5919. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5920. "id": "AIChat",
  5921. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5922. "onresize": function () { }
  5923. }, {
  5924. istop: true,
  5925. closecallback: function () { $("#aichat_icon").remove(); },
  5926. narrowcallback: function () {
  5927. if (!$("#aichat_icon")[0]) {
  5928. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5929. }
  5930. },
  5931. }, { "style": { "height": "36px" } }).form; //创建窗体
  5932. _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); } }
  5933. break;
  5934. case "ainew": //AI共创
  5935. _formdiv = new U.UF.UI.form(
  5936. "AI协同",
  5937. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5938. "id": "ainew",
  5939. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5940. "onresize": function () { }
  5941. }, {
  5942. closecallback: function () { }
  5943. }, { "style": { "height": "36px" } }).form; //创建窗体
  5944. _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); } }
  5945. break;
  5946. case "gpt4": //gpt4
  5947. _formdiv = new U.UF.UI.form(
  5948. "AI助手",
  5949. $$("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 }), {
  5950. "id": "gpt4",
  5951. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5952. "onresize": function () { }
  5953. }, {
  5954. closecallback: function () { }
  5955. }, { "style": { "height": "36px" } }).form; //创建窗体
  5956. _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); } }
  5957. break;
  5958. case "aigpt": //gpt4
  5959. _formdiv = new U.UF.UI.form(
  5960. "AI助手+",
  5961. $$("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 }), {
  5962. "id": "aigpt",
  5963. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5964. "onresize": function () { }
  5965. }, {
  5966. closecallback: function () { }
  5967. }, { "style": { "height": "36px" } }).form; //创建窗体
  5968. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigpt.png)" }, "name": "AI助手+", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5969. break;
  5970. case "aiKnowledge": //aiKnowledge
  5971. _formdiv = new U.UF.UI.form(
  5972. "知识建构",
  5973. $$("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 }), {
  5974. "id": "aiKnowledge",
  5975. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5976. "onresize": function () { }
  5977. }, {
  5978. closecallback: function () { }
  5979. }, { "style": { "height": "36px" } }).form; //创建窗体
  5980. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5981. break;
  5982. case "futureClass": //AI共创
  5983. _formdiv = new U.UF.UI.form(
  5984. "协同建构",
  5985. $$("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
  5986. "id": "synergyCourse",
  5987. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5988. "onresize": function () { }
  5989. }, {
  5990. closecallback: function () {
  5991. $("iframe", _formdiv)[0].contentWindow.loginout();
  5992. }
  5993. }, { "style": { "height": "36px" } }).form; //创建窗体
  5994. _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); } }
  5995. break;
  5996. case "aiagent": //ai agent
  5997. _formdiv = new U.UF.UI.form(
  5998. "AI Agent",
  5999. $$("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" }), {
  6000. "id": "AIAgent",
  6001. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6002. "onresize": function () { }
  6003. }, {
  6004. closecallback: function () { }
  6005. }, { "style": { "height": "36px" } }).form; //创建窗体
  6006. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6007. break;
  6008. case "dataBoard": //数据看板
  6009. _formdiv = new U.UF.UI.form(
  6010. "数据看板",
  6011. $$("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 }), {
  6012. "id": "dataBoard",
  6013. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6014. "onresize": function () { }
  6015. }, {
  6016. closecallback: function () { }
  6017. }, { "style": { "height": "36px" } }).form; //创建窗体
  6018. _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); } }
  6019. break;
  6020. case "dataBoardSies": //数据融合
  6021. _formdiv = new U.UF.UI.form(
  6022. "数据融合",
  6023. $$("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 }), {
  6024. "id": "dataBoardSies",
  6025. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6026. "onresize": function () { }
  6027. }, {
  6028. closecallback: function () { }
  6029. }, { "style": { "height": "36px" } }).form; //创建窗体
  6030. _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); } }
  6031. break;
  6032. case "dataBoardNew": //数据看板
  6033. _formdiv = new U.UF.UI.form(
  6034. "综合看板",
  6035. $$("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 }), {
  6036. "id": "dataBoardNew",
  6037. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6038. "onresize": function () { }
  6039. }, {
  6040. closecallback: function () { }
  6041. }, { "style": { "height": "36px" } }).form; //创建窗体
  6042. _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); } }
  6043. break;
  6044. case "dataBoardTest": //数据看板
  6045. _formdiv = new U.UF.UI.form(
  6046. "评测看板",
  6047. $$("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 }), {
  6048. "id": "dataBoardTest",
  6049. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6050. "onresize": function () { }
  6051. }, {
  6052. closecallback: function () { }
  6053. }, { "style": { "height": "36px" } }).form; //创建窗体
  6054. _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); } }
  6055. break;
  6056. case "AIAnalyse": //AI共创
  6057. _formdiv = new U.UF.UI.form(
  6058. "AI分析",
  6059. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6060. "id": "AIAnalyse",
  6061. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6062. "onresize": function () { }
  6063. }, {
  6064. closecallback: function () { }
  6065. }, { "style": { "height": "36px" } }).form; //创建窗体
  6066. _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); } }
  6067. break;
  6068. case "studioCourse": //AI共创
  6069. _formdiv = new U.UF.UI.form(
  6070. "工作管理",
  6071. $$("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 }), {
  6072. "id": "studioCourse",
  6073. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6074. "onresize": function () { }
  6075. }, {
  6076. closecallback: function () { }
  6077. }, { "style": { "height": "36px" } }).form; //创建窗体
  6078. _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); } }
  6079. break;
  6080. case "studioIndex": //AI共创
  6081. _formdiv = new U.UF.UI.form(
  6082. "工作中心",
  6083. $$("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 }), {
  6084. "id": "studioIndex",
  6085. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6086. "onresize": function () { }
  6087. }, {
  6088. closecallback: function () { }
  6089. }, { "style": { "height": "36px" } }).form; //创建窗体
  6090. _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); } }
  6091. break;
  6092. case "source":
  6093. _formdiv = new U.UF.UI.form(
  6094. "教学资源",
  6095. $$("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 }), {
  6096. "id": "source",
  6097. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6098. "onresize": function () { }
  6099. }, {
  6100. closecallback: function () { }
  6101. }, { "style": { "height": "36px" } }).form; //创建窗体
  6102. _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); } }
  6103. break;
  6104. case "testTeacher":
  6105. _formdiv = new U.UF.UI.form(
  6106. "教师管理",
  6107. $$("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 }), {
  6108. "id": "testTeacher",
  6109. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6110. "onresize": function () { }
  6111. }, {
  6112. closecallback: function () { }
  6113. }, { "style": { "height": "36px" } }).form; //创建窗体
  6114. _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); } }
  6115. break;
  6116. case "testStudent":
  6117. _formdiv = new U.UF.UI.form(
  6118. "教师中心",
  6119. $$("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 }), {
  6120. "id": "testStudent",
  6121. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6122. "onresize": function () { }
  6123. }, {
  6124. closecallback: function () { }
  6125. }, { "style": { "height": "36px" } }).form; //创建窗体
  6126. _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); } }
  6127. break;
  6128. case "testTeacherSies":
  6129. _formdiv = new U.UF.UI.form(
  6130. "教师管理",
  6131. $$("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 }), {
  6132. "id": "testTeacherSies",
  6133. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6134. "onresize": function () { }
  6135. }, {
  6136. closecallback: function () { }
  6137. }, { "style": { "height": "36px" } }).form; //创建窗体
  6138. _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); } }
  6139. break;
  6140. case "testStudentSies":
  6141. _formdiv = new U.UF.UI.form(
  6142. "教师中心",
  6143. $$("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 }), {
  6144. "id": "testStudentSies",
  6145. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6146. "onresize": function () { }
  6147. }, {
  6148. closecallback: function () { }
  6149. }, { "style": { "height": "36px" } }).form; //创建窗体
  6150. _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); } }
  6151. break;
  6152. case "ytpbl": //消息通知
  6153. _formdiv = new U.UF.UI.form(
  6154. "案例征集",
  6155. $$("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 }), {
  6156. "id": "ytpbl",
  6157. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6158. "onresize": function () { }
  6159. }, {
  6160. closecallback: function () { }
  6161. }, { "style": { "height": "36px" } }).form; //创建窗体
  6162. _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); } }
  6163. // 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");
  6164. break;
  6165. case "aiCourseResource": //人工智能窗体
  6166. _formdiv = new U.UF.UI.form(
  6167. false,
  6168. $$("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 }), {
  6169. "id": "aiCourseResource",
  6170. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6171. "onresize": function () { },
  6172. "isdrag": false,
  6173. }, {
  6174. closecallback: function () { }
  6175. }, { "style": { "height": "36px" } }).form; //创建窗体
  6176. _taskbar = ''
  6177. break;
  6178. case "szdjgCocooroboX": //图形化编程
  6179. _formdiv = new U.UF.UI.form(
  6180. "图形化编程",
  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": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/index.html" }), {
  6182. "id": "szdjgCocooroboX",
  6183. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6184. "onresize": function () { }
  6185. }, {
  6186. closecallback: function () { }
  6187. }, { "style": { "height": "36px" } }).form; //创建窗体
  6188. _taskbar = ''
  6189. break;
  6190. case "szdjgPython": //python编程
  6191. _formdiv = new U.UF.UI.form(
  6192. "Python编程",
  6193. $$("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" }), {
  6194. "id": "szdjgPython",
  6195. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6196. "onresize": function () { }
  6197. }, {
  6198. closecallback: function () { }
  6199. }, { "style": { "height": "36px" } }).form; //创建窗体
  6200. _taskbar = ''
  6201. break;
  6202. case "Record":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6206. "id": "Record",
  6207. "style": { "width": "90%", "height": "90%", "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/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6213. break;
  6214. case "aigptCourse":
  6215. _formdiv = new U.UF.UI.form(
  6216. "AI智能体",
  6217. $$("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' }), {
  6218. "id": "aigptCourse",
  6219. "style": { "width": "90%", "height": "90%", "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/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6225. break;
  6226. case "classroomObservation":
  6227. _formdiv = new U.UF.UI.form(
  6228. "课堂观察",
  6229. $$("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 }), {
  6230. "id": "classroomObservation",
  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/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6237. break;
  6238. case "pblCourse":
  6239. _formdiv = new U.UF.UI.form(
  6240. "学生PBL",
  6241. $$("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 }), {
  6242. "id": "pblCourse",
  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/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6249. break;
  6250. }
  6251. //U.MD.D.I.openClick(str);
  6252. //如果有任务栏信息
  6253. if (_taskbar) {
  6254. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6255. }
  6256. }
  6257. // U.MD.D.I.openClick = function(str){
  6258. // var click = '';
  6259. // switch(str){
  6260. // case 'friend':
  6261. // click = '我的好友';
  6262. // break;
  6263. // case 'domain':
  6264. // click = '域名管理';
  6265. // break;
  6266. // case 'disk':
  6267. // click = '我的云盘';
  6268. // break;
  6269. // case 'word':
  6270. // click = 'Word';
  6271. // break;
  6272. // case 'excel':
  6273. // click = 'Execl';
  6274. // break;
  6275. // case 'txt':
  6276. // click = '文本文件';
  6277. // break;
  6278. // case 'lookupFriend':
  6279. // click = '查找好友';
  6280. // break;
  6281. // case 'ftp':
  6282. // click = 'FTP';
  6283. // break;
  6284. // case 'group':
  6285. // click = '群组';
  6286. // break;
  6287. // case 'set':
  6288. // click = '我的设置';
  6289. // break;
  6290. // case 'systemSet':
  6291. // click = '系统设置';
  6292. // break;
  6293. // case 'boomYun':
  6294. // click = '互联办公';
  6295. // break;
  6296. // case 'xz':
  6297. // click = '云端下载';
  6298. // break;
  6299. // case 'client':
  6300. // click = '有思浏览器';
  6301. // break;
  6302. // case 'backEndProgramming':
  6303. // click = '在线后台编程';
  6304. // break;
  6305. // case 'frontEndProgramming':
  6306. // click = '在线前端编程';
  6307. // break;
  6308. // default: break;
  6309. // }
  6310. // if(U.MD.D.I.Ip && click){
  6311. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6312. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6313. // })
  6314. // }
  6315. // }
  6316. /**
  6317. *函数作用:ajax简易函数,使用post格式
  6318. *@param url {data} 后台地址
  6319. *@param data {data} 参数json
  6320. *@param fn {data} 回调函数
  6321. *
  6322. */
  6323. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6324. // var xhr = new XMLHttpRequest();
  6325. // xhr.open("GET",url,true);
  6326. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6327. // xhr.onreadystatechange = function(){
  6328. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6329. // fn.call(this,xhr.responseText);
  6330. // }
  6331. // };
  6332. // xhr.send();
  6333. // }
  6334. /*判断是否是内网IP*/
  6335. // U.MD.D.I.isInnerIPFn = function(str){
  6336. // var curPageUrl = str;
  6337. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6338. // curPageUrl =curPageUrl.replace(reg1,'');
  6339. // // console.log('curPageUrl-1 '+curPageUrl);
  6340. // var reg2 = /\:+/g;//替换冒号为一点
  6341. // curPageUrl =curPageUrl.replace(reg2,'.');
  6342. // // console.log('curPageUrl-2 '+curPageUrl);
  6343. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6344. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6345. // if(curPageUrl[2] != '16'){
  6346. // return ipAddress;
  6347. // }else{
  6348. // return false;
  6349. // }
  6350. // }
  6351. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6352. // //compatibility for firefox and chrome
  6353. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6354. // var pc = new myPeerConnection({
  6355. // iceServers: []
  6356. // }),
  6357. // noop = function() {},
  6358. // localIPs = {},
  6359. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6360. // key;
  6361. // function iterateIP(ip) {
  6362. // if (!localIPs[ip]) onNewIP(ip);
  6363. // localIPs[ip] = true;
  6364. // }
  6365. // //create a bogus data channel
  6366. // pc.createDataChannel("");
  6367. // // create offer and set local description
  6368. // pc.createOffer().then(function(sdp) {
  6369. // sdp.sdp.split('\n').forEach(function(line) {
  6370. // if (line.indexOf('candidate') < 0) return;
  6371. // line.match(ipRegex).forEach(iterateIP);
  6372. // });
  6373. // pc.setLocalDescription(sdp, noop, noop);
  6374. // }).catch(function(reason) {
  6375. // // An error occurred, so handle the failure to connect
  6376. // });
  6377. // //sten for candidate events
  6378. // pc.onicecandidate = function(ice) {
  6379. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6380. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6381. // };
  6382. // }
  6383. // U.MD.D.I.getUserIpBool = function(callback){
  6384. // U.MD.D.I.getUserIP(function(ip){
  6385. // alert("Got IP! :" + ip);
  6386. // });
  6387. //}
  6388. //#endregion
  6389. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6390. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6391. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6392. _userinfo = US.userInfo, //登录用户信息
  6393. _userid = US.userInfo.userid //登录用户id
  6394. let _iframe;
  6395. let _cid = cid,
  6396. _stage = stage,
  6397. _task = task,
  6398. _tool = tool;
  6399. var _jie = $$("div", {
  6400. "style": {
  6401. "position": "absolute",
  6402. "bottom": "50px",
  6403. "right": "50px",
  6404. "zIndex": "9999",
  6405. "backgroundColor": "#2268bc",
  6406. "color": "#fff",
  6407. "padding": "12px 20px",
  6408. "cursor": "pointer",
  6409. "borderRadius": "4px",
  6410. },
  6411. "innerHTML": "提交作业"
  6412. })
  6413. let aTool = ''
  6414. let _loading = document.createElement('div')
  6415. _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;"
  6416. // _loading.id = "";
  6417. let _lchild = document.createElement('div')
  6418. let _limg = document.createElement('img')
  6419. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6420. _limg.style = "width: 26px;margin-right: 10px;"
  6421. _lchild.appendChild(_limg)
  6422. let _lspan = document.createElement('span')
  6423. _lspan.innerHTML = "上传中..."
  6424. _lchild.appendChild(_lspan)
  6425. _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%);"
  6426. _loading.appendChild(_lchild)
  6427. var _box = $$('div', {
  6428. "style": {
  6429. "position": "relative",
  6430. "width": "100%",
  6431. "height": "100%",
  6432. },
  6433. })
  6434. _box.appendChild(_loading)
  6435. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6436. switch (str) {
  6437. case "whiteboard":
  6438. aTool = 1;
  6439. _iframe = $$("iframe", {
  6440. "frameborder": "no",
  6441. "border": "0",
  6442. "scrolling ": "no",
  6443. "style": {
  6444. "cssText": "border:0;width:100%;height:100%"
  6445. },
  6446. "src": "https://beta.iwb.cocorobo.cn/"
  6447. })
  6448. _box.appendChild(_iframe);
  6449. _box.appendChild(_jie);
  6450. _formdiv = new U.UF.UI.form(
  6451. "电子白板",
  6452. _box, {
  6453. "id": "whiteboard" + cid + stage + task + tool,
  6454. "style": {
  6455. "width": "90%",
  6456. "height": "90%",
  6457. "overflow": 'hidden'
  6458. },
  6459. "onresize": function () { }
  6460. }, {
  6461. closecallback: function () { }
  6462. }, {
  6463. "style": {
  6464. "height": "36px"
  6465. }
  6466. }).form; //创建窗体
  6467. _taskbar = {
  6468. "id": str + _formdiv.id,
  6469. "style": {
  6470. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6471. },
  6472. "name": "电子白板",
  6473. "forms": _formdiv,
  6474. "click": function () {
  6475. U.MD.D.I.openApplication(str, obj, info);
  6476. }
  6477. }
  6478. break;
  6479. case "mind":
  6480. aTool = 3;
  6481. _iframe = $$("iframe", {
  6482. "frameborder": "no",
  6483. "border": "0",
  6484. "scrolling ": "no",
  6485. "style": {
  6486. "cssText": "border:0;width:100%;height:100%"
  6487. },
  6488. "src": "/kityminder-editor/dist/index.html"
  6489. })
  6490. _box.appendChild(_iframe);
  6491. _box.appendChild(_jie);
  6492. _formdiv = new U.UF.UI.form(
  6493. "思维导图",
  6494. _box, { //"/jsmind/example/demo.html"
  6495. "id": "mind" + cid + stage + task + tool,
  6496. "style": {
  6497. "width": "90%",
  6498. "height": "90%",
  6499. "overflow": 'hidden'
  6500. },
  6501. "onresize": function () { }
  6502. }, {
  6503. closecallback: function () { }
  6504. }, {
  6505. "style": {
  6506. "height": "36px"
  6507. }
  6508. }).form; //创建窗体
  6509. _taskbar = {
  6510. "id": str + _formdiv.id,
  6511. "style": {
  6512. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6513. },
  6514. "name": "思维导图",
  6515. "forms": _formdiv,
  6516. "click": function () {
  6517. U.MD.D.I.openApplication(str, obj, info);
  6518. }
  6519. }
  6520. break;
  6521. case "MindMap":
  6522. aTool = 3;
  6523. _iframe = $$("iframe", {
  6524. "frameborder": "no",
  6525. "border": "0",
  6526. "scrolling ": "no",
  6527. "style": {
  6528. "cssText": "border:0;width:100%;height:100%"
  6529. },
  6530. "src": "//cloud.cocorobo.cn/mind/"
  6531. })
  6532. _box.appendChild(_iframe);
  6533. _box.appendChild(_jie);
  6534. _formdiv = new U.UF.UI.form(
  6535. "思维导图",
  6536. _box, { //"/jsmind/example/demo.html"
  6537. "id": "mind" + cid + stage + task + tool,
  6538. "style": {
  6539. "width": "90%",
  6540. "height": "90%",
  6541. "overflow": 'hidden'
  6542. },
  6543. "onresize": function () { }
  6544. }, {
  6545. closecallback: function () { }
  6546. }, {
  6547. "style": {
  6548. "height": "36px"
  6549. }
  6550. }).form; //创建窗体
  6551. _taskbar = {
  6552. "id": str + _formdiv.id,
  6553. "style": {
  6554. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6555. },
  6556. "name": "思维导图",
  6557. "forms": _formdiv,
  6558. "click": function () {
  6559. U.MD.D.I.openApplication(str, obj, info);
  6560. }
  6561. }
  6562. break;
  6563. case "doc":
  6564. aTool = 6;
  6565. _iframe = $$("iframe", {
  6566. "frameborder": "no",
  6567. "border": "0",
  6568. "scrolling ": "no",
  6569. "style": {
  6570. "cssText": "border:0;width:100%;height:100%"
  6571. },
  6572. "src": "/Office/Word/WordEditArea.htm"
  6573. })
  6574. _box.appendChild(_iframe);
  6575. _box.appendChild(_jie);
  6576. _formdiv = new U.UF.UI.form(
  6577. "协同文档",
  6578. _box, {
  6579. "id": "doc" + cid + stage + task + tool,
  6580. "style": {
  6581. "width": "90%",
  6582. "height": "90%",
  6583. "overflow": 'hidden'
  6584. },
  6585. "onresize": function () { }
  6586. }, {
  6587. closecallback: function () { }
  6588. }, {
  6589. "style": {
  6590. "height": "36px"
  6591. }
  6592. }).form; //创建窗体
  6593. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6594. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6595. })
  6596. _taskbar = {
  6597. "id": str + _formdiv.id,
  6598. "style": {
  6599. "backgroundImage": "url(/img/icon/doc.png)"
  6600. },
  6601. "name": "协同文档",
  6602. "forms": _formdiv,
  6603. "click": function () {
  6604. U.MD.D.I.openApplication(str, obj, info);
  6605. }
  6606. }
  6607. break;
  6608. case "mindNetwork": //好友打开
  6609. aTool = 7;
  6610. _iframe = $$("iframe", {
  6611. "webkitallowfullscreen": "",
  6612. "mozallowfullscreen": "",
  6613. "allowfullscreen": "",
  6614. "frameborder": "no",
  6615. "border": "0",
  6616. "scrolling ": "no",
  6617. "style": {
  6618. "cssText": "border:0; width:100%; height:100%;"
  6619. },
  6620. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6621. })
  6622. _box.appendChild(_iframe);
  6623. _box.appendChild(_jie);
  6624. _formdiv = new U.UF.UI.form(
  6625. "思维网格",
  6626. _box, {
  6627. "id": "mindNetwork" + cid + stage + task + tool,
  6628. "style": {
  6629. "width": "90%",
  6630. "height": "90%",
  6631. "overflow": 'hidden'
  6632. },
  6633. "onresize": function () { }
  6634. }, {
  6635. closecallback: function () { }
  6636. }, {
  6637. "style": {
  6638. "height": "36px"
  6639. }
  6640. }).form; //创建窗体
  6641. _taskbar = {
  6642. "id": str + _formdiv.id,
  6643. "style": {
  6644. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6645. },
  6646. "name": "思维网格",
  6647. "forms": _formdiv,
  6648. "click": function () {
  6649. U.MD.D.I.openApplication(str, obj, info);
  6650. }
  6651. }
  6652. break;
  6653. case "courseDesign":
  6654. _iframe = $$("iframe", {
  6655. "webkitallowfullscreen": "",
  6656. "mozallowfullscreen": "",
  6657. "allowfullscreen": "",
  6658. "frameborder": "no",
  6659. "border": "0",
  6660. "scrolling ": "no",
  6661. "style": {
  6662. "cssText": "border:0; width:100%; height:100%;"
  6663. },
  6664. "src": "/course-design-vue"
  6665. })
  6666. _box.appendChild(_iframe);
  6667. _box.appendChild(_jie);
  6668. _formdiv = new U.UF.UI.form(
  6669. "项目设计",
  6670. _box, {
  6671. "id": "courseDesign" + cid + stage + task + tool,
  6672. "style": {
  6673. "width": "90%",
  6674. "height": "90%",
  6675. "overflow": 'hidden'
  6676. },
  6677. "onresize": function () { }
  6678. }, {
  6679. closecallback: function () { }
  6680. }, {
  6681. "style": {
  6682. "height": "36px"
  6683. }
  6684. }).form; //创建窗体
  6685. _taskbar = {
  6686. "id": str + _formdiv.id,
  6687. "style": {
  6688. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6689. },
  6690. "name": "项目设计",
  6691. "forms": _formdiv,
  6692. "click": function () {
  6693. U.MD.D.I.openApplication(str, obj, info);
  6694. }
  6695. }
  6696. break;
  6697. }
  6698. const script1 = document.createElement("script");
  6699. script1.type = "text/javascript";
  6700. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6701. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6702. const script2 = document.createElement("script");
  6703. script2.type = "text/javascript";
  6704. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6705. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6706. const script3 = document.createElement("script");
  6707. script3.type = "text/javascript";
  6708. script3.charset = "UTF-8";
  6709. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6710. const script4 = document.createElement("script");
  6711. script4.type = "text/javascript";
  6712. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6713. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6714. if (_iframe) {
  6715. if (str == 'doc') {
  6716. _iframe = _formdiv.querySelector('iframe')
  6717. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6718. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6719. _iframe.contentWindow.document.body.appendChild(script1);
  6720. _iframe.contentWindow.document.body.appendChild(script2);
  6721. // _iframe.contentWindow.document.body.appendChild(script3);
  6722. _iframe.contentWindow.document.body.appendChild(script4);
  6723. })
  6724. if (onloadListener) {
  6725. _iframe.contentDocument.location.reload()
  6726. } else {
  6727. _iframe.contentDocument.location.reload()
  6728. }
  6729. } else if (str == 'courseDesign') {
  6730. U.UF.DL.iframeLoad(_iframe, function () {
  6731. // _iframe.contentWindow.U.MD.O.W.load();
  6732. // _iframe.contentWindow.document.body.appendChild(script1);
  6733. _iframe.contentWindow.document.body.appendChild(script2);
  6734. _iframe.contentWindow.document.body.appendChild(script4);
  6735. })
  6736. } else if (str == 'mind') {
  6737. _iframe = _formdiv.querySelector('iframe')
  6738. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6739. //
  6740. _iframe.contentWindow.document.body.appendChild(script1);
  6741. _iframe.contentWindow.document.body.appendChild(script2);
  6742. _iframe.contentWindow.document.body.appendChild(script4);
  6743. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6744. })
  6745. if (onloadListener) {
  6746. _iframe.contentDocument.location.reload()
  6747. } else {
  6748. _iframe.contentDocument.location.reload()
  6749. }
  6750. } else if (str == 'whiteboard') {
  6751. _iframe = _formdiv.querySelector('iframe')
  6752. let onloadListener = _iframe.onload = () => {
  6753. _iframe.contentWindow.document.body.appendChild(script1);
  6754. _iframe.contentWindow.document.body.appendChild(script2);
  6755. _iframe.contentWindow.document.body.appendChild(script4);
  6756. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6757. };
  6758. // if (onloadListener) {
  6759. // try {
  6760. // _iframe.src += "?cocorobo="+new Date().getTime()
  6761. // _iframe.contentWindow.document.location.reload()
  6762. // } catch (error) {
  6763. // }
  6764. // } else {
  6765. // _iframe.contentDocument.location.reload()
  6766. // }
  6767. } else {
  6768. _iframe.onload = () => {
  6769. _iframe.contentWindow.document.body.appendChild(script1);
  6770. _iframe.contentWindow.document.body.appendChild(script2);
  6771. // _iframe.contentWindow.document.body.appendChild(script3);
  6772. _iframe.contentWindow.document.body.appendChild(script4);
  6773. };
  6774. }
  6775. _jie.onclick = async () => {
  6776. let text = ''
  6777. if (aTool == 1) {
  6778. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6779. } else if (aTool == 6) {
  6780. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6781. } else if (aTool == 3) {
  6782. text = await U.MD.D.I.getEditorContent(_iframe);
  6783. }
  6784. _loading.style.display = 'flex'
  6785. console.log(_loading);
  6786. var _ajs = _iframe.contentWindow.document.createElement("script");
  6787. _ajs.type = "text/javascript";
  6788. _ajs.innerHTML =
  6789. // 'console.log(' + _loading + ');\n' +
  6790. 'var _js = document.createElement("script");\n' +
  6791. '_js.type="text/javascript";\n' +
  6792. '_js.charset="UTF-8";\n' +
  6793. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6794. "_js.onload = function(){\n" +
  6795. ' var a = document.getElementsByTagName("img")\n' +
  6796. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6797. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6798. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6799. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6800. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6801. "beforeUpload_shishi(file," +
  6802. "'" +
  6803. _userid +
  6804. "'" +
  6805. ", " +
  6806. "'" +
  6807. _cid +
  6808. "'" +
  6809. ", " +
  6810. "'" +
  6811. _stage +
  6812. "'" +
  6813. ", " +
  6814. "'" +
  6815. _task +
  6816. "'" +
  6817. ", " +
  6818. "'" +
  6819. _tool +
  6820. "'" +
  6821. ", " +
  6822. "'" +
  6823. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6824. "'" +
  6825. ", " +
  6826. "'" +
  6827. aTool +
  6828. "'" +
  6829. ", " +
  6830. "`" +
  6831. text +
  6832. "`" +
  6833. ")\n" +
  6834. " });\n" +
  6835. "}\n" +
  6836. "document.head.appendChild(_js);\n";
  6837. _iframe.contentWindow.document.head.appendChild(_ajs);
  6838. }
  6839. }
  6840. //U.MD.D.I.openClick(str);
  6841. //如果有任务栏信息
  6842. // if (_taskbar) {
  6843. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6844. // }
  6845. }
  6846. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6847. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6848. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6849. _userinfo = US.userInfo, //登录用户信息
  6850. _userid = US.userInfo.userid //登录用户id
  6851. let _iframe;
  6852. let _cid = cid,
  6853. _stage = stage,
  6854. _task = task,
  6855. _tool = tool;
  6856. var _jie = $$("div", {
  6857. "style": {
  6858. "position": "absolute",
  6859. "bottom": "50px",
  6860. "right": "50px",
  6861. "zIndex": "9999",
  6862. "backgroundColor": "#2268bc",
  6863. "color": "#fff",
  6864. "padding": "12px 20px",
  6865. "cursor": "pointer",
  6866. "borderRadius": "4px",
  6867. },
  6868. "innerHTML": "提交作业"
  6869. })
  6870. let aTool = ''
  6871. let _loading = document.createElement('div')
  6872. _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;"
  6873. // _loading.id = "";
  6874. let _lchild = document.createElement('div')
  6875. let _limg = document.createElement('img')
  6876. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6877. _limg.style = "width: 26px;margin-right: 10px;"
  6878. _lchild.appendChild(_limg)
  6879. let _lspan = document.createElement('span')
  6880. _lspan.innerHTML = "上传中..."
  6881. _lchild.appendChild(_lspan)
  6882. _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%);"
  6883. _loading.appendChild(_lchild)
  6884. let _box = $$('div', {
  6885. "style": {
  6886. "position": "relative",
  6887. "width": "100%",
  6888. "height": "100%",
  6889. },
  6890. })
  6891. _box.appendChild(_loading)
  6892. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6893. switch (str) {
  6894. case "whiteboard":
  6895. aTool = 1;
  6896. _iframe = $$("iframe", {
  6897. "frameborder": "no",
  6898. "border": "0",
  6899. "scrolling ": "no",
  6900. "style": {
  6901. "cssText": "border:0;width:100%;height:100%"
  6902. },
  6903. "src": "https://beta.iwb.cocorobo.cn/"
  6904. })
  6905. _box.appendChild(_iframe);
  6906. _box.appendChild(_jie);
  6907. _formdiv = new U.UF.UI.form(
  6908. "电子白板",
  6909. _box, {
  6910. "id": "whiteboard" + cid + stage + task + tool,
  6911. "style": {
  6912. "width": "90%",
  6913. "height": "90%",
  6914. "overflow": 'hidden'
  6915. },
  6916. "onresize": function () { }
  6917. }, {
  6918. closecallback: function () { }
  6919. }, {
  6920. "style": {
  6921. "height": "36px"
  6922. }
  6923. }).form; //创建窗体
  6924. _taskbar = {
  6925. "id": str + _formdiv.id,
  6926. "style": {
  6927. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6928. },
  6929. "name": "电子白板",
  6930. "forms": _formdiv,
  6931. "click": function () {
  6932. U.MD.D.I.openApplication(str, obj, info);
  6933. }
  6934. }
  6935. break;
  6936. case "mind":
  6937. aTool = 3;
  6938. _iframe = $$("iframe", {
  6939. "frameborder": "no",
  6940. "border": "0",
  6941. "scrolling ": "no",
  6942. "style": {
  6943. "cssText": "border:0;width:100%;height:100%"
  6944. },
  6945. "src": "/kityminder-editor/dist/index.html"
  6946. })
  6947. _box.appendChild(_iframe);
  6948. _box.appendChild(_jie);
  6949. _formdiv = new U.UF.UI.form(
  6950. "思维导图",
  6951. _box, { //"/jsmind/example/demo.html"
  6952. "id": "mind" + cid + stage + task + tool,
  6953. "style": {
  6954. "width": "90%",
  6955. "height": "90%",
  6956. "overflow": 'hidden'
  6957. },
  6958. "onresize": function () { }
  6959. }, {
  6960. closecallback: function () { }
  6961. }, {
  6962. "style": {
  6963. "height": "36px"
  6964. }
  6965. }).form; //创建窗体
  6966. _taskbar = {
  6967. "id": str + _formdiv.id,
  6968. "style": {
  6969. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6970. },
  6971. "name": "思维导图",
  6972. "forms": _formdiv,
  6973. "click": function () {
  6974. U.MD.D.I.openApplication(str, obj, info);
  6975. }
  6976. }
  6977. break;
  6978. case "MindMap":
  6979. aTool = 3;
  6980. _iframe = $$("iframe", {
  6981. "frameborder": "no",
  6982. "border": "0",
  6983. "scrolling ": "no",
  6984. "style": {
  6985. "cssText": "border:0;width:100%;height:100%"
  6986. },
  6987. "src": "//cloud.cocorobo.cn/mind/"
  6988. })
  6989. _box.appendChild(_iframe);
  6990. _box.appendChild(_jie);
  6991. _formdiv = new U.UF.UI.form(
  6992. "思维导图",
  6993. _box, { //"/jsmind/example/demo.html"
  6994. "id": "mind" + cid + stage + task + tool,
  6995. "style": {
  6996. "width": "90%",
  6997. "height": "90%",
  6998. "overflow": 'hidden'
  6999. },
  7000. "onresize": function () { }
  7001. }, {
  7002. closecallback: function () { }
  7003. }, {
  7004. "style": {
  7005. "height": "36px"
  7006. }
  7007. }).form; //创建窗体
  7008. _taskbar = {
  7009. "id": str + _formdiv.id,
  7010. "style": {
  7011. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7012. },
  7013. "name": "思维导图",
  7014. "forms": _formdiv,
  7015. "click": function () {
  7016. U.MD.D.I.openApplication(str, obj, info);
  7017. }
  7018. }
  7019. break;
  7020. case "doc":
  7021. aTool = 6;
  7022. _iframe = $$("iframe", {
  7023. "frameborder": "no",
  7024. "border": "0",
  7025. "scrolling ": "no",
  7026. "style": {
  7027. "cssText": "border:0;width:100%;height:100%"
  7028. },
  7029. "src": "/Office/Word/WordEditArea.htm"
  7030. })
  7031. _box.appendChild(_iframe);
  7032. _box.appendChild(_jie);
  7033. _formdiv = new U.UF.UI.form(
  7034. "协同文档",
  7035. _box, {
  7036. "id": "doc" + cid + stage + task + tool,
  7037. "style": {
  7038. "width": "90%",
  7039. "height": "90%",
  7040. "overflow": 'hidden'
  7041. },
  7042. "onresize": function () { }
  7043. }, {
  7044. closecallback: function () { }
  7045. }, {
  7046. "style": {
  7047. "height": "36px"
  7048. }
  7049. }).form; //创建窗体
  7050. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7051. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7052. })
  7053. _taskbar = {
  7054. "id": str + _formdiv.id,
  7055. "style": {
  7056. "backgroundImage": "url(/img/icon/doc.png)"
  7057. },
  7058. "name": "协同文档",
  7059. "forms": _formdiv,
  7060. "click": function () {
  7061. U.MD.D.I.openApplication(str, obj, info);
  7062. }
  7063. }
  7064. break;
  7065. case "mindNetwork": //好友打开
  7066. aTool = 7;
  7067. _iframe = $$("iframe", {
  7068. "webkitallowfullscreen": "",
  7069. "mozallowfullscreen": "",
  7070. "allowfullscreen": "",
  7071. "frameborder": "no",
  7072. "border": "0",
  7073. "scrolling ": "no",
  7074. "style": {
  7075. "cssText": "border:0; width:100%; height:100%;"
  7076. },
  7077. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7078. })
  7079. _box.appendChild(_iframe);
  7080. _box.appendChild(_jie);
  7081. _formdiv = new U.UF.UI.form(
  7082. "思维网格",
  7083. _box, {
  7084. "id": "mindNetwork" + cid + stage + task + tool,
  7085. "style": {
  7086. "width": "90%",
  7087. "height": "90%",
  7088. "overflow": 'hidden'
  7089. },
  7090. "onresize": function () { }
  7091. }, {
  7092. closecallback: function () { }
  7093. }, {
  7094. "style": {
  7095. "height": "36px"
  7096. }
  7097. }).form; //创建窗体
  7098. _taskbar = {
  7099. "id": str + _formdiv.id,
  7100. "style": {
  7101. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7102. },
  7103. "name": "思维网格",
  7104. "forms": _formdiv,
  7105. "click": function () {
  7106. U.MD.D.I.openApplication(str, obj, info);
  7107. }
  7108. }
  7109. break;
  7110. case "courseDesign":
  7111. _iframe = $$("iframe", {
  7112. "webkitallowfullscreen": "",
  7113. "mozallowfullscreen": "",
  7114. "allowfullscreen": "",
  7115. "frameborder": "no",
  7116. "border": "0",
  7117. "scrolling ": "no",
  7118. "style": {
  7119. "cssText": "border:0; width:100%; height:100%;"
  7120. },
  7121. "src": "/course-design-vue"
  7122. })
  7123. _box.appendChild(_iframe);
  7124. _box.appendChild(_jie);
  7125. _formdiv = new U.UF.UI.form(
  7126. "项目设计",
  7127. _box, {
  7128. "id": "courseDesign" + cid + stage + task + tool,
  7129. "style": {
  7130. "width": "90%",
  7131. "height": "90%",
  7132. "overflow": 'hidden'
  7133. },
  7134. "onresize": function () { }
  7135. }, {
  7136. closecallback: function () { }
  7137. }, {
  7138. "style": {
  7139. "height": "36px"
  7140. }
  7141. }).form; //创建窗体
  7142. _taskbar = {
  7143. "id": str + _formdiv.id,
  7144. "style": {
  7145. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7146. },
  7147. "name": "项目设计",
  7148. "forms": _formdiv,
  7149. "click": function () {
  7150. U.MD.D.I.openApplication(str, obj, info);
  7151. }
  7152. }
  7153. break;
  7154. }
  7155. const script1 = document.createElement("script");
  7156. script1.type = "text/javascript";
  7157. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7158. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7159. const script2 = document.createElement("script");
  7160. script2.type = "text/javascript";
  7161. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7162. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7163. const script3 = document.createElement("script");
  7164. script3.type = "text/javascript";
  7165. script3.charset = "UTF-8";
  7166. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7167. const script4 = document.createElement("script");
  7168. script4.type = "text/javascript";
  7169. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7170. script4.src = window.origin + "/js/Common/jietu2E.js";
  7171. if (_iframe) {
  7172. if (str == 'doc') {
  7173. _iframe = _formdiv.querySelector('iframe')
  7174. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7175. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7176. _iframe.contentWindow.document.body.appendChild(script1);
  7177. _iframe.contentWindow.document.body.appendChild(script2);
  7178. // _iframe.contentWindow.document.body.appendChild(script3);
  7179. _iframe.contentWindow.document.body.appendChild(script4);
  7180. })
  7181. if (onloadListener) {
  7182. _iframe.contentDocument.location.reload()
  7183. } else {
  7184. _iframe.contentDocument.location.reload()
  7185. }
  7186. } else if (str == 'courseDesign') {
  7187. U.UF.DL.iframeLoad(_iframe, function () {
  7188. // _iframe.contentWindow.U.MD.O.W.load();
  7189. // _iframe.contentWindow.document.body.appendChild(script1);
  7190. _iframe.contentWindow.document.body.appendChild(script2);
  7191. _iframe.contentWindow.document.body.appendChild(script4);
  7192. })
  7193. } else if (str == 'mind') {
  7194. _iframe = _formdiv.querySelector('iframe')
  7195. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7196. //
  7197. _iframe.contentWindow.document.body.appendChild(script1);
  7198. _iframe.contentWindow.document.body.appendChild(script2);
  7199. _iframe.contentWindow.document.body.appendChild(script4);
  7200. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7201. })
  7202. if (onloadListener) {
  7203. _iframe.contentDocument.location.reload()
  7204. } else {
  7205. _iframe.contentDocument.location.reload()
  7206. }
  7207. } else if (str == 'whiteboard') {
  7208. _iframe = _formdiv.querySelector('iframe')
  7209. let onloadListener = _iframe.onload = () => {
  7210. _iframe.contentWindow.document.body.appendChild(script1);
  7211. _iframe.contentWindow.document.body.appendChild(script2);
  7212. _iframe.contentWindow.document.body.appendChild(script4);
  7213. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7214. };
  7215. // if (onloadListener) {
  7216. // try {
  7217. // _iframe.src += "?cocorobo="+new Date().getTime()
  7218. // _iframe.contentWindow.document.location.reload()
  7219. // } catch (error) {
  7220. // }
  7221. // } else {
  7222. // _iframe.contentDocument.location.reload()
  7223. // }
  7224. } else {
  7225. _iframe.onload = () => {
  7226. _iframe.contentWindow.document.body.appendChild(script1);
  7227. _iframe.contentWindow.document.body.appendChild(script2);
  7228. // _iframe.contentWindow.document.body.appendChild(script3);
  7229. _iframe.contentWindow.document.body.appendChild(script4);
  7230. };
  7231. }
  7232. _jie.onclick = async () => {
  7233. let text = ''
  7234. if (aTool == 1) {
  7235. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7236. } else if (aTool == 6) {
  7237. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7238. } else if (aTool == 3) {
  7239. text = await U.MD.D.I.getEditorContent(_iframe);
  7240. }
  7241. _loading.style.display = 'flex'
  7242. console.log(_loading);
  7243. var _ajs = _iframe.contentWindow.document.createElement("script");
  7244. _ajs.type = "text/javascript";
  7245. _ajs.innerHTML =
  7246. // 'console.log(' + _loading + ');\n' +
  7247. 'var _js = document.createElement("script");\n' +
  7248. '_js.type="text/javascript";\n' +
  7249. '_js.charset="UTF-8";\n' +
  7250. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7251. "_js.onload = function(){\n" +
  7252. ' var a = document.getElementsByTagName("img")\n' +
  7253. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7254. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7255. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7256. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7257. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7258. "beforeUpload_shishi(file," +
  7259. "'" +
  7260. _userid +
  7261. "'" +
  7262. ", " +
  7263. "'" +
  7264. _cid +
  7265. "'" +
  7266. ", " +
  7267. "'" +
  7268. _stage +
  7269. "'" +
  7270. ", " +
  7271. "'" +
  7272. _task +
  7273. "'" +
  7274. ", " +
  7275. "'" +
  7276. _tool +
  7277. "'" +
  7278. ", " +
  7279. "'" +
  7280. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7281. "'" +
  7282. ", " +
  7283. "'" +
  7284. aTool +
  7285. "'" +
  7286. ", " +
  7287. "`" +
  7288. text +
  7289. "`" +
  7290. ")\n" +
  7291. " });\n" +
  7292. "}\n" +
  7293. "document.head.appendChild(_js);\n";
  7294. _iframe.contentWindow.document.head.appendChild(_ajs);
  7295. }
  7296. }
  7297. //U.MD.D.I.openClick(str);
  7298. //如果有任务栏信息
  7299. // if (_taskbar) {
  7300. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7301. // }
  7302. }
  7303. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7304. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7305. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7306. _userid = student.userid, //登录用户id
  7307. _username = student.student //用户名字
  7308. let _iframe;
  7309. let _cid = cid,
  7310. _stage = stage,
  7311. _task = task,
  7312. _tool = tool;
  7313. var _jie = $$("div", {
  7314. "style": {
  7315. "position": "absolute",
  7316. "bottom": "50px",
  7317. "right": "50px",
  7318. "zIndex": "9999",
  7319. "backgroundColor": "#2268bc",
  7320. "color": "#fff",
  7321. "padding": "12px 20px",
  7322. "cursor": "pointer",
  7323. "borderRadius": "4px",
  7324. },
  7325. "innerHTML": "提交作业"
  7326. })
  7327. let aTool = ''
  7328. let _loading = document.createElement('div')
  7329. _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;"
  7330. // _loading.id = "";
  7331. let _lchild = document.createElement('div')
  7332. let _limg = document.createElement('img')
  7333. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7334. _limg.style = "width: 26px;margin-right: 10px;"
  7335. _lchild.appendChild(_limg)
  7336. let _lspan = document.createElement('span')
  7337. _lspan.innerHTML = "上传中..."
  7338. _lchild.appendChild(_lspan)
  7339. _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%);"
  7340. _loading.appendChild(_lchild)
  7341. var _box = $$('div', {
  7342. "style": {
  7343. "position": "relative",
  7344. "width": "100%",
  7345. "height": "100%",
  7346. },
  7347. })
  7348. _box.appendChild(_loading)
  7349. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7350. switch (str) {
  7351. case "whiteboard":
  7352. aTool = 1;
  7353. _iframe = $$("iframe", {
  7354. "frameborder": "no",
  7355. "border": "0",
  7356. "scrolling ": "no",
  7357. "style": {
  7358. "cssText": "border:0;width:100%;height:100%"
  7359. },
  7360. "src": "https://beta.iwb.cocorobo.cn/"
  7361. })
  7362. _box.appendChild(_iframe);
  7363. _box.appendChild(_jie);
  7364. _formdiv = new U.UF.UI.form(
  7365. "电子白板-" + _username,
  7366. _box, {
  7367. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7368. "style": {
  7369. "width": "90%",
  7370. "height": "90%",
  7371. "overflow": 'hidden'
  7372. },
  7373. "onresize": function () { }
  7374. }, {
  7375. closecallback: function () { }
  7376. }, {
  7377. "style": {
  7378. "height": "36px"
  7379. }
  7380. }).form; //创建窗体
  7381. _taskbar = {
  7382. "id": str + _formdiv.id,
  7383. "style": {
  7384. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7385. },
  7386. "name": "电子白板",
  7387. "forms": _formdiv,
  7388. "click": function () {
  7389. U.MD.D.I.openApplication(str, obj, info);
  7390. }
  7391. }
  7392. break;
  7393. case "mind":
  7394. aTool = 3;
  7395. _iframe = $$("iframe", {
  7396. "frameborder": "no",
  7397. "border": "0",
  7398. "scrolling ": "no",
  7399. "style": {
  7400. "cssText": "border:0;width:100%;height:100%"
  7401. },
  7402. "src": "/kityminder-editor/dist/index.html"
  7403. })
  7404. _box.appendChild(_iframe);
  7405. _box.appendChild(_jie);
  7406. _formdiv = new U.UF.UI.form(
  7407. "思维导图-" + _username,
  7408. _box, { //"/jsmind/example/demo.html"
  7409. "id": "mind" + cid + stage + task + tool + _userid,
  7410. "style": {
  7411. "width": "90%",
  7412. "height": "90%",
  7413. "overflow": 'hidden'
  7414. },
  7415. "onresize": function () { }
  7416. }, {
  7417. closecallback: function () { }
  7418. }, {
  7419. "style": {
  7420. "height": "36px"
  7421. }
  7422. }).form; //创建窗体
  7423. _taskbar = {
  7424. "id": str + _formdiv.id,
  7425. "style": {
  7426. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7427. },
  7428. "name": "思维导图",
  7429. "forms": _formdiv,
  7430. "click": function () {
  7431. U.MD.D.I.openApplication(str, obj, info);
  7432. }
  7433. }
  7434. break;
  7435. case "MindMap":
  7436. aTool = 3;
  7437. _iframe = $$("iframe", {
  7438. "frameborder": "no",
  7439. "border": "0",
  7440. "scrolling ": "no",
  7441. "style": {
  7442. "cssText": "border:0;width:100%;height:100%"
  7443. },
  7444. "src": "//cloud.cocorobo.cn/mind/"
  7445. })
  7446. _box.appendChild(_iframe);
  7447. _box.appendChild(_jie);
  7448. _formdiv = new U.UF.UI.form(
  7449. "思维导图-" + _username,
  7450. _box, { //"/jsmind/example/demo.html"
  7451. "id": "mind" + cid + stage + task + tool + _userid,
  7452. "style": {
  7453. "width": "90%",
  7454. "height": "90%",
  7455. "overflow": 'hidden'
  7456. },
  7457. "onresize": function () { }
  7458. }, {
  7459. closecallback: function () { }
  7460. }, {
  7461. "style": {
  7462. "height": "36px"
  7463. }
  7464. }).form; //创建窗体
  7465. _taskbar = {
  7466. "id": str + _formdiv.id,
  7467. "style": {
  7468. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7469. },
  7470. "name": "思维导图",
  7471. "forms": _formdiv,
  7472. "click": function () {
  7473. U.MD.D.I.openApplication(str, obj, info);
  7474. }
  7475. }
  7476. break;
  7477. case "doc":
  7478. aTool = 6;
  7479. _iframe = $$("iframe", {
  7480. "frameborder": "no",
  7481. "border": "0",
  7482. "scrolling ": "no",
  7483. "style": {
  7484. "cssText": "border:0;width:100%;height:100%"
  7485. },
  7486. "src": "/Office/Word/WordEditArea.htm"
  7487. })
  7488. _box.appendChild(_iframe);
  7489. _box.appendChild(_jie);
  7490. _formdiv = new U.UF.UI.form(
  7491. "协同文档-" + _username,
  7492. _box, {
  7493. "id": "doc" + cid + stage + task + tool + _userid,
  7494. "style": {
  7495. "width": "90%",
  7496. "height": "90%",
  7497. "overflow": 'hidden'
  7498. },
  7499. "onresize": function () { }
  7500. }, {
  7501. closecallback: function () { }
  7502. }, {
  7503. "style": {
  7504. "height": "36px"
  7505. }
  7506. }).form; //创建窗体
  7507. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7508. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7509. })
  7510. _taskbar = {
  7511. "id": str + _formdiv.id,
  7512. "style": {
  7513. "backgroundImage": "url(/img/icon/doc.png)"
  7514. },
  7515. "name": "协同文档",
  7516. "forms": _formdiv,
  7517. "click": function () {
  7518. U.MD.D.I.openApplication(str, obj, info);
  7519. }
  7520. }
  7521. break;
  7522. case "mindNetwork": //好友打开
  7523. aTool = 7;
  7524. _iframe = $$("iframe", {
  7525. "webkitallowfullscreen": "",
  7526. "mozallowfullscreen": "",
  7527. "allowfullscreen": "",
  7528. "frameborder": "no",
  7529. "border": "0",
  7530. "scrolling ": "no",
  7531. "style": {
  7532. "cssText": "border:0; width:100%; height:100%;"
  7533. },
  7534. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7535. })
  7536. _box.appendChild(_iframe);
  7537. _box.appendChild(_jie);
  7538. _formdiv = new U.UF.UI.form(
  7539. "思维网格-" + _username,
  7540. _box, {
  7541. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7542. "style": {
  7543. "width": "90%",
  7544. "height": "90%",
  7545. "overflow": 'hidden'
  7546. },
  7547. "onresize": function () { }
  7548. }, {
  7549. closecallback: function () { }
  7550. }, {
  7551. "style": {
  7552. "height": "36px"
  7553. }
  7554. }).form; //创建窗体
  7555. _taskbar = {
  7556. "id": str + _formdiv.id,
  7557. "style": {
  7558. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7559. },
  7560. "name": "思维网格",
  7561. "forms": _formdiv,
  7562. "click": function () {
  7563. U.MD.D.I.openApplication(str, obj, info);
  7564. }
  7565. }
  7566. break;
  7567. case "courseDesign":
  7568. _iframe = $$("iframe", {
  7569. "webkitallowfullscreen": "",
  7570. "mozallowfullscreen": "",
  7571. "allowfullscreen": "",
  7572. "frameborder": "no",
  7573. "border": "0",
  7574. "scrolling ": "no",
  7575. "style": {
  7576. "cssText": "border:0; width:100%; height:100%;"
  7577. },
  7578. "src": "/course-design-vue"
  7579. })
  7580. _box.appendChild(_iframe);
  7581. _box.appendChild(_jie);
  7582. _formdiv = new U.UF.UI.form(
  7583. "项目设计-" + _username,
  7584. _box, {
  7585. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7586. "style": {
  7587. "width": "90%",
  7588. "height": "90%",
  7589. "overflow": 'hidden'
  7590. },
  7591. "onresize": function () { }
  7592. }, {
  7593. closecallback: function () { }
  7594. }, {
  7595. "style": {
  7596. "height": "36px"
  7597. }
  7598. }).form; //创建窗体
  7599. _taskbar = {
  7600. "id": str + _formdiv.id,
  7601. "style": {
  7602. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7603. },
  7604. "name": "项目设计",
  7605. "forms": _formdiv,
  7606. "click": function () {
  7607. U.MD.D.I.openApplication(str, obj, info);
  7608. }
  7609. }
  7610. break;
  7611. }
  7612. const script1 = document.createElement("script");
  7613. script1.type = "text/javascript";
  7614. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7615. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7616. const script2 = document.createElement("script");
  7617. script2.type = "text/javascript";
  7618. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7619. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7620. const script3 = document.createElement("script");
  7621. script3.type = "text/javascript";
  7622. script3.charset = "UTF-8";
  7623. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7624. const script4 = document.createElement("script");
  7625. script4.type = "text/javascript";
  7626. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7627. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7628. if (_iframe) {
  7629. if (str == 'doc') {
  7630. _iframe = _formdiv.querySelector('iframe')
  7631. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7632. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7633. _iframe.contentWindow.document.body.appendChild(script1);
  7634. _iframe.contentWindow.document.body.appendChild(script2);
  7635. // _iframe.contentWindow.document.body.appendChild(script3);
  7636. _iframe.contentWindow.document.body.appendChild(script4);
  7637. })
  7638. if (onloadListener) {
  7639. _iframe.contentDocument.location.reload()
  7640. } else {
  7641. _iframe.contentDocument.location.reload()
  7642. }
  7643. } else if (str == 'courseDesign') {
  7644. U.UF.DL.iframeLoad(_iframe, function () {
  7645. // _iframe.contentWindow.U.MD.O.W.load();
  7646. // _iframe.contentWindow.document.body.appendChild(script1);
  7647. _iframe.contentWindow.document.body.appendChild(script2);
  7648. _iframe.contentWindow.document.body.appendChild(script4);
  7649. })
  7650. } else if (str == 'mind') {
  7651. _iframe = _formdiv.querySelector('iframe')
  7652. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7653. //
  7654. _iframe.contentWindow.document.body.appendChild(script1);
  7655. _iframe.contentWindow.document.body.appendChild(script2);
  7656. _iframe.contentWindow.document.body.appendChild(script4);
  7657. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7658. })
  7659. if (onloadListener) {
  7660. _iframe.contentDocument.location.reload()
  7661. } else {
  7662. _iframe.contentDocument.location.reload()
  7663. }
  7664. } else if (str == 'whiteboard') {
  7665. _iframe = _formdiv.querySelector('iframe')
  7666. let onloadListener = _iframe.onload = () => {
  7667. _iframe.contentWindow.document.body.appendChild(script1);
  7668. _iframe.contentWindow.document.body.appendChild(script2);
  7669. _iframe.contentWindow.document.body.appendChild(script4);
  7670. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7671. };
  7672. // if (onloadListener) {
  7673. // try {
  7674. // _iframe.src += "?cocorobo="+new Date().getTime()
  7675. // _iframe.contentWindow.document.location.reload()
  7676. // } catch (error) {
  7677. // }
  7678. // } else {
  7679. // _iframe.contentDocument.location.reload()
  7680. // }
  7681. } else {
  7682. _iframe.onload = () => {
  7683. _iframe.contentWindow.document.body.appendChild(script1);
  7684. _iframe.contentWindow.document.body.appendChild(script2);
  7685. // _iframe.contentWindow.document.body.appendChild(script3);
  7686. _iframe.contentWindow.document.body.appendChild(script4);
  7687. };
  7688. }
  7689. _jie.onclick = async () => {
  7690. let text = ''
  7691. if (aTool == 1) {
  7692. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7693. } else if (aTool == 6) {
  7694. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7695. } else if (aTool == 3) {
  7696. text = await U.MD.D.I.getEditorContent(_iframe);
  7697. }
  7698. _loading.style.display = 'flex'
  7699. console.log(_loading);
  7700. var _ajs = _iframe.contentWindow.document.createElement("script");
  7701. _ajs.type = "text/javascript";
  7702. _ajs.innerHTML =
  7703. // 'console.log(' + _loading + ');\n' +
  7704. 'var _js = document.createElement("script");\n' +
  7705. '_js.type="text/javascript";\n' +
  7706. '_js.charset="UTF-8";\n' +
  7707. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7708. "_js.onload = function(){\n" +
  7709. ' var a = document.getElementsByTagName("img")\n' +
  7710. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7711. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7712. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7713. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7714. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7715. "beforeUpload_shishi(file," +
  7716. "'" +
  7717. _userid +
  7718. "'" +
  7719. ", " +
  7720. "'" +
  7721. _cid +
  7722. "'" +
  7723. ", " +
  7724. "'" +
  7725. _stage +
  7726. "'" +
  7727. ", " +
  7728. "'" +
  7729. _task +
  7730. "'" +
  7731. ", " +
  7732. "'" +
  7733. _tool +
  7734. "'" +
  7735. ", " +
  7736. "'" +
  7737. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7738. "'" +
  7739. ", " +
  7740. "'" +
  7741. aTool +
  7742. "'" +
  7743. ", " +
  7744. "`" +
  7745. text +
  7746. "`" +
  7747. ")\n" +
  7748. " });\n" +
  7749. "}\n" +
  7750. "document.head.appendChild(_js);\n";
  7751. _iframe.contentWindow.document.head.appendChild(_ajs);
  7752. }
  7753. }
  7754. }
  7755. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7756. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7757. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7758. _userid = student.userid, //登录用户id
  7759. _username = student.student //用户名字
  7760. let _iframe;
  7761. let _cid = cid,
  7762. _stage = stage,
  7763. _task = task,
  7764. _tool = tool;
  7765. var _jie = $$("div", {
  7766. "style": {
  7767. "position": "absolute",
  7768. "bottom": "50px",
  7769. "right": "50px",
  7770. "zIndex": "9999",
  7771. "backgroundColor": "#2268bc",
  7772. "color": "#fff",
  7773. "padding": "12px 20px",
  7774. "cursor": "pointer",
  7775. "borderRadius": "4px",
  7776. },
  7777. "innerHTML": "提交作业"
  7778. })
  7779. let aTool = ''
  7780. let _loading = document.createElement('div')
  7781. _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;"
  7782. // _loading.id = "";
  7783. let _lchild = document.createElement('div')
  7784. let _limg = document.createElement('img')
  7785. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7786. _limg.style = "width: 26px;margin-right: 10px;"
  7787. _lchild.appendChild(_limg)
  7788. let _lspan = document.createElement('span')
  7789. _lspan.innerHTML = "上传中..."
  7790. _lchild.appendChild(_lspan)
  7791. _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%);"
  7792. _loading.appendChild(_lchild)
  7793. var _box = $$('div', {
  7794. "style": {
  7795. "position": "relative",
  7796. "width": "100%",
  7797. "height": "100%",
  7798. },
  7799. })
  7800. _box.appendChild(_loading)
  7801. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7802. switch (str) {
  7803. case "whiteboard":
  7804. aTool = 1;
  7805. _iframe = $$("iframe", {
  7806. "frameborder": "no",
  7807. "border": "0",
  7808. "scrolling ": "no",
  7809. "style": {
  7810. "cssText": "border:0;width:100%;height:100%"
  7811. },
  7812. "src": "https://beta.iwb.cocorobo.cn/"
  7813. })
  7814. _box.appendChild(_iframe);
  7815. _box.appendChild(_jie);
  7816. _formdiv = new U.UF.UI.form(
  7817. "电子白板-" + _username,
  7818. _box, {
  7819. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7820. "style": {
  7821. "width": "90%",
  7822. "height": "90%",
  7823. "overflow": 'hidden'
  7824. },
  7825. "onresize": function () { }
  7826. }, {
  7827. closecallback: function () { }
  7828. }, {
  7829. "style": {
  7830. "height": "36px"
  7831. }
  7832. }).form; //创建窗体
  7833. _taskbar = {
  7834. "id": str + _formdiv.id,
  7835. "style": {
  7836. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7837. },
  7838. "name": "电子白板",
  7839. "forms": _formdiv,
  7840. "click": function () {
  7841. U.MD.D.I.openApplication(str, obj, info);
  7842. }
  7843. }
  7844. break;
  7845. case "mind":
  7846. aTool = 3;
  7847. _iframe = $$("iframe", {
  7848. "frameborder": "no",
  7849. "border": "0",
  7850. "scrolling ": "no",
  7851. "style": {
  7852. "cssText": "border:0;width:100%;height:100%"
  7853. },
  7854. "src": "/kityminder-editor/dist/index.html"
  7855. })
  7856. _box.appendChild(_iframe);
  7857. _box.appendChild(_jie);
  7858. _formdiv = new U.UF.UI.form(
  7859. "思维导图-" + _username,
  7860. _box, { //"/jsmind/example/demo.html"
  7861. "id": "mind" + cid + stage + task + tool + _userid,
  7862. "style": {
  7863. "width": "90%",
  7864. "height": "90%",
  7865. "overflow": 'hidden'
  7866. },
  7867. "onresize": function () { }
  7868. }, {
  7869. closecallback: function () { }
  7870. }, {
  7871. "style": {
  7872. "height": "36px"
  7873. }
  7874. }).form; //创建窗体
  7875. _taskbar = {
  7876. "id": str + _formdiv.id,
  7877. "style": {
  7878. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7879. },
  7880. "name": "思维导图",
  7881. "forms": _formdiv,
  7882. "click": function () {
  7883. U.MD.D.I.openApplication(str, obj, info);
  7884. }
  7885. }
  7886. break;
  7887. case "MindMap":
  7888. aTool = 3;
  7889. _iframe = $$("iframe", {
  7890. "frameborder": "no",
  7891. "border": "0",
  7892. "scrolling ": "no",
  7893. "style": {
  7894. "cssText": "border:0;width:100%;height:100%"
  7895. },
  7896. "src": "//cloud.cocorobo.cn/mind/"
  7897. })
  7898. _box.appendChild(_iframe);
  7899. _box.appendChild(_jie);
  7900. _formdiv = new U.UF.UI.form(
  7901. "思维导图-" + _username,
  7902. _box, { //"/jsmind/example/demo.html"
  7903. "id": "mind" + cid + stage + task + tool + _userid,
  7904. "style": {
  7905. "width": "90%",
  7906. "height": "90%",
  7907. "overflow": 'hidden'
  7908. },
  7909. "onresize": function () { }
  7910. }, {
  7911. closecallback: function () { }
  7912. }, {
  7913. "style": {
  7914. "height": "36px"
  7915. }
  7916. }).form; //创建窗体
  7917. _taskbar = {
  7918. "id": str + _formdiv.id,
  7919. "style": {
  7920. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7921. },
  7922. "name": "思维导图",
  7923. "forms": _formdiv,
  7924. "click": function () {
  7925. U.MD.D.I.openApplication(str, obj, info);
  7926. }
  7927. }
  7928. break;
  7929. case "doc":
  7930. aTool = 6;
  7931. _iframe = $$("iframe", {
  7932. "frameborder": "no",
  7933. "border": "0",
  7934. "scrolling ": "no",
  7935. "style": {
  7936. "cssText": "border:0;width:100%;height:100%"
  7937. },
  7938. "src": "/Office/Word/WordEditArea.htm"
  7939. })
  7940. _box.appendChild(_iframe);
  7941. _box.appendChild(_jie);
  7942. _formdiv = new U.UF.UI.form(
  7943. "协同文档-" + _username,
  7944. _box, {
  7945. "id": "doc" + cid + stage + task + tool + _userid,
  7946. "style": {
  7947. "width": "90%",
  7948. "height": "90%",
  7949. "overflow": 'hidden'
  7950. },
  7951. "onresize": function () { }
  7952. }, {
  7953. closecallback: function () { }
  7954. }, {
  7955. "style": {
  7956. "height": "36px"
  7957. }
  7958. }).form; //创建窗体
  7959. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7960. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7961. })
  7962. _taskbar = {
  7963. "id": str + _formdiv.id,
  7964. "style": {
  7965. "backgroundImage": "url(/img/icon/doc.png)"
  7966. },
  7967. "name": "协同文档",
  7968. "forms": _formdiv,
  7969. "click": function () {
  7970. U.MD.D.I.openApplication(str, obj, info);
  7971. }
  7972. }
  7973. break;
  7974. case "mindNetwork": //好友打开
  7975. aTool = 7;
  7976. _iframe = $$("iframe", {
  7977. "webkitallowfullscreen": "",
  7978. "mozallowfullscreen": "",
  7979. "allowfullscreen": "",
  7980. "frameborder": "no",
  7981. "border": "0",
  7982. "scrolling ": "no",
  7983. "style": {
  7984. "cssText": "border:0; width:100%; height:100%;"
  7985. },
  7986. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7987. })
  7988. _box.appendChild(_iframe);
  7989. _box.appendChild(_jie);
  7990. _formdiv = new U.UF.UI.form(
  7991. "思维网格-" + _username,
  7992. _box, {
  7993. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7994. "style": {
  7995. "width": "90%",
  7996. "height": "90%",
  7997. "overflow": 'hidden'
  7998. },
  7999. "onresize": function () { }
  8000. }, {
  8001. closecallback: function () { }
  8002. }, {
  8003. "style": {
  8004. "height": "36px"
  8005. }
  8006. }).form; //创建窗体
  8007. _taskbar = {
  8008. "id": str + _formdiv.id,
  8009. "style": {
  8010. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8011. },
  8012. "name": "思维网格",
  8013. "forms": _formdiv,
  8014. "click": function () {
  8015. U.MD.D.I.openApplication(str, obj, info);
  8016. }
  8017. }
  8018. break;
  8019. case "courseDesign":
  8020. _iframe = $$("iframe", {
  8021. "webkitallowfullscreen": "",
  8022. "mozallowfullscreen": "",
  8023. "allowfullscreen": "",
  8024. "frameborder": "no",
  8025. "border": "0",
  8026. "scrolling ": "no",
  8027. "style": {
  8028. "cssText": "border:0; width:100%; height:100%;"
  8029. },
  8030. "src": "/course-design-vue"
  8031. })
  8032. _box.appendChild(_iframe);
  8033. _box.appendChild(_jie);
  8034. _formdiv = new U.UF.UI.form(
  8035. "项目设计-" + _username,
  8036. _box, {
  8037. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8038. "style": {
  8039. "width": "90%",
  8040. "height": "90%",
  8041. "overflow": 'hidden'
  8042. },
  8043. "onresize": function () { }
  8044. }, {
  8045. closecallback: function () { }
  8046. }, {
  8047. "style": {
  8048. "height": "36px"
  8049. }
  8050. }).form; //创建窗体
  8051. _taskbar = {
  8052. "id": str + _formdiv.id,
  8053. "style": {
  8054. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8055. },
  8056. "name": "项目设计",
  8057. "forms": _formdiv,
  8058. "click": function () {
  8059. U.MD.D.I.openApplication(str, obj, info);
  8060. }
  8061. }
  8062. break;
  8063. }
  8064. const script1 = document.createElement("script");
  8065. script1.type = "text/javascript";
  8066. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8067. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8068. const script2 = document.createElement("script");
  8069. script2.type = "text/javascript";
  8070. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8071. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8072. const script3 = document.createElement("script");
  8073. script3.type = "text/javascript";
  8074. script3.charset = "UTF-8";
  8075. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8076. const script4 = document.createElement("script");
  8077. script4.type = "text/javascript";
  8078. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8079. script4.src = window.origin + "/js/Common/jietu2E.js";
  8080. if (_iframe) {
  8081. if (str == 'doc') {
  8082. _iframe = _formdiv.querySelector('iframe')
  8083. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8084. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8085. _iframe.contentWindow.document.body.appendChild(script1);
  8086. _iframe.contentWindow.document.body.appendChild(script2);
  8087. // _iframe.contentWindow.document.body.appendChild(script3);
  8088. _iframe.contentWindow.document.body.appendChild(script4);
  8089. })
  8090. if (onloadListener) {
  8091. _iframe.contentDocument.location.reload()
  8092. } else {
  8093. _iframe.contentDocument.location.reload()
  8094. }
  8095. } else if (str == 'courseDesign') {
  8096. U.UF.DL.iframeLoad(_iframe, function () {
  8097. // _iframe.contentWindow.U.MD.O.W.load();
  8098. // _iframe.contentWindow.document.body.appendChild(script1);
  8099. _iframe.contentWindow.document.body.appendChild(script2);
  8100. _iframe.contentWindow.document.body.appendChild(script4);
  8101. })
  8102. } else if (str == 'mind') {
  8103. _iframe = _formdiv.querySelector('iframe')
  8104. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8105. //
  8106. _iframe.contentWindow.document.body.appendChild(script1);
  8107. _iframe.contentWindow.document.body.appendChild(script2);
  8108. _iframe.contentWindow.document.body.appendChild(script4);
  8109. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8110. })
  8111. if (onloadListener) {
  8112. _iframe.contentDocument.location.reload()
  8113. } else {
  8114. _iframe.contentDocument.location.reload()
  8115. }
  8116. } else if (str == 'whiteboard') {
  8117. _iframe = _formdiv.querySelector('iframe')
  8118. let onloadListener = _iframe.onload = () => {
  8119. _iframe.contentWindow.document.body.appendChild(script1);
  8120. _iframe.contentWindow.document.body.appendChild(script2);
  8121. _iframe.contentWindow.document.body.appendChild(script4);
  8122. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8123. };
  8124. // if (onloadListener) {
  8125. // try {
  8126. // _iframe.src += "?cocorobo="+new Date().getTime()
  8127. // _iframe.contentWindow.document.location.reload()
  8128. // } catch (error) {
  8129. // }
  8130. // } else {
  8131. // _iframe.contentDocument.location.reload()
  8132. // }
  8133. } else {
  8134. _iframe.onload = () => {
  8135. _iframe.contentWindow.document.body.appendChild(script1);
  8136. _iframe.contentWindow.document.body.appendChild(script2);
  8137. // _iframe.contentWindow.document.body.appendChild(script3);
  8138. _iframe.contentWindow.document.body.appendChild(script4);
  8139. };
  8140. }
  8141. _jie.onclick = async () => {
  8142. let text = ''
  8143. if (aTool == 1) {
  8144. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8145. } else if (aTool == 6) {
  8146. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8147. } else if (aTool == 3) {
  8148. text = await U.MD.D.I.getEditorContent(_iframe);
  8149. }
  8150. _loading.style.display = 'flex'
  8151. console.log(_loading);
  8152. var _ajs = _iframe.contentWindow.document.createElement("script");
  8153. _ajs.type = "text/javascript";
  8154. _ajs.innerHTML =
  8155. // 'console.log(' + _loading + ');\n' +
  8156. 'var _js = document.createElement("script");\n' +
  8157. '_js.type="text/javascript";\n' +
  8158. '_js.charset="UTF-8";\n' +
  8159. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8160. "_js.onload = function(){\n" +
  8161. ' var a = document.getElementsByTagName("img")\n' +
  8162. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8163. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8164. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8165. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8166. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8167. "beforeUpload_shishi(file," +
  8168. "'" +
  8169. _userid +
  8170. "'" +
  8171. ", " +
  8172. "'" +
  8173. _cid +
  8174. "'" +
  8175. ", " +
  8176. "'" +
  8177. _stage +
  8178. "'" +
  8179. ", " +
  8180. "'" +
  8181. _task +
  8182. "'" +
  8183. ", " +
  8184. "'" +
  8185. _tool +
  8186. "'" +
  8187. ", " +
  8188. "'" +
  8189. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8190. "'" +
  8191. ", " +
  8192. "'" +
  8193. aTool +
  8194. "'" +
  8195. ", " +
  8196. "`" +
  8197. text +
  8198. "`" +
  8199. ")\n" +
  8200. " });\n" +
  8201. "}\n" +
  8202. "document.head.appendChild(_js);\n";
  8203. _iframe.contentWindow.document.head.appendChild(_ajs);
  8204. }
  8205. }
  8206. }
  8207. U.MD.D.I.getEditorContent = function (iframe) {
  8208. return new Promise((resolve, reject) => {
  8209. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8210. console.log(content);
  8211. resolve(content)
  8212. });
  8213. });
  8214. }
  8215. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8216. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8217. // if (res.value[0].length > 0) {
  8218. // // resolve(res.value[0][0].text);
  8219. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8220. // $(fileInput).val('');
  8221. // });
  8222. // }
  8223. // }, [], { "type": "GET", "withCredentials": true });
  8224. var xmlhttp;
  8225. var Mac, Sn, DeviceId
  8226. if (window.XMLHttpRequest) {
  8227. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8228. xmlhttp = new XMLHttpRequest();
  8229. } else {
  8230. // IE6, IE5 浏览器执行代码
  8231. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8232. }
  8233. xmlhttp.onreadystatechange = function () {
  8234. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8235. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8236. // resolve(res.value[0][0].text);
  8237. if (type == '2') {
  8238. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8239. } else if (type == '3') {
  8240. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8241. }
  8242. } else {
  8243. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8244. }
  8245. }
  8246. }
  8247. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8248. xmlhttp.send();
  8249. }
  8250. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8251. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8252. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8253. _userinfo = US.userInfo, //登录用户信息
  8254. _userid = US.userInfo.userid //登录用户id
  8255. let _iframe;
  8256. let _cid = cid,
  8257. _stage = stage,
  8258. _task = task,
  8259. _tool = tool;
  8260. var _jie = $$("div", {
  8261. "style": {
  8262. "position": "absolute",
  8263. "bottom": "50px",
  8264. "right": "50px",
  8265. "zIndex": "9999",
  8266. "backgroundColor": "#2268bc",
  8267. "color": "#fff",
  8268. "padding": "12px 20px",
  8269. "cursor": "pointer",
  8270. "borderRadius": "4px",
  8271. },
  8272. "innerHTML": "确认并提交"
  8273. })
  8274. let aTool = ''
  8275. let _loading = document.createElement('div')
  8276. _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;"
  8277. // _loading.id = "";
  8278. let _lchild = document.createElement('div')
  8279. let _limg = document.createElement('img')
  8280. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8281. _limg.style = "width: 26px;margin-right: 10px;"
  8282. _lchild.appendChild(_limg)
  8283. let _lspan = document.createElement('span')
  8284. _lspan.innerHTML = "上传中..."
  8285. _lchild.appendChild(_lspan)
  8286. _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%);"
  8287. _loading.appendChild(_lchild)
  8288. var _box = $$('div', {
  8289. "style": {
  8290. "position": "relative",
  8291. "width": "100%",
  8292. "height": "100%",
  8293. },
  8294. })
  8295. _box.appendChild(_loading)
  8296. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8297. switch (str) {
  8298. case "whiteboard":
  8299. aTool = 1;
  8300. _iframe = $$("iframe", {
  8301. "frameborder": "no",
  8302. "border": "0",
  8303. "scrolling ": "no",
  8304. "style": {
  8305. "cssText": "border:0;width:100%;height:100%"
  8306. },
  8307. "src": "https://beta.iwb.cocorobo.cn/"
  8308. })
  8309. _box.appendChild(_iframe);
  8310. _box.appendChild(_jie);
  8311. _formdiv = new U.UF.UI.form(
  8312. "电子白板",
  8313. _box, {
  8314. "id": "whiteboards" + cid + stage + task + tool,
  8315. "style": {
  8316. "width": "90%",
  8317. "height": "90%",
  8318. "overflow": 'hidden'
  8319. },
  8320. "onresize": function () { }
  8321. }, {
  8322. closecallback: function () { }
  8323. }, {
  8324. "style": {
  8325. "height": "36px"
  8326. }
  8327. }).form; //创建窗体
  8328. _taskbar = {
  8329. "id": str + _formdiv.id,
  8330. "style": {
  8331. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8332. },
  8333. "name": "电子白板",
  8334. "forms": _formdiv,
  8335. "click": function () {
  8336. U.MD.D.I.openApplication(str, obj, info);
  8337. }
  8338. }
  8339. break;
  8340. case "mind":
  8341. aTool = 3;
  8342. _iframe = $$("iframe", {
  8343. "frameborder": "no",
  8344. "border": "0",
  8345. "scrolling ": "no",
  8346. "style": {
  8347. "cssText": "border:0;width:100%;height:100%"
  8348. },
  8349. "src": "/kityminder-editor/dist/index.html"
  8350. });
  8351. _box.appendChild(_iframe);
  8352. _box.appendChild(_jie);
  8353. _formdiv = new U.UF.UI.form(
  8354. "思维导图",
  8355. _box, { //"/jsmind/example/demo.html"
  8356. "id": "minds" + cid + stage + task + tool,
  8357. "style": {
  8358. "width": "90%",
  8359. "height": "90%",
  8360. "overflow": 'hidden'
  8361. },
  8362. "onresize": function () { }
  8363. }, {
  8364. closecallback: function () { }
  8365. }, {
  8366. "style": {
  8367. "height": "36px"
  8368. }
  8369. }).form; //创建窗体
  8370. _taskbar = {
  8371. "id": str + _formdiv.id,
  8372. "style": {
  8373. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8374. },
  8375. "name": "思维导图",
  8376. "forms": _formdiv,
  8377. "click": function () {
  8378. U.MD.D.I.openApplication(str, obj, info);
  8379. }
  8380. }
  8381. break;
  8382. case "doc":
  8383. aTool = 6;
  8384. _iframe = $$("iframe", {
  8385. "frameborder": "no",
  8386. "border": "0",
  8387. "scrolling ": "no",
  8388. "style": {
  8389. "cssText": "border:0;width:100%;height:100%"
  8390. },
  8391. "src": "/Office/Word/WordEditArea.htm"
  8392. })
  8393. _box.appendChild(_iframe);
  8394. _box.appendChild(_jie);
  8395. _formdiv = new U.UF.UI.form(
  8396. "协同文档",
  8397. _box, {
  8398. "id": "docs" + cid + stage + task + tool,
  8399. "style": {
  8400. "width": "90%",
  8401. "height": "90%",
  8402. "overflow": 'hidden'
  8403. },
  8404. "onresize": function () { }
  8405. }, {
  8406. closecallback: function () { }
  8407. }, {
  8408. "style": {
  8409. "height": "36px"
  8410. }
  8411. }).form; //创建窗体
  8412. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8413. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8414. })
  8415. _taskbar = {
  8416. "id": str + _formdiv.id,
  8417. "style": {
  8418. "backgroundImage": "url(/img/icon/doc.png)"
  8419. },
  8420. "name": "协同文档",
  8421. "forms": _formdiv,
  8422. "click": function () {
  8423. U.MD.D.I.openApplication(str, obj, info);
  8424. }
  8425. }
  8426. break;
  8427. }
  8428. const script1 = document.createElement("script");
  8429. script1.type = "text/javascript";
  8430. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8431. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8432. const script2 = document.createElement("script");
  8433. script2.type = "text/javascript";
  8434. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8435. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8436. const script3 = document.createElement("script");
  8437. script3.type = "text/javascript";
  8438. script3.charset = "UTF-8";
  8439. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8440. const script4 = document.createElement("script");
  8441. script4.type = "text/javascript";
  8442. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8443. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8444. if (_iframe) {
  8445. if (str == 'doc') {
  8446. _iframe = _formdiv.querySelector('iframe')
  8447. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8448. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8449. _iframe.contentWindow.document.body.appendChild(script1);
  8450. _iframe.contentWindow.document.body.appendChild(script2);
  8451. // _iframe.contentWindow.document.body.appendChild(script3);
  8452. _iframe.contentWindow.document.body.appendChild(script4);
  8453. })
  8454. if (onloadListener) {
  8455. _iframe.contentDocument.location.reload()
  8456. } else {
  8457. _iframe.contentDocument.location.reload()
  8458. }
  8459. } else if (str == 'mind') {
  8460. _iframe = _formdiv.querySelector('iframe')
  8461. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8462. _iframe.contentWindow.document.body.appendChild(script1);
  8463. _iframe.contentWindow.document.body.appendChild(script2);
  8464. _iframe.contentWindow.document.body.appendChild(script4);
  8465. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8466. })
  8467. if (onloadListener) {
  8468. _iframe.contentDocument.location.reload()
  8469. } else {
  8470. _iframe.contentDocument.location.reload()
  8471. }
  8472. } else {
  8473. _iframe.onload = () => {
  8474. _iframe.contentWindow.document.body.appendChild(script1);
  8475. _iframe.contentWindow.document.body.appendChild(script2);
  8476. // _iframe.contentWindow.document.body.appendChild(script3);
  8477. _iframe.contentWindow.document.body.appendChild(script4);
  8478. };
  8479. }
  8480. _jie.onclick = async () => {
  8481. let text = ''
  8482. if (aTool == 6) {
  8483. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8484. } else if (aTool == 3) {
  8485. text = await U.MD.D.I.getEditorContent(_iframe);
  8486. }
  8487. _loading.style.display = 'flex'
  8488. console.log(_loading);
  8489. var _ajs = _iframe.contentWindow.document.createElement("script");
  8490. _ajs.type = "text/javascript";
  8491. _ajs.innerHTML =
  8492. // 'console.log(' + _loading + ');\n' +
  8493. 'var _js = document.createElement("script");\n' +
  8494. '_js.type="text/javascript";\n' +
  8495. '_js.charset="UTF-8";\n' +
  8496. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8497. "_js.onload = function(){\n" +
  8498. ' var a = document.getElementsByTagName("img")\n' +
  8499. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8500. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8501. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8502. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8503. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8504. "beforeUpload_shishi(file," +
  8505. "'" +
  8506. _userid +
  8507. "'" +
  8508. ", " +
  8509. "'" +
  8510. _cid +
  8511. "'" +
  8512. ", " +
  8513. "'" +
  8514. _stage +
  8515. "'" +
  8516. ", " +
  8517. "'" +
  8518. _task +
  8519. "'" +
  8520. ", " +
  8521. "'" +
  8522. _tool +
  8523. "'" +
  8524. ", " +
  8525. "'" +
  8526. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8527. "'" +
  8528. ", " +
  8529. "'" +
  8530. aTool +
  8531. "'" +
  8532. ", " +
  8533. "`" +
  8534. text +
  8535. "`" +
  8536. ")\n" +
  8537. " });\n" +
  8538. "}\n" +
  8539. "document.head.appendChild(_js);\n";
  8540. _iframe.contentWindow.document.head.appendChild(_ajs);
  8541. }
  8542. }
  8543. //U.MD.D.I.openClick(str);
  8544. //如果有任务栏信息
  8545. // if (_taskbar) {
  8546. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8547. // }
  8548. }
  8549. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8550. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8551. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8552. _userinfo = US.userInfo, //登录用户信息
  8553. _userid = US.userInfo.userid //登录用户id
  8554. let _iframe;
  8555. let _cid = cid,
  8556. _stage = stage,
  8557. _task = task,
  8558. _tool = tool;
  8559. var _jie = $$("div", {
  8560. "style": {
  8561. "position": "absolute",
  8562. "bottom": "50px",
  8563. "right": "50px",
  8564. "zIndex": "9999",
  8565. "backgroundColor": "#2268bc",
  8566. "color": "#fff",
  8567. "padding": "12px 20px",
  8568. "cursor": "pointer",
  8569. "borderRadius": "4px",
  8570. },
  8571. "innerHTML": "确认并提交"
  8572. })
  8573. let aTool = ''
  8574. let _loading = document.createElement('div')
  8575. _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;"
  8576. // _loading.id = "";
  8577. let _lchild = document.createElement('div')
  8578. let _limg = document.createElement('img')
  8579. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8580. _limg.style = "width: 26px;margin-right: 10px;"
  8581. _lchild.appendChild(_limg)
  8582. let _lspan = document.createElement('span')
  8583. _lspan.innerHTML = "上传中..."
  8584. _lchild.appendChild(_lspan)
  8585. _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%);"
  8586. _loading.appendChild(_lchild)
  8587. var _box = $$('div', {
  8588. "style": {
  8589. "position": "relative",
  8590. "width": "100%",
  8591. "height": "100%",
  8592. },
  8593. })
  8594. _box.appendChild(_loading)
  8595. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8596. switch (str) {
  8597. case "whiteboard":
  8598. aTool = 1;
  8599. _iframe = $$("iframe", {
  8600. "frameborder": "no",
  8601. "border": "0",
  8602. "scrolling ": "no",
  8603. "style": {
  8604. "cssText": "border:0;width:100%;height:100%"
  8605. },
  8606. "src": "https://beta.iwb.cocorobo.cn/"
  8607. })
  8608. _box.appendChild(_iframe);
  8609. _box.appendChild(_jie);
  8610. _formdiv = new U.UF.UI.form(
  8611. "电子白板",
  8612. _box, {
  8613. "id": "whiteboards" + cid + stage + task + tool,
  8614. "style": {
  8615. "width": "90%",
  8616. "height": "90%",
  8617. "overflow": 'hidden'
  8618. },
  8619. "onresize": function () { }
  8620. }, {
  8621. closecallback: function () { }
  8622. }, {
  8623. "style": {
  8624. "height": "36px"
  8625. }
  8626. }).form; //创建窗体
  8627. _taskbar = {
  8628. "id": str + _formdiv.id,
  8629. "style": {
  8630. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8631. },
  8632. "name": "电子白板",
  8633. "forms": _formdiv,
  8634. "click": function () {
  8635. U.MD.D.I.openApplication(str, obj, info);
  8636. }
  8637. }
  8638. break;
  8639. case "mind":
  8640. aTool = 3;
  8641. _iframe = $$("iframe", {
  8642. "frameborder": "no",
  8643. "border": "0",
  8644. "scrolling ": "no",
  8645. "style": {
  8646. "cssText": "border:0;width:100%;height:100%"
  8647. },
  8648. "src": "/kityminder-editor/dist/index.html"
  8649. });
  8650. _box.appendChild(_iframe);
  8651. _box.appendChild(_jie);
  8652. _formdiv = new U.UF.UI.form(
  8653. "思维导图",
  8654. _box, { //"/jsmind/example/demo.html"
  8655. "id": "minds" + cid + stage + task + tool,
  8656. "style": {
  8657. "width": "90%",
  8658. "height": "90%",
  8659. "overflow": 'hidden'
  8660. },
  8661. "onresize": function () { }
  8662. }, {
  8663. closecallback: function () { }
  8664. }, {
  8665. "style": {
  8666. "height": "36px"
  8667. }
  8668. }).form; //创建窗体
  8669. _taskbar = {
  8670. "id": str + _formdiv.id,
  8671. "style": {
  8672. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8673. },
  8674. "name": "思维导图",
  8675. "forms": _formdiv,
  8676. "click": function () {
  8677. U.MD.D.I.openApplication(str, obj, info);
  8678. }
  8679. }
  8680. break;
  8681. case "doc":
  8682. aTool = 6;
  8683. _iframe = $$("iframe", {
  8684. "frameborder": "no",
  8685. "border": "0",
  8686. "scrolling ": "no",
  8687. "style": {
  8688. "cssText": "border:0;width:100%;height:100%"
  8689. },
  8690. "src": "/Office/Word/WordEditArea.htm"
  8691. })
  8692. _box.appendChild(_iframe);
  8693. _box.appendChild(_jie);
  8694. _formdiv = new U.UF.UI.form(
  8695. "协同文档",
  8696. _box, {
  8697. "id": "docs" + cid + stage + task + tool,
  8698. "style": {
  8699. "width": "90%",
  8700. "height": "90%",
  8701. "overflow": 'hidden'
  8702. },
  8703. "onresize": function () { }
  8704. }, {
  8705. closecallback: function () { }
  8706. }, {
  8707. "style": {
  8708. "height": "36px"
  8709. }
  8710. }).form; //创建窗体
  8711. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8712. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8713. })
  8714. _taskbar = {
  8715. "id": str + _formdiv.id,
  8716. "style": {
  8717. "backgroundImage": "url(/img/icon/doc.png)"
  8718. },
  8719. "name": "协同文档",
  8720. "forms": _formdiv,
  8721. "click": function () {
  8722. U.MD.D.I.openApplication(str, obj, info);
  8723. }
  8724. }
  8725. break;
  8726. }
  8727. const script1 = document.createElement("script");
  8728. script1.type = "text/javascript";
  8729. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8730. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8731. const script2 = document.createElement("script");
  8732. script2.type = "text/javascript";
  8733. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8734. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8735. const script3 = document.createElement("script");
  8736. script3.type = "text/javascript";
  8737. script3.charset = "UTF-8";
  8738. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8739. const script4 = document.createElement("script");
  8740. script4.type = "text/javascript";
  8741. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8742. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8743. if (_iframe) {
  8744. if (str == 'doc') {
  8745. _iframe = _formdiv.querySelector('iframe')
  8746. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8747. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8748. _iframe.contentWindow.document.body.appendChild(script1);
  8749. _iframe.contentWindow.document.body.appendChild(script2);
  8750. // _iframe.contentWindow.document.body.appendChild(script3);
  8751. _iframe.contentWindow.document.body.appendChild(script4);
  8752. })
  8753. if (onloadListener) {
  8754. _iframe.contentDocument.location.reload()
  8755. } else {
  8756. _iframe.contentDocument.location.reload()
  8757. }
  8758. } else if (str == 'mind') {
  8759. _iframe = _formdiv.querySelector('iframe')
  8760. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8761. _iframe.contentWindow.document.body.appendChild(script1);
  8762. _iframe.contentWindow.document.body.appendChild(script2);
  8763. _iframe.contentWindow.document.body.appendChild(script4);
  8764. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8765. })
  8766. if (onloadListener) {
  8767. _iframe.contentDocument.location.reload()
  8768. } else {
  8769. _iframe.contentDocument.location.reload()
  8770. }
  8771. } else {
  8772. _iframe.onload = () => {
  8773. _iframe.contentWindow.document.body.appendChild(script1);
  8774. _iframe.contentWindow.document.body.appendChild(script2);
  8775. // _iframe.contentWindow.document.body.appendChild(script3);
  8776. _iframe.contentWindow.document.body.appendChild(script4);
  8777. };
  8778. }
  8779. _jie.onclick = async () => {
  8780. let text = ''
  8781. if (aTool == 6) {
  8782. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8783. } else if (aTool == 3) {
  8784. text = await U.MD.D.I.getEditorContent(_iframe);
  8785. }
  8786. _loading.style.display = 'flex'
  8787. console.log(_loading);
  8788. var _ajs = _iframe.contentWindow.document.createElement("script");
  8789. _ajs.type = "text/javascript";
  8790. _ajs.innerHTML =
  8791. // 'console.log(' + _loading + ');\n' +
  8792. 'var _js = document.createElement("script");\n' +
  8793. '_js.type="text/javascript";\n' +
  8794. '_js.charset="UTF-8";\n' +
  8795. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8796. "_js.onload = function(){\n" +
  8797. ' var a = document.getElementsByTagName("img")\n' +
  8798. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8799. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8800. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8801. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8802. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8803. "beforeUpload_shishi(file," +
  8804. "'" +
  8805. _userid +
  8806. "'" +
  8807. ", " +
  8808. "'" +
  8809. _cid +
  8810. "'" +
  8811. ", " +
  8812. "'" +
  8813. _stage +
  8814. "'" +
  8815. ", " +
  8816. "'" +
  8817. _task +
  8818. "'" +
  8819. ", " +
  8820. "'" +
  8821. _tool +
  8822. "'" +
  8823. ", " +
  8824. "'" +
  8825. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8826. "'" +
  8827. ", " +
  8828. "'" +
  8829. aTool +
  8830. "'" +
  8831. ", " +
  8832. "`" +
  8833. text +
  8834. "`" +
  8835. ")\n" +
  8836. " });\n" +
  8837. "}\n" +
  8838. "document.head.appendChild(_js);\n";
  8839. _iframe.contentWindow.document.head.appendChild(_ajs);
  8840. }
  8841. }
  8842. //U.MD.D.I.openClick(str);
  8843. //如果有任务栏信息
  8844. // if (_taskbar) {
  8845. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8846. // }
  8847. }
  8848. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8849. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8850. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8851. _userinfo = US.userInfo, //登录用户信息
  8852. _userid = US.userInfo.userid //登录用户id
  8853. let _iframe;
  8854. let _cid = cid,
  8855. _stage = stage,
  8856. _task = task,
  8857. _tool = tool;
  8858. var _jie = $$("div", {
  8859. "style": {
  8860. "position": "absolute",
  8861. "bottom": "50px",
  8862. "right": "50px",
  8863. "zIndex": "9999",
  8864. "backgroundColor": "#2268bc",
  8865. "color": "#fff",
  8866. "padding": "12px 20px",
  8867. "cursor": "pointer",
  8868. "borderRadius": "4px",
  8869. },
  8870. "innerHTML": "上传模板"
  8871. })
  8872. let aTool = ''
  8873. let _loading = document.createElement('div')
  8874. _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;"
  8875. // _loading.id = "";
  8876. let _lchild = document.createElement('div')
  8877. let _limg = document.createElement('img')
  8878. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8879. _limg.style = "width: 26px;margin-right: 10px;"
  8880. _lchild.appendChild(_limg)
  8881. let _lspan = document.createElement('span')
  8882. _lspan.innerHTML = "上传中..."
  8883. _lchild.appendChild(_lspan)
  8884. _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%);"
  8885. _loading.appendChild(_lchild)
  8886. var _box = $$('div', {
  8887. "style": {
  8888. "position": "relative",
  8889. "width": "100%",
  8890. "height": "100%",
  8891. },
  8892. })
  8893. _box.appendChild(_loading)
  8894. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8895. switch (str) {
  8896. case "whiteboard":
  8897. aTool = 1;
  8898. _iframe = $$("iframe", {
  8899. "frameborder": "no",
  8900. "border": "0",
  8901. "scrolling ": "no",
  8902. "style": {
  8903. "cssText": "border:0;width:100%;height:100%"
  8904. },
  8905. "src": "https://beta.iwb.cocorobo.cn/"
  8906. })
  8907. _box.appendChild(_iframe);
  8908. _box.appendChild(_jie);
  8909. _formdiv = new U.UF.UI.form(
  8910. "电子白板",
  8911. _box, {
  8912. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8913. "style": {
  8914. "width": "90%",
  8915. "height": "90%",
  8916. "overflow": 'hidden'
  8917. },
  8918. "onresize": function () { }
  8919. }, {
  8920. closecallback: function () { }
  8921. }, {
  8922. "style": {
  8923. "height": "36px"
  8924. }
  8925. }).form; //创建窗体
  8926. _taskbar = {
  8927. "id": str + _formdiv.id,
  8928. "style": {
  8929. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8930. },
  8931. "name": "电子白板",
  8932. "forms": _formdiv,
  8933. "click": function () {
  8934. U.MD.D.I.openApplication(str, obj, info);
  8935. }
  8936. }
  8937. break;
  8938. case "mind":
  8939. aTool = 3;
  8940. _iframe = $$("iframe", {
  8941. "frameborder": "no",
  8942. "border": "0",
  8943. "scrolling ": "no",
  8944. "style": {
  8945. "cssText": "border:0;width:100%;height:100%"
  8946. },
  8947. "src": "/kityminder-editor/dist/index.html"
  8948. });
  8949. _box.appendChild(_iframe);
  8950. _box.appendChild(_jie);
  8951. _formdiv = new U.UF.UI.form(
  8952. "思维导图",
  8953. _box, { //"/jsmind/example/demo.html"
  8954. "id": "minds_Yu" + cid + stage + task + tool,
  8955. "style": {
  8956. "width": "90%",
  8957. "height": "90%",
  8958. "overflow": 'hidden'
  8959. },
  8960. "onresize": function () { }
  8961. }, {
  8962. closecallback: function () { }
  8963. }, {
  8964. "style": {
  8965. "height": "36px"
  8966. }
  8967. }).form; //创建窗体
  8968. _taskbar = {
  8969. "id": str + _formdiv.id,
  8970. "style": {
  8971. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8972. },
  8973. "name": "思维导图",
  8974. "forms": _formdiv,
  8975. "click": function () {
  8976. U.MD.D.I.openApplication(str, obj, info);
  8977. }
  8978. }
  8979. break;
  8980. case "doc":
  8981. aTool = 6;
  8982. _iframe = $$("iframe", {
  8983. "frameborder": "no",
  8984. "border": "0",
  8985. "scrolling ": "no",
  8986. "style": {
  8987. "cssText": "border:0;width:100%;height:100%"
  8988. },
  8989. "src": "/Office/Word/WordEditArea.htm"
  8990. })
  8991. _box.appendChild(_iframe);
  8992. _box.appendChild(_jie);
  8993. _formdiv = new U.UF.UI.form(
  8994. "协同文档",
  8995. _box, {
  8996. "id": "docs_Yu" + cid + stage + task + tool,
  8997. "style": {
  8998. "width": "90%",
  8999. "height": "90%",
  9000. "overflow": 'hidden'
  9001. },
  9002. "onresize": function () { }
  9003. }, {
  9004. closecallback: function () { }
  9005. }, {
  9006. "style": {
  9007. "height": "36px"
  9008. }
  9009. }).form; //创建窗体
  9010. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9011. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9012. })
  9013. _taskbar = {
  9014. "id": str + _formdiv.id,
  9015. "style": {
  9016. "backgroundImage": "url(/img/icon/doc.png)"
  9017. },
  9018. "name": "协同文档",
  9019. "forms": _formdiv,
  9020. "click": function () {
  9021. U.MD.D.I.openApplication(str, obj, info);
  9022. }
  9023. }
  9024. break;
  9025. case "CocoPi":
  9026. aTool = 57;
  9027. _iframe = $$("iframe", {
  9028. "allowpaymentrequest": "allowpaymentrequest",
  9029. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9030. "webkitallowfullscreen": "",
  9031. "mozallowfullscreen": "",
  9032. "frameborder": "no",
  9033. "border": "0",
  9034. "scrolling ": "no",
  9035. "style": {
  9036. "cssText": "border:0;width:100%;height:100%"
  9037. },
  9038. "src": "https://pi.cocorobo.cn/"
  9039. })
  9040. _box.appendChild(_iframe);
  9041. _box.appendChild(_jie);
  9042. _formdiv = new U.UF.UI.form(
  9043. "CocoPi",
  9044. _box, {
  9045. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9046. "style": {
  9047. "width": "90%",
  9048. "height": "90%",
  9049. "overflow": 'hidden'
  9050. },
  9051. "onresize": function () { }
  9052. }, {
  9053. closecallback: function () { }
  9054. }, {
  9055. "style": {
  9056. "height": "36px"
  9057. }
  9058. }).form; //创建窗体
  9059. _taskbar = {
  9060. "id": str + _formdiv.id,
  9061. "style": {
  9062. "backgroundImage": "url(/img/icon/cocopi.png)"
  9063. },
  9064. "name": "CocoPi",
  9065. "forms": _formdiv,
  9066. "click": function () {
  9067. U.MD.D.I.openApplication(str, obj, info);
  9068. }
  9069. }
  9070. break;
  9071. }
  9072. if (_iframe) {
  9073. if (str == 'doc') {
  9074. _iframe = _formdiv.querySelector('iframe')
  9075. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9076. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9077. })
  9078. if (onloadListener) {
  9079. _iframe.contentDocument.location.reload()
  9080. } else {
  9081. _iframe.contentDocument.location.reload()
  9082. }
  9083. } else if (str == 'mind') {
  9084. _iframe = _formdiv.querySelector('iframe')
  9085. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9086. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9087. })
  9088. if (onloadListener) {
  9089. _iframe.contentDocument.location.reload()
  9090. } else {
  9091. _iframe.contentDocument.location.reload()
  9092. }
  9093. } else if (str == 'whiteboard') {
  9094. _iframe = _formdiv.querySelector('iframe')
  9095. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9096. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9097. })
  9098. // if (onloadListener) {
  9099. // try {
  9100. // _iframe.src += "?cocorobo="+new Date().getTime()
  9101. // _iframe.contentWindow.document.location.reload()
  9102. // } catch (error) {
  9103. // }
  9104. // } else {
  9105. // _iframe.contentDocument.location.reload()
  9106. // }
  9107. } else if (str == 'CocoPi') {
  9108. _iframe = _formdiv.querySelector('iframe')
  9109. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9110. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9111. })
  9112. if (onloadListener) {
  9113. _iframe.contentDocument.location.reload()
  9114. } else {
  9115. _iframe.contentDocument.location.reload()
  9116. }
  9117. } else {
  9118. _iframe.onload = () => { };
  9119. }
  9120. _jie.onclick = async () => {
  9121. let text = ''
  9122. let type = '2'
  9123. if (aTool == 1) {
  9124. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9125. type = '3'
  9126. } else if (aTool == 6) {
  9127. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9128. type = '1'
  9129. } else if (aTool == 3) {
  9130. text = await U.MD.D.I.getEditorContent(_iframe);
  9131. type = '2'
  9132. } else if (aTool == 57) {
  9133. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9134. type = '4'
  9135. }
  9136. _loading.style.display = 'flex'
  9137. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9138. }
  9139. }
  9140. //U.MD.D.I.openClick(str);
  9141. //如果有任务栏信息
  9142. // if (_taskbar) {
  9143. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9144. // }
  9145. }
  9146. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9147. var xmlhttp;
  9148. var Mac, Sn, DeviceId
  9149. if (window.XMLHttpRequest) {
  9150. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9151. xmlhttp = new XMLHttpRequest();
  9152. } else {
  9153. // IE6, IE5 浏览器执行代码
  9154. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9155. }
  9156. xmlhttp.onreadystatechange = function () {
  9157. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9158. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9159. // resolve(res.value[0][0].text);
  9160. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9161. }
  9162. }
  9163. }
  9164. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9165. xmlhttp.send();
  9166. }
  9167. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9168. var xmlhttp;
  9169. var Mac, Sn, DeviceId
  9170. if (window.XMLHttpRequest) {
  9171. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9172. xmlhttp = new XMLHttpRequest();
  9173. } else {
  9174. // IE6, IE5 浏览器执行代码
  9175. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9176. }
  9177. xmlhttp.onreadystatechange = function () {
  9178. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9179. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9180. // resolve(res.value[0][0].text);
  9181. if (type == '2') {
  9182. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9183. } else if (type == '3') {
  9184. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9185. } else if (type == '4') {
  9186. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9187. }
  9188. } else {
  9189. if (type == '2') {
  9190. iframe.contentWindow.editor.minder.importData('json', '')
  9191. } else if (type == '3') {
  9192. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9193. } else if (type == '4') {
  9194. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9195. }
  9196. }
  9197. }
  9198. }
  9199. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9200. xmlhttp.send();
  9201. }
  9202. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9203. var xmlhttp;
  9204. var Mac, Sn, DeviceId
  9205. if (window.XMLHttpRequest) {
  9206. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9207. xmlhttp = new XMLHttpRequest();
  9208. } else {
  9209. // IE6, IE5 浏览器执行代码
  9210. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9211. }
  9212. xmlhttp.onreadystatechange = function () {
  9213. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9214. if (xmlhttp.response) {
  9215. // resolve(res.value[0][0].text);
  9216. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9217. // $(fileInput).val('');
  9218. // });
  9219. span.innerHTML = '上传成功'
  9220. setTimeout(() => {
  9221. loading.style.display = 'none'
  9222. }, 1000);
  9223. }
  9224. }
  9225. }
  9226. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9227. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9228. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9229. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9230. // 设置请求头,表示请求体的编码格式
  9231. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9232. // 设置请求体,使用url-encoded格式的数据
  9233. }
  9234. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9235. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9236. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9237. _userinfo = US.userInfo, //登录用户信息
  9238. _userid = US.userInfo.userid //登录用户id
  9239. let _iframe;
  9240. let _cid = cid,
  9241. _stage = stage,
  9242. _task = task,
  9243. _tool = tool;
  9244. var _jie = $$("div", {
  9245. "style": {
  9246. "position": "absolute",
  9247. "bottom": "50px",
  9248. "right": "50px",
  9249. "zIndex": "9999",
  9250. "backgroundColor": "#2268bc",
  9251. "color": "#fff",
  9252. "padding": "12px 20px",
  9253. "cursor": "pointer",
  9254. "borderRadius": "4px",
  9255. },
  9256. "innerHTML": "提交作业"
  9257. })
  9258. let aTool = ''
  9259. let _loading = document.createElement('div')
  9260. _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;"
  9261. // _loading.id = "";
  9262. let _lchild = document.createElement('div')
  9263. let _limg = document.createElement('img')
  9264. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9265. _limg.style = "width: 26px;margin-right: 10px;"
  9266. _lchild.appendChild(_limg)
  9267. let _lspan = document.createElement('span')
  9268. _lspan.innerHTML = "上传中..."
  9269. _lchild.appendChild(_lspan)
  9270. _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%);"
  9271. _loading.appendChild(_lchild)
  9272. var _box = $$('div', {
  9273. "style": {
  9274. "position": "relative",
  9275. "width": "100%",
  9276. "height": "100%",
  9277. },
  9278. })
  9279. _box.appendChild(_loading)
  9280. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9281. switch (str) {
  9282. case "CocoPi":
  9283. aTool = 57;
  9284. _iframe = $$("iframe", {
  9285. "allowpaymentrequest": "allowpaymentrequest",
  9286. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9287. "webkitallowfullscreen": "",
  9288. "mozallowfullscreen": "",
  9289. "frameborder": "no",
  9290. "border": "0",
  9291. "scrolling ": "no",
  9292. "style": {
  9293. "cssText": "border:0;width:100%;height:100%"
  9294. },
  9295. "src": "https://pi.cocorobo.cn/"
  9296. })
  9297. _box.appendChild(_iframe);
  9298. _box.appendChild(_jie);
  9299. _formdiv = new U.UF.UI.form(
  9300. "CocoPi",
  9301. _box, {
  9302. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9303. "style": {
  9304. "width": "90%",
  9305. "height": "90%",
  9306. "overflow": 'hidden'
  9307. },
  9308. "onresize": function () { }
  9309. }, {
  9310. closecallback: function () { }
  9311. }, {
  9312. "style": {
  9313. "height": "36px"
  9314. }
  9315. }).form; //创建窗体
  9316. _taskbar = {
  9317. "id": str + _formdiv.id,
  9318. "style": {
  9319. "backgroundImage": "url(/img/icon/cocopi.png)"
  9320. },
  9321. "name": "CocoPi",
  9322. "forms": _formdiv,
  9323. "click": function () {
  9324. U.MD.D.I.openApplication(str, obj, info);
  9325. }
  9326. }
  9327. break;
  9328. }
  9329. if (_iframe) {
  9330. if (str == 'CocoPi') {
  9331. _iframe = _formdiv.querySelector('iframe')
  9332. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9333. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9334. })
  9335. if (onloadListener) {
  9336. _iframe.contentDocument.location.reload()
  9337. } else {
  9338. _iframe.contentDocument.location.reload()
  9339. }
  9340. }
  9341. _jie.onclick = async () => {
  9342. let text = ''
  9343. if (aTool == 57) {
  9344. text = _iframe.contentWindow.getLoadXmlStr()
  9345. }
  9346. _loading.style.display = 'flex'
  9347. console.log(_loading);
  9348. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9349. _loading.style.display = 'none'
  9350. let _div = document.createElement('div')
  9351. _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;"
  9352. let _inner = document.createElement('div')
  9353. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9354. _inner.innerHTML = "上传成功"
  9355. _div.appendChild(_inner)
  9356. _iframe.contentWindow.window.document.body.appendChild(_div)
  9357. _div.onclick = () => {
  9358. _iframe.contentWindow.window.document.body.removeChild(_div)
  9359. }
  9360. setTimeout(() => {
  9361. _iframe.contentWindow.window.document.body.removeChild(_div)
  9362. }, 1000);
  9363. }, [], { "type": "POST", "withCredentials": true });
  9364. }
  9365. }
  9366. }
  9367. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9368. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9369. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9370. _userid = student.userid, //登录用户id
  9371. _username = student.student //用户名字
  9372. let _iframe;
  9373. let _cid = cid,
  9374. _stage = stage,
  9375. _task = task,
  9376. _tool = tool;
  9377. var _jie = $$("div", {
  9378. "style": {
  9379. "position": "absolute",
  9380. "bottom": "50px",
  9381. "right": "50px",
  9382. "zIndex": "9999",
  9383. "backgroundColor": "#2268bc",
  9384. "color": "#fff",
  9385. "padding": "12px 20px",
  9386. "cursor": "pointer",
  9387. "borderRadius": "4px",
  9388. },
  9389. "innerHTML": "提交作业"
  9390. })
  9391. let aTool = ''
  9392. let _loading = document.createElement('div')
  9393. _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;"
  9394. // _loading.id = "";
  9395. let _lchild = document.createElement('div')
  9396. let _limg = document.createElement('img')
  9397. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9398. _limg.style = "width: 26px;margin-right: 10px;"
  9399. _lchild.appendChild(_limg)
  9400. let _lspan = document.createElement('span')
  9401. _lspan.innerHTML = "上传中..."
  9402. _lchild.appendChild(_lspan)
  9403. _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%);"
  9404. _loading.appendChild(_lchild)
  9405. var _box = $$('div', {
  9406. "style": {
  9407. "position": "relative",
  9408. "width": "100%",
  9409. "height": "100%",
  9410. },
  9411. })
  9412. _box.appendChild(_loading)
  9413. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9414. switch (str) {
  9415. case "CocoPi":
  9416. aTool = 57;
  9417. _iframe = $$("iframe", {
  9418. "allowpaymentrequest": "allowpaymentrequest",
  9419. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9420. "webkitallowfullscreen": "",
  9421. "mozallowfullscreen": "",
  9422. "frameborder": "no",
  9423. "border": "0",
  9424. "scrolling ": "no",
  9425. "style": {
  9426. "cssText": "border:0;width:100%;height:100%"
  9427. },
  9428. "src": "https://pi.cocorobo.cn/"
  9429. })
  9430. _box.appendChild(_iframe);
  9431. _box.appendChild(_jie);
  9432. _formdiv = new U.UF.UI.form(
  9433. "CocoPi-" + _username,
  9434. _box, {
  9435. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9436. "style": {
  9437. "width": "90%",
  9438. "height": "90%",
  9439. "overflow": 'hidden'
  9440. },
  9441. "onresize": function () { }
  9442. }, {
  9443. closecallback: function () { }
  9444. }, {
  9445. "style": {
  9446. "height": "36px"
  9447. }
  9448. }).form; //创建窗体
  9449. _taskbar = {
  9450. "id": str + _formdiv.id,
  9451. "style": {
  9452. "backgroundImage": "url(/img/icon/cocopi.png)"
  9453. },
  9454. "name": "CocoPi",
  9455. "forms": _formdiv,
  9456. "click": function () {
  9457. U.MD.D.I.openApplication(str, obj, info);
  9458. }
  9459. }
  9460. break;
  9461. }
  9462. if (_iframe) {
  9463. if (str == 'CocoPi') {
  9464. _iframe = _formdiv.querySelector('iframe')
  9465. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9466. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9467. })
  9468. if (onloadListener) {
  9469. _iframe.contentDocument.location.reload()
  9470. } else {
  9471. _iframe.contentDocument.location.reload()
  9472. }
  9473. }
  9474. _jie.onclick = async () => {
  9475. let text = ''
  9476. if (aTool == 57) {
  9477. text = _iframe.contentWindow.getLoadXmlStr()
  9478. }
  9479. _loading.style.display = 'flex'
  9480. console.log(_loading);
  9481. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9482. _loading.style.display = 'none'
  9483. let _div = document.createElement('div')
  9484. _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;"
  9485. let _inner = document.createElement('div')
  9486. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9487. _inner.innerHTML = "上传成功"
  9488. _div.appendChild(_inner)
  9489. _iframe.contentWindow.window.document.body.appendChild(_div)
  9490. _div.onclick = () => {
  9491. _iframe.contentWindow.window.document.body.removeChild(_div)
  9492. }
  9493. setTimeout(() => {
  9494. _iframe.contentWindow.window.document.body.removeChild(_div)
  9495. }, 1000);
  9496. }, [], { "type": "POST", "withCredentials": true });
  9497. }
  9498. }
  9499. }
  9500. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9501. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9502. if (res.value[0].length > 0) {
  9503. if (atool == 57) {
  9504. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9505. }
  9506. } else {
  9507. if (atool == 57) {
  9508. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9509. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9510. }
  9511. }
  9512. }, [], { "type": "POST", "withCredentials": true });
  9513. }