DeskTop.js 572 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341
  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.BSDNSteacherDeskIcon = [
  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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.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": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  633. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  635. ];
  636. //教科院实小教师桌面图标的全局变量
  637. U.MD.D.I.siesStudentDeskIcon = [
  638. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  642. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  643. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  644. ];
  645. //中山小学教师桌面图标的全局变量
  646. U.MD.D.I.guzmsteacherDeskIcon = [
  647. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  648. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  649. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  650. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  651. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  652. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  653. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  654. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  655. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  656. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. ];
  660. //中山小学学生桌面图标的全局变量
  661. U.MD.D.I.guzmsStudentDeskIcon = [
  662. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  663. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  664. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  665. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  667. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  668. ];
  669. //福田
  670. U.MD.D.I.gdjgTeacherDeskIcon = [
  671. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  672. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  673. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  674. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  675. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  676. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  677. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  678. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.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": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  683. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. ];
  686. //gdjg
  687. U.MD.D.I.gdjgAdminDeskIcon = [
  688. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  689. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  693. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  694. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  695. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  699. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  700. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  701. ];
  702. //hk
  703. U.MD.D.I.hkteacherDeskIcon = [
  704. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  705. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  706. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  707. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  708. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  709. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  710. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  711. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  712. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  713. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  714. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  715. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  716. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  717. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  718. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  720. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  721. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  722. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //hk
  734. U.MD.D.I.hkaceteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  750. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  751. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  752. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  753. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  754. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  755. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  756. ];
  757. //hk
  758. U.MD.D.I.hkaceStudentDeskIcon = [
  759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. ];
  766. //香海正覺蓮社佛教正覺中學
  767. U.MD.D.I.hkZJLSteacherDeskIcon = [
  768. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  769. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  771. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  772. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  773. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  774. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  775. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  776. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  777. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  778. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  779. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  780. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  781. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  782. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  783. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  784. ];
  785. //香海正覺蓮社佛教正覺中學
  786. U.MD.D.I.hkZJLSStudentDeskIcon = [
  787. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  788. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  789. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  790. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  791. ];
  792. //云海
  793. U.MD.D.I.yunhaiTeacherDeskIcon = [
  794. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  795. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  796. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  797. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  798. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  799. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  800. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  801. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  802. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  803. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  804. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  805. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  806. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  807. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  808. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  809. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  810. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  811. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  812. ];
  813. //福田
  814. U.MD.D.I.heyuanTeacherDeskIcon = [
  815. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  816. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  817. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  818. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  819. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  820. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  821. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  822. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  823. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  824. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  827. ];
  828. //福田
  829. U.MD.D.I.heyuanAdminDeskIcon = [
  830. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  831. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  832. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  833. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  834. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  835. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  836. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  837. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  838. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  839. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  840. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  841. ];
  842. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  843. U.MD.D.I.szherTeacherDeskIcon = [
  844. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  845. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  846. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  847. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  848. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  849. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  850. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  851. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  852. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  853. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  854. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  855. ];
  856. //dsei
  857. U.MD.D.I.dseiTeacherDeskIcon = [
  858. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  859. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  860. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  861. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  862. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  863. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  864. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  865. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  866. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  867. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  868. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  869. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  870. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  871. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  872. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  873. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  874. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  875. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  876. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  877. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  878. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  879. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  880. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  881. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  882. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  883. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  884. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  885. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  886. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  887. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  888. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  889. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  890. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  891. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  892. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  893. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  894. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  895. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  896. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  897. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  898. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  899. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  900. ];
  901. //dsei
  902. U.MD.D.I.dseiAdminDeskIcon = [
  903. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  904. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  905. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  906. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  907. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  908. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  909. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  910. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  911. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  912. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  913. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  914. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  915. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  916. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  917. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  918. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  919. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  920. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  921. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  922. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  923. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  924. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  925. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  926. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  927. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  928. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  929. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  930. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  931. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  932. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  933. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  934. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  935. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  936. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  937. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  938. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  939. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  940. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  943. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  944. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  945. ];
  946. //dsei
  947. U.MD.D.I.dseiStudentDeskIcon = [
  948. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  949. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  950. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  951. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  952. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  953. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyTeacherDeskIcon = [
  957. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  964. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  965. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  966. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  967. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  968. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  969. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  972. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  973. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  974. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  975. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  976. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  977. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  978. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  979. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  980. ];
  981. //未来教育基地
  982. U.MD.D.I.szjkyAdminDeskIcon = [
  983. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  990. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  991. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  992. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  993. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  994. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  995. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  996. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  997. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  998. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  999. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1000. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1001. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1002. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1003. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1004. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1005. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1006. ];
  1007. //未来教育基地
  1008. U.MD.D.I.szjkyStudentDeskIcon = [
  1009. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1013. ];
  1014. //成华教育局
  1015. U.MD.D.I.chjyjTeacherDeskIcon = [
  1016. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1017. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1018. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1019. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1020. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1021. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1022. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1023. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1024. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1025. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1026. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1027. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1030. ];
  1031. //成华教育局chjyj
  1032. U.MD.D.I.chjyjAdminDeskIcon = [
  1033. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1034. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1035. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1036. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1037. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1038. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1039. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1040. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1041. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1042. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1043. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1044. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1045. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1048. ];
  1049. //成华教育局chjyj
  1050. U.MD.D.I.chjyjStudentDeskIcon = [
  1051. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. ];
  1056. //tpc
  1057. U.MD.D.I.tpcStudentDeskIcon = [
  1058. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1059. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1060. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1061. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1062. ];
  1063. //tpc
  1064. U.MD.D.I.tpcTeacherDeskIcon = [
  1065. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1066. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1069. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1070. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1071. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1072. ];
  1073. //tpc
  1074. U.MD.D.I.tpcAdminDeskIcon = [
  1075. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1076. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1077. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1078. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1079. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1080. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1081. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1082. ];
  1083. //THU-IOE
  1084. U.MD.D.I.thuioeTeacherDeskIcon = [
  1085. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1086. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1087. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1088. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1089. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1090. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1091. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1092. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1093. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1094. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1095. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1096. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1097. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1098. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1099. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1100. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1101. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1102. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1103. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1104. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1105. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1106. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1107. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1108. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1109. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1110. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1111. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1112. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1113. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1114. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1115. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1116. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1117. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1118. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1119. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1120. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1121. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1122. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1123. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1124. ];
  1125. //THU-IOE
  1126. U.MD.D.I.thuioeStudentDeskIcon = [
  1127. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1128. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1129. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1130. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1131. ];
  1132. //jccssyl
  1133. U.MD.D.I.jccssylTeacherDeskIcon = [
  1134. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1135. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1136. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1137. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1138. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1139. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1140. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1141. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1142. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1143. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1144. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1145. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1146. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1147. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1148. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1149. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1150. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1151. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1152. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1153. ];
  1154. //jccssyl
  1155. U.MD.D.I.jccssylStudentDeskIcon = [
  1156. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1157. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1158. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1159. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1160. ];
  1161. //cale
  1162. U.MD.D.I.caleTeacherDeskIcon = [
  1163. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1164. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1165. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1166. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1167. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1168. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1169. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1170. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1171. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1172. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1173. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1174. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1175. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1176. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1177. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1178. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1179. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1180. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1181. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1182. ];
  1183. //cale
  1184. U.MD.D.I.caleStudentDeskIcon = [
  1185. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1186. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1187. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1189. ];
  1190. //lqwmsgzs
  1191. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1194. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1195. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1196. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1197. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1198. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1199. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1200. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1202. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1203. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1204. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1205. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1206. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1207. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1208. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1209. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1210. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1211. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1212. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1213. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1214. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1215. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1216. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1217. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1218. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1219. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1220. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1221. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1222. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1223. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1228. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1229. ];
  1230. //lqwmsgzs
  1231. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1232. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1233. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1234. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1235. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1236. ];
  1237. //盐田区幼儿园
  1238. U.MD.D.I.ytyTeacherDeskIcon = [
  1239. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1240. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1241. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1242. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1243. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1244. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1245. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1246. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1247. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1248. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1249. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1250. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1251. ];
  1252. //盐田区幼儿园
  1253. U.MD.D.I.ytyStudentDeskIcon = [
  1254. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1255. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1256. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1257. ];
  1258. //scnuai
  1259. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1260. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1261. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1262. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1263. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1264. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1265. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1266. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1267. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1268. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1269. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1270. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1271. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1272. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1273. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1274. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1275. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1276. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1277. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1278. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1279. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1280. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1281. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1282. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1283. ];
  1284. //scnuai
  1285. U.MD.D.I.scnuaiAdminDeskIcon = [
  1286. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1287. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1288. { "Name": "项目管理", "Url": "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": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1293. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1294. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1295. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1296. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1297. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1298. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1299. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1300. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1301. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1302. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1303. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1304. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1305. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1306. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1307. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1308. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1309. ];
  1310. //scnuai
  1311. U.MD.D.I.scnuaiStudentDeskIcon = [
  1312. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1313. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1314. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1315. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizteacherDeskIcon = [
  1319. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1320. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1321. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1322. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1323. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1324. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1325. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1326. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1327. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1328. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1329. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1330. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1331. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1332. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1333. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1334. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1335. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1336. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1337. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1338. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1339. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1340. ];
  1341. //cocobiz
  1342. U.MD.D.I.cocobizStudentDeskIcon = [
  1343. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1344. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1345. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1346. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1347. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1348. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1352. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1353. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1354. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1355. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1356. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1357. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1358. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1359. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1360. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1361. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1362. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1363. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1364. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1365. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1366. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1367. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1368. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1369. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1370. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1371. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1372. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1373. ];
  1374. //xxzjky
  1375. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1376. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1377. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1378. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1379. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1380. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1381. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1382. ];
  1383. //#region 桌面初始化a
  1384. /**
  1385. * 初始化桌面的起始函数
  1386. *
  1387. */
  1388. U.MD.D.I.init = function () {
  1389. if ($("#U_MD_D_K")[0]) {
  1390. //初始化桌面图标
  1391. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1392. // var clickUrl = ':12588/requestIp.php';
  1393. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1394. // U.MD.D.I.Ip = data;
  1395. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1396. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1397. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1398. // })
  1399. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1400. // })
  1401. }
  1402. }
  1403. /**
  1404. * 模式切换
  1405. *
  1406. */
  1407. U.MD.D.I.ModeCheck = function (type) {
  1408. if (US.Config.type == type) {
  1409. return
  1410. }
  1411. US.Config.type = type
  1412. $('.U_PBL_Check .active')[0].className = ''
  1413. if (type == 1) {
  1414. $('.U_PBL_Check div')[0].className = 'active'
  1415. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1416. } else {
  1417. $('.U_PBL_Check div')[1].className = 'active'
  1418. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1419. }
  1420. //初始化桌面图标
  1421. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1422. if (type == 2) {
  1423. U.MD.D.I.openApplication("project")
  1424. }
  1425. }
  1426. /**
  1427. * 隐藏任务栏
  1428. *
  1429. * @param {element} 桌面元素
  1430. */
  1431. U.MD.D.I.hiddenTaskbar = function (el) {
  1432. //任务栏位置变小
  1433. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1434. //桌面的位置变大
  1435. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1436. }
  1437. /**
  1438. * 隐藏任务栏
  1439. *
  1440. * @param {element} 桌面元素
  1441. */
  1442. U.MD.D.I.hiddenTaskbarout = function (el) {
  1443. //任务栏位置变小
  1444. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1445. //任务栏位置变化
  1446. U.selectEl(el).css({ "bottom": "-60px" });
  1447. //桌面的位置变大
  1448. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1449. }
  1450. }
  1451. /**
  1452. * 初始化打印桌面图标
  1453. *
  1454. * @param {element} 桌面元素
  1455. */
  1456. U.MD.D.I.initDesktopIcons = function (el, type) {
  1457. var i, //用于循环
  1458. _content, //桌面图标元素
  1459. _iconcontent, //桌面图标元素
  1460. _frag = $$("frag"), //定义一个碎片元素
  1461. _type = US.userInfo.type,
  1462. _org = US.userInfo.org,
  1463. _oid = US.userInfo.organizeid,
  1464. _role = US.userInfo.role,
  1465. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1466. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1467. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1468. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1469. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1470. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1471. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1472. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1473. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1474. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1475. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1476. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1477. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1478. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1479. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1480. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1481. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1482. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1483. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1484. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1485. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1486. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1487. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1488. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1489. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1490. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1491. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1492. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1493. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1494. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1495. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1496. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1497. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1498. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1499. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1500. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1501. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1502. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1503. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1504. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1505. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1506. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1507. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1508. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1509. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1510. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1511. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1512. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1513. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1514. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1515. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1516. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1517. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1518. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1519. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1520. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1521. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1522. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1523. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1524. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1525. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1526. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1527. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1528. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1529. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1530. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1531. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1532. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1533. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1534. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1535. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1536. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1537. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1538. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1539. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1540. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1541. 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'];
  1542. 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'];
  1543. //清楚桌面图标
  1544. el.innerHTML = "";
  1545. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1546. _teacherDesktopIconInfo.push(
  1547. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1548. { "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)" } },
  1549. )
  1550. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1551. }
  1552. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1553. _teacherDesktopIconInfo.push(
  1554. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1555. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1556. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1557. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1558. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1559. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1560. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1561. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1562. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1563. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1564. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1565. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1566. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1567. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1568. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1569. )
  1570. }
  1571. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1572. _teacherDesktopIconInfo.push(
  1573. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1574. )
  1575. }
  1576. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1577. // _teacherDesktopIconInfo.push(
  1578. // )
  1579. // }
  1580. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1581. _teacherDesktopIconInfo.push(
  1582. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1583. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1584. )
  1585. }
  1586. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1587. _teacherDesktopIconInfo.push(
  1588. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1589. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1590. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1591. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1592. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1593. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1594. )
  1595. _studentDesktopIconInfo.push(
  1596. )
  1597. }
  1598. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1599. _teacherDesktopIconInfo.push(
  1600. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1601. )
  1602. _studentDesktopIconInfo.push(
  1603. )
  1604. }
  1605. //010606 组织
  1606. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1607. _teacherDesktopIconInfo.push(
  1608. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1609. )
  1610. _studentDesktopIconInfo.push(
  1611. )
  1612. }
  1613. //麒麟二中 和 民新小学
  1614. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1615. _teacherDesktopIconInfo.push(
  1616. )
  1617. }
  1618. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1619. _teacherDesktopIconInfo.push(
  1620. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1621. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1622. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1623. )
  1624. }
  1625. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1626. _teacherDesktopIconInfo.push(
  1627. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1628. )
  1629. }
  1630. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1631. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1632. _teacherDesktopIconInfo.push(
  1633. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1634. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1635. )
  1636. }
  1637. //麒麟二中
  1638. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1639. _studentDesktopIconInfo.push(
  1640. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1641. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1642. )
  1643. }
  1644. //万科双语
  1645. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1646. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1647. if (el.Name == '项目管理') {
  1648. el.Name = 'PBL项目'
  1649. }
  1650. return el
  1651. })
  1652. _studentDesktopIconInfo3.push(
  1653. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1654. )
  1655. }
  1656. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1657. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1658. return el.Name != '魔盒识字' && el.Name != '24点'
  1659. })
  1660. }
  1661. 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) {
  1662. _studentDesktopIconInfo.push(
  1663. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1664. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1665. )
  1666. }
  1667. //循环创建桌面图标
  1668. if (type == 1) {
  1669. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1670. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1671. _content = $$("div", {
  1672. className: "U_MD_D_KO",
  1673. "onmousedown": U.UF.C.closure(function (obj) {
  1674. //防止拖动图标即打开了桌面应用
  1675. U.MD.D.click(this, obj);
  1676. }, [_studentDesktopIconInfo[i]]),
  1677. "onclick": U.UF.C.closure(function (obj) {
  1678. //防止拖动图标即打开了桌面应用
  1679. U.MD.D.click(this, obj);
  1680. }, [_studentDesktopIconInfo[i]])
  1681. }, _frag); //
  1682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1685. }
  1686. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1687. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1688. _content = $$("div", {
  1689. className: "U_MD_D_KO",
  1690. "onmousedown": U.UF.C.closure(function (obj) {
  1691. //防止拖动图标即打开了桌面应用
  1692. U.MD.D.click(this, obj);
  1693. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1694. "onclick": U.UF.C.closure(function (obj) {
  1695. //防止拖动图标即打开了桌面应用
  1696. U.MD.D.click(this, obj);
  1697. }, [_hkZJLSStudentDeskIconInfo[i]])
  1698. }, _frag); //
  1699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1702. } //
  1703. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1704. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1705. _content = $$("div", {
  1706. className: "U_MD_D_KO",
  1707. "onmousedown": U.UF.C.closure(function (obj) {
  1708. //防止拖动图标即打开了桌面应用
  1709. U.MD.D.click(this, obj);
  1710. }, [_ytyStudentDeskIconInfo[i]]),
  1711. "onclick": U.UF.C.closure(function (obj) {
  1712. //防止拖动图标即打开了桌面应用
  1713. U.MD.D.click(this, obj);
  1714. }, [_ytyStudentDeskIconInfo[i]])
  1715. }, _frag); //
  1716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1719. } //
  1720. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1721. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1722. _content = $$("div", {
  1723. className: "U_MD_D_KO",
  1724. "onmousedown": U.UF.C.closure(function (obj) {
  1725. //防止拖动图标即打开了桌面应用
  1726. U.MD.D.click(this, obj);
  1727. }, [_jccssylStudentDeskIconInfo[i]]),
  1728. "onclick": U.UF.C.closure(function (obj) {
  1729. //防止拖动图标即打开了桌面应用
  1730. U.MD.D.click(this, obj);
  1731. }, [_jccssylStudentDeskIconInfo[i]])
  1732. }, _frag); //
  1733. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1734. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1735. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1736. }
  1737. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1738. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1739. _content = $$("div", {
  1740. className: "U_MD_D_KO",
  1741. "onmousedown": U.UF.C.closure(function (obj) {
  1742. //防止拖动图标即打开了桌面应用
  1743. U.MD.D.click(this, obj);
  1744. }, [_scnuaiStudentDeskIconInfo[i]]),
  1745. "onclick": U.UF.C.closure(function (obj) {
  1746. //防止拖动图标即打开了桌面应用
  1747. U.MD.D.click(this, obj);
  1748. }, [_scnuaiStudentDeskIconInfo[i]])
  1749. }, _frag); //
  1750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1753. }
  1754. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1755. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1756. _content = $$("div", {
  1757. className: "U_MD_D_KO",
  1758. "onmousedown": U.UF.C.closure(function (obj) {
  1759. //防止拖动图标即打开了桌面应用
  1760. U.MD.D.click(this, obj);
  1761. }, [_caleStudentDeskIconInfo[i]]),
  1762. "onclick": U.UF.C.closure(function (obj) {
  1763. //防止拖动图标即打开了桌面应用
  1764. U.MD.D.click(this, obj);
  1765. }, [_caleStudentDeskIconInfo[i]])
  1766. }, _frag); //
  1767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1770. }
  1771. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1772. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1773. _content = $$("div", {
  1774. className: "U_MD_D_KO",
  1775. "onmousedown": U.UF.C.closure(function (obj) {
  1776. //防止拖动图标即打开了桌面应用
  1777. U.MD.D.click(this, obj);
  1778. }, [_thuioeStudentDeskIconInfo[i]]),
  1779. "onclick": U.UF.C.closure(function (obj) {
  1780. //防止拖动图标即打开了桌面应用
  1781. U.MD.D.click(this, obj);
  1782. }, [_thuioeStudentDeskIconInfo[i]])
  1783. }, _frag); //
  1784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1787. }
  1788. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1789. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1790. _content = $$("div", {
  1791. className: "U_MD_D_KO",
  1792. "onmousedown": U.UF.C.closure(function (obj) {
  1793. //防止拖动图标即打开了桌面应用
  1794. U.MD.D.click(this, obj);
  1795. }, [_tpcStudentDeskIconInfo[i]]),
  1796. "onclick": U.UF.C.closure(function (obj) {
  1797. //防止拖动图标即打开了桌面应用
  1798. U.MD.D.click(this, obj);
  1799. }, [_tpcStudentDeskIconInfo[i]])
  1800. }, _frag); //
  1801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1804. } //
  1805. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1806. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1807. _content = $$("div", {
  1808. className: "U_MD_D_KO",
  1809. "onmousedown": U.UF.C.closure(function (obj) {
  1810. //防止拖动图标即打开了桌面应用
  1811. U.MD.D.click(this, obj);
  1812. }, [_chjyjStudentDeskIconInfo[i]]),
  1813. "onclick": U.UF.C.closure(function (obj) {
  1814. //防止拖动图标即打开了桌面应用
  1815. U.MD.D.click(this, obj);
  1816. }, [_chjyjStudentDeskIconInfo[i]])
  1817. }, _frag); //
  1818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1821. }
  1822. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1823. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1824. _content = $$("div", {
  1825. className: "U_MD_D_KO",
  1826. "onmousedown": U.UF.C.closure(function (obj) {
  1827. //防止拖动图标即打开了桌面应用
  1828. U.MD.D.click(this, obj);
  1829. }, [_szjkyStudentDeskIconInfo[i]]),
  1830. "onclick": U.UF.C.closure(function (obj) {
  1831. //防止拖动图标即打开了桌面应用
  1832. U.MD.D.click(this, obj);
  1833. }, [_szjkyStudentDeskIconInfo[i]])
  1834. }, _frag); //
  1835. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1836. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1837. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1838. }
  1839. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1840. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1841. _content = $$("div", {
  1842. className: "U_MD_D_KO",
  1843. "onmousedown": U.UF.C.closure(function (obj) {
  1844. //防止拖动图标即打开了桌面应用
  1845. U.MD.D.click(this, obj);
  1846. }, [_dseiStudentDeskIconInfo[i]]),
  1847. "onclick": U.UF.C.closure(function (obj) {
  1848. //防止拖动图标即打开了桌面应用
  1849. U.MD.D.click(this, obj);
  1850. }, [_dseiStudentDeskIconInfo[i]])
  1851. }, _frag); //
  1852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1855. }
  1856. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1857. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1858. _content = $$("div", {
  1859. className: "U_MD_D_KO",
  1860. "onmousedown": U.UF.C.closure(function (obj) {
  1861. //防止拖动图标即打开了桌面应用
  1862. U.MD.D.click(this, obj);
  1863. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1864. "onclick": U.UF.C.closure(function (obj) {
  1865. //防止拖动图标即打开了桌面应用
  1866. U.MD.D.click(this, obj);
  1867. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1868. }, _frag); //
  1869. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1870. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1871. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1872. }
  1873. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1874. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1875. _content = $$("div", {
  1876. className: "U_MD_D_KO",
  1877. "onmousedown": U.UF.C.closure(function (obj) {
  1878. //防止拖动图标即打开了桌面应用
  1879. U.MD.D.click(this, obj);
  1880. }, [_siesStudentDeskIconInfo[i]]),
  1881. "onclick": U.UF.C.closure(function (obj) {
  1882. //防止拖动图标即打开了桌面应用
  1883. U.MD.D.click(this, obj);
  1884. }, [_siesStudentDeskIconInfo[i]])
  1885. }, _frag); //
  1886. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1887. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1888. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1889. }
  1890. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  1891. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  1892. _content = $$("div", {
  1893. className: "U_MD_D_KO",
  1894. "onmousedown": U.UF.C.closure(function (obj) {
  1895. //防止拖动图标即打开了桌面应用
  1896. U.MD.D.click(this, obj);
  1897. }, [_guzmsStudentDeskIconInfo[i]]),
  1898. "onclick": U.UF.C.closure(function (obj) {
  1899. //防止拖动图标即打开了桌面应用
  1900. U.MD.D.click(this, obj);
  1901. }, [_guzmsStudentDeskIconInfo[i]])
  1902. }, _frag); //
  1903. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1904. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  1905. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  1906. }
  1907. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1908. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1909. _content = $$("div", {
  1910. className: "U_MD_D_KO",
  1911. "onmousedown": U.UF.C.closure(function (obj) {
  1912. //防止拖动图标即打开了桌面应用
  1913. U.MD.D.click(this, obj);
  1914. }, [_hkStudentDeskIconInfo[i]]),
  1915. "onclick": U.UF.C.closure(function (obj) {
  1916. //防止拖动图标即打开了桌面应用
  1917. U.MD.D.click(this, obj);
  1918. }, [_hkStudentDeskIconInfo[i]])
  1919. }, _frag); //
  1920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1923. }
  1924. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1925. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1926. _content = $$("div", {
  1927. className: "U_MD_D_KO",
  1928. "onmousedown": U.UF.C.closure(function (obj) {
  1929. //防止拖动图标即打开了桌面应用
  1930. U.MD.D.click(this, obj);
  1931. }, [_hkaceStudentDeskIconInfo[i]]),
  1932. "onclick": U.UF.C.closure(function (obj) {
  1933. //防止拖动图标即打开了桌面应用
  1934. U.MD.D.click(this, obj);
  1935. }, [_hkaceStudentDeskIconInfo[i]])
  1936. }, _frag); //
  1937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1940. }
  1941. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  1942. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  1943. _content = $$("div", {
  1944. className: "U_MD_D_KO",
  1945. "onmousedown": U.UF.C.closure(function (obj) {
  1946. //防止拖动图标即打开了桌面应用
  1947. U.MD.D.click(this, obj);
  1948. }, [_cocobizStudentDeskIconInfo[i]]),
  1949. "onclick": U.UF.C.closure(function (obj) {
  1950. //防止拖动图标即打开了桌面应用
  1951. U.MD.D.click(this, obj);
  1952. }, [_cocobizStudentDeskIconInfo[i]])
  1953. }, _frag); //
  1954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  1956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  1957. }
  1958. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  1959. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  1960. _content = $$("div", {
  1961. className: "U_MD_D_KO",
  1962. "onmousedown": U.UF.C.closure(function (obj) {
  1963. //防止拖动图标即打开了桌面应用
  1964. U.MD.D.click(this, obj);
  1965. }, [_xxzjkyStudentDeskIconInfo[i]]),
  1966. "onclick": U.UF.C.closure(function (obj) {
  1967. //防止拖动图标即打开了桌面应用
  1968. U.MD.D.click(this, obj);
  1969. }, [_xxzjkyStudentDeskIconInfo[i]])
  1970. }, _frag); //
  1971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1974. }
  1975. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1976. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1977. _content = $$("div", {
  1978. className: "U_MD_D_KO",
  1979. "onmousedown": U.UF.C.closure(function (obj) {
  1980. //防止拖动图标即打开了桌面应用
  1981. U.MD.D.click(this, obj);
  1982. }, [_studentDesktopIconInfo[i]]),
  1983. "onclick": U.UF.C.closure(function (obj) {
  1984. //防止拖动图标即打开了桌面应用
  1985. U.MD.D.click(this, obj);
  1986. }, [_studentDesktopIconInfo[i]])
  1987. }, _frag); //
  1988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1991. }
  1992. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1993. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1994. _content = $$("div", {
  1995. className: "U_MD_D_KO",
  1996. "onmousedown": U.UF.C.closure(function (obj) {
  1997. //防止拖动图标即打开了桌面应用
  1998. U.MD.D.click(this, obj);
  1999. }, [_tcStudentDeskIconInfo[i]]),
  2000. "onclick": U.UF.C.closure(function (obj) {
  2001. //防止拖动图标即打开了桌面应用
  2002. U.MD.D.click(this, obj);
  2003. }, [_tcStudentDeskIconInfo[i]])
  2004. }, _frag); //
  2005. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2006. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2007. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2008. }
  2009. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2010. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2011. _content = $$("div", {
  2012. className: "U_MD_D_KO",
  2013. "onmousedown": U.UF.C.closure(function (obj) {
  2014. //防止拖动图标即打开了桌面应用
  2015. U.MD.D.click(this, obj);
  2016. }, [_szscStudentDeskIconInfo[i]]),
  2017. "onclick": U.UF.C.closure(function (obj) {
  2018. //防止拖动图标即打开了桌面应用
  2019. U.MD.D.click(this, obj);
  2020. }, [_szscStudentDeskIconInfo[i]])
  2021. }, _frag); //
  2022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2025. }
  2026. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2027. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2028. _content = $$("div", {
  2029. className: "U_MD_D_KO",
  2030. "onmousedown": U.UF.C.closure(function (obj) {
  2031. //防止拖动图标即打开了桌面应用
  2032. U.MD.D.click(this, obj);
  2033. }, [_studentDesktopIconInfo3[i]]),
  2034. "onclick": U.UF.C.closure(function (obj) {
  2035. //防止拖动图标即打开了桌面应用
  2036. U.MD.D.click(this, obj);
  2037. }, [_studentDesktopIconInfo3[i]])
  2038. }, _frag); //
  2039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2042. }
  2043. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2044. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2045. _content = $$("div", {
  2046. className: "U_MD_D_KO",
  2047. "onmousedown": U.UF.C.closure(function (obj) {
  2048. //防止拖动图标即打开了桌面应用
  2049. U.MD.D.click(this, obj);
  2050. }, [_studentDesktopIconInfo2[i]]),
  2051. "onclick": U.UF.C.closure(function (obj) {
  2052. //防止拖动图标即打开了桌面应用
  2053. U.MD.D.click(this, obj);
  2054. }, [_studentDesktopIconInfo2[i]])
  2055. }, _frag); //
  2056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2059. }
  2060. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2061. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2062. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2063. continue
  2064. }
  2065. _content = $$("div", {
  2066. className: "U_MD_D_KO",
  2067. "onmousedown": U.UF.C.closure(function (obj) {
  2068. //防止拖动图标即打开了桌面应用
  2069. U.MD.D.click(this, obj);
  2070. }, [_wanketeacherDesktopIconInfo[i]]),
  2071. "onclick": U.UF.C.closure(function (obj) {
  2072. //防止拖动图标即打开了桌面应用
  2073. U.MD.D.click(this, obj);
  2074. }, [_wanketeacherDesktopIconInfo[i]])
  2075. }, _frag); //
  2076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2079. }
  2080. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2081. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2082. _content = $$("div", {
  2083. className: "U_MD_D_KO",
  2084. "onmousedown": U.UF.C.closure(function (obj) {
  2085. //防止拖动图标即打开了桌面应用
  2086. U.MD.D.click(this, obj);
  2087. }, [_wankeAdminDesktopIconInfo[i]]),
  2088. "onclick": U.UF.C.closure(function (obj) {
  2089. //防止拖动图标即打开了桌面应用
  2090. U.MD.D.click(this, obj);
  2091. }, [_wankeAdminDesktopIconInfo[i]])
  2092. }, _frag); //
  2093. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2094. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2095. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2096. }
  2097. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2098. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2099. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2100. continue
  2101. }
  2102. _content = $$("div", {
  2103. className: "U_MD_D_KO",
  2104. "onmousedown": U.UF.C.closure(function (obj) {
  2105. //防止拖动图标即打开了桌面应用
  2106. U.MD.D.click(this, obj);
  2107. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2108. "onclick": U.UF.C.closure(function (obj) {
  2109. //防止拖动图标即打开了桌面应用
  2110. U.MD.D.click(this, obj);
  2111. }, [_scnuaiTeacherDeskIconInfo[i]])
  2112. }, _frag); //
  2113. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2114. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2115. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2116. }
  2117. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2118. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2119. _content = $$("div", {
  2120. className: "U_MD_D_KO",
  2121. "onmousedown": U.UF.C.closure(function (obj) {
  2122. //防止拖动图标即打开了桌面应用
  2123. U.MD.D.click(this, obj);
  2124. }, [_scnuaiAdminDeskIconInfo[i]]),
  2125. "onclick": U.UF.C.closure(function (obj) {
  2126. //防止拖动图标即打开了桌面应用
  2127. U.MD.D.click(this, obj);
  2128. }, [_scnuaiAdminDeskIconInfo[i]])
  2129. }, _frag); //
  2130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2133. }
  2134. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2135. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2136. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2137. continue
  2138. }
  2139. _content = $$("div", {
  2140. className: "U_MD_D_KO",
  2141. "onmousedown": U.UF.C.closure(function (obj) {
  2142. //防止拖动图标即打开了桌面应用
  2143. U.MD.D.click(this, obj);
  2144. }, [_jccssylTeacherDeskIconInfo[i]]),
  2145. "onclick": U.UF.C.closure(function (obj) {
  2146. //防止拖动图标即打开了桌面应用
  2147. U.MD.D.click(this, obj);
  2148. }, [_jccssylTeacherDeskIconInfo[i]])
  2149. }, _frag); //
  2150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2153. }
  2154. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2155. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2156. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2157. continue
  2158. }
  2159. _content = $$("div", {
  2160. className: "U_MD_D_KO",
  2161. "onmousedown": U.UF.C.closure(function (obj) {
  2162. //防止拖动图标即打开了桌面应用
  2163. U.MD.D.click(this, obj);
  2164. }, [_caleTeacherDeskIconInfo[i]]),
  2165. "onclick": U.UF.C.closure(function (obj) {
  2166. //防止拖动图标即打开了桌面应用
  2167. U.MD.D.click(this, obj);
  2168. }, [_caleTeacherDeskIconInfo[i]])
  2169. }, _frag); //
  2170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2173. }
  2174. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2175. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2176. _content = $$("div", {
  2177. className: "U_MD_D_KO",
  2178. "onmousedown": U.UF.C.closure(function (obj) {
  2179. //防止拖动图标即打开了桌面应用
  2180. U.MD.D.click(this, obj);
  2181. }, [_tpcOrganizerDeskIconInfo[i]]),
  2182. "onclick": U.UF.C.closure(function (obj) {
  2183. //防止拖动图标即打开了桌面应用
  2184. U.MD.D.click(this, obj);
  2185. }, [_tpcOrganizerDeskIconInfo[i]])
  2186. }, _frag); //
  2187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2190. }
  2191. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2192. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2193. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2194. continue
  2195. }
  2196. _content = $$("div", {
  2197. className: "U_MD_D_KO",
  2198. "onmousedown": U.UF.C.closure(function (obj) {
  2199. //防止拖动图标即打开了桌面应用
  2200. U.MD.D.click(this, obj);
  2201. }, [_tpcTeacherDeskIconInfo[i]]),
  2202. "onclick": U.UF.C.closure(function (obj) {
  2203. //防止拖动图标即打开了桌面应用
  2204. U.MD.D.click(this, obj);
  2205. }, [_tpcTeacherDeskIconInfo[i]])
  2206. }, _frag); //
  2207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2210. }
  2211. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2212. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2213. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2214. continue
  2215. }
  2216. _content = $$("div", {
  2217. className: "U_MD_D_KO",
  2218. "onmousedown": U.UF.C.closure(function (obj) {
  2219. //防止拖动图标即打开了桌面应用
  2220. U.MD.D.click(this, obj);
  2221. }, [_teacherDesktopIconInfo2[i]]),
  2222. "onclick": U.UF.C.closure(function (obj) {
  2223. //防止拖动图标即打开了桌面应用
  2224. U.MD.D.click(this, obj);
  2225. }, [_teacherDesktopIconInfo2[i]])
  2226. }, _frag); //
  2227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2230. }
  2231. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2232. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2233. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2234. continue
  2235. }
  2236. _content = $$("div", {
  2237. className: "U_MD_D_KO",
  2238. "onmousedown": U.UF.C.closure(function (obj) {
  2239. //防止拖动图标即打开了桌面应用
  2240. U.MD.D.click(this, obj);
  2241. }, [_thuioeTeacherDeskIconInfo[i]]),
  2242. "onclick": U.UF.C.closure(function (obj) {
  2243. //防止拖动图标即打开了桌面应用
  2244. U.MD.D.click(this, obj);
  2245. }, [_thuioeTeacherDeskIconInfo[i]])
  2246. }, _frag); //
  2247. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2248. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2249. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2250. }
  2251. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2252. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2253. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2254. continue
  2255. }
  2256. _content = $$("div", {
  2257. className: "U_MD_D_KO",
  2258. "onmousedown": U.UF.C.closure(function (obj) {
  2259. //防止拖动图标即打开了桌面应用
  2260. U.MD.D.click(this, obj);
  2261. }, [_lotechTeacherDeskIconInfo[i]]),
  2262. "onclick": U.UF.C.closure(function (obj) {
  2263. //防止拖动图标即打开了桌面应用
  2264. U.MD.D.click(this, obj);
  2265. }, [_lotechTeacherDeskIconInfo[i]])
  2266. }, _frag); //
  2267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2270. }//
  2271. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2272. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2273. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2274. continue
  2275. }
  2276. _content = $$("div", {
  2277. className: "U_MD_D_KO",
  2278. "onmousedown": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2282. "onclick": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2286. }, _frag); //
  2287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2290. }
  2291. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2292. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2293. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2294. continue
  2295. }
  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. }, [_siesTeacherDeskIconInfo[i]]),
  2302. "onclick": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_siesTeacherDeskIconInfo[i]])
  2306. }, _frag); //
  2307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2310. }
  2311. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2312. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2313. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2314. continue
  2315. }
  2316. _content = $$("div", {
  2317. className: "U_MD_D_KO",
  2318. "onmousedown": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_guzmsTeacherDeskIconInfo[i]]),
  2322. "onclick": U.UF.C.closure(function (obj) {
  2323. //防止拖动图标即打开了桌面应用
  2324. U.MD.D.click(this, obj);
  2325. }, [_guzmsTeacherDeskIconInfo[i]])
  2326. }, _frag); //
  2327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2330. }
  2331. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2332. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2333. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2334. continue
  2335. }
  2336. _content = $$("div", {
  2337. className: "U_MD_D_KO",
  2338. "onmousedown": U.UF.C.closure(function (obj) {
  2339. //防止拖动图标即打开了桌面应用
  2340. U.MD.D.click(this, obj);
  2341. }, [_longhuaTeacherDeskIconInfo[i]]),
  2342. "onclick": U.UF.C.closure(function (obj) {
  2343. //防止拖动图标即打开了桌面应用
  2344. U.MD.D.click(this, obj);
  2345. }, [_longhuaTeacherDeskIconInfo[i]])
  2346. }, _frag); //
  2347. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2348. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2349. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2350. }
  2351. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2352. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2353. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2354. continue
  2355. }
  2356. _content = $$("div", {
  2357. className: "U_MD_D_KO",
  2358. "onmousedown": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_ytyTeacherDeskIconInfo[i]]),
  2362. "onclick": U.UF.C.closure(function (obj) {
  2363. //防止拖动图标即打开了桌面应用
  2364. U.MD.D.click(this, obj);
  2365. }, [_ytyTeacherDeskIconInfo[i]])
  2366. }, _frag); //
  2367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2370. }
  2371. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2372. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2373. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2374. continue
  2375. }
  2376. _content = $$("div", {
  2377. className: "U_MD_D_KO",
  2378. "onmousedown": U.UF.C.closure(function (obj) {
  2379. //防止拖动图标即打开了桌面应用
  2380. U.MD.D.click(this, obj);
  2381. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2382. "onclick": U.UF.C.closure(function (obj) {
  2383. //防止拖动图标即打开了桌面应用
  2384. U.MD.D.click(this, obj);
  2385. }, [_yunhaiTeacherDeskIconInfo[i]])
  2386. }, _frag); //
  2387. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2388. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2389. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2390. } //_hkStudentDeskIconInfo
  2391. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2392. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2393. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2394. continue
  2395. }
  2396. _content = $$("div", {
  2397. className: "U_MD_D_KO",
  2398. "onmousedown": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2402. "onclick": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2406. }, _frag); //
  2407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2410. }
  2411. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2412. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2413. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2414. continue
  2415. }
  2416. _content = $$("div", {
  2417. className: "U_MD_D_KO",
  2418. "onmousedown": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_hkTeacherDeskIconInfo[i]]),
  2422. "onclick": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_hkTeacherDeskIconInfo[i]])
  2426. }, _frag); //
  2427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2430. }
  2431. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2432. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2433. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2434. continue
  2435. }
  2436. _content = $$("div", {
  2437. className: "U_MD_D_KO",
  2438. "onmousedown": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_hkaceTeacherDeskIconInfo[i]]),
  2442. "onclick": U.UF.C.closure(function (obj) {
  2443. //防止拖动图标即打开了桌面应用
  2444. U.MD.D.click(this, obj);
  2445. }, [_hkaceTeacherDeskIconInfo[i]])
  2446. }, _frag); //
  2447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2450. }
  2451. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2452. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2453. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2454. continue
  2455. }
  2456. _content = $$("div", {
  2457. className: "U_MD_D_KO",
  2458. "onmousedown": U.UF.C.closure(function (obj) {
  2459. //防止拖动图标即打开了桌面应用
  2460. U.MD.D.click(this, obj);
  2461. }, [_cocobizTeacherDeskIconInfo[i]]),
  2462. "onclick": U.UF.C.closure(function (obj) {
  2463. //防止拖动图标即打开了桌面应用
  2464. U.MD.D.click(this, obj);
  2465. }, [_cocobizTeacherDeskIconInfo[i]])
  2466. }, _frag); //
  2467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2470. }
  2471. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2472. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2473. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2474. continue
  2475. }
  2476. _content = $$("div", {
  2477. className: "U_MD_D_KO",
  2478. "onmousedown": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2482. "onclick": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2486. }, _frag); //
  2487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2490. }
  2491. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2492. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2493. _content = $$("div", {
  2494. className: "U_MD_D_KO",
  2495. "onmousedown": U.UF.C.closure(function (obj) {
  2496. //防止拖动图标即打开了桌面应用
  2497. U.MD.D.click(this, obj);
  2498. }, [_gdjgAdminDeskIconInfo[i]]),
  2499. "onclick": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_gdjgAdminDeskIconInfo[i]])
  2503. }, _frag); //
  2504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2507. }
  2508. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2509. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2510. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2511. continue
  2512. }
  2513. _content = $$("div", {
  2514. className: "U_MD_D_KO",
  2515. "onmousedown": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_gdjgTeacherDeskIconInfo[i]]),
  2519. "onclick": U.UF.C.closure(function (obj) {
  2520. //防止拖动图标即打开了桌面应用
  2521. U.MD.D.click(this, obj);
  2522. }, [_gdjgTeacherDeskIconInfo[i]])
  2523. }, _frag); //
  2524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2527. }
  2528. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2529. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2530. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2531. continue
  2532. }
  2533. _content = $$("div", {
  2534. className: "U_MD_D_KO",
  2535. "onmousedown": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_szherTeacherDeskIconInfo[i]]),
  2539. "onclick": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_szherTeacherDeskIconInfo[i]])
  2543. }, _frag); //
  2544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2547. }
  2548. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2549. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2550. _content = $$("div", {
  2551. className: "U_MD_D_KO",
  2552. "onmousedown": U.UF.C.closure(function (obj) {
  2553. //防止拖动图标即打开了桌面应用
  2554. U.MD.D.click(this, obj);
  2555. }, [_heyuannAdminDeskIconInfo[i]]),
  2556. "onclick": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_heyuannAdminDeskIconInfo[i]])
  2560. }, _frag); //
  2561. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2562. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2563. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2564. }
  2565. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2566. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2567. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2568. continue
  2569. }
  2570. _content = $$("div", {
  2571. className: "U_MD_D_KO",
  2572. "onmousedown": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_heyuanTeacherDeskIconInfo[i]]),
  2576. "onclick": U.UF.C.closure(function (obj) {
  2577. //防止拖动图标即打开了桌面应用
  2578. U.MD.D.click(this, obj);
  2579. }, [_heyuanTeacherDeskIconInfo[i]])
  2580. }, _frag); //
  2581. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2582. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2583. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2584. } //
  2585. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2586. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2587. _content = $$("div", {
  2588. className: "U_MD_D_KO",
  2589. "onmousedown": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_dseiAdminDeskIconInfo[i]]),
  2593. "onclick": U.UF.C.closure(function (obj) {
  2594. //防止拖动图标即打开了桌面应用
  2595. U.MD.D.click(this, obj);
  2596. }, [_dseiAdminDeskIconInfo[i]])
  2597. }, _frag); //
  2598. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2599. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2600. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2601. }
  2602. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2603. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2604. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2605. continue
  2606. }
  2607. _content = $$("div", {
  2608. className: "U_MD_D_KO",
  2609. "onmousedown": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_dseiTeacherDeskIconInfo[i]]),
  2613. "onclick": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_dseiTeacherDeskIconInfo[i]])
  2617. }, _frag); //
  2618. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2619. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2620. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2621. } //
  2622. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2623. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2624. _content = $$("div", {
  2625. className: "U_MD_D_KO",
  2626. "onmousedown": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_chjyjAdminDeskIconInfo[i]]),
  2630. "onclick": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_chjyjAdminDeskIconInfo[i]])
  2634. }, _frag); //
  2635. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2636. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2637. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2638. }//
  2639. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2640. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2641. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2642. continue
  2643. }
  2644. _content = $$("div", {
  2645. className: "U_MD_D_KO",
  2646. "onmousedown": U.UF.C.closure(function (obj) {
  2647. //防止拖动图标即打开了桌面应用
  2648. U.MD.D.click(this, obj);
  2649. }, [_chjyjTeacherDeskIconInfo[i]]),
  2650. "onclick": U.UF.C.closure(function (obj) {
  2651. //防止拖动图标即打开了桌面应用
  2652. U.MD.D.click(this, obj);
  2653. }, [_chjyjTeacherDeskIconInfo[i]])
  2654. }, _frag); //
  2655. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2656. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2657. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2658. }
  2659. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2660. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2661. _content = $$("div", {
  2662. className: "U_MD_D_KO",
  2663. "onmousedown": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_szjkyAdminDeskIconInfo[i]]),
  2667. "onclick": U.UF.C.closure(function (obj) {
  2668. //防止拖动图标即打开了桌面应用
  2669. U.MD.D.click(this, obj);
  2670. }, [_szjkyAdminDeskIconInfo[i]])
  2671. }, _frag); //
  2672. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2673. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2674. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2675. }//
  2676. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2677. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2678. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2679. continue
  2680. }
  2681. _content = $$("div", {
  2682. className: "U_MD_D_KO",
  2683. "onmousedown": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_szjkyTeacherDeskIconInfo[i]]),
  2687. "onclick": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_szjkyTeacherDeskIconInfo[i]])
  2691. }, _frag); //
  2692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2695. }
  2696. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2697. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  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. }, [_futianAdminDeskIconInfo[i]]),
  2704. "onclick": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_futianAdminDeskIconInfo[i]])
  2708. }, _frag); //
  2709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2712. }
  2713. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2714. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2715. if(_role === 0 && _futianTeacherDeskIconInfo[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. }, [_futianTeacherDeskIconInfo[i]]),
  2724. "onclick": U.UF.C.closure(function (obj) {
  2725. //防止拖动图标即打开了桌面应用
  2726. U.MD.D.click(this, obj);
  2727. }, [_futianTeacherDeskIconInfo[i]])
  2728. }, _frag); //
  2729. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2730. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2731. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2732. }
  2733. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2734. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2735. if(_role === 0 && _MingdeTeacherDeskIcon[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. }, [_MingdeTeacherDeskIcon[i]]),
  2744. "onclick": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_MingdeTeacherDeskIcon[i]])
  2748. }, _frag); //
  2749. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2750. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2751. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2752. }
  2753. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2754. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2755. _content = $$("div", {
  2756. className: "U_MD_D_KO",
  2757. "onmousedown": U.UF.C.closure(function (obj) {
  2758. //防止拖动图标即打开了桌面应用
  2759. U.MD.D.click(this, obj);
  2760. }, [_lhsAdminDesktopIconInfo[i]]),
  2761. "onclick": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_lhsAdminDesktopIconInfo[i]])
  2765. }, _frag); //
  2766. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2767. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2768. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2769. }
  2770. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2771. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2772. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2773. continue
  2774. }
  2775. _content = $$("div", {
  2776. className: "U_MD_D_KO",
  2777. "onmousedown": U.UF.C.closure(function (obj) {
  2778. //防止拖动图标即打开了桌面应用
  2779. U.MD.D.click(this, obj);
  2780. }, [_lhsteacherDesktopIconInfo[i]]),
  2781. "onclick": U.UF.C.closure(function (obj) {
  2782. //防止拖动图标即打开了桌面应用
  2783. U.MD.D.click(this, obj);
  2784. }, [_lhsteacherDesktopIconInfo[i]])
  2785. }, _frag); //
  2786. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2787. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2788. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2789. }
  2790. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2791. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2792. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2793. continue
  2794. }
  2795. _content = $$("div", {
  2796. className: "U_MD_D_KO",
  2797. "onmousedown": U.UF.C.closure(function (obj) {
  2798. //防止拖动图标即打开了桌面应用
  2799. U.MD.D.click(this, obj);
  2800. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2801. "onclick": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_zhoujiateacherDesktopIconInfo[i]])
  2805. }, _frag); //
  2806. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2807. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2808. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2809. }
  2810. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2811. for (i = 0; i < _hanDeskIcon.length; i++) {
  2812. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2813. continue
  2814. }
  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. }, [_hanDeskIcon[i]]),
  2821. "onclick": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_hanDeskIcon[i]])
  2825. }, _frag); //
  2826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2829. }
  2830. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2831. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2832. if(_role === 0 && _orgStemDeskIcon[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. }, [_orgStemDeskIcon[i]]),
  2841. "onclick": U.UF.C.closure(function (obj) {
  2842. //防止拖动图标即打开了桌面应用
  2843. U.MD.D.click(this, obj);
  2844. }, [_orgStemDeskIcon[i]])
  2845. }, _frag); //
  2846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2849. }
  2850. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2851. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2852. if(_role === 0 && _szulsDeskIcon[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. }, [_szulsDeskIcon[i]]),
  2861. "onclick": U.UF.C.closure(function (obj) {
  2862. //防止拖动图标即打开了桌面应用
  2863. U.MD.D.click(this, obj);
  2864. }, [_szulsDeskIcon[i]])
  2865. }, _frag); //
  2866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2869. }
  2870. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2871. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2872. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2873. continue
  2874. }
  2875. _content = $$("div", {
  2876. className: "U_MD_D_KO",
  2877. "onmousedown": U.UF.C.closure(function (obj) {
  2878. //防止拖动图标即打开了桌面应用
  2879. U.MD.D.click(this, obj);
  2880. }, [_orgDesktopIconInfo[i]]),
  2881. "onclick": U.UF.C.closure(function (obj) {
  2882. //防止拖动图标即打开了桌面应用
  2883. U.MD.D.click(this, obj);
  2884. }, [_orgDesktopIconInfo[i]])
  2885. }, _frag); //
  2886. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2887. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2888. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2889. }
  2890. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2891. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2892. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2893. continue
  2894. }
  2895. _content = $$("div", {
  2896. className: "U_MD_D_KO",
  2897. "onmousedown": U.UF.C.closure(function (obj) {
  2898. //防止拖动图标即打开了桌面应用
  2899. U.MD.D.click(this, obj);
  2900. }, [_schoolDesktopIconInfo[i]]),
  2901. "onclick": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_schoolDesktopIconInfo[i]])
  2905. }, _frag); //
  2906. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2907. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2908. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2909. }
  2910. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2911. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2912. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2913. continue
  2914. }
  2915. _content = $$("div", {
  2916. className: "U_MD_D_KO",
  2917. "onmousedown": U.UF.C.closure(function (obj) {
  2918. //防止拖动图标即打开了桌面应用
  2919. U.MD.D.click(this, obj);
  2920. }, [_GMteacherDesktopIconInfo[i]]),
  2921. "onclick": U.UF.C.closure(function (obj) {
  2922. //防止拖动图标即打开了桌面应用
  2923. U.MD.D.click(this, obj);
  2924. }, [_GMteacherDesktopIconInfo[i]])
  2925. }, _frag); //
  2926. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2927. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2928. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2929. }
  2930. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2931. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2932. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2933. continue
  2934. }
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_SONGteacherDesktopIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_SONGteacherDesktopIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2951. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2952. _content = $$("div", {
  2953. className: "U_MD_D_KO",
  2954. "onmousedown": U.UF.C.closure(function (obj) {
  2955. //防止拖动图标即打开了桌面应用
  2956. U.MD.D.click(this, obj);
  2957. }, [_GMstudentDesktopIconInfo[i]]),
  2958. "onclick": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_GMstudentDesktopIconInfo[i]])
  2962. }, _frag); //
  2963. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2964. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2965. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2966. }
  2967. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2968. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2969. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2970. continue
  2971. }
  2972. _content = $$("div", {
  2973. className: "U_MD_D_KO",
  2974. "onmousedown": U.UF.C.closure(function (obj) {
  2975. //防止拖动图标即打开了桌面应用
  2976. U.MD.D.click(this, obj);
  2977. }, [_tcTeacherDeskIconInfo[i]]),
  2978. "onclick": U.UF.C.closure(function (obj) {
  2979. //防止拖动图标即打开了桌面应用
  2980. U.MD.D.click(this, obj);
  2981. }, [_tcTeacherDeskIconInfo[i]])
  2982. }, _frag); //
  2983. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2984. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2985. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2986. }
  2987. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2988. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2989. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  2990. continue
  2991. }
  2992. _content = $$("div", {
  2993. className: "U_MD_D_KO",
  2994. "onmousedown": U.UF.C.closure(function (obj) {
  2995. //防止拖动图标即打开了桌面应用
  2996. U.MD.D.click(this, obj);
  2997. }, [_tcOrganizerDeskIconInfo[i]]),
  2998. "onclick": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_tcOrganizerDeskIconInfo[i]])
  3002. }, _frag); //
  3003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3006. }
  3007. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3008. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3009. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3010. continue
  3011. }
  3012. _content = $$("div", {
  3013. className: "U_MD_D_KO",
  3014. "onmousedown": U.UF.C.closure(function (obj) {
  3015. //防止拖动图标即打开了桌面应用
  3016. U.MD.D.click(this, obj);
  3017. }, [_szscTeacherDeskIconInfo[i]]),
  3018. "onclick": U.UF.C.closure(function (obj) {
  3019. //防止拖动图标即打开了桌面应用
  3020. U.MD.D.click(this, obj);
  3021. }, [_szscTeacherDeskIconInfo[i]])
  3022. }, _frag); //
  3023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3026. }
  3027. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3028. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3029. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3030. continue
  3031. }
  3032. _content = $$("div", {
  3033. className: "U_MD_D_KO",
  3034. "onmousedown": U.UF.C.closure(function (obj) {
  3035. //防止拖动图标即打开了桌面应用
  3036. U.MD.D.click(this, obj);
  3037. }, [_szscOrganizerDeskIconInfo[i]]),
  3038. "onclick": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_szscOrganizerDeskIconInfo[i]])
  3042. }, _frag); //
  3043. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3044. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3045. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3046. }
  3047. } else {
  3048. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3049. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3050. continue
  3051. }
  3052. _content = $$("div", {
  3053. className: "U_MD_D_KO",
  3054. "onmousedown": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_teacherDesktopIconInfo[i]]),
  3058. "onclick": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_teacherDesktopIconInfo[i]])
  3062. }, _frag); //
  3063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3066. }
  3067. }
  3068. } else {
  3069. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3070. _content = $$("div", {
  3071. className: "U_MD_D_KO",
  3072. style: { 'width': '124px', 'height': '145px' },
  3073. "onmousedown": U.UF.C.closure(function (obj) {
  3074. //防止拖动图标即打开了桌面应用
  3075. U.MD.D.click(this, obj);
  3076. }, [_easyDesktopIconInfo[i]]),
  3077. "onclick": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_easyDesktopIconInfo[i]])
  3081. }, _frag); //
  3082. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3085. }
  3086. }
  3087. if (type == 1) {
  3088. //加载好后给图标定位
  3089. U.MD.D.iconPostion($(_frag).Child());
  3090. } else {
  3091. //加载好后给图标定位
  3092. U.MD.D.iconPostion2($(_frag).Child());
  3093. }
  3094. //把图标加载到页面
  3095. el.appendChild(_frag);
  3096. }
  3097. /**
  3098. * 显示任务栏
  3099. *
  3100. * @param {element} 桌面元素
  3101. */
  3102. U.MD.D.I.displayTaskbar = function (el) {
  3103. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3104. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3105. //任务栏位置变化
  3106. U.selectEl(el).css({ "bottom": "0px" });
  3107. //桌面位置变话
  3108. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3109. }
  3110. }
  3111. //#region 桌面图标拖动逻辑
  3112. /**
  3113. * 桌面排列图标
  3114. *
  3115. * @param {element} 桌面元素
  3116. * @param {object} 上下相距的距离
  3117. * @param {object} 左右相距的距离
  3118. * @return {object} 命名空间
  3119. */
  3120. U.MD.D.iconPostion = function (childs, top, left) {
  3121. var i; //用于循环处理
  3122. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3123. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3124. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3125. for (i = 0; i < childs.length; i++) {
  3126. //如果竖排top超过了范围处理
  3127. if (top + 95 > US.height - 10) {
  3128. //left超过了页面范围处理,则向上重叠打印处理
  3129. if ((left + 180) > US.width) {
  3130. top -= 110;
  3131. left -= 90;
  3132. }
  3133. //没有超过范围,那么left+90添加到下一个竖排打印
  3134. else {
  3135. left += 90;
  3136. top = 15;
  3137. };
  3138. }
  3139. //给图标的位置赋值
  3140. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3141. if (i < childs.length - 1) {
  3142. //页面图标每次向下加95
  3143. top += 95;
  3144. }
  3145. }
  3146. //返回最后调用的图标的位置
  3147. return [top, left];
  3148. }
  3149. /**
  3150. * 桌面排列图标
  3151. *
  3152. * @param {element} 桌面元素
  3153. * @param {object} 上下相距的距离
  3154. * @param {object} 左右相距的距离
  3155. * @return {object} 命名空间
  3156. */
  3157. U.MD.D.iconPostion2 = function (childs, top, left) {
  3158. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3159. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3160. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3161. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3162. for (i = 0; i < childs.length; i++) {
  3163. //如果竖排top超过了范围处理
  3164. if (left + 150 > US.width - 10) {
  3165. //left超过了页面范围处理,则向上重叠打印处理
  3166. if ((top + 180) > US.Height) {
  3167. top -= 150;
  3168. left -= 150;
  3169. }
  3170. //没有超过范围,那么left+90添加到下一个竖排打印
  3171. else {
  3172. top += 150;
  3173. left = ol;
  3174. };
  3175. }
  3176. //给图标的位置赋值
  3177. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3178. if (i < childs.length - 1) {
  3179. //页面图标每次向下加95
  3180. left += 150;
  3181. }
  3182. }
  3183. //返回最后调用的图标的位置
  3184. return [top, left];
  3185. }
  3186. /**
  3187. * 桌面点击事件逻辑
  3188. *
  3189. * @param {element} 桌面元素
  3190. * @param {object} 上下相距的距离
  3191. * @param {object} 左右相距的距离
  3192. * @return {object} 命名空间
  3193. */
  3194. U.MD.D.click = function (el, obj) {
  3195. var _buttonnumber = event.button; //点击的按钮的事件值
  3196. var _userinfo = US.userInfo;
  3197. U.UF.EV.stopBubble(); //阻止向上冒泡
  3198. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3199. if (_buttonnumber < 2) {
  3200. //如果是click事件的处理
  3201. if (event.type == "click") {
  3202. //如果元素在mousemove事件中没有移动则出发click事件
  3203. if (!U.MD.D.I.IsDrag) {
  3204. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3205. U.alert("请先登录您的账号!");
  3206. setTimeout(() => {
  3207. U.MD.U.L.login();
  3208. }, 2000);
  3209. } else {
  3210. //打开应用处理
  3211. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3212. }
  3213. }
  3214. }
  3215. //如果是mouse事件的处理
  3216. else {
  3217. if (US.Config.type == '1') {
  3218. //拖动处理,添加拖动和拖动结束事件
  3219. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3220. }
  3221. }
  3222. U.MD.D.I.IsDrag = false;
  3223. }
  3224. }
  3225. /**
  3226. * 拖动的处理
  3227. *
  3228. */
  3229. U.MD.D.iconMove = function () {
  3230. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3231. U.MD.D.I.IsDrag = true;
  3232. }
  3233. /**
  3234. * 拖动结束后,这里是定位处理,以网状的形式定位
  3235. *
  3236. * @param {element} 拖动的元素
  3237. * @return {object} 命名空间
  3238. */
  3239. U.MD.D.iconUp = function (el) {
  3240. var _top = 15,
  3241. _left = 20,
  3242. _margin,
  3243. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3244. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3245. if (_positioninfo["OT"] > 15) {
  3246. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3247. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3248. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3249. }
  3250. if (_positioninfo["OL"] > 20) {
  3251. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3252. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3253. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3254. }
  3255. //while循环判断么一个重叠的元素
  3256. do {
  3257. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3258. _top = _positioninfo[0] + 95; //得到定位后的top
  3259. _left = _positioninfo[1]; //得到定位后的left
  3260. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3261. }
  3262. /**
  3263. * 判断拖动后图标是否重叠
  3264. *
  3265. * @param {element} 拖动的元素
  3266. * @param {element} 桌面所有的元素
  3267. * @param {array} 拖动元素的位置
  3268. ----------[0] 上 top
  3269. ----------[1] 左 left
  3270. * @return {object} 命名空间
  3271. */
  3272. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3273. //循环所有的图标
  3274. for (var i = 0; i < childs.length; i++) {
  3275. //判断有没有和该图标诶子重叠的元素
  3276. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3277. return childs[i]; //如果有返回
  3278. }
  3279. }
  3280. }
  3281. //#endregion
  3282. //#endregion
  3283. //#region 桌面应用
  3284. /**
  3285. * 打开应用
  3286. *
  3287. * @param {string} 类型
  3288. -----------------Disk 网盘系统
  3289. -----------------PDisk 学习系统网盘
  3290. -----------------Poto 图片
  3291. -----------------Video 视频
  3292. -----------------Music 音乐
  3293. -----------------Word word
  3294. -----------------Excel excel
  3295. -----------------Txt 记事本
  3296. -----------------PB 学习系统
  3297. -----------------Blog 朋友圈系统
  3298. -----------------FTP ftp系统
  3299. -----------------Group 好友群
  3300. -----------------SY 首页系统
  3301. -----------------Set 个人设置
  3302. -----------------XSet 系统设置
  3303. -----------------App 我们所有的app
  3304. -----------------BC c.1473.cn 平台
  3305. -----------------CWeb d.1473.cn 变成平台
  3306. -----------------其他的外联系统 我们统一用iframe打开
  3307. * @param {array} 类型
  3308. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3309. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3310. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3311. 如果第一个参数为其他,则无第二个参数
  3312. * @returns {array}
  3313. */
  3314. window.addEventListener('message', function (e) { // 监听 message 事件
  3315. // alert(e.data.type);
  3316. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3317. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3318. //3是展示全部阶段 2学生 1老师 4专家
  3319. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3320. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3321. //3是展示全部阶段 2学生 1老师 4专家
  3322. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3323. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3324. //3是展示全部阶段 2学生 1老师 4专家
  3325. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3326. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3327. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3328. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3329. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3330. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3331. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3332. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3333. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3334. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3335. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3336. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3337. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3338. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3339. //3是展示全部阶段 2学生 1老师 4专家
  3340. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3341. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3342. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3343. U.MD.D.I.selectUser();
  3344. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3345. var _formel = document.getElementById("study");
  3346. U.UF.F.windowZooming(_formel);
  3347. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3348. var _formel = document.getElementById("studyDetail");
  3349. U.UF.F.windowZooming(_formel);
  3350. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3351. var _formel = document.getElementById("studyDetail");
  3352. U.UF.F.windowZooming(_formel);
  3353. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3354. var _formel = document.getElementById("studentStudy");
  3355. U.UF.F.windowZooming(_formel);
  3356. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3357. // var _formel = document.getElementById("study");
  3358. //如果最大化了,那么就把他缩小
  3359. // if (_formel.ismaximize) {
  3360. // return;
  3361. // }
  3362. // U.UF.F.windowZooming(_formel);
  3363. // U.UF.F.topWindow(_formel);
  3364. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3365. // var _formel = document.getElementById("studyDetail");
  3366. //如果最大化了,那么就把他缩小
  3367. // if (_formel.ismaximize) {
  3368. // return;
  3369. // }
  3370. // U.UF.F.windowZooming(_formel);
  3371. // U.UF.F.topWindow(_formel);
  3372. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3373. // var _formel = document.getElementById("studentStudy");
  3374. // if (_formel.ismaximize) {
  3375. // return;
  3376. // }
  3377. // U.UF.F.windowZooming(_formel);
  3378. // U.UF.F.topWindow(_formel);
  3379. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3380. var _formel = document.getElementById("study");
  3381. // if (_formel.ismaximize) {
  3382. // return;
  3383. // }
  3384. // U.UF.F.windowZooming(_formel);
  3385. U.UF.F.topWindow(_formel);
  3386. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3387. var _formel = document.getElementById("studentIndex");
  3388. U.UF.F.windowZooming(_formel);
  3389. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3390. var _formel = document.getElementById("studyDetailS");
  3391. U.UF.F.windowZooming(_formel);
  3392. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3393. var _formel = document.getElementById("studioIndex");
  3394. U.UF.F.windowZooming(_formel);
  3395. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3396. var _formel = document.getElementById("studyDetailStudio");
  3397. U.UF.F.windowZooming(_formel);
  3398. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3399. var _formel = document.getElementById("studyDetailStudio");
  3400. U.UF.F.windowZooming(_formel);
  3401. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3402. var _formel = document.getElementById("studyDetailNT");
  3403. U.UF.F.windowZooming(_formel);
  3404. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3405. var _formel = document.getElementById("studyDetailS");
  3406. U.UF.F.windowZooming(_formel);
  3407. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3408. var _formel = document.getElementById("studyDetailS");
  3409. U.UF.F.topWindow(_formel);
  3410. } else if (e.data.tools && e.data.tools == "1") {
  3411. // U.MD.D.I.openApplication("whiteboard")
  3412. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3413. } else if (e.data.tools && e.data.tools == "2") {
  3414. U.MD.D.I.openApplication("note")
  3415. } else if (e.data.tools && e.data.tools == "3") {
  3416. // U.MD.D.I.openApplication("mind")
  3417. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3418. } else if (e.data.tools && e.data.tools == "4") {
  3419. U.MD.D.I.openApplication("investigation")
  3420. } else if (e.data.tools && e.data.tools == "6") {
  3421. // U.MD.D.I.openApplication("doc")
  3422. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3423. } else if (e.data.tools && e.data.tools == "7") {
  3424. // U.MD.D.I.openApplication("mindNetwork")
  3425. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3426. } else if (e.data.tools && e.data.tools == "8") {
  3427. U.MD.D.I.openApplication("library")
  3428. } else if (e.data.tools && e.data.tools == "17") {
  3429. U.MD.D.I.openApplication("stuLibrary")
  3430. } else if (e.data.tools && e.data.tools == "18") {
  3431. U.MD.D.I.openApplication("train")
  3432. } else if (e.data.tools && e.data.tools == "21") {
  3433. U.MD.D.I.openApplication("program")
  3434. } else if (e.data.tools && e.data.tools == "22") {
  3435. U.MD.D.I.openApplication("AIprogram2")
  3436. } else if (e.data.tools && e.data.tools == "23") {
  3437. U.MD.D.I.openApplication("Pythonprogram")
  3438. } else if (e.data.tools && e.data.tools == "24") {
  3439. U.MD.D.I.openApplication("AIprogram")
  3440. } else if (e.data.tools && e.data.tools == "25") {
  3441. U.MD.D.I.openApplication("sys")
  3442. } else if (e.data.tools && e.data.tools == "26") {
  3443. // U.MD.D.I.openApplication("courseDesign")
  3444. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3445. } else if (e.data.tools && e.data.tools == "31") {
  3446. U.MD.D.I.openApplication("netWorkPanel")
  3447. } else if (e.data.tools && e.data.tools == "32") {
  3448. U.MD.D.I.openApplication("codeEdit")
  3449. } else if (e.data.tools && e.data.tools == "57") {
  3450. U.MD.D.I.openApplication("CocoPi")
  3451. } else if (e.data.tools && e.data.tools == "63") {
  3452. U.MD.D.I.openApplication("Wood")
  3453. } else if (e.data.tools && e.data.tools == "58") {
  3454. U.MD.D.I.openApplication("car")
  3455. } else if (e.data.tools && e.data.tools == "59") {
  3456. U.MD.D.I.openApplication("lineSearch")
  3457. } else if (e.data.tools && e.data.tools == "60") {
  3458. U.MD.D.I.openApplication("deepLearning")
  3459. } else if (e.data.tools && e.data.tools == "61") {
  3460. U.MD.D.I.openApplication("allHistory")
  3461. } else if (e.data.tools && e.data.tools == "28") {
  3462. U.MD.D.I.openApplication("translation")
  3463. } else if (e.data.tools && e.data.tools == "37") {
  3464. U.MD.D.I.openApplication("mohe")
  3465. } else if (e.data.tools && e.data.tools == "38") {
  3466. U.MD.D.I.openApplication("24game")
  3467. } else if (e.data.tools && e.data.tools == "39") {
  3468. U.MD.D.I.openApplication("GeoGebra")
  3469. } else if (e.data.tools && e.data.tools == "43") {
  3470. U.MD.D.I.openApplication("studentEvaluate")
  3471. } else if (e.data.tools && e.data.tools == "44") {
  3472. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3473. } else if (e.data.tools && e.data.tools == "46") {
  3474. U.MD.D.I.openApplication("project")
  3475. } else if (e.data.tools && e.data.tools == "71") {
  3476. U.MD.D.I.openApplication("aigptCourse")
  3477. } else if (e.data.tools && e.data.tools == "1s") {
  3478. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3479. } else if (e.data.tools && e.data.tools == "3s") {
  3480. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3481. } else if (e.data.tools && e.data.tools == "6s") {
  3482. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3483. } else if (e.data.tools && e.data.tools == "1studio") {
  3484. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3485. } else if (e.data.tools && e.data.tools == "3studio") {
  3486. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3487. } else if (e.data.tools && e.data.tools == "6studio") {
  3488. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3489. } else if (e.data.tools && e.data.tools == "3y") {
  3490. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3491. } else if (e.data.tools && e.data.tools == "1y") {
  3492. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3493. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3494. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3495. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3496. U.MD.D.I.openApplication("AIAnalyse")
  3497. } else if (e.data.tools && e.data.tools == "1teacher") {
  3498. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3499. } else if (e.data.tools && e.data.tools == "3teacher") {
  3500. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3501. } else if (e.data.tools && e.data.tools == "7teacher") {
  3502. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3503. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3504. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3505. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3506. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3507. } else if (e.data.tools && e.data.tools == "1E") {
  3508. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3509. } else if (e.data.tools && e.data.tools == "3E") {
  3510. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3511. } else if (e.data.tools && e.data.tools == "57y") {
  3512. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3513. } else if (e.data.tools && e.data.tools == "57u") {
  3514. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3515. } else if (e.data.tools && e.data.tools == "57teacher") {
  3516. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3517. } else if (e.data.tools && e.data.tools == "64") {
  3518. U.MD.D.I.openApplication("AIChat")
  3519. } else if (e.data.tools && e.data.tools == "66") {
  3520. U.MD.D.I.openApplication("formulaEdi")
  3521. } else if (e.data.tools && e.data.tools == "67") {
  3522. U.MD.D.I.openApplication("molStr")
  3523. } else if (e.data.tools && e.data.tools == "68") {
  3524. U.MD.D.I.openApplication("timeAxis")
  3525. } else if (e.data.tools && e.data.tools == "openCourse") {
  3526. let _data = {
  3527. typea: e.data.typea || '',
  3528. typeb: e.data.typeb || '',
  3529. typed: e.data.typed || '',
  3530. }
  3531. U.MD.D.I.openInApplication("index", _data)
  3532. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3533. let _data = {
  3534. classid: e.data.classid || '',
  3535. }
  3536. U.MD.D.I.openInApplication("dataClass", _data)
  3537. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3538. let _data = {
  3539. cid: e.data.cid || '',
  3540. gid: e.data.gid || '',
  3541. }
  3542. U.MD.D.I.openInApplication("opencCscl", _data)
  3543. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3544. U.MD.D.I.openApplication("dataBoardTest")
  3545. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3546. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3547. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3548. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3549. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3550. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3551. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3552. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3553. }else if (e.data.tools && e.data.tools == "loginSz") {
  3554. U.MD.D.I.openInApplication("loginSz")
  3555. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3556. if($('#classroom_observation_board')[0]){
  3557. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3558. }
  3559. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3560. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3561. if($('#classroom_observation_ob_comment')[0]){
  3562. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3563. }
  3564. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3565. }
  3566. });
  3567. U.MD.D.I.selectUser = function () {
  3568. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3569. if (res.value[0].length > 0) {
  3570. US.userInfo = res.value[0][0];
  3571. $(".userName")[0].innerHTML = US.userInfo.username;
  3572. }
  3573. }, [], { "type": "GET", "withCredentials": true });
  3574. }
  3575. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3576. var _userinfo = US.userInfo, //登录用户信息
  3577. _userid = US.userInfo.userid, //登录用户id
  3578. _oid = _userinfo.organizeid,
  3579. _type = US.userInfo.type,
  3580. _org = US.userInfo.org,
  3581. _role = US.userInfo.role,
  3582. _classId = US.userInfo.classid;
  3583. if (_type == 4) {
  3584. tType = 4
  3585. }
  3586. switch (str) {
  3587. case "studyDetailNT": //无终端模式
  3588. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3589. setTimeout(() => {
  3590. U.MD.U.L.login();
  3591. }, 2000);
  3592. } else {
  3593. _formdiv = new U.UF.UI.form(
  3594. "课程详情",
  3595. $$("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 }), {
  3596. "id": "studyDetailNT",
  3597. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3598. "onresize": function () { }
  3599. }, {
  3600. closecallback: function () { }
  3601. }, { "style": { "height": "36px" } }).form; //创建窗体
  3602. _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); } }
  3603. break;
  3604. }
  3605. case "studyDetail":
  3606. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3607. setTimeout(() => {
  3608. U.MD.U.L.login();
  3609. }, 2000);
  3610. } else {
  3611. _formdiv = new U.UF.UI.form(
  3612. "课程详情",
  3613. $$("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 }), {
  3614. "id": "studyDetail",
  3615. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3616. "onresize": function () { }
  3617. }, {
  3618. closecallback: function () { }
  3619. }, { "style": { "height": "36px" } }).form; //创建窗体
  3620. _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); } }
  3621. break;
  3622. }
  3623. case "studyDetailTrain":
  3624. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3625. setTimeout(() => {
  3626. U.MD.U.L.login();
  3627. }, 2000);
  3628. } else {
  3629. _formdiv = new U.UF.UI.form(
  3630. "培训详情",
  3631. $$("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 }), {
  3632. "id": "studyDetailTrain",
  3633. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3634. "onresize": function () { }
  3635. }, {
  3636. closecallback: function () { }
  3637. }, { "style": { "height": "36px" } }).form; //创建窗体
  3638. _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); } }
  3639. break;
  3640. }
  3641. case "studyDetailS":
  3642. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3643. setTimeout(() => {
  3644. U.MD.U.L.login();
  3645. }, 2000);
  3646. } else {
  3647. _formdiv = new U.UF.UI.form(
  3648. "项目详情",
  3649. $$("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 }), {
  3650. "id": "studyDetailS",
  3651. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3652. "onresize": function () { }
  3653. }, {
  3654. closecallback: function () { }
  3655. }, { "style": { "height": "36px" } }).form; //创建窗体
  3656. _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); } }
  3657. break;
  3658. }
  3659. case "studyDetailStudio":
  3660. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3661. setTimeout(() => {
  3662. U.MD.U.L.login();
  3663. }, 2000);
  3664. } else {
  3665. _formdiv = new U.UF.UI.form(
  3666. "工作详情",
  3667. $$("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 }), {
  3668. "id": "studyDetailStudio",
  3669. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3670. "onresize": function () { }
  3671. }, {
  3672. closecallback: function () { }
  3673. }, { "style": { "height": "36px" } }).form; //创建窗体
  3674. _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); } }
  3675. break;
  3676. }
  3677. case "studyDetailS5":
  3678. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3679. setTimeout(() => {
  3680. U.MD.U.L.login();
  3681. }, 2000);
  3682. } else {
  3683. _formdiv = new U.UF.UI.form(
  3684. "项目详情",
  3685. $$("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 }), {
  3686. "id": "studyDetailS",
  3687. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3688. "onresize": function () { }
  3689. }, {
  3690. closecallback: function () { }
  3691. }, { "style": { "height": "36px" } }).form; //创建窗体
  3692. _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); } }
  3693. break;
  3694. }
  3695. case "studyDetailGM":
  3696. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3697. setTimeout(() => {
  3698. U.MD.U.L.login();
  3699. }, 2000);
  3700. } else {
  3701. _formdiv = new U.UF.UI.form(
  3702. "课程详情",
  3703. $$("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 }), {
  3704. "id": "studyDetail",
  3705. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3706. "onresize": function () { }
  3707. }, {
  3708. closecallback: function () { }
  3709. }, { "style": { "height": "36px" } }).form; //创建窗体
  3710. _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); } }
  3711. break;
  3712. }
  3713. case "hanUrl":
  3714. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3715. setTimeout(() => {
  3716. U.MD.U.L.login();
  3717. }, 2000);
  3718. } else {
  3719. _formdiv = new U.UF.UI.form(
  3720. "汉字宫",
  3721. $$("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" }), {
  3722. "id": "hanUrl",
  3723. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3724. "onresize": function () { }
  3725. }, {
  3726. closecallback: function () { }
  3727. }, { "style": { "height": "36px" } }).form; //创建窗体
  3728. _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); } }
  3729. break;
  3730. }
  3731. case "index":
  3732. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3733. setTimeout(() => {
  3734. U.MD.U.L.login();
  3735. }, 2000);
  3736. } else {
  3737. _formdiv = new U.UF.UI.form(
  3738. "课程中心",
  3739. $$("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 }), {
  3740. "id": "study",
  3741. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3742. "onresize": function () { }
  3743. }, {
  3744. closecallback: function () { }
  3745. }, { "style": { "height": "36px" } }).form; //创建窗体
  3746. _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); } }
  3747. break;
  3748. }
  3749. case "dataClass":
  3750. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3751. setTimeout(() => {
  3752. U.MD.U.L.login();
  3753. }, 2000);
  3754. } else {
  3755. _formdiv = new U.UF.UI.form(
  3756. "数据报告",
  3757. $$("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 }), {
  3758. "id": "dataClass",
  3759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3760. "onresize": function () { }
  3761. }, {
  3762. closecallback: function () { }
  3763. }, { "style": { "height": "36px" } }).form; //创建窗体
  3764. _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); } }
  3765. break;
  3766. }
  3767. case "opencCscl":
  3768. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3769. setTimeout(() => {
  3770. U.MD.U.L.login();
  3771. }, 2000);
  3772. } else {
  3773. _formdiv = new U.UF.UI.form(
  3774. "协同建构",
  3775. $$("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 }), {
  3776. "id": "futureClass",
  3777. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3778. "onresize": function () { }
  3779. }, {
  3780. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3781. }, { "style": { "height": "36px" } }).form; //创建窗体
  3782. _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); } }
  3783. break;
  3784. }
  3785. case "openCourseUpdate":
  3786. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3787. setTimeout(() => {
  3788. U.MD.U.L.login();
  3789. }, 2000);
  3790. } else {
  3791. _formdiv = new U.UF.UI.form(
  3792. "课程管理",
  3793. $$("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 }), {
  3794. "id": "openCourseUpdate",
  3795. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3796. "onresize": function () { }
  3797. }, {
  3798. closecallback: function () { }
  3799. }, { "style": { "height": "36px" } }).form; //创建窗体
  3800. break;
  3801. }
  3802. case "openNewCourseUpdate":
  3803. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3804. setTimeout(() => {
  3805. U.MD.U.L.login();
  3806. }, 2000);
  3807. } else {
  3808. _formdiv = new U.UF.UI.form(
  3809. "课程管理",
  3810. $$("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 }), {
  3811. "id": "openCourseUpdate",
  3812. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3813. "onresize": function () { }
  3814. }, {
  3815. closecallback: function () { }
  3816. }, { "style": { "height": "36px" } }).form; //创建窗体
  3817. break;
  3818. }
  3819. case "openCourseEUpdate":
  3820. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3821. setTimeout(() => {
  3822. U.MD.U.L.login();
  3823. }, 2000);
  3824. } else {
  3825. _formdiv = new U.UF.UI.form(
  3826. "课程管理",
  3827. $$("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 }), {
  3828. "id": "openCourseUpdate",
  3829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3830. "onresize": function () { }
  3831. }, {
  3832. closecallback: function () { }
  3833. }, { "style": { "height": "36px" } }).form; //创建窗体
  3834. break;
  3835. }
  3836. case "openCourseNewUpdate":
  3837. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3838. setTimeout(() => {
  3839. U.MD.U.L.login();
  3840. }, 2000);
  3841. } else {
  3842. _formdiv = new U.UF.UI.form(
  3843. "课程管理",
  3844. $$("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 }), {
  3845. "id": "openCourseUpdate",
  3846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3847. "onresize": function () { }
  3848. }, {
  3849. closecallback: function () { }
  3850. }, { "style": { "height": "36px" } }).form; //创建窗体
  3851. break;
  3852. }
  3853. case "inviteLoginSz":
  3854. _formdiv = new U.UF.UI.form(
  3855. "随机码登录",
  3856. $$("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 }), {
  3857. "id": "loginSz",
  3858. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3859. "onresize": function () { }
  3860. }, {
  3861. closecallback: function () { }
  3862. }, { "style": { "height": "36px" } }).form; //创建窗体
  3863. break;
  3864. case "loginSz":
  3865. _formdiv = new U.UF.UI.form(
  3866. "教师登录",
  3867. $$("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" }), {
  3868. "id": "loginSz",
  3869. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3870. "onresize": function () { }
  3871. }, {
  3872. closecallback: function () { }
  3873. }, { "style": { "height": "36px" } }).form; //创建窗体
  3874. break;
  3875. case "teacher":
  3876. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3877. setTimeout(() => {
  3878. U.MD.U.L.login();
  3879. }, 2000);
  3880. } else {
  3881. _formdiv = new U.UF.UI.form(
  3882. "教师管理",
  3883. $$("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 }), {
  3884. "id": "teacher",
  3885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3886. "onresize": function () { }
  3887. }, {
  3888. closecallback: function () { }
  3889. }, { "style": { "height": "36px" } }).form; //创建窗体
  3890. break;
  3891. }
  3892. case "dataBoardSZArea":
  3893. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3894. setTimeout(() => {
  3895. U.MD.U.L.login();
  3896. }, 2000);
  3897. } else {
  3898. _formdiv = new U.UF.UI.form(
  3899. "综合数据看板",
  3900. $$("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 }), {
  3901. "id": "dataBoardSZArea",
  3902. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3903. "onresize": function () { }
  3904. }, {
  3905. closecallback: function () { }
  3906. }, { "style": { "height": "36px" } }).form; //创建窗体
  3907. break;
  3908. }
  3909. case "dataBoardSZCity":
  3910. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3911. setTimeout(() => {
  3912. U.MD.U.L.login();
  3913. }, 2000);
  3914. } else {
  3915. _formdiv = new U.UF.UI.form(
  3916. "综合数据看板",
  3917. $$("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 }), {
  3918. "id": "dataBoardSZCity",
  3919. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3920. "onresize": function () { }
  3921. }, {
  3922. closecallback: function () { }
  3923. }, { "style": { "height": "36px" } }).form; //创建窗体
  3924. break;
  3925. }
  3926. case "classroom_observation_board":
  3927. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3928. setTimeout(() => {
  3929. U.MD.U.L.login();
  3930. }, 2000);
  3931. } else {
  3932. _formdiv = new U.UF.UI.form(
  3933. "课堂观察",
  3934. $$("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 }), {
  3935. "id": "classroom_observation_board",
  3936. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3937. "onresize": function () { }
  3938. }, {
  3939. closecallback: function () { }
  3940. }, { "style": { "height": "36px" } }).form; //创建窗体
  3941. break;
  3942. }
  3943. case "classroom_observation_ob_comment":
  3944. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3945. setTimeout(() => {
  3946. U.MD.U.L.login();
  3947. }, 2000);
  3948. } else {
  3949. _formdiv = new U.UF.UI.form(
  3950. "课堂审核",
  3951. $$("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 }), {
  3952. "id": "classroom_observation_ob_comment",
  3953. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3954. "onresize": function () { }
  3955. }, {
  3956. closecallback: function () { }
  3957. }, { "style": { "height": "36px" } }).form; //创建窗体
  3958. break;
  3959. }
  3960. }
  3961. }
  3962. U.MD.D.I.openApplication = function (str, obj, info) {
  3963. obj = obj || {};
  3964. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3965. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3966. _userinfo = US.userInfo, //登录用户信息
  3967. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3968. _oid = obj.organizeid || _userinfo.organizeid,
  3969. _type = US.userInfo.type,
  3970. _org = US.userInfo.org,
  3971. _role = US.userInfo.role,
  3972. _classId = US.userInfo.classid,
  3973. _TscreenType = 1
  3974. _screenType = 2,
  3975. _SscreenType = 3;
  3976. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3977. return;
  3978. }
  3979. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3980. switch (str) {
  3981. case "studnetProject": //好友打开
  3982. _formdiv = new U.UF.UI.form(
  3983. "我的项目",
  3984. $$("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 }), {
  3985. "id": "studnetProject",
  3986. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3987. "onresize": function () { }
  3988. }, {
  3989. closecallback: function () { }
  3990. }, { "style": { "height": "36px" } }).form; //创建窗体
  3991. _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); } }
  3992. break;
  3993. case "studentEvaluate": //好友打开
  3994. _formdiv = new U.UF.UI.form(
  3995. "我的评价",
  3996. $$("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 }), {
  3997. "id": "studentEvaluate",
  3998. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3999. "onresize": function () { }
  4000. }, {
  4001. closecallback: function () { }
  4002. }, { "style": { "height": "36px" } }).form; //创建窗体
  4003. _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); } }
  4004. break;
  4005. case "my":
  4006. _formdiv = new U.UF.UI.form(
  4007. "我的资料",
  4008. $$("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 }), {
  4009. "id": "my",
  4010. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4011. "onresize": function () { }
  4012. }, {
  4013. closecallback: function () { }
  4014. }, { "style": { "height": "36px" } }).form; //创建窗体
  4015. _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); } }
  4016. break;
  4017. case "program":
  4018. _formdiv = new U.UF.UI.form(
  4019. "编程平台",
  4020. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4021. "id": "program",
  4022. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4023. "onresize": function () { }
  4024. }, {
  4025. closecallback: function () { }
  4026. }, { "style": { "height": "36px" } }).form; //创建窗体
  4027. _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); } }
  4028. break;
  4029. case "library":
  4030. _formdiv = new U.UF.UI.form(
  4031. "素材库",
  4032. $$("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 }), {
  4033. "id": "library",
  4034. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4035. "onresize": function () { }
  4036. }, {
  4037. closecallback: function () { }
  4038. }, { "style": { "height": "36px" } }).form; //创建窗体
  4039. _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); } }
  4040. break;
  4041. case "whiteboard":
  4042. _formdiv = new U.UF.UI.form(
  4043. "电子白板",
  4044. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4045. "id": "whiteboard",
  4046. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4047. "onresize": function () { }
  4048. }, {
  4049. closecallback: function () { }
  4050. }, { "style": { "height": "36px" } }).form; //创建窗体
  4051. _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); } }
  4052. break;
  4053. case "investigation":
  4054. _formdiv = new U.UF.UI.form(
  4055. "问卷调查",
  4056. $$("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 }), {
  4057. "id": "investigation",
  4058. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4059. "onresize": function () { }
  4060. }, {
  4061. closecallback: function () { }
  4062. }, { "style": { "height": "36px" } }).form; //创建窗体
  4063. _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); } }
  4064. break;
  4065. case "note":
  4066. _formdiv = new U.UF.UI.form(
  4067. "便签分类",
  4068. $$("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 }), {
  4069. "id": "note",
  4070. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4071. "onresize": function () { }
  4072. }, {
  4073. closecallback: function () { }
  4074. }, { "style": { "height": "36px" } }).form; //创建窗体
  4075. _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); } }
  4076. break;
  4077. // case "score":
  4078. // _formdiv = new U.UF.UI.form(
  4079. // "量规评分",
  4080. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4081. // "id": "score",
  4082. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4083. // "onresize": function() {}
  4084. // }, {
  4085. // closecallback: function() {}
  4086. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4087. // _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); } }
  4088. // break;
  4089. case "mind":
  4090. _formdiv = new U.UF.UI.form(
  4091. "思维导图",
  4092. $$("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"
  4093. "id": "mind",
  4094. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4095. "onresize": function () { }
  4096. }, {
  4097. closecallback: function () { }
  4098. }, { "style": { "height": "36px" } }).form; //创建窗体
  4099. _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); } }
  4100. break;
  4101. case "doc":
  4102. // U.MD.D.I.isRoom();
  4103. _formdiv = new U.UF.UI.form(
  4104. "协同文档",
  4105. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4106. "id": "doc",
  4107. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4108. "onresize": function () { }
  4109. }, {
  4110. closecallback: function () { }
  4111. }, { "style": { "height": "36px" } }).form; //创建窗体
  4112. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4113. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4114. // })
  4115. _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); } }
  4116. break;
  4117. case "studentStudy":
  4118. _formdiv = new U.UF.UI.form(
  4119. "课程中心",
  4120. $$("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
  4121. "id": "studentStudy",
  4122. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4123. "onresize": function () { }
  4124. }, {
  4125. closecallback: function () { }
  4126. }, { "style": { "height": "36px" } }).form; //创建窗体
  4127. _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); } }
  4128. break;
  4129. case "train": //好友打开
  4130. _formdiv = new U.UF.UI.form(
  4131. "训练平台",
  4132. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4133. "id": "train",
  4134. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4135. "onresize": function () { }
  4136. }, {
  4137. closecallback: function () { }
  4138. }, { "style": { "height": "36px" } }).form; //创建窗体
  4139. _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); } }
  4140. break;
  4141. case "mindNetwork": //好友打开
  4142. _formdiv = new U.UF.UI.form(
  4143. "思维网格",
  4144. $$("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 }), {
  4145. "id": "mindNetwork",
  4146. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4147. "onresize": function () { }
  4148. }, {
  4149. closecallback: function () { }
  4150. }, { "style": { "height": "36px" } }).form; //创建窗体
  4151. _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); } }
  4152. break;
  4153. case "studentClassRoom": //好友打开
  4154. _formdiv = new U.UF.UI.form(
  4155. "实时课堂",
  4156. $$("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 }), {
  4157. "id": "studentClassRoom",
  4158. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4159. "onresize": function () { }
  4160. }, {
  4161. closecallback: function () { }
  4162. }, { "style": { "height": "36px" } }).form; //创建窗体
  4163. _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); } }
  4164. setTimeout(() => {
  4165. U.UF.F.windowZooming(_formdiv)
  4166. }, 0);
  4167. break;
  4168. }
  4169. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4170. switch (str) {
  4171. case "studnetProject": //好友打开
  4172. _formdiv = new U.UF.UI.form(
  4173. "我的项目",
  4174. $$("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 }), {
  4175. "id": "studnetProject",
  4176. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4177. "onresize": function () { }
  4178. }, {
  4179. closecallback: function () { }
  4180. }, { "style": { "height": "36px" } }).form; //创建窗体
  4181. _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); } }
  4182. break;
  4183. case "studentEvaluate": //好友打开
  4184. _formdiv = new U.UF.UI.form(
  4185. "我的评价",
  4186. $$("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 }), {
  4187. "id": "studentEvaluate",
  4188. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4189. "onresize": function () { }
  4190. }, {
  4191. closecallback: function () { }
  4192. }, { "style": { "height": "36px" } }).form; //创建窗体
  4193. _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); } }
  4194. break;
  4195. case "my":
  4196. _formdiv = new U.UF.UI.form(
  4197. "我的资料",
  4198. $$("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 }), {
  4199. "id": "my",
  4200. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4201. "onresize": function () { }
  4202. }, {
  4203. closecallback: function () { }
  4204. }, { "style": { "height": "36px" } }).form; //创建窗体
  4205. _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); } }
  4206. break;
  4207. case "program":
  4208. _formdiv = new U.UF.UI.form(
  4209. "编程平台",
  4210. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4211. "id": "program",
  4212. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4213. "onresize": function () { }
  4214. }, {
  4215. closecallback: function () { }
  4216. }, { "style": { "height": "36px" } }).form; //创建窗体
  4217. _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); } }
  4218. break;
  4219. case "library":
  4220. _formdiv = new U.UF.UI.form(
  4221. "素材库",
  4222. $$("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 }), {
  4223. "id": "library",
  4224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4225. "onresize": function () { }
  4226. }, {
  4227. closecallback: function () { }
  4228. }, { "style": { "height": "36px" } }).form; //创建窗体
  4229. _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); } }
  4230. break;
  4231. case "whiteboard":
  4232. _formdiv = new U.UF.UI.form(
  4233. "电子白板",
  4234. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4235. "id": "whiteboard",
  4236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4237. "onresize": function () { }
  4238. }, {
  4239. closecallback: function () { }
  4240. }, { "style": { "height": "36px" } }).form; //创建窗体
  4241. _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); } }
  4242. break;
  4243. case "investigation":
  4244. _formdiv = new U.UF.UI.form(
  4245. "问卷调查",
  4246. $$("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 }), {
  4247. "id": "investigation",
  4248. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4249. "onresize": function () { }
  4250. }, {
  4251. closecallback: function () { }
  4252. }, { "style": { "height": "36px" } }).form; //创建窗体
  4253. _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); } }
  4254. break;
  4255. case "note":
  4256. _formdiv = new U.UF.UI.form(
  4257. "便签分类",
  4258. $$("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 }), {
  4259. "id": "note",
  4260. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4261. "onresize": function () { }
  4262. }, {
  4263. closecallback: function () { }
  4264. }, { "style": { "height": "36px" } }).form; //创建窗体
  4265. _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); } }
  4266. break;
  4267. // case "score":
  4268. // _formdiv = new U.UF.UI.form(
  4269. // "量规评分",
  4270. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4271. // "id": "score",
  4272. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4273. // "onresize": function() {}
  4274. // }, {
  4275. // closecallback: function() {}
  4276. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4277. // _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); } }
  4278. // break;
  4279. case "mind":
  4280. _formdiv = new U.UF.UI.form(
  4281. "思维导图",
  4282. $$("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"
  4283. "id": "mind",
  4284. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4285. "onresize": function () { }
  4286. }, {
  4287. closecallback: function () { }
  4288. }, { "style": { "height": "36px" } }).form; //创建窗体
  4289. _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); } }
  4290. break;
  4291. case "doc":
  4292. // U.MD.D.I.isRoom();
  4293. _formdiv = new U.UF.UI.form(
  4294. "协同文档",
  4295. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4296. "id": "doc",
  4297. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4298. "onresize": function () { }
  4299. }, {
  4300. closecallback: function () { }
  4301. }, { "style": { "height": "36px" } }).form; //创建窗体
  4302. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4303. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4304. })
  4305. _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); } }
  4306. break;
  4307. case "train": //好友打开
  4308. _formdiv = new U.UF.UI.form(
  4309. "训练平台",
  4310. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4311. "id": "train",
  4312. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4313. "onresize": function () { }
  4314. }, {
  4315. closecallback: function () { }
  4316. }, { "style": { "height": "36px" } }).form; //创建窗体
  4317. _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); } }
  4318. break;
  4319. case "studentStudy":
  4320. _formdiv = new U.UF.UI.form(
  4321. "课程中心",
  4322. $$("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
  4323. "id": "studentStudy",
  4324. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4325. "onresize": function () { }
  4326. }, {
  4327. closecallback: function () { }
  4328. }, { "style": { "height": "36px" } }).form; //创建窗体
  4329. _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); } }
  4330. break;
  4331. case "mindNetwork": //好友打开
  4332. _formdiv = new U.UF.UI.form(
  4333. "思维网格",
  4334. $$("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 }), {
  4335. "id": "mindNetwork",
  4336. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4337. "onresize": function () { }
  4338. }, {
  4339. closecallback: function () { }
  4340. }, { "style": { "height": "36px" } }).form; //创建窗体
  4341. _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); } }
  4342. break;
  4343. case "studentClassRoom": //好友打开
  4344. _formdiv = new U.UF.UI.form(
  4345. "实时课堂",
  4346. $$("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 }), {
  4347. "id": "studentClassRoom",
  4348. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4349. "onresize": function () { }
  4350. }, {
  4351. closecallback: function () { }
  4352. }, { "style": { "height": "36px" } }).form; //创建窗体
  4353. _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); } }
  4354. setTimeout(() => {
  4355. U.UF.F.windowZooming(_formdiv)
  4356. }, 0);
  4357. break;
  4358. }
  4359. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4360. //选择应用处理
  4361. switch (str) {
  4362. case "project": //好友打开
  4363. _formdiv = new U.UF.UI.form(
  4364. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4365. $$("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 }), {
  4366. "id": "project",
  4367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4368. "onresize": function () { }
  4369. }, {
  4370. closecallback: function () { }
  4371. }, { "style": { "height": "36px" } }).form; //创建窗体
  4372. _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); } }
  4373. break;
  4374. case "student":
  4375. _formdiv = new U.UF.UI.form(
  4376. "学生管理",
  4377. $$("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 }), {
  4378. "id": "student",
  4379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4380. "onresize": function () { }
  4381. }, {
  4382. closecallback: function () { }
  4383. }, { "style": { "height": "36px" } }).form; //创建窗体
  4384. _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); } }
  4385. break;
  4386. case "evaluate":
  4387. _formdiv = new U.UF.UI.form(
  4388. "学生评价",
  4389. $$("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 }), {
  4390. "id": "evaluate",
  4391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4392. "onresize": function () { }
  4393. }, {
  4394. closecallback: function () { }
  4395. }, { "style": { "height": "36px" } }).form; //创建窗体
  4396. _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); } }
  4397. break;
  4398. case "sys":
  4399. _formdiv = new U.UF.UI.form(
  4400. "目标管理",
  4401. $$("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 }), {
  4402. "id": "sys",
  4403. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4404. "onresize": function () { }
  4405. }, {
  4406. closecallback: function () { }
  4407. }, { "style": { "height": "36px" } }).form; //创建窗体
  4408. _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); } }
  4409. break;
  4410. case "courseDesign":
  4411. _formdiv = new U.UF.UI.form(
  4412. "项目设计",
  4413. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4414. "id": "courseDesign",
  4415. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4416. "onresize": function () { }
  4417. }, {
  4418. closecallback: function () { }
  4419. }, { "style": { "height": "36px" } }).form; //创建窗体
  4420. _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); } }
  4421. break;
  4422. case "program":
  4423. _formdiv = new U.UF.UI.form(
  4424. "编程平台",
  4425. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4426. "id": "program",
  4427. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4428. "onresize": function () { }
  4429. }, {
  4430. closecallback: function () { }
  4431. }, { "style": { "height": "36px" } }).form; //创建窗体
  4432. _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); } }
  4433. break;
  4434. case "class":
  4435. _formdiv = new U.UF.UI.form(
  4436. "班级管理",
  4437. $$("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 }), {
  4438. "id": "class",
  4439. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4440. "onresize": function () { }
  4441. }, {
  4442. closecallback: function () { }
  4443. }, { "style": { "height": "36px" } }).form; //创建窗体
  4444. _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); } }
  4445. break;
  4446. case "Grade":
  4447. _formdiv = new U.UF.UI.form(
  4448. "年级管理",
  4449. $$("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 }), {
  4450. "id": "Grade",
  4451. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4452. "onresize": function () { }
  4453. }, {
  4454. closecallback: function () { }
  4455. }, { "style": { "height": "36px" } }).form; //创建窗体
  4456. _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); } }
  4457. break;
  4458. case "teacherOffice":
  4459. _formdiv = new U.UF.UI.form(
  4460. "教研室",
  4461. $$("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 }), {
  4462. "id": "teacherOffice",
  4463. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4464. "onresize": function () { }
  4465. }, {
  4466. closecallback: function () { }
  4467. }, { "style": { "height": "36px" } }).form; //创建窗体
  4468. _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); } }
  4469. break;
  4470. case "my":
  4471. _formdiv = new U.UF.UI.form(
  4472. "我的资料",
  4473. $$("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 }), {
  4474. "id": "my",
  4475. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4476. "onresize": function () { }
  4477. }, {
  4478. closecallback: function () { }
  4479. }, { "style": { "height": "36px" } }).form; //创建窗体
  4480. _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); } }
  4481. break;
  4482. case "notice":
  4483. _formdiv = new U.UF.UI.form(
  4484. "通知公告",
  4485. $$("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 }), {
  4486. "id": "notice",
  4487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4488. "onresize": function () { }
  4489. }, {
  4490. closecallback: function () { }
  4491. }, { "style": { "height": "36px" } }).form; //创建窗体
  4492. _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); } }
  4493. break;
  4494. case "library":
  4495. _formdiv = new U.UF.UI.form(
  4496. "素材库",
  4497. $$("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 }), {
  4498. "id": "library",
  4499. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4500. "onresize": function () { }
  4501. }, {
  4502. closecallback: function () { }
  4503. }, { "style": { "height": "36px" } }).form; //创建窗体
  4504. _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); } }
  4505. break;
  4506. case "whiteboard":
  4507. _formdiv = new U.UF.UI.form(
  4508. "电子白板",
  4509. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4510. "id": "whiteboard",
  4511. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4512. "onresize": function () { }
  4513. }, {
  4514. closecallback: function () { }
  4515. }, { "style": { "height": "36px" } }).form; //创建窗体
  4516. _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); } }
  4517. break;
  4518. case "investigation":
  4519. _formdiv = new U.UF.UI.form(
  4520. "问卷调查",
  4521. $$("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 }), {
  4522. "id": "investigation",
  4523. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4524. "onresize": function () { }
  4525. }, {
  4526. closecallback: function () { }
  4527. }, { "style": { "height": "36px" } }).form; //创建窗体
  4528. _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); } }
  4529. break;
  4530. case "note":
  4531. _formdiv = new U.UF.UI.form(
  4532. "便签分类",
  4533. $$("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 }), {
  4534. "id": "note",
  4535. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4536. "onresize": function () { }
  4537. }, {
  4538. closecallback: function () { }
  4539. }, { "style": { "height": "36px" } }).form; //创建窗体
  4540. _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); } }
  4541. break;
  4542. // case "score":
  4543. // _formdiv = new U.UF.UI.form(
  4544. // "量规评分",
  4545. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4546. // "id": "score",
  4547. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4548. // "onresize": function() {}
  4549. // }, {
  4550. // closecallback: function() {}
  4551. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4552. // _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); } }
  4553. // break;
  4554. case "mind":
  4555. _formdiv = new U.UF.UI.form(
  4556. "思维导图",
  4557. $$("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"
  4558. "id": "mind",
  4559. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4560. "onresize": function () { }
  4561. }, {
  4562. closecallback: function () { }
  4563. }, { "style": { "height": "36px" } }).form; //创建窗体
  4564. _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); } }
  4565. break;
  4566. case "doc":
  4567. // U.MD.D.I.isRoom();
  4568. _formdiv = new U.UF.UI.form(
  4569. "协同文档",
  4570. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4571. "id": "doc",
  4572. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4573. "onresize": function () { }
  4574. }, {
  4575. closecallback: function () { }
  4576. }, { "style": { "height": "36px" } }).form; //创建窗体
  4577. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4578. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4579. })
  4580. _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); } }
  4581. break;
  4582. case "study":
  4583. _formdiv = new U.UF.UI.form(
  4584. "课程中心",
  4585. $$("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
  4586. "id": "study",
  4587. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4588. "onresize": function () { }
  4589. }, {
  4590. closecallback: function () { }
  4591. }, { "style": { "height": "36px" } }).form; //创建窗体
  4592. _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); } }
  4593. break;
  4594. case "mindNetwork": //好友打开
  4595. _formdiv = new U.UF.UI.form(
  4596. "思维网格",
  4597. $$("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 }), {
  4598. "id": "mindNetwork",
  4599. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4600. "onresize": function () { }
  4601. }, {
  4602. closecallback: function () { }
  4603. }, { "style": { "height": "36px" } }).form; //创建窗体
  4604. _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); } }
  4605. break;
  4606. case "train": //好友打开
  4607. _formdiv = new U.UF.UI.form(
  4608. "训练平台",
  4609. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4610. "id": "mindNetwork",
  4611. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4612. "onresize": function () { }
  4613. }, {
  4614. closecallback: function () { }
  4615. }, { "style": { "height": "36px" } }).form; //创建窗体
  4616. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4617. break;
  4618. case "teacherClassRoom": //好友打开
  4619. _formdiv = new U.UF.UI.form(
  4620. "实时课堂",
  4621. $$("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 }), {
  4622. "id": "teacherClassRoom",
  4623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4624. "onresize": function () { }
  4625. }, {
  4626. closecallback: function () { }
  4627. }, { "style": { "height": "36px" } }).form; //创建窗体
  4628. _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); } }
  4629. setTimeout(() => {
  4630. U.UF.F.windowZooming(_formdiv)
  4631. }, 0);
  4632. break;
  4633. }
  4634. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4635. switch (str) {
  4636. case "project": //好友打开
  4637. _formdiv = new U.UF.UI.form(
  4638. "课程管理",
  4639. $$("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 }), {
  4640. "id": "project",
  4641. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4642. "onresize": function () { }
  4643. }, {
  4644. closecallback: function () { }
  4645. }, { "style": { "height": "36px" } }).form; //创建窗体
  4646. _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); } }
  4647. break;
  4648. case "evaluate":
  4649. _formdiv = new U.UF.UI.form(
  4650. "学生评价",
  4651. $$("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 }), {
  4652. "id": "evaluate",
  4653. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4654. "onresize": function () { }
  4655. }, {
  4656. closecallback: function () { }
  4657. }, { "style": { "height": "36px" } }).form; //创建窗体
  4658. _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); } }
  4659. break;
  4660. case "notice":
  4661. _formdiv = new U.UF.UI.form(
  4662. "通知公告",
  4663. $$("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 }), {
  4664. "id": "notice",
  4665. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4666. "onresize": function () { }
  4667. }, {
  4668. closecallback: function () { }
  4669. }, { "style": { "height": "36px" } }).form; //创建窗体
  4670. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4671. break;
  4672. case "stuLibrary":
  4673. _formdiv = new U.UF.UI.form(
  4674. "学习资料",
  4675. $$("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 }), {
  4676. "id": "stuLibrary",
  4677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4678. "onresize": function () { }
  4679. }, {
  4680. closecallback: function () { }
  4681. }, { "style": { "height": "36px" } }).form; //创建窗体
  4682. _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); } }
  4683. break;
  4684. case "program":
  4685. _formdiv = new U.UF.UI.form(
  4686. "编程平台",
  4687. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4688. "id": "program",
  4689. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4690. "onresize": function () { }
  4691. }, {
  4692. closecallback: function () { }
  4693. }, { "style": { "height": "36px" } }).form; //创建窗体
  4694. _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); } }
  4695. break;
  4696. case "whiteboard":
  4697. _formdiv = new U.UF.UI.form(
  4698. "电子白板",
  4699. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4700. "id": "whiteboard",
  4701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4702. "onresize": function () { }
  4703. }, {
  4704. closecallback: function () { }
  4705. }, { "style": { "height": "36px" } }).form; //创建窗体
  4706. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4707. break;
  4708. case "investigation":
  4709. _formdiv = new U.UF.UI.form(
  4710. "问卷调查",
  4711. $$("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 }), {
  4712. "id": "investigation",
  4713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4714. "onresize": function () { }
  4715. }, {
  4716. closecallback: function () { }
  4717. }, { "style": { "height": "36px" } }).form; //创建窗体
  4718. _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); } }
  4719. break;
  4720. case "mind":
  4721. _formdiv = new U.UF.UI.form(
  4722. "思维导图",
  4723. $$("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"
  4724. "id": "mind",
  4725. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4726. "onresize": function () { }
  4727. }, {
  4728. closecallback: function () { }
  4729. }, { "style": { "height": "36px" } }).form; //创建窗体
  4730. _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); } }
  4731. break;
  4732. case "doc":
  4733. // U.MD.D.I.isRoom();
  4734. _formdiv = new U.UF.UI.form(
  4735. "协同文档",
  4736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4737. "id": "doc",
  4738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4739. "onresize": function () { }
  4740. }, {
  4741. closecallback: function () { }
  4742. }, { "style": { "height": "36px" } }).form; //创建窗体
  4743. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4744. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4745. })
  4746. _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); } }
  4747. break;
  4748. case "study":
  4749. _formdiv = new U.UF.UI.form(
  4750. "课程中心",
  4751. $$("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
  4752. "id": "study",
  4753. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4759. break;
  4760. case "mindNetwork": //好友打开
  4761. _formdiv = new U.UF.UI.form(
  4762. "思维网格",
  4763. $$("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 }), {
  4764. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4771. break;
  4772. case "train": //好友打开
  4773. _formdiv = new U.UF.UI.form(
  4774. "训练平台",
  4775. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4776. "id": "train",
  4777. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4778. "onresize": function () { }
  4779. }, {
  4780. closecallback: function () { }
  4781. }, { "style": { "height": "36px" } }).form; //创建窗体
  4782. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4783. break;
  4784. case "sys":
  4785. _formdiv = new U.UF.UI.form(
  4786. "目标管理",
  4787. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4788. "id": "sys",
  4789. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4790. "onresize": function () { }
  4791. }, {
  4792. closecallback: function () { }
  4793. }, { "style": { "height": "36px" } }).form; //创建窗体
  4794. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4795. break;
  4796. case "courseDesign":
  4797. _formdiv = new U.UF.UI.form(
  4798. "项目设计",
  4799. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4800. "id": "courseDesign",
  4801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4802. "onresize": function () { }
  4803. }, {
  4804. closecallback: function () { }
  4805. }, { "style": { "height": "36px" } }).form; //创建窗体
  4806. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4807. break;
  4808. }
  4809. } else if (!_type) {
  4810. switch (str) {
  4811. case "my":
  4812. _formdiv = new U.UF.UI.form(
  4813. "我的资料",
  4814. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4815. "id": "my",
  4816. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4817. "onresize": function () { }
  4818. }, {
  4819. closecallback: function () { }
  4820. }, { "style": { "height": "36px" } }).form; //创建窗体
  4821. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4822. break;
  4823. }
  4824. }
  4825. switch (str) {
  4826. // AIprogram2 AI体验 aihub.cocorobo.cn
  4827. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4828. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4829. case "formulaEdi": //公式编辑
  4830. _formdiv = new U.UF.UI.form(
  4831. "公式编辑",
  4832. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4833. "id": "formulaEdi",
  4834. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4835. "onresize": function () { }
  4836. }, {
  4837. closecallback: function () { }
  4838. }, { "style": { "height": "36px" } }).form; //创建窗体
  4839. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4840. break;
  4841. case "molStr": //分子结构
  4842. _formdiv = new U.UF.UI.form(
  4843. "分子结构",
  4844. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4845. "id": "molStr",
  4846. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4847. "onresize": function () { }
  4848. }, {
  4849. closecallback: function () { }
  4850. }, { "style": { "height": "36px" } }).form; //创建窗体
  4851. _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); } }
  4852. break;
  4853. case "timeAxis": //时间轴
  4854. _formdiv = new U.UF.UI.form(
  4855. "时间轴",
  4856. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4857. "id": "timeAxis",
  4858. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4859. "onresize": function () { }
  4860. }, {
  4861. closecallback: function () { }
  4862. }, { "style": { "height": "36px" } }).form; //创建窗体
  4863. _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); } }
  4864. break;
  4865. case "AIprogram2": //AI体验
  4866. _formdiv = new U.UF.UI.form(
  4867. "AI体验",
  4868. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4869. "id": "AIprogram2",
  4870. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4871. "onresize": function () { }
  4872. }, {
  4873. closecallback: function () { }
  4874. }, { "style": { "height": "36px" } }).form; //创建窗体
  4875. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4876. break;
  4877. case "Pythonprogram": //python编程
  4878. _formdiv = new U.UF.UI.form(
  4879. "Python编程",
  4880. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4881. "id": "Pythonprogram",
  4882. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4883. "onresize": function () { }
  4884. }, {
  4885. closecallback: function () { }
  4886. }, { "style": { "height": "36px" } }).form; //创建窗体
  4887. _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); } }
  4888. break;
  4889. case "AIprogram": //ai编程
  4890. _formdiv = new U.UF.UI.form(
  4891. "AI编程平台",
  4892. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4893. "id": "AIprogram",
  4894. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4895. "onresize": function () { }
  4896. }, {
  4897. closecallback: function () { }
  4898. }, { "style": { "height": "36px" } }).form; //创建窗体
  4899. _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); } }
  4900. break;
  4901. case "CocoPi": //CocoPi
  4902. _formdiv = new U.UF.UI.form(
  4903. "CocoPi",
  4904. $$("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" }), {
  4905. "id": "CocoPi",
  4906. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4907. "onresize": function () { }
  4908. }, {
  4909. closecallback: function () { }
  4910. }, { "style": { "height": "36px" } }).form; //创建窗体
  4911. _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); } }
  4912. break;
  4913. case "Wood": //Wood
  4914. _formdiv = new U.UF.UI.form(
  4915. "海龟编程",
  4916. $$("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/" }), {
  4917. "id": "Wood",
  4918. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4919. "onresize": function () { }
  4920. }, {
  4921. closecallback: function () { }
  4922. }, { "style": { "height": "36px" } }).form; //创建窗体
  4923. _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); } }
  4924. break;
  4925. case "car": //模拟驾驶
  4926. _formdiv = new U.UF.UI.form(
  4927. "模拟驾驶",
  4928. $$("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/" }), {
  4929. "id": "car",
  4930. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4931. "onresize": function () { }
  4932. }, {
  4933. closecallback: function () { }
  4934. }, { "style": { "height": "36px" } }).form; //创建窗体
  4935. _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); } }
  4936. break;
  4937. case "lineSearch": //路径搜索
  4938. _formdiv = new U.UF.UI.form(
  4939. "路径搜索",
  4940. $$("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/" }), {
  4941. "id": "lineSearch",
  4942. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4943. "onresize": function () { }
  4944. }, {
  4945. closecallback: function () { }
  4946. }, { "style": { "height": "36px" } }).form; //创建窗体
  4947. _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); } }
  4948. break;
  4949. case "deepLearning": //深度学习
  4950. _formdiv = new U.UF.UI.form(
  4951. "深度学习",
  4952. $$("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/#" }), {
  4953. "id": "deepLearning",
  4954. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4955. "onresize": function () { }
  4956. }, {
  4957. closecallback: function () { }
  4958. }, { "style": { "height": "36px" } }).form; //创建窗体
  4959. _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); } }
  4960. break;
  4961. case "allHistory": //深度学习
  4962. _formdiv = new U.UF.UI.form(
  4963. "全历史",
  4964. $$("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/" }), {
  4965. "id": "allHistory",
  4966. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4967. "onresize": function () { }
  4968. }, {
  4969. closecallback: function () { }
  4970. }, { "style": { "height": "36px" } }).form; //创建窗体
  4971. _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); } }
  4972. break;
  4973. case "chatPDF": //ai编程
  4974. _formdiv = new U.UF.UI.form(
  4975. "chatPDF",
  4976. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4977. "id": "chatPDF",
  4978. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4979. "onresize": function () { }
  4980. }, {
  4981. closecallback: function () { }
  4982. }, { "style": { "height": "36px" } }).form; //创建窗体
  4983. _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); } }
  4984. break;
  4985. case "resources": //国家教育
  4986. _formdiv = new U.UF.UI.form(
  4987. "国家教育",
  4988. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4989. "id": "resources",
  4990. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4991. "onresize": function () { }
  4992. }, {
  4993. closecallback: function () { }
  4994. }, { "style": { "height": "36px" } }).form; //创建窗体
  4995. _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); } }
  4996. break;
  4997. case "codeEdit": //源码编辑
  4998. _formdiv = new U.UF.UI.form(
  4999. "源码编辑",
  5000. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5001. "id": "codeEdit",
  5002. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5003. "onresize": function () { }
  5004. }, {
  5005. closecallback: function () { }
  5006. }, { "style": { "height": "36px" } }).form; //创建窗体
  5007. _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); } }
  5008. break; //
  5009. case "MindMap": //MindMap
  5010. _formdiv = new U.UF.UI.form(
  5011. "MindMap",
  5012. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5013. "id": "MindMap",
  5014. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5015. "onresize": function () { }
  5016. }, {
  5017. closecallback: function () { }
  5018. }, { "style": { "height": "36px" } }).form; //创建窗体
  5019. _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); } }
  5020. break;
  5021. case "netWorkPanel": //netWorkPanel
  5022. _formdiv = new U.UF.UI.form(
  5023. "netWorkPanel",
  5024. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5025. "id": "netWorkPanel",
  5026. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5027. "onresize": function () { }
  5028. }, {
  5029. closecallback: function () { }
  5030. }, { "style": { "height": "36px" } }).form; //创建窗体
  5031. _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); } }
  5032. break;
  5033. case "GeoGebra": //GeoGebra
  5034. _formdiv = new U.UF.UI.form(
  5035. "GeoGebra",
  5036. $$("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" }), {
  5037. "id": "GeoGebra",
  5038. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5039. "onresize": function () { }
  5040. }, {
  5041. closecallback: function () { }
  5042. }, { "style": { "height": "36px" } }).form; //创建窗体
  5043. _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); } }
  5044. break;
  5045. case "translation": //翻译
  5046. _formdiv = new U.UF.UI.form(
  5047. "翻译",
  5048. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5049. "id": "translation",
  5050. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5051. "onresize": function () { }
  5052. }, {
  5053. closecallback: function () { }
  5054. }, { "style": { "height": "36px" } }).form; //创建窗体
  5055. _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); } }
  5056. break;
  5057. case "mohe": //魔盒
  5058. _formdiv = new U.UF.UI.form(
  5059. "魔盒识字",
  5060. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5061. "id": "mohe",
  5062. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5063. "onresize": function () { }
  5064. }, {
  5065. closecallback: function () { }
  5066. }, { "style": { "height": "36px" } }).form; //创建窗体
  5067. _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); } }
  5068. break;
  5069. case "24game": //24点
  5070. _formdiv = new U.UF.UI.form(
  5071. "24点",
  5072. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5073. "id": "24game",
  5074. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5075. "onresize": function () { }
  5076. }, {
  5077. closecallback: function () { }
  5078. }, { "style": { "height": "36px" } }).form; //创建窗体
  5079. _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); } }
  5080. break;
  5081. case "case":
  5082. _formdiv = new U.UF.UI.form(
  5083. "课程进展",
  5084. $$("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 }), {
  5085. "id": "case",
  5086. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5087. "onresize": function () { }
  5088. }, {
  5089. closecallback: function () { }
  5090. }, { "style": { "height": "36px" } }).form; //创建窗体
  5091. _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); } }
  5092. break;
  5093. case "snf":
  5094. _formdiv = new U.UF.UI.form(
  5095. "赛诺梵",
  5096. $$("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" }), {
  5097. "id": "snf",
  5098. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5099. "onresize": function () { }
  5100. }, {
  5101. closecallback: function () { }
  5102. }, { "style": { "height": "36px" } }).form; //创建窗体
  5103. _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); } }
  5104. break;
  5105. case "hanFamily":
  5106. _formdiv = new U.UF.UI.form(
  5107. "汉字家族",
  5108. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5109. "id": "hanFamily",
  5110. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5111. "onresize": function () { }
  5112. }, {
  5113. closecallback: function () { }
  5114. }, { "style": { "height": "36px" } }).form; //创建窗体
  5115. _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); } }
  5116. break;
  5117. case "hanClassics":
  5118. _formdiv = new U.UF.UI.form(
  5119. "国学经典",
  5120. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5121. "id": "hanClassics",
  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/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5128. break;
  5129. case "hanTraining":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5133. "id": "hanTraining",
  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/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5140. break;
  5141. case "hanClass":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5145. "id": "hanClass",
  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/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5152. break;
  5153. case "han":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5157. "id": "han",
  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/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5164. break;
  5165. case "projectGM": //课程管理
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5169. "id": "projectGM",
  5170. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5171. "onresize": function () { }
  5172. }, {
  5173. closecallback: function () { }
  5174. }, { "style": { "height": "36px" } }).form; //创建窗体
  5175. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5176. break;
  5177. case "studyGM": //课程中心
  5178. _formdiv = new U.UF.UI.form(
  5179. "课程中心",
  5180. $$("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
  5181. "id": "study",
  5182. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5188. break;
  5189. // studentGM
  5190. case "studentGM": //学生管理
  5191. _formdiv = new U.UF.UI.form(
  5192. "学生管理",
  5193. $$("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 }), {
  5194. "id": "studentGM",
  5195. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5196. "onresize": function () { }
  5197. }, {
  5198. closecallback: function () { }
  5199. }, { "style": { "height": "36px" } }).form; //创建窗体
  5200. _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); } }
  5201. break;
  5202. case "evaluateGM": //学生评价
  5203. _formdiv = new U.UF.UI.form(
  5204. "学生评价",
  5205. $$("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 }), {
  5206. "id": "evaluateGM",
  5207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5208. "onresize": function () { }
  5209. }, {
  5210. closecallback: function () { }
  5211. }, { "style": { "height": "36px" } }).form; //创建窗体
  5212. _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); } }
  5213. break;
  5214. // classGM
  5215. case "classGM": //班级管理
  5216. _formdiv = new U.UF.UI.form(
  5217. "班级管理",
  5218. $$("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 }), {
  5219. "id": "classGM",
  5220. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5221. "onresize": function () { }
  5222. }, {
  5223. closecallback: function () { }
  5224. }, { "style": { "height": "36px" } }).form; //创建窗体
  5225. _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); } }
  5226. break;
  5227. // dataGM
  5228. case "dataGM":
  5229. _formdiv = new U.UF.UI.form(
  5230. "我的资料",
  5231. $$("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 }), {
  5232. "id": "dataGM",
  5233. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5234. "onresize": function () { }
  5235. }, {
  5236. closecallback: function () { }
  5237. }, { "style": { "height": "36px" } }).form; //创建窗体
  5238. _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); } }
  5239. break;
  5240. // caseGM
  5241. case "caseGM": //课程进展
  5242. _formdiv = new U.UF.UI.form(
  5243. "课程进展",
  5244. $$("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 }), {
  5245. "id": "caseGM",
  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/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5252. break;
  5253. // meterialGM
  5254. case "meterialGM": //素材库
  5255. _formdiv = new U.UF.UI.form(
  5256. "素材库",
  5257. $$("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 }), {
  5258. "id": "meterialGM",
  5259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5260. "onresize": function () { }
  5261. }, {
  5262. closecallback: function () { }
  5263. }, { "style": { "height": "36px" } }).form; //创建窗体
  5264. _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); } }
  5265. break;
  5266. // evaluateSGM
  5267. case "evaluateSGM": //我的评价
  5268. _formdiv = new U.UF.UI.form(
  5269. "我的评价",
  5270. $$("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 }), {
  5271. "id": "evaluateSGM",
  5272. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5273. "onresize": function () { }
  5274. }, {
  5275. closecallback: function () { }
  5276. }, { "style": { "height": "36px" } }).form; //创建窗体
  5277. _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); } }
  5278. break;
  5279. case "jupyter": //jupyter
  5280. _formdiv = new U.UF.UI.form(
  5281. "jupyter",
  5282. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5283. "id": "jupyter",
  5284. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5285. "onresize": function () { }
  5286. }, {
  5287. closecallback: function () { }
  5288. }, { "style": { "height": "36px" } }).form; //创建窗体
  5289. _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); } }
  5290. break;
  5291. case "number": //数字实验室
  5292. _formdiv = new U.UF.UI.form(
  5293. "数字实验室",
  5294. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5295. "id": "number",
  5296. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5297. "onresize": function () { }
  5298. }, {
  5299. closecallback: function () { }
  5300. }, { "style": { "height": "36px" } }).form; //创建窗体
  5301. _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); } }
  5302. break;
  5303. case "studentCourse": //项目管理 学生
  5304. _formdiv = new U.UF.UI.form(
  5305. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5306. $$("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 }), {
  5307. "id": "studentCourse",
  5308. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5309. "onresize": function () { }
  5310. }, {
  5311. closecallback: function () { }
  5312. }, { "style": { "height": "36px" } }).form; //创建窗体
  5313. _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); } }
  5314. break;
  5315. case "studentCourseS": //项目管理 老师
  5316. _formdiv = new U.UF.UI.form(
  5317. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5318. $$("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 }), {
  5319. "id": "studentCourseS",
  5320. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5321. "onresize": function () { }
  5322. }, {
  5323. closecallback: function () { }
  5324. }, { "style": { "height": "36px" } }).form; //创建窗体
  5325. _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); } }
  5326. break;
  5327. case "studentIndex": //项目中心
  5328. _formdiv = new U.UF.UI.form(
  5329. "项目中心",
  5330. $$("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 }), {
  5331. "id": "studentIndex",
  5332. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5333. "onresize": function () { }
  5334. }, {
  5335. closecallback: function () { }
  5336. }, { "style": { "height": "36px" } }).form; //创建窗体
  5337. _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); } }
  5338. break;
  5339. case "CaseDesignS":
  5340. _formdiv = new U.UF.UI.form(
  5341. "项目进展",
  5342. $$("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 }), {
  5343. "id": "case",
  5344. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5345. "onresize": function () { }
  5346. }, {
  5347. closecallback: function () { }
  5348. }, { "style": { "height": "36px" } }).form; //创建窗体
  5349. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5350. break;
  5351. case "tcStudent": //腾讯学生管理
  5352. _formdiv = new U.UF.UI.form(
  5353. "学生管理",
  5354. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5355. "id": "tcStudent",
  5356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5357. "onresize": function () { }
  5358. }, {
  5359. closecallback: function () { }
  5360. }, { "style": { "height": "36px" } }).form; //创建窗体
  5361. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5362. break;
  5363. case "tcSchool": //腾讯学校管理
  5364. _formdiv = new U.UF.UI.form(
  5365. "学校管理",
  5366. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5367. "id": "tcSchool",
  5368. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5369. "onresize": function () { }
  5370. }, {
  5371. closecallback: function () { }
  5372. }, { "style": { "height": "36px" } }).form; //创建窗体
  5373. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5374. break;
  5375. case "tcTeacher": //腾讯学校管理
  5376. _formdiv = new U.UF.UI.form(
  5377. "教师管理",
  5378. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5379. "id": "tcTeacher",
  5380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5381. "onresize": function () { }
  5382. }, {
  5383. closecallback: function () { }
  5384. }, { "style": { "height": "36px" } }).form; //创建窗体
  5385. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5386. break;
  5387. case "tcData": //腾讯我的资料
  5388. _formdiv = new U.UF.UI.form(
  5389. "我的资料",
  5390. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5391. "id": "tcData",
  5392. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5393. "onresize": function () { }
  5394. }, {
  5395. closecallback: function () { }
  5396. }, { "style": { "height": "36px" } }).form; //创建窗体
  5397. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5398. break;
  5399. case "tcNotice": //腾讯消息通知
  5400. _formdiv = new U.UF.UI.form(
  5401. "消息通知",
  5402. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5403. "id": "tcNotice",
  5404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5405. "onresize": function () { }
  5406. }, {
  5407. closecallback: function () { }
  5408. }, { "style": { "height": "36px" } }).form; //创建窗体
  5409. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5410. break;
  5411. case "myReport": //好友打开
  5412. _formdiv = new U.UF.UI.form(
  5413. "我的评价",
  5414. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  5415. "id": "myReport",
  5416. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5417. "onresize": function () { }
  5418. }, {
  5419. closecallback: function () { }
  5420. }, { "style": { "height": "36px" } }).form; //创建窗体
  5421. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5422. break;
  5423. case "learnAna": //好友打开
  5424. _formdiv = new U.UF.UI.form(
  5425. "学习分析",
  5426. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5427. "id": "learnAna",
  5428. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5429. "onresize": function () { }
  5430. }, {
  5431. closecallback: function () { }
  5432. }, { "style": { "height": "36px" } }).form; //创建窗体
  5433. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5434. break;
  5435. case "AIChat": //AI共创
  5436. _formdiv = new U.UF.UI.form(
  5437. "AI共创",
  5438. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5439. "id": "AIChat",
  5440. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5441. "onresize": function () { }
  5442. }, {
  5443. istop: true,
  5444. closecallback: function () { $("#aichat_icon").remove(); },
  5445. narrowcallback: function () {
  5446. if (!$("#aichat_icon")[0]) {
  5447. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5448. }
  5449. },
  5450. }, { "style": { "height": "36px" } }).form; //创建窗体
  5451. _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); } }
  5452. break;
  5453. case "ainew": //AI共创
  5454. _formdiv = new U.UF.UI.form(
  5455. "AI协同",
  5456. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5457. "id": "ainew",
  5458. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5459. "onresize": function () { }
  5460. }, {
  5461. closecallback: function () { }
  5462. }, { "style": { "height": "36px" } }).form; //创建窗体
  5463. _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); } }
  5464. break;
  5465. case "gpt4": //gpt4
  5466. _formdiv = new U.UF.UI.form(
  5467. "AI助手",
  5468. $$("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 }), {
  5469. "id": "gpt4",
  5470. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5471. "onresize": function () { }
  5472. }, {
  5473. closecallback: function () { }
  5474. }, { "style": { "height": "36px" } }).form; //创建窗体
  5475. _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); } }
  5476. break;
  5477. case "aigpt": //gpt4
  5478. _formdiv = new U.UF.UI.form(
  5479. "AI助手+",
  5480. $$("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 }), {
  5481. "id": "aigpt",
  5482. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5483. "onresize": function () { }
  5484. }, {
  5485. closecallback: function () { }
  5486. }, { "style": { "height": "36px" } }).form; //创建窗体
  5487. _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); } }
  5488. break;
  5489. case "futureClass": //AI共创
  5490. _formdiv = new U.UF.UI.form(
  5491. "协同建构",
  5492. $$("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
  5493. "id": "synergyCourse",
  5494. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5495. "onresize": function () { }
  5496. }, {
  5497. closecallback: function () {
  5498. $("iframe", _formdiv)[0].contentWindow.loginout();
  5499. }
  5500. }, { "style": { "height": "36px" } }).form; //创建窗体
  5501. _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); } }
  5502. break;
  5503. case "aiagent": //ai agent
  5504. _formdiv = new U.UF.UI.form(
  5505. "AI Agent",
  5506. $$("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" }), {
  5507. "id": "AIAgent",
  5508. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5509. "onresize": function () { }
  5510. }, {
  5511. closecallback: function () { }
  5512. }, { "style": { "height": "36px" } }).form; //创建窗体
  5513. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5514. break;
  5515. case "dataBoard": //数据看板
  5516. _formdiv = new U.UF.UI.form(
  5517. "数据看板",
  5518. $$("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 }), {
  5519. "id": "dataBoard",
  5520. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5521. "onresize": function () { }
  5522. }, {
  5523. closecallback: function () { }
  5524. }, { "style": { "height": "36px" } }).form; //创建窗体
  5525. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5526. break;
  5527. case "dataBoardSies": //数据融合
  5528. _formdiv = new U.UF.UI.form(
  5529. "数据融合",
  5530. $$("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 }), {
  5531. "id": "dataBoardSies",
  5532. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5533. "onresize": function () { }
  5534. }, {
  5535. closecallback: function () { }
  5536. }, { "style": { "height": "36px" } }).form; //创建窗体
  5537. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5538. break;
  5539. case "dataBoardNew": //数据看板
  5540. _formdiv = new U.UF.UI.form(
  5541. "综合看板",
  5542. $$("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 }), {
  5543. "id": "dataBoardNew",
  5544. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5550. break;
  5551. case "dataBoardTest": //数据看板
  5552. _formdiv = new U.UF.UI.form(
  5553. "评测看板",
  5554. $$("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 }), {
  5555. "id": "dataBoardTest",
  5556. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5557. "onresize": function () { }
  5558. }, {
  5559. closecallback: function () { }
  5560. }, { "style": { "height": "36px" } }).form; //创建窗体
  5561. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5562. break;
  5563. case "AIAnalyse": //AI共创
  5564. _formdiv = new U.UF.UI.form(
  5565. "AI分析",
  5566. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5567. "id": "AIAnalyse",
  5568. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5569. "onresize": function () { }
  5570. }, {
  5571. closecallback: function () { }
  5572. }, { "style": { "height": "36px" } }).form; //创建窗体
  5573. _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); } }
  5574. break;
  5575. case "studioCourse": //AI共创
  5576. _formdiv = new U.UF.UI.form(
  5577. "工作管理",
  5578. $$("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 }), {
  5579. "id": "studioCourse",
  5580. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5581. "onresize": function () { }
  5582. }, {
  5583. closecallback: function () { }
  5584. }, { "style": { "height": "36px" } }).form; //创建窗体
  5585. _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); } }
  5586. break;
  5587. case "studioIndex": //AI共创
  5588. _formdiv = new U.UF.UI.form(
  5589. "工作中心",
  5590. $$("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 }), {
  5591. "id": "studioIndex",
  5592. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5593. "onresize": function () { }
  5594. }, {
  5595. closecallback: function () { }
  5596. }, { "style": { "height": "36px" } }).form; //创建窗体
  5597. _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); } }
  5598. break;
  5599. case "source":
  5600. _formdiv = new U.UF.UI.form(
  5601. "教学资源",
  5602. $$("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 }), {
  5603. "id": "source",
  5604. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5605. "onresize": function () { }
  5606. }, {
  5607. closecallback: function () { }
  5608. }, { "style": { "height": "36px" } }).form; //创建窗体
  5609. _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); } }
  5610. break;
  5611. case "testTeacher":
  5612. _formdiv = new U.UF.UI.form(
  5613. "教师管理",
  5614. $$("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 }), {
  5615. "id": "testTeacher",
  5616. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5617. "onresize": function () { }
  5618. }, {
  5619. closecallback: function () { }
  5620. }, { "style": { "height": "36px" } }).form; //创建窗体
  5621. _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); } }
  5622. break;
  5623. case "testStudent":
  5624. _formdiv = new U.UF.UI.form(
  5625. "教师中心",
  5626. $$("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 }), {
  5627. "id": "testStudent",
  5628. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5629. "onresize": function () { }
  5630. }, {
  5631. closecallback: function () { }
  5632. }, { "style": { "height": "36px" } }).form; //创建窗体
  5633. _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); } }
  5634. break;
  5635. case "testTeacherSies":
  5636. _formdiv = new U.UF.UI.form(
  5637. "教师管理",
  5638. $$("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 }), {
  5639. "id": "testTeacherSies",
  5640. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5641. "onresize": function () { }
  5642. }, {
  5643. closecallback: function () { }
  5644. }, { "style": { "height": "36px" } }).form; //创建窗体
  5645. _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); } }
  5646. break;
  5647. case "testStudentSies":
  5648. _formdiv = new U.UF.UI.form(
  5649. "教师中心",
  5650. $$("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 }), {
  5651. "id": "testStudentSies",
  5652. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5653. "onresize": function () { }
  5654. }, {
  5655. closecallback: function () { }
  5656. }, { "style": { "height": "36px" } }).form; //创建窗体
  5657. _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); } }
  5658. break;
  5659. case "ytpbl": //消息通知
  5660. _formdiv = new U.UF.UI.form(
  5661. "案例征集",
  5662. $$("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 }), {
  5663. "id": "ytpbl",
  5664. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5665. "onresize": function () { }
  5666. }, {
  5667. closecallback: function () { }
  5668. }, { "style": { "height": "36px" } }).form; //创建窗体
  5669. _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); } }
  5670. // 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");
  5671. break;
  5672. case "aiCourseResource": //人工智能窗体
  5673. _formdiv = new U.UF.UI.form(
  5674. false,
  5675. $$("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 }), {
  5676. "id": "aiCourseResource",
  5677. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5678. "onresize": function () { },
  5679. "isdrag": false,
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //创建窗体
  5683. _taskbar = ''
  5684. break;
  5685. case "szdjgCocooroboX": //图形化编程
  5686. _formdiv = new U.UF.UI.form(
  5687. "图形化编程",
  5688. $$("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" }), {
  5689. "id": "szdjgCocooroboX",
  5690. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5691. "onresize": function () { }
  5692. }, {
  5693. closecallback: function () { }
  5694. }, { "style": { "height": "36px" } }).form; //创建窗体
  5695. _taskbar = ''
  5696. break;
  5697. case "szdjgPython": //python编程
  5698. _formdiv = new U.UF.UI.form(
  5699. "Python编程",
  5700. $$("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" }), {
  5701. "id": "szdjgPython",
  5702. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. _taskbar = ''
  5708. break;
  5709. case "Record":
  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/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5713. "id": "Record",
  5714. "style": { "width": "90%", "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/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5720. break;
  5721. case "aigptCourse":
  5722. _formdiv = new U.UF.UI.form(
  5723. "AI智能体",
  5724. $$("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' }), {
  5725. "id": "aigptCourse",
  5726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5727. "onresize": function () { }
  5728. }, {
  5729. closecallback: function () { }
  5730. }, { "style": { "height": "36px" } }).form; //创建窗体
  5731. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5732. break;
  5733. case "classroomObservation":
  5734. _formdiv = new U.UF.UI.form(
  5735. "课堂观察",
  5736. $$("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 }), {
  5737. "id": "classroomObservation",
  5738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5739. "onresize": function () { }
  5740. }, {
  5741. closecallback: function () { }
  5742. }, { "style": { "height": "36px" } }).form; //创建窗体
  5743. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5744. break;
  5745. case "pblCourse":
  5746. _formdiv = new U.UF.UI.form(
  5747. "学生PBL",
  5748. $$("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 }), {
  5749. "id": "pblCourse",
  5750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5751. "onresize": function () { }
  5752. }, {
  5753. closecallback: function () { }
  5754. }, { "style": { "height": "36px" } }).form; //创建窗体
  5755. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5756. break;
  5757. }
  5758. //U.MD.D.I.openClick(str);
  5759. //如果有任务栏信息
  5760. if (_taskbar) {
  5761. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5762. }
  5763. }
  5764. // U.MD.D.I.openClick = function(str){
  5765. // var click = '';
  5766. // switch(str){
  5767. // case 'friend':
  5768. // click = '我的好友';
  5769. // break;
  5770. // case 'domain':
  5771. // click = '域名管理';
  5772. // break;
  5773. // case 'disk':
  5774. // click = '我的云盘';
  5775. // break;
  5776. // case 'word':
  5777. // click = 'Word';
  5778. // break;
  5779. // case 'excel':
  5780. // click = 'Execl';
  5781. // break;
  5782. // case 'txt':
  5783. // click = '文本文件';
  5784. // break;
  5785. // case 'lookupFriend':
  5786. // click = '查找好友';
  5787. // break;
  5788. // case 'ftp':
  5789. // click = 'FTP';
  5790. // break;
  5791. // case 'group':
  5792. // click = '群组';
  5793. // break;
  5794. // case 'set':
  5795. // click = '我的设置';
  5796. // break;
  5797. // case 'systemSet':
  5798. // click = '系统设置';
  5799. // break;
  5800. // case 'boomYun':
  5801. // click = '互联办公';
  5802. // break;
  5803. // case 'xz':
  5804. // click = '云端下载';
  5805. // break;
  5806. // case 'client':
  5807. // click = '有思浏览器';
  5808. // break;
  5809. // case 'backEndProgramming':
  5810. // click = '在线后台编程';
  5811. // break;
  5812. // case 'frontEndProgramming':
  5813. // click = '在线前端编程';
  5814. // break;
  5815. // default: break;
  5816. // }
  5817. // if(U.MD.D.I.Ip && click){
  5818. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5819. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5820. // })
  5821. // }
  5822. // }
  5823. /**
  5824. *函数作用:ajax简易函数,使用post格式
  5825. *@param url {data} 后台地址
  5826. *@param data {data} 参数json
  5827. *@param fn {data} 回调函数
  5828. *
  5829. */
  5830. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5831. // var xhr = new XMLHttpRequest();
  5832. // xhr.open("GET",url,true);
  5833. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5834. // xhr.onreadystatechange = function(){
  5835. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5836. // fn.call(this,xhr.responseText);
  5837. // }
  5838. // };
  5839. // xhr.send();
  5840. // }
  5841. /*判断是否是内网IP*/
  5842. // U.MD.D.I.isInnerIPFn = function(str){
  5843. // var curPageUrl = str;
  5844. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5845. // curPageUrl =curPageUrl.replace(reg1,'');
  5846. // // console.log('curPageUrl-1 '+curPageUrl);
  5847. // var reg2 = /\:+/g;//替换冒号为一点
  5848. // curPageUrl =curPageUrl.replace(reg2,'.');
  5849. // // console.log('curPageUrl-2 '+curPageUrl);
  5850. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5851. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5852. // if(curPageUrl[2] != '16'){
  5853. // return ipAddress;
  5854. // }else{
  5855. // return false;
  5856. // }
  5857. // }
  5858. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5859. // //compatibility for firefox and chrome
  5860. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5861. // var pc = new myPeerConnection({
  5862. // iceServers: []
  5863. // }),
  5864. // noop = function() {},
  5865. // localIPs = {},
  5866. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5867. // key;
  5868. // function iterateIP(ip) {
  5869. // if (!localIPs[ip]) onNewIP(ip);
  5870. // localIPs[ip] = true;
  5871. // }
  5872. // //create a bogus data channel
  5873. // pc.createDataChannel("");
  5874. // // create offer and set local description
  5875. // pc.createOffer().then(function(sdp) {
  5876. // sdp.sdp.split('\n').forEach(function(line) {
  5877. // if (line.indexOf('candidate') < 0) return;
  5878. // line.match(ipRegex).forEach(iterateIP);
  5879. // });
  5880. // pc.setLocalDescription(sdp, noop, noop);
  5881. // }).catch(function(reason) {
  5882. // // An error occurred, so handle the failure to connect
  5883. // });
  5884. // //sten for candidate events
  5885. // pc.onicecandidate = function(ice) {
  5886. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5887. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5888. // };
  5889. // }
  5890. // U.MD.D.I.getUserIpBool = function(callback){
  5891. // U.MD.D.I.getUserIP(function(ip){
  5892. // alert("Got IP! :" + ip);
  5893. // });
  5894. //}
  5895. //#endregion
  5896. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5897. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5898. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5899. _userinfo = US.userInfo, //登录用户信息
  5900. _userid = US.userInfo.userid //登录用户id
  5901. let _iframe;
  5902. let _cid = cid,
  5903. _stage = stage,
  5904. _task = task,
  5905. _tool = tool;
  5906. var _jie = $$("div", {
  5907. "style": {
  5908. "position": "absolute",
  5909. "bottom": "50px",
  5910. "right": "50px",
  5911. "zIndex": "9999",
  5912. "backgroundColor": "#2268bc",
  5913. "color": "#fff",
  5914. "padding": "12px 20px",
  5915. "cursor": "pointer",
  5916. "borderRadius": "4px",
  5917. },
  5918. "innerHTML": "提交作业"
  5919. })
  5920. let aTool = ''
  5921. let _loading = document.createElement('div')
  5922. _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;"
  5923. // _loading.id = "";
  5924. let _lchild = document.createElement('div')
  5925. let _limg = document.createElement('img')
  5926. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5927. _limg.style = "width: 26px;margin-right: 10px;"
  5928. _lchild.appendChild(_limg)
  5929. let _lspan = document.createElement('span')
  5930. _lspan.innerHTML = "上传中..."
  5931. _lchild.appendChild(_lspan)
  5932. _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%);"
  5933. _loading.appendChild(_lchild)
  5934. var _box = $$('div', {
  5935. "style": {
  5936. "position": "relative",
  5937. "width": "100%",
  5938. "height": "100%",
  5939. },
  5940. })
  5941. _box.appendChild(_loading)
  5942. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5943. switch (str) {
  5944. case "whiteboard":
  5945. aTool = 1;
  5946. _iframe = $$("iframe", {
  5947. "frameborder": "no",
  5948. "border": "0",
  5949. "scrolling ": "no",
  5950. "style": {
  5951. "cssText": "border:0;width:100%;height:100%"
  5952. },
  5953. "src": "https://beta.iwb.cocorobo.cn/"
  5954. })
  5955. _box.appendChild(_iframe);
  5956. _box.appendChild(_jie);
  5957. _formdiv = new U.UF.UI.form(
  5958. "电子白板",
  5959. _box, {
  5960. "id": "whiteboard" + cid + stage + task + tool,
  5961. "style": {
  5962. "width": "90%",
  5963. "height": "90%",
  5964. "overflow": 'hidden'
  5965. },
  5966. "onresize": function () { }
  5967. }, {
  5968. closecallback: function () { }
  5969. }, {
  5970. "style": {
  5971. "height": "36px"
  5972. }
  5973. }).form; //创建窗体
  5974. _taskbar = {
  5975. "id": str + _formdiv.id,
  5976. "style": {
  5977. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5978. },
  5979. "name": "电子白板",
  5980. "forms": _formdiv,
  5981. "click": function () {
  5982. U.MD.D.I.openApplication(str, obj, info);
  5983. }
  5984. }
  5985. break;
  5986. case "mind":
  5987. aTool = 3;
  5988. _iframe = $$("iframe", {
  5989. "frameborder": "no",
  5990. "border": "0",
  5991. "scrolling ": "no",
  5992. "style": {
  5993. "cssText": "border:0;width:100%;height:100%"
  5994. },
  5995. "src": "/kityminder-editor/dist/index.html"
  5996. })
  5997. _box.appendChild(_iframe);
  5998. _box.appendChild(_jie);
  5999. _formdiv = new U.UF.UI.form(
  6000. "思维导图",
  6001. _box, { //"/jsmind/example/demo.html"
  6002. "id": "mind" + cid + stage + task + tool,
  6003. "style": {
  6004. "width": "90%",
  6005. "height": "90%",
  6006. "overflow": 'hidden'
  6007. },
  6008. "onresize": function () { }
  6009. }, {
  6010. closecallback: function () { }
  6011. }, {
  6012. "style": {
  6013. "height": "36px"
  6014. }
  6015. }).form; //创建窗体
  6016. _taskbar = {
  6017. "id": str + _formdiv.id,
  6018. "style": {
  6019. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6020. },
  6021. "name": "思维导图",
  6022. "forms": _formdiv,
  6023. "click": function () {
  6024. U.MD.D.I.openApplication(str, obj, info);
  6025. }
  6026. }
  6027. break;
  6028. case "MindMap":
  6029. aTool = 3;
  6030. _iframe = $$("iframe", {
  6031. "frameborder": "no",
  6032. "border": "0",
  6033. "scrolling ": "no",
  6034. "style": {
  6035. "cssText": "border:0;width:100%;height:100%"
  6036. },
  6037. "src": "//cloud.cocorobo.cn/mind/"
  6038. })
  6039. _box.appendChild(_iframe);
  6040. _box.appendChild(_jie);
  6041. _formdiv = new U.UF.UI.form(
  6042. "思维导图",
  6043. _box, { //"/jsmind/example/demo.html"
  6044. "id": "mind" + cid + stage + task + tool,
  6045. "style": {
  6046. "width": "90%",
  6047. "height": "90%",
  6048. "overflow": 'hidden'
  6049. },
  6050. "onresize": function () { }
  6051. }, {
  6052. closecallback: function () { }
  6053. }, {
  6054. "style": {
  6055. "height": "36px"
  6056. }
  6057. }).form; //创建窗体
  6058. _taskbar = {
  6059. "id": str + _formdiv.id,
  6060. "style": {
  6061. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6062. },
  6063. "name": "思维导图",
  6064. "forms": _formdiv,
  6065. "click": function () {
  6066. U.MD.D.I.openApplication(str, obj, info);
  6067. }
  6068. }
  6069. break;
  6070. case "doc":
  6071. aTool = 6;
  6072. _iframe = $$("iframe", {
  6073. "frameborder": "no",
  6074. "border": "0",
  6075. "scrolling ": "no",
  6076. "style": {
  6077. "cssText": "border:0;width:100%;height:100%"
  6078. },
  6079. "src": "/Office/Word/WordEditArea.htm"
  6080. })
  6081. _box.appendChild(_iframe);
  6082. _box.appendChild(_jie);
  6083. _formdiv = new U.UF.UI.form(
  6084. "协同文档",
  6085. _box, {
  6086. "id": "doc" + cid + stage + task + tool,
  6087. "style": {
  6088. "width": "90%",
  6089. "height": "90%",
  6090. "overflow": 'hidden'
  6091. },
  6092. "onresize": function () { }
  6093. }, {
  6094. closecallback: function () { }
  6095. }, {
  6096. "style": {
  6097. "height": "36px"
  6098. }
  6099. }).form; //创建窗体
  6100. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6101. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6102. })
  6103. _taskbar = {
  6104. "id": str + _formdiv.id,
  6105. "style": {
  6106. "backgroundImage": "url(/img/icon/doc.png)"
  6107. },
  6108. "name": "协同文档",
  6109. "forms": _formdiv,
  6110. "click": function () {
  6111. U.MD.D.I.openApplication(str, obj, info);
  6112. }
  6113. }
  6114. break;
  6115. case "mindNetwork": //好友打开
  6116. aTool = 7;
  6117. _iframe = $$("iframe", {
  6118. "webkitallowfullscreen": "",
  6119. "mozallowfullscreen": "",
  6120. "allowfullscreen": "",
  6121. "frameborder": "no",
  6122. "border": "0",
  6123. "scrolling ": "no",
  6124. "style": {
  6125. "cssText": "border:0; width:100%; height:100%;"
  6126. },
  6127. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6128. })
  6129. _box.appendChild(_iframe);
  6130. _box.appendChild(_jie);
  6131. _formdiv = new U.UF.UI.form(
  6132. "思维网格",
  6133. _box, {
  6134. "id": "mindNetwork" + cid + stage + task + tool,
  6135. "style": {
  6136. "width": "90%",
  6137. "height": "90%",
  6138. "overflow": 'hidden'
  6139. },
  6140. "onresize": function () { }
  6141. }, {
  6142. closecallback: function () { }
  6143. }, {
  6144. "style": {
  6145. "height": "36px"
  6146. }
  6147. }).form; //创建窗体
  6148. _taskbar = {
  6149. "id": str + _formdiv.id,
  6150. "style": {
  6151. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6152. },
  6153. "name": "思维网格",
  6154. "forms": _formdiv,
  6155. "click": function () {
  6156. U.MD.D.I.openApplication(str, obj, info);
  6157. }
  6158. }
  6159. break;
  6160. case "courseDesign":
  6161. _iframe = $$("iframe", {
  6162. "webkitallowfullscreen": "",
  6163. "mozallowfullscreen": "",
  6164. "allowfullscreen": "",
  6165. "frameborder": "no",
  6166. "border": "0",
  6167. "scrolling ": "no",
  6168. "style": {
  6169. "cssText": "border:0; width:100%; height:100%;"
  6170. },
  6171. "src": "/course-design-vue"
  6172. })
  6173. _box.appendChild(_iframe);
  6174. _box.appendChild(_jie);
  6175. _formdiv = new U.UF.UI.form(
  6176. "项目设计",
  6177. _box, {
  6178. "id": "courseDesign" + cid + stage + task + tool,
  6179. "style": {
  6180. "width": "90%",
  6181. "height": "90%",
  6182. "overflow": 'hidden'
  6183. },
  6184. "onresize": function () { }
  6185. }, {
  6186. closecallback: function () { }
  6187. }, {
  6188. "style": {
  6189. "height": "36px"
  6190. }
  6191. }).form; //创建窗体
  6192. _taskbar = {
  6193. "id": str + _formdiv.id,
  6194. "style": {
  6195. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6196. },
  6197. "name": "项目设计",
  6198. "forms": _formdiv,
  6199. "click": function () {
  6200. U.MD.D.I.openApplication(str, obj, info);
  6201. }
  6202. }
  6203. break;
  6204. }
  6205. const script1 = document.createElement("script");
  6206. script1.type = "text/javascript";
  6207. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6208. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6209. const script2 = document.createElement("script");
  6210. script2.type = "text/javascript";
  6211. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6212. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6213. const script3 = document.createElement("script");
  6214. script3.type = "text/javascript";
  6215. script3.charset = "UTF-8";
  6216. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6217. const script4 = document.createElement("script");
  6218. script4.type = "text/javascript";
  6219. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6220. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6221. if (_iframe) {
  6222. if (str == 'doc') {
  6223. _iframe = _formdiv.querySelector('iframe')
  6224. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6225. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6226. _iframe.contentWindow.document.body.appendChild(script1);
  6227. _iframe.contentWindow.document.body.appendChild(script2);
  6228. // _iframe.contentWindow.document.body.appendChild(script3);
  6229. _iframe.contentWindow.document.body.appendChild(script4);
  6230. })
  6231. if (onloadListener) {
  6232. _iframe.contentDocument.location.reload()
  6233. } else {
  6234. _iframe.contentDocument.location.reload()
  6235. }
  6236. } else if (str == 'courseDesign') {
  6237. U.UF.DL.iframeLoad(_iframe, function () {
  6238. // _iframe.contentWindow.U.MD.O.W.load();
  6239. // _iframe.contentWindow.document.body.appendChild(script1);
  6240. _iframe.contentWindow.document.body.appendChild(script2);
  6241. _iframe.contentWindow.document.body.appendChild(script4);
  6242. })
  6243. } else if (str == 'mind') {
  6244. _iframe = _formdiv.querySelector('iframe')
  6245. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6246. //
  6247. _iframe.contentWindow.document.body.appendChild(script1);
  6248. _iframe.contentWindow.document.body.appendChild(script2);
  6249. _iframe.contentWindow.document.body.appendChild(script4);
  6250. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6251. })
  6252. if (onloadListener) {
  6253. _iframe.contentDocument.location.reload()
  6254. } else {
  6255. _iframe.contentDocument.location.reload()
  6256. }
  6257. } else if (str == 'whiteboard') {
  6258. _iframe = _formdiv.querySelector('iframe')
  6259. let onloadListener = _iframe.onload = () => {
  6260. _iframe.contentWindow.document.body.appendChild(script1);
  6261. _iframe.contentWindow.document.body.appendChild(script2);
  6262. _iframe.contentWindow.document.body.appendChild(script4);
  6263. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6264. };
  6265. // if (onloadListener) {
  6266. // try {
  6267. // _iframe.src += "?cocorobo="+new Date().getTime()
  6268. // _iframe.contentWindow.document.location.reload()
  6269. // } catch (error) {
  6270. // }
  6271. // } else {
  6272. // _iframe.contentDocument.location.reload()
  6273. // }
  6274. } else {
  6275. _iframe.onload = () => {
  6276. _iframe.contentWindow.document.body.appendChild(script1);
  6277. _iframe.contentWindow.document.body.appendChild(script2);
  6278. // _iframe.contentWindow.document.body.appendChild(script3);
  6279. _iframe.contentWindow.document.body.appendChild(script4);
  6280. };
  6281. }
  6282. _jie.onclick = async () => {
  6283. let text = ''
  6284. if (aTool == 1) {
  6285. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6286. } else if (aTool == 6) {
  6287. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6288. } else if (aTool == 3) {
  6289. text = await U.MD.D.I.getEditorContent(_iframe);
  6290. }
  6291. _loading.style.display = 'flex'
  6292. console.log(_loading);
  6293. var _ajs = _iframe.contentWindow.document.createElement("script");
  6294. _ajs.type = "text/javascript";
  6295. _ajs.innerHTML =
  6296. // 'console.log(' + _loading + ');\n' +
  6297. 'var _js = document.createElement("script");\n' +
  6298. '_js.type="text/javascript";\n' +
  6299. '_js.charset="UTF-8";\n' +
  6300. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6301. "_js.onload = function(){\n" +
  6302. ' var a = document.getElementsByTagName("img")\n' +
  6303. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6304. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6305. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6306. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6307. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6308. "beforeUpload_shishi(file," +
  6309. "'" +
  6310. _userid +
  6311. "'" +
  6312. ", " +
  6313. "'" +
  6314. _cid +
  6315. "'" +
  6316. ", " +
  6317. "'" +
  6318. _stage +
  6319. "'" +
  6320. ", " +
  6321. "'" +
  6322. _task +
  6323. "'" +
  6324. ", " +
  6325. "'" +
  6326. _tool +
  6327. "'" +
  6328. ", " +
  6329. "'" +
  6330. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6331. "'" +
  6332. ", " +
  6333. "'" +
  6334. aTool +
  6335. "'" +
  6336. ", " +
  6337. "`" +
  6338. text +
  6339. "`" +
  6340. ")\n" +
  6341. " });\n" +
  6342. "}\n" +
  6343. "document.head.appendChild(_js);\n";
  6344. _iframe.contentWindow.document.head.appendChild(_ajs);
  6345. }
  6346. }
  6347. //U.MD.D.I.openClick(str);
  6348. //如果有任务栏信息
  6349. // if (_taskbar) {
  6350. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6351. // }
  6352. }
  6353. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6354. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6355. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6356. _userinfo = US.userInfo, //登录用户信息
  6357. _userid = US.userInfo.userid //登录用户id
  6358. let _iframe;
  6359. let _cid = cid,
  6360. _stage = stage,
  6361. _task = task,
  6362. _tool = tool;
  6363. var _jie = $$("div", {
  6364. "style": {
  6365. "position": "absolute",
  6366. "bottom": "50px",
  6367. "right": "50px",
  6368. "zIndex": "9999",
  6369. "backgroundColor": "#2268bc",
  6370. "color": "#fff",
  6371. "padding": "12px 20px",
  6372. "cursor": "pointer",
  6373. "borderRadius": "4px",
  6374. },
  6375. "innerHTML": "提交作业"
  6376. })
  6377. let aTool = ''
  6378. let _loading = document.createElement('div')
  6379. _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;"
  6380. // _loading.id = "";
  6381. let _lchild = document.createElement('div')
  6382. let _limg = document.createElement('img')
  6383. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6384. _limg.style = "width: 26px;margin-right: 10px;"
  6385. _lchild.appendChild(_limg)
  6386. let _lspan = document.createElement('span')
  6387. _lspan.innerHTML = "上传中..."
  6388. _lchild.appendChild(_lspan)
  6389. _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%);"
  6390. _loading.appendChild(_lchild)
  6391. let _box = $$('div', {
  6392. "style": {
  6393. "position": "relative",
  6394. "width": "100%",
  6395. "height": "100%",
  6396. },
  6397. })
  6398. _box.appendChild(_loading)
  6399. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6400. switch (str) {
  6401. case "whiteboard":
  6402. aTool = 1;
  6403. _iframe = $$("iframe", {
  6404. "frameborder": "no",
  6405. "border": "0",
  6406. "scrolling ": "no",
  6407. "style": {
  6408. "cssText": "border:0;width:100%;height:100%"
  6409. },
  6410. "src": "https://beta.iwb.cocorobo.cn/"
  6411. })
  6412. _box.appendChild(_iframe);
  6413. _box.appendChild(_jie);
  6414. _formdiv = new U.UF.UI.form(
  6415. "电子白板",
  6416. _box, {
  6417. "id": "whiteboard" + cid + stage + task + tool,
  6418. "style": {
  6419. "width": "90%",
  6420. "height": "90%",
  6421. "overflow": 'hidden'
  6422. },
  6423. "onresize": function () { }
  6424. }, {
  6425. closecallback: function () { }
  6426. }, {
  6427. "style": {
  6428. "height": "36px"
  6429. }
  6430. }).form; //创建窗体
  6431. _taskbar = {
  6432. "id": str + _formdiv.id,
  6433. "style": {
  6434. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6435. },
  6436. "name": "电子白板",
  6437. "forms": _formdiv,
  6438. "click": function () {
  6439. U.MD.D.I.openApplication(str, obj, info);
  6440. }
  6441. }
  6442. break;
  6443. case "mind":
  6444. aTool = 3;
  6445. _iframe = $$("iframe", {
  6446. "frameborder": "no",
  6447. "border": "0",
  6448. "scrolling ": "no",
  6449. "style": {
  6450. "cssText": "border:0;width:100%;height:100%"
  6451. },
  6452. "src": "/kityminder-editor/dist/index.html"
  6453. })
  6454. _box.appendChild(_iframe);
  6455. _box.appendChild(_jie);
  6456. _formdiv = new U.UF.UI.form(
  6457. "思维导图",
  6458. _box, { //"/jsmind/example/demo.html"
  6459. "id": "mind" + cid + stage + task + tool,
  6460. "style": {
  6461. "width": "90%",
  6462. "height": "90%",
  6463. "overflow": 'hidden'
  6464. },
  6465. "onresize": function () { }
  6466. }, {
  6467. closecallback: function () { }
  6468. }, {
  6469. "style": {
  6470. "height": "36px"
  6471. }
  6472. }).form; //创建窗体
  6473. _taskbar = {
  6474. "id": str + _formdiv.id,
  6475. "style": {
  6476. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6477. },
  6478. "name": "思维导图",
  6479. "forms": _formdiv,
  6480. "click": function () {
  6481. U.MD.D.I.openApplication(str, obj, info);
  6482. }
  6483. }
  6484. break;
  6485. case "MindMap":
  6486. aTool = 3;
  6487. _iframe = $$("iframe", {
  6488. "frameborder": "no",
  6489. "border": "0",
  6490. "scrolling ": "no",
  6491. "style": {
  6492. "cssText": "border:0;width:100%;height:100%"
  6493. },
  6494. "src": "//cloud.cocorobo.cn/mind/"
  6495. })
  6496. _box.appendChild(_iframe);
  6497. _box.appendChild(_jie);
  6498. _formdiv = new U.UF.UI.form(
  6499. "思维导图",
  6500. _box, { //"/jsmind/example/demo.html"
  6501. "id": "mind" + cid + stage + task + tool,
  6502. "style": {
  6503. "width": "90%",
  6504. "height": "90%",
  6505. "overflow": 'hidden'
  6506. },
  6507. "onresize": function () { }
  6508. }, {
  6509. closecallback: function () { }
  6510. }, {
  6511. "style": {
  6512. "height": "36px"
  6513. }
  6514. }).form; //创建窗体
  6515. _taskbar = {
  6516. "id": str + _formdiv.id,
  6517. "style": {
  6518. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6519. },
  6520. "name": "思维导图",
  6521. "forms": _formdiv,
  6522. "click": function () {
  6523. U.MD.D.I.openApplication(str, obj, info);
  6524. }
  6525. }
  6526. break;
  6527. case "doc":
  6528. aTool = 6;
  6529. _iframe = $$("iframe", {
  6530. "frameborder": "no",
  6531. "border": "0",
  6532. "scrolling ": "no",
  6533. "style": {
  6534. "cssText": "border:0;width:100%;height:100%"
  6535. },
  6536. "src": "/Office/Word/WordEditArea.htm"
  6537. })
  6538. _box.appendChild(_iframe);
  6539. _box.appendChild(_jie);
  6540. _formdiv = new U.UF.UI.form(
  6541. "协同文档",
  6542. _box, {
  6543. "id": "doc" + cid + stage + task + tool,
  6544. "style": {
  6545. "width": "90%",
  6546. "height": "90%",
  6547. "overflow": 'hidden'
  6548. },
  6549. "onresize": function () { }
  6550. }, {
  6551. closecallback: function () { }
  6552. }, {
  6553. "style": {
  6554. "height": "36px"
  6555. }
  6556. }).form; //创建窗体
  6557. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6558. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6559. })
  6560. _taskbar = {
  6561. "id": str + _formdiv.id,
  6562. "style": {
  6563. "backgroundImage": "url(/img/icon/doc.png)"
  6564. },
  6565. "name": "协同文档",
  6566. "forms": _formdiv,
  6567. "click": function () {
  6568. U.MD.D.I.openApplication(str, obj, info);
  6569. }
  6570. }
  6571. break;
  6572. case "mindNetwork": //好友打开
  6573. aTool = 7;
  6574. _iframe = $$("iframe", {
  6575. "webkitallowfullscreen": "",
  6576. "mozallowfullscreen": "",
  6577. "allowfullscreen": "",
  6578. "frameborder": "no",
  6579. "border": "0",
  6580. "scrolling ": "no",
  6581. "style": {
  6582. "cssText": "border:0; width:100%; height:100%;"
  6583. },
  6584. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6585. })
  6586. _box.appendChild(_iframe);
  6587. _box.appendChild(_jie);
  6588. _formdiv = new U.UF.UI.form(
  6589. "思维网格",
  6590. _box, {
  6591. "id": "mindNetwork" + cid + stage + task + tool,
  6592. "style": {
  6593. "width": "90%",
  6594. "height": "90%",
  6595. "overflow": 'hidden'
  6596. },
  6597. "onresize": function () { }
  6598. }, {
  6599. closecallback: function () { }
  6600. }, {
  6601. "style": {
  6602. "height": "36px"
  6603. }
  6604. }).form; //创建窗体
  6605. _taskbar = {
  6606. "id": str + _formdiv.id,
  6607. "style": {
  6608. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6609. },
  6610. "name": "思维网格",
  6611. "forms": _formdiv,
  6612. "click": function () {
  6613. U.MD.D.I.openApplication(str, obj, info);
  6614. }
  6615. }
  6616. break;
  6617. case "courseDesign":
  6618. _iframe = $$("iframe", {
  6619. "webkitallowfullscreen": "",
  6620. "mozallowfullscreen": "",
  6621. "allowfullscreen": "",
  6622. "frameborder": "no",
  6623. "border": "0",
  6624. "scrolling ": "no",
  6625. "style": {
  6626. "cssText": "border:0; width:100%; height:100%;"
  6627. },
  6628. "src": "/course-design-vue"
  6629. })
  6630. _box.appendChild(_iframe);
  6631. _box.appendChild(_jie);
  6632. _formdiv = new U.UF.UI.form(
  6633. "项目设计",
  6634. _box, {
  6635. "id": "courseDesign" + cid + stage + task + tool,
  6636. "style": {
  6637. "width": "90%",
  6638. "height": "90%",
  6639. "overflow": 'hidden'
  6640. },
  6641. "onresize": function () { }
  6642. }, {
  6643. closecallback: function () { }
  6644. }, {
  6645. "style": {
  6646. "height": "36px"
  6647. }
  6648. }).form; //创建窗体
  6649. _taskbar = {
  6650. "id": str + _formdiv.id,
  6651. "style": {
  6652. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6653. },
  6654. "name": "项目设计",
  6655. "forms": _formdiv,
  6656. "click": function () {
  6657. U.MD.D.I.openApplication(str, obj, info);
  6658. }
  6659. }
  6660. break;
  6661. }
  6662. const script1 = document.createElement("script");
  6663. script1.type = "text/javascript";
  6664. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6665. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6666. const script2 = document.createElement("script");
  6667. script2.type = "text/javascript";
  6668. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6669. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6670. const script3 = document.createElement("script");
  6671. script3.type = "text/javascript";
  6672. script3.charset = "UTF-8";
  6673. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6674. const script4 = document.createElement("script");
  6675. script4.type = "text/javascript";
  6676. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6677. script4.src = window.origin + "/js/Common/jietu2E.js";
  6678. if (_iframe) {
  6679. if (str == 'doc') {
  6680. _iframe = _formdiv.querySelector('iframe')
  6681. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6682. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6683. _iframe.contentWindow.document.body.appendChild(script1);
  6684. _iframe.contentWindow.document.body.appendChild(script2);
  6685. // _iframe.contentWindow.document.body.appendChild(script3);
  6686. _iframe.contentWindow.document.body.appendChild(script4);
  6687. })
  6688. if (onloadListener) {
  6689. _iframe.contentDocument.location.reload()
  6690. } else {
  6691. _iframe.contentDocument.location.reload()
  6692. }
  6693. } else if (str == 'courseDesign') {
  6694. U.UF.DL.iframeLoad(_iframe, function () {
  6695. // _iframe.contentWindow.U.MD.O.W.load();
  6696. // _iframe.contentWindow.document.body.appendChild(script1);
  6697. _iframe.contentWindow.document.body.appendChild(script2);
  6698. _iframe.contentWindow.document.body.appendChild(script4);
  6699. })
  6700. } else if (str == 'mind') {
  6701. _iframe = _formdiv.querySelector('iframe')
  6702. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6703. //
  6704. _iframe.contentWindow.document.body.appendChild(script1);
  6705. _iframe.contentWindow.document.body.appendChild(script2);
  6706. _iframe.contentWindow.document.body.appendChild(script4);
  6707. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6708. })
  6709. if (onloadListener) {
  6710. _iframe.contentDocument.location.reload()
  6711. } else {
  6712. _iframe.contentDocument.location.reload()
  6713. }
  6714. } else if (str == 'whiteboard') {
  6715. _iframe = _formdiv.querySelector('iframe')
  6716. let onloadListener = _iframe.onload = () => {
  6717. _iframe.contentWindow.document.body.appendChild(script1);
  6718. _iframe.contentWindow.document.body.appendChild(script2);
  6719. _iframe.contentWindow.document.body.appendChild(script4);
  6720. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6721. };
  6722. // if (onloadListener) {
  6723. // try {
  6724. // _iframe.src += "?cocorobo="+new Date().getTime()
  6725. // _iframe.contentWindow.document.location.reload()
  6726. // } catch (error) {
  6727. // }
  6728. // } else {
  6729. // _iframe.contentDocument.location.reload()
  6730. // }
  6731. } else {
  6732. _iframe.onload = () => {
  6733. _iframe.contentWindow.document.body.appendChild(script1);
  6734. _iframe.contentWindow.document.body.appendChild(script2);
  6735. // _iframe.contentWindow.document.body.appendChild(script3);
  6736. _iframe.contentWindow.document.body.appendChild(script4);
  6737. };
  6738. }
  6739. _jie.onclick = async () => {
  6740. let text = ''
  6741. if (aTool == 1) {
  6742. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6743. } else if (aTool == 6) {
  6744. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6745. } else if (aTool == 3) {
  6746. text = await U.MD.D.I.getEditorContent(_iframe);
  6747. }
  6748. _loading.style.display = 'flex'
  6749. console.log(_loading);
  6750. var _ajs = _iframe.contentWindow.document.createElement("script");
  6751. _ajs.type = "text/javascript";
  6752. _ajs.innerHTML =
  6753. // 'console.log(' + _loading + ');\n' +
  6754. 'var _js = document.createElement("script");\n' +
  6755. '_js.type="text/javascript";\n' +
  6756. '_js.charset="UTF-8";\n' +
  6757. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6758. "_js.onload = function(){\n" +
  6759. ' var a = document.getElementsByTagName("img")\n' +
  6760. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6761. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6762. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6763. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6764. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6765. "beforeUpload_shishi(file," +
  6766. "'" +
  6767. _userid +
  6768. "'" +
  6769. ", " +
  6770. "'" +
  6771. _cid +
  6772. "'" +
  6773. ", " +
  6774. "'" +
  6775. _stage +
  6776. "'" +
  6777. ", " +
  6778. "'" +
  6779. _task +
  6780. "'" +
  6781. ", " +
  6782. "'" +
  6783. _tool +
  6784. "'" +
  6785. ", " +
  6786. "'" +
  6787. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6788. "'" +
  6789. ", " +
  6790. "'" +
  6791. aTool +
  6792. "'" +
  6793. ", " +
  6794. "`" +
  6795. text +
  6796. "`" +
  6797. ")\n" +
  6798. " });\n" +
  6799. "}\n" +
  6800. "document.head.appendChild(_js);\n";
  6801. _iframe.contentWindow.document.head.appendChild(_ajs);
  6802. }
  6803. }
  6804. //U.MD.D.I.openClick(str);
  6805. //如果有任务栏信息
  6806. // if (_taskbar) {
  6807. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6808. // }
  6809. }
  6810. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6811. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6812. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6813. _userid = student.userid, //登录用户id
  6814. _username = student.student //用户名字
  6815. let _iframe;
  6816. let _cid = cid,
  6817. _stage = stage,
  6818. _task = task,
  6819. _tool = tool;
  6820. var _jie = $$("div", {
  6821. "style": {
  6822. "position": "absolute",
  6823. "bottom": "50px",
  6824. "right": "50px",
  6825. "zIndex": "9999",
  6826. "backgroundColor": "#2268bc",
  6827. "color": "#fff",
  6828. "padding": "12px 20px",
  6829. "cursor": "pointer",
  6830. "borderRadius": "4px",
  6831. },
  6832. "innerHTML": "提交作业"
  6833. })
  6834. let aTool = ''
  6835. let _loading = document.createElement('div')
  6836. _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;"
  6837. // _loading.id = "";
  6838. let _lchild = document.createElement('div')
  6839. let _limg = document.createElement('img')
  6840. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6841. _limg.style = "width: 26px;margin-right: 10px;"
  6842. _lchild.appendChild(_limg)
  6843. let _lspan = document.createElement('span')
  6844. _lspan.innerHTML = "上传中..."
  6845. _lchild.appendChild(_lspan)
  6846. _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%);"
  6847. _loading.appendChild(_lchild)
  6848. var _box = $$('div', {
  6849. "style": {
  6850. "position": "relative",
  6851. "width": "100%",
  6852. "height": "100%",
  6853. },
  6854. })
  6855. _box.appendChild(_loading)
  6856. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6857. switch (str) {
  6858. case "whiteboard":
  6859. aTool = 1;
  6860. _iframe = $$("iframe", {
  6861. "frameborder": "no",
  6862. "border": "0",
  6863. "scrolling ": "no",
  6864. "style": {
  6865. "cssText": "border:0;width:100%;height:100%"
  6866. },
  6867. "src": "https://beta.iwb.cocorobo.cn/"
  6868. })
  6869. _box.appendChild(_iframe);
  6870. _box.appendChild(_jie);
  6871. _formdiv = new U.UF.UI.form(
  6872. "电子白板-" + _username,
  6873. _box, {
  6874. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6875. "style": {
  6876. "width": "90%",
  6877. "height": "90%",
  6878. "overflow": 'hidden'
  6879. },
  6880. "onresize": function () { }
  6881. }, {
  6882. closecallback: function () { }
  6883. }, {
  6884. "style": {
  6885. "height": "36px"
  6886. }
  6887. }).form; //创建窗体
  6888. _taskbar = {
  6889. "id": str + _formdiv.id,
  6890. "style": {
  6891. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6892. },
  6893. "name": "电子白板",
  6894. "forms": _formdiv,
  6895. "click": function () {
  6896. U.MD.D.I.openApplication(str, obj, info);
  6897. }
  6898. }
  6899. break;
  6900. case "mind":
  6901. aTool = 3;
  6902. _iframe = $$("iframe", {
  6903. "frameborder": "no",
  6904. "border": "0",
  6905. "scrolling ": "no",
  6906. "style": {
  6907. "cssText": "border:0;width:100%;height:100%"
  6908. },
  6909. "src": "/kityminder-editor/dist/index.html"
  6910. })
  6911. _box.appendChild(_iframe);
  6912. _box.appendChild(_jie);
  6913. _formdiv = new U.UF.UI.form(
  6914. "思维导图-" + _username,
  6915. _box, { //"/jsmind/example/demo.html"
  6916. "id": "mind" + cid + stage + task + tool + _userid,
  6917. "style": {
  6918. "width": "90%",
  6919. "height": "90%",
  6920. "overflow": 'hidden'
  6921. },
  6922. "onresize": function () { }
  6923. }, {
  6924. closecallback: function () { }
  6925. }, {
  6926. "style": {
  6927. "height": "36px"
  6928. }
  6929. }).form; //创建窗体
  6930. _taskbar = {
  6931. "id": str + _formdiv.id,
  6932. "style": {
  6933. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6934. },
  6935. "name": "思维导图",
  6936. "forms": _formdiv,
  6937. "click": function () {
  6938. U.MD.D.I.openApplication(str, obj, info);
  6939. }
  6940. }
  6941. break;
  6942. case "MindMap":
  6943. aTool = 3;
  6944. _iframe = $$("iframe", {
  6945. "frameborder": "no",
  6946. "border": "0",
  6947. "scrolling ": "no",
  6948. "style": {
  6949. "cssText": "border:0;width:100%;height:100%"
  6950. },
  6951. "src": "//cloud.cocorobo.cn/mind/"
  6952. })
  6953. _box.appendChild(_iframe);
  6954. _box.appendChild(_jie);
  6955. _formdiv = new U.UF.UI.form(
  6956. "思维导图-" + _username,
  6957. _box, { //"/jsmind/example/demo.html"
  6958. "id": "mind" + cid + stage + task + tool + _userid,
  6959. "style": {
  6960. "width": "90%",
  6961. "height": "90%",
  6962. "overflow": 'hidden'
  6963. },
  6964. "onresize": function () { }
  6965. }, {
  6966. closecallback: function () { }
  6967. }, {
  6968. "style": {
  6969. "height": "36px"
  6970. }
  6971. }).form; //创建窗体
  6972. _taskbar = {
  6973. "id": str + _formdiv.id,
  6974. "style": {
  6975. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6976. },
  6977. "name": "思维导图",
  6978. "forms": _formdiv,
  6979. "click": function () {
  6980. U.MD.D.I.openApplication(str, obj, info);
  6981. }
  6982. }
  6983. break;
  6984. case "doc":
  6985. aTool = 6;
  6986. _iframe = $$("iframe", {
  6987. "frameborder": "no",
  6988. "border": "0",
  6989. "scrolling ": "no",
  6990. "style": {
  6991. "cssText": "border:0;width:100%;height:100%"
  6992. },
  6993. "src": "/Office/Word/WordEditArea.htm"
  6994. })
  6995. _box.appendChild(_iframe);
  6996. _box.appendChild(_jie);
  6997. _formdiv = new U.UF.UI.form(
  6998. "协同文档-" + _username,
  6999. _box, {
  7000. "id": "doc" + cid + stage + task + tool + _userid,
  7001. "style": {
  7002. "width": "90%",
  7003. "height": "90%",
  7004. "overflow": 'hidden'
  7005. },
  7006. "onresize": function () { }
  7007. }, {
  7008. closecallback: function () { }
  7009. }, {
  7010. "style": {
  7011. "height": "36px"
  7012. }
  7013. }).form; //创建窗体
  7014. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7015. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7016. })
  7017. _taskbar = {
  7018. "id": str + _formdiv.id,
  7019. "style": {
  7020. "backgroundImage": "url(/img/icon/doc.png)"
  7021. },
  7022. "name": "协同文档",
  7023. "forms": _formdiv,
  7024. "click": function () {
  7025. U.MD.D.I.openApplication(str, obj, info);
  7026. }
  7027. }
  7028. break;
  7029. case "mindNetwork": //好友打开
  7030. aTool = 7;
  7031. _iframe = $$("iframe", {
  7032. "webkitallowfullscreen": "",
  7033. "mozallowfullscreen": "",
  7034. "allowfullscreen": "",
  7035. "frameborder": "no",
  7036. "border": "0",
  7037. "scrolling ": "no",
  7038. "style": {
  7039. "cssText": "border:0; width:100%; height:100%;"
  7040. },
  7041. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7042. })
  7043. _box.appendChild(_iframe);
  7044. _box.appendChild(_jie);
  7045. _formdiv = new U.UF.UI.form(
  7046. "思维网格-" + _username,
  7047. _box, {
  7048. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7049. "style": {
  7050. "width": "90%",
  7051. "height": "90%",
  7052. "overflow": 'hidden'
  7053. },
  7054. "onresize": function () { }
  7055. }, {
  7056. closecallback: function () { }
  7057. }, {
  7058. "style": {
  7059. "height": "36px"
  7060. }
  7061. }).form; //创建窗体
  7062. _taskbar = {
  7063. "id": str + _formdiv.id,
  7064. "style": {
  7065. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7066. },
  7067. "name": "思维网格",
  7068. "forms": _formdiv,
  7069. "click": function () {
  7070. U.MD.D.I.openApplication(str, obj, info);
  7071. }
  7072. }
  7073. break;
  7074. case "courseDesign":
  7075. _iframe = $$("iframe", {
  7076. "webkitallowfullscreen": "",
  7077. "mozallowfullscreen": "",
  7078. "allowfullscreen": "",
  7079. "frameborder": "no",
  7080. "border": "0",
  7081. "scrolling ": "no",
  7082. "style": {
  7083. "cssText": "border:0; width:100%; height:100%;"
  7084. },
  7085. "src": "/course-design-vue"
  7086. })
  7087. _box.appendChild(_iframe);
  7088. _box.appendChild(_jie);
  7089. _formdiv = new U.UF.UI.form(
  7090. "项目设计-" + _username,
  7091. _box, {
  7092. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7093. "style": {
  7094. "width": "90%",
  7095. "height": "90%",
  7096. "overflow": 'hidden'
  7097. },
  7098. "onresize": function () { }
  7099. }, {
  7100. closecallback: function () { }
  7101. }, {
  7102. "style": {
  7103. "height": "36px"
  7104. }
  7105. }).form; //创建窗体
  7106. _taskbar = {
  7107. "id": str + _formdiv.id,
  7108. "style": {
  7109. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7110. },
  7111. "name": "项目设计",
  7112. "forms": _formdiv,
  7113. "click": function () {
  7114. U.MD.D.I.openApplication(str, obj, info);
  7115. }
  7116. }
  7117. break;
  7118. }
  7119. const script1 = document.createElement("script");
  7120. script1.type = "text/javascript";
  7121. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7122. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7123. const script2 = document.createElement("script");
  7124. script2.type = "text/javascript";
  7125. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7126. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7127. const script3 = document.createElement("script");
  7128. script3.type = "text/javascript";
  7129. script3.charset = "UTF-8";
  7130. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7131. const script4 = document.createElement("script");
  7132. script4.type = "text/javascript";
  7133. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7134. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7135. if (_iframe) {
  7136. if (str == 'doc') {
  7137. _iframe = _formdiv.querySelector('iframe')
  7138. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7139. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7140. _iframe.contentWindow.document.body.appendChild(script1);
  7141. _iframe.contentWindow.document.body.appendChild(script2);
  7142. // _iframe.contentWindow.document.body.appendChild(script3);
  7143. _iframe.contentWindow.document.body.appendChild(script4);
  7144. })
  7145. if (onloadListener) {
  7146. _iframe.contentDocument.location.reload()
  7147. } else {
  7148. _iframe.contentDocument.location.reload()
  7149. }
  7150. } else if (str == 'courseDesign') {
  7151. U.UF.DL.iframeLoad(_iframe, function () {
  7152. // _iframe.contentWindow.U.MD.O.W.load();
  7153. // _iframe.contentWindow.document.body.appendChild(script1);
  7154. _iframe.contentWindow.document.body.appendChild(script2);
  7155. _iframe.contentWindow.document.body.appendChild(script4);
  7156. })
  7157. } else if (str == 'mind') {
  7158. _iframe = _formdiv.querySelector('iframe')
  7159. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7160. //
  7161. _iframe.contentWindow.document.body.appendChild(script1);
  7162. _iframe.contentWindow.document.body.appendChild(script2);
  7163. _iframe.contentWindow.document.body.appendChild(script4);
  7164. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7165. })
  7166. if (onloadListener) {
  7167. _iframe.contentDocument.location.reload()
  7168. } else {
  7169. _iframe.contentDocument.location.reload()
  7170. }
  7171. } else if (str == 'whiteboard') {
  7172. _iframe = _formdiv.querySelector('iframe')
  7173. let onloadListener = _iframe.onload = () => {
  7174. _iframe.contentWindow.document.body.appendChild(script1);
  7175. _iframe.contentWindow.document.body.appendChild(script2);
  7176. _iframe.contentWindow.document.body.appendChild(script4);
  7177. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7178. };
  7179. // if (onloadListener) {
  7180. // try {
  7181. // _iframe.src += "?cocorobo="+new Date().getTime()
  7182. // _iframe.contentWindow.document.location.reload()
  7183. // } catch (error) {
  7184. // }
  7185. // } else {
  7186. // _iframe.contentDocument.location.reload()
  7187. // }
  7188. } else {
  7189. _iframe.onload = () => {
  7190. _iframe.contentWindow.document.body.appendChild(script1);
  7191. _iframe.contentWindow.document.body.appendChild(script2);
  7192. // _iframe.contentWindow.document.body.appendChild(script3);
  7193. _iframe.contentWindow.document.body.appendChild(script4);
  7194. };
  7195. }
  7196. _jie.onclick = async () => {
  7197. let text = ''
  7198. if (aTool == 1) {
  7199. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7200. } else if (aTool == 6) {
  7201. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7202. } else if (aTool == 3) {
  7203. text = await U.MD.D.I.getEditorContent(_iframe);
  7204. }
  7205. _loading.style.display = 'flex'
  7206. console.log(_loading);
  7207. var _ajs = _iframe.contentWindow.document.createElement("script");
  7208. _ajs.type = "text/javascript";
  7209. _ajs.innerHTML =
  7210. // 'console.log(' + _loading + ');\n' +
  7211. 'var _js = document.createElement("script");\n' +
  7212. '_js.type="text/javascript";\n' +
  7213. '_js.charset="UTF-8";\n' +
  7214. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7215. "_js.onload = function(){\n" +
  7216. ' var a = document.getElementsByTagName("img")\n' +
  7217. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7218. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7219. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7220. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7221. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7222. "beforeUpload_shishi(file," +
  7223. "'" +
  7224. _userid +
  7225. "'" +
  7226. ", " +
  7227. "'" +
  7228. _cid +
  7229. "'" +
  7230. ", " +
  7231. "'" +
  7232. _stage +
  7233. "'" +
  7234. ", " +
  7235. "'" +
  7236. _task +
  7237. "'" +
  7238. ", " +
  7239. "'" +
  7240. _tool +
  7241. "'" +
  7242. ", " +
  7243. "'" +
  7244. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7245. "'" +
  7246. ", " +
  7247. "'" +
  7248. aTool +
  7249. "'" +
  7250. ", " +
  7251. "`" +
  7252. text +
  7253. "`" +
  7254. ")\n" +
  7255. " });\n" +
  7256. "}\n" +
  7257. "document.head.appendChild(_js);\n";
  7258. _iframe.contentWindow.document.head.appendChild(_ajs);
  7259. }
  7260. }
  7261. }
  7262. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7263. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7264. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7265. _userid = student.userid, //登录用户id
  7266. _username = student.student //用户名字
  7267. let _iframe;
  7268. let _cid = cid,
  7269. _stage = stage,
  7270. _task = task,
  7271. _tool = tool;
  7272. var _jie = $$("div", {
  7273. "style": {
  7274. "position": "absolute",
  7275. "bottom": "50px",
  7276. "right": "50px",
  7277. "zIndex": "9999",
  7278. "backgroundColor": "#2268bc",
  7279. "color": "#fff",
  7280. "padding": "12px 20px",
  7281. "cursor": "pointer",
  7282. "borderRadius": "4px",
  7283. },
  7284. "innerHTML": "提交作业"
  7285. })
  7286. let aTool = ''
  7287. let _loading = document.createElement('div')
  7288. _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;"
  7289. // _loading.id = "";
  7290. let _lchild = document.createElement('div')
  7291. let _limg = document.createElement('img')
  7292. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7293. _limg.style = "width: 26px;margin-right: 10px;"
  7294. _lchild.appendChild(_limg)
  7295. let _lspan = document.createElement('span')
  7296. _lspan.innerHTML = "上传中..."
  7297. _lchild.appendChild(_lspan)
  7298. _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%);"
  7299. _loading.appendChild(_lchild)
  7300. var _box = $$('div', {
  7301. "style": {
  7302. "position": "relative",
  7303. "width": "100%",
  7304. "height": "100%",
  7305. },
  7306. })
  7307. _box.appendChild(_loading)
  7308. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7309. switch (str) {
  7310. case "whiteboard":
  7311. aTool = 1;
  7312. _iframe = $$("iframe", {
  7313. "frameborder": "no",
  7314. "border": "0",
  7315. "scrolling ": "no",
  7316. "style": {
  7317. "cssText": "border:0;width:100%;height:100%"
  7318. },
  7319. "src": "https://beta.iwb.cocorobo.cn/"
  7320. })
  7321. _box.appendChild(_iframe);
  7322. _box.appendChild(_jie);
  7323. _formdiv = new U.UF.UI.form(
  7324. "电子白板-" + _username,
  7325. _box, {
  7326. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7327. "style": {
  7328. "width": "90%",
  7329. "height": "90%",
  7330. "overflow": 'hidden'
  7331. },
  7332. "onresize": function () { }
  7333. }, {
  7334. closecallback: function () { }
  7335. }, {
  7336. "style": {
  7337. "height": "36px"
  7338. }
  7339. }).form; //创建窗体
  7340. _taskbar = {
  7341. "id": str + _formdiv.id,
  7342. "style": {
  7343. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7344. },
  7345. "name": "电子白板",
  7346. "forms": _formdiv,
  7347. "click": function () {
  7348. U.MD.D.I.openApplication(str, obj, info);
  7349. }
  7350. }
  7351. break;
  7352. case "mind":
  7353. aTool = 3;
  7354. _iframe = $$("iframe", {
  7355. "frameborder": "no",
  7356. "border": "0",
  7357. "scrolling ": "no",
  7358. "style": {
  7359. "cssText": "border:0;width:100%;height:100%"
  7360. },
  7361. "src": "/kityminder-editor/dist/index.html"
  7362. })
  7363. _box.appendChild(_iframe);
  7364. _box.appendChild(_jie);
  7365. _formdiv = new U.UF.UI.form(
  7366. "思维导图-" + _username,
  7367. _box, { //"/jsmind/example/demo.html"
  7368. "id": "mind" + cid + stage + task + tool + _userid,
  7369. "style": {
  7370. "width": "90%",
  7371. "height": "90%",
  7372. "overflow": 'hidden'
  7373. },
  7374. "onresize": function () { }
  7375. }, {
  7376. closecallback: function () { }
  7377. }, {
  7378. "style": {
  7379. "height": "36px"
  7380. }
  7381. }).form; //创建窗体
  7382. _taskbar = {
  7383. "id": str + _formdiv.id,
  7384. "style": {
  7385. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7386. },
  7387. "name": "思维导图",
  7388. "forms": _formdiv,
  7389. "click": function () {
  7390. U.MD.D.I.openApplication(str, obj, info);
  7391. }
  7392. }
  7393. break;
  7394. case "MindMap":
  7395. aTool = 3;
  7396. _iframe = $$("iframe", {
  7397. "frameborder": "no",
  7398. "border": "0",
  7399. "scrolling ": "no",
  7400. "style": {
  7401. "cssText": "border:0;width:100%;height:100%"
  7402. },
  7403. "src": "//cloud.cocorobo.cn/mind/"
  7404. })
  7405. _box.appendChild(_iframe);
  7406. _box.appendChild(_jie);
  7407. _formdiv = new U.UF.UI.form(
  7408. "思维导图-" + _username,
  7409. _box, { //"/jsmind/example/demo.html"
  7410. "id": "mind" + cid + stage + task + tool + _userid,
  7411. "style": {
  7412. "width": "90%",
  7413. "height": "90%",
  7414. "overflow": 'hidden'
  7415. },
  7416. "onresize": function () { }
  7417. }, {
  7418. closecallback: function () { }
  7419. }, {
  7420. "style": {
  7421. "height": "36px"
  7422. }
  7423. }).form; //创建窗体
  7424. _taskbar = {
  7425. "id": str + _formdiv.id,
  7426. "style": {
  7427. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7428. },
  7429. "name": "思维导图",
  7430. "forms": _formdiv,
  7431. "click": function () {
  7432. U.MD.D.I.openApplication(str, obj, info);
  7433. }
  7434. }
  7435. break;
  7436. case "doc":
  7437. aTool = 6;
  7438. _iframe = $$("iframe", {
  7439. "frameborder": "no",
  7440. "border": "0",
  7441. "scrolling ": "no",
  7442. "style": {
  7443. "cssText": "border:0;width:100%;height:100%"
  7444. },
  7445. "src": "/Office/Word/WordEditArea.htm"
  7446. })
  7447. _box.appendChild(_iframe);
  7448. _box.appendChild(_jie);
  7449. _formdiv = new U.UF.UI.form(
  7450. "协同文档-" + _username,
  7451. _box, {
  7452. "id": "doc" + cid + stage + task + tool + _userid,
  7453. "style": {
  7454. "width": "90%",
  7455. "height": "90%",
  7456. "overflow": 'hidden'
  7457. },
  7458. "onresize": function () { }
  7459. }, {
  7460. closecallback: function () { }
  7461. }, {
  7462. "style": {
  7463. "height": "36px"
  7464. }
  7465. }).form; //创建窗体
  7466. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7467. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7468. })
  7469. _taskbar = {
  7470. "id": str + _formdiv.id,
  7471. "style": {
  7472. "backgroundImage": "url(/img/icon/doc.png)"
  7473. },
  7474. "name": "协同文档",
  7475. "forms": _formdiv,
  7476. "click": function () {
  7477. U.MD.D.I.openApplication(str, obj, info);
  7478. }
  7479. }
  7480. break;
  7481. case "mindNetwork": //好友打开
  7482. aTool = 7;
  7483. _iframe = $$("iframe", {
  7484. "webkitallowfullscreen": "",
  7485. "mozallowfullscreen": "",
  7486. "allowfullscreen": "",
  7487. "frameborder": "no",
  7488. "border": "0",
  7489. "scrolling ": "no",
  7490. "style": {
  7491. "cssText": "border:0; width:100%; height:100%;"
  7492. },
  7493. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7494. })
  7495. _box.appendChild(_iframe);
  7496. _box.appendChild(_jie);
  7497. _formdiv = new U.UF.UI.form(
  7498. "思维网格-" + _username,
  7499. _box, {
  7500. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7501. "style": {
  7502. "width": "90%",
  7503. "height": "90%",
  7504. "overflow": 'hidden'
  7505. },
  7506. "onresize": function () { }
  7507. }, {
  7508. closecallback: function () { }
  7509. }, {
  7510. "style": {
  7511. "height": "36px"
  7512. }
  7513. }).form; //创建窗体
  7514. _taskbar = {
  7515. "id": str + _formdiv.id,
  7516. "style": {
  7517. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7518. },
  7519. "name": "思维网格",
  7520. "forms": _formdiv,
  7521. "click": function () {
  7522. U.MD.D.I.openApplication(str, obj, info);
  7523. }
  7524. }
  7525. break;
  7526. case "courseDesign":
  7527. _iframe = $$("iframe", {
  7528. "webkitallowfullscreen": "",
  7529. "mozallowfullscreen": "",
  7530. "allowfullscreen": "",
  7531. "frameborder": "no",
  7532. "border": "0",
  7533. "scrolling ": "no",
  7534. "style": {
  7535. "cssText": "border:0; width:100%; height:100%;"
  7536. },
  7537. "src": "/course-design-vue"
  7538. })
  7539. _box.appendChild(_iframe);
  7540. _box.appendChild(_jie);
  7541. _formdiv = new U.UF.UI.form(
  7542. "项目设计-" + _username,
  7543. _box, {
  7544. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7545. "style": {
  7546. "width": "90%",
  7547. "height": "90%",
  7548. "overflow": 'hidden'
  7549. },
  7550. "onresize": function () { }
  7551. }, {
  7552. closecallback: function () { }
  7553. }, {
  7554. "style": {
  7555. "height": "36px"
  7556. }
  7557. }).form; //创建窗体
  7558. _taskbar = {
  7559. "id": str + _formdiv.id,
  7560. "style": {
  7561. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7562. },
  7563. "name": "项目设计",
  7564. "forms": _formdiv,
  7565. "click": function () {
  7566. U.MD.D.I.openApplication(str, obj, info);
  7567. }
  7568. }
  7569. break;
  7570. }
  7571. const script1 = document.createElement("script");
  7572. script1.type = "text/javascript";
  7573. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7574. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7575. const script2 = document.createElement("script");
  7576. script2.type = "text/javascript";
  7577. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7578. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7579. const script3 = document.createElement("script");
  7580. script3.type = "text/javascript";
  7581. script3.charset = "UTF-8";
  7582. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7583. const script4 = document.createElement("script");
  7584. script4.type = "text/javascript";
  7585. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7586. script4.src = window.origin + "/js/Common/jietu2E.js";
  7587. if (_iframe) {
  7588. if (str == 'doc') {
  7589. _iframe = _formdiv.querySelector('iframe')
  7590. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7591. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7592. _iframe.contentWindow.document.body.appendChild(script1);
  7593. _iframe.contentWindow.document.body.appendChild(script2);
  7594. // _iframe.contentWindow.document.body.appendChild(script3);
  7595. _iframe.contentWindow.document.body.appendChild(script4);
  7596. })
  7597. if (onloadListener) {
  7598. _iframe.contentDocument.location.reload()
  7599. } else {
  7600. _iframe.contentDocument.location.reload()
  7601. }
  7602. } else if (str == 'courseDesign') {
  7603. U.UF.DL.iframeLoad(_iframe, function () {
  7604. // _iframe.contentWindow.U.MD.O.W.load();
  7605. // _iframe.contentWindow.document.body.appendChild(script1);
  7606. _iframe.contentWindow.document.body.appendChild(script2);
  7607. _iframe.contentWindow.document.body.appendChild(script4);
  7608. })
  7609. } else if (str == 'mind') {
  7610. _iframe = _formdiv.querySelector('iframe')
  7611. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7612. //
  7613. _iframe.contentWindow.document.body.appendChild(script1);
  7614. _iframe.contentWindow.document.body.appendChild(script2);
  7615. _iframe.contentWindow.document.body.appendChild(script4);
  7616. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7617. })
  7618. if (onloadListener) {
  7619. _iframe.contentDocument.location.reload()
  7620. } else {
  7621. _iframe.contentDocument.location.reload()
  7622. }
  7623. } else if (str == 'whiteboard') {
  7624. _iframe = _formdiv.querySelector('iframe')
  7625. let onloadListener = _iframe.onload = () => {
  7626. _iframe.contentWindow.document.body.appendChild(script1);
  7627. _iframe.contentWindow.document.body.appendChild(script2);
  7628. _iframe.contentWindow.document.body.appendChild(script4);
  7629. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7630. };
  7631. // if (onloadListener) {
  7632. // try {
  7633. // _iframe.src += "?cocorobo="+new Date().getTime()
  7634. // _iframe.contentWindow.document.location.reload()
  7635. // } catch (error) {
  7636. // }
  7637. // } else {
  7638. // _iframe.contentDocument.location.reload()
  7639. // }
  7640. } else {
  7641. _iframe.onload = () => {
  7642. _iframe.contentWindow.document.body.appendChild(script1);
  7643. _iframe.contentWindow.document.body.appendChild(script2);
  7644. // _iframe.contentWindow.document.body.appendChild(script3);
  7645. _iframe.contentWindow.document.body.appendChild(script4);
  7646. };
  7647. }
  7648. _jie.onclick = async () => {
  7649. let text = ''
  7650. if (aTool == 1) {
  7651. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7652. } else if (aTool == 6) {
  7653. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7654. } else if (aTool == 3) {
  7655. text = await U.MD.D.I.getEditorContent(_iframe);
  7656. }
  7657. _loading.style.display = 'flex'
  7658. console.log(_loading);
  7659. var _ajs = _iframe.contentWindow.document.createElement("script");
  7660. _ajs.type = "text/javascript";
  7661. _ajs.innerHTML =
  7662. // 'console.log(' + _loading + ');\n' +
  7663. 'var _js = document.createElement("script");\n' +
  7664. '_js.type="text/javascript";\n' +
  7665. '_js.charset="UTF-8";\n' +
  7666. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7667. "_js.onload = function(){\n" +
  7668. ' var a = document.getElementsByTagName("img")\n' +
  7669. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7670. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7671. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7672. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7673. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7674. "beforeUpload_shishi(file," +
  7675. "'" +
  7676. _userid +
  7677. "'" +
  7678. ", " +
  7679. "'" +
  7680. _cid +
  7681. "'" +
  7682. ", " +
  7683. "'" +
  7684. _stage +
  7685. "'" +
  7686. ", " +
  7687. "'" +
  7688. _task +
  7689. "'" +
  7690. ", " +
  7691. "'" +
  7692. _tool +
  7693. "'" +
  7694. ", " +
  7695. "'" +
  7696. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7697. "'" +
  7698. ", " +
  7699. "'" +
  7700. aTool +
  7701. "'" +
  7702. ", " +
  7703. "`" +
  7704. text +
  7705. "`" +
  7706. ")\n" +
  7707. " });\n" +
  7708. "}\n" +
  7709. "document.head.appendChild(_js);\n";
  7710. _iframe.contentWindow.document.head.appendChild(_ajs);
  7711. }
  7712. }
  7713. }
  7714. U.MD.D.I.getEditorContent = function (iframe) {
  7715. return new Promise((resolve, reject) => {
  7716. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7717. console.log(content);
  7718. resolve(content)
  7719. });
  7720. });
  7721. }
  7722. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7723. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7724. // if (res.value[0].length > 0) {
  7725. // // resolve(res.value[0][0].text);
  7726. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7727. // $(fileInput).val('');
  7728. // });
  7729. // }
  7730. // }, [], { "type": "GET", "withCredentials": true });
  7731. var xmlhttp;
  7732. var Mac, Sn, DeviceId
  7733. if (window.XMLHttpRequest) {
  7734. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7735. xmlhttp = new XMLHttpRequest();
  7736. } else {
  7737. // IE6, IE5 浏览器执行代码
  7738. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7739. }
  7740. xmlhttp.onreadystatechange = function () {
  7741. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7742. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7743. // resolve(res.value[0][0].text);
  7744. if (type == '2') {
  7745. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7746. } else if (type == '3') {
  7747. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7748. }
  7749. } else {
  7750. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7751. }
  7752. }
  7753. }
  7754. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7755. xmlhttp.send();
  7756. }
  7757. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7758. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7759. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7760. _userinfo = US.userInfo, //登录用户信息
  7761. _userid = US.userInfo.userid //登录用户id
  7762. let _iframe;
  7763. let _cid = cid,
  7764. _stage = stage,
  7765. _task = task,
  7766. _tool = tool;
  7767. var _jie = $$("div", {
  7768. "style": {
  7769. "position": "absolute",
  7770. "bottom": "50px",
  7771. "right": "50px",
  7772. "zIndex": "9999",
  7773. "backgroundColor": "#2268bc",
  7774. "color": "#fff",
  7775. "padding": "12px 20px",
  7776. "cursor": "pointer",
  7777. "borderRadius": "4px",
  7778. },
  7779. "innerHTML": "确认并提交"
  7780. })
  7781. let aTool = ''
  7782. let _loading = document.createElement('div')
  7783. _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;"
  7784. // _loading.id = "";
  7785. let _lchild = document.createElement('div')
  7786. let _limg = document.createElement('img')
  7787. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7788. _limg.style = "width: 26px;margin-right: 10px;"
  7789. _lchild.appendChild(_limg)
  7790. let _lspan = document.createElement('span')
  7791. _lspan.innerHTML = "上传中..."
  7792. _lchild.appendChild(_lspan)
  7793. _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%);"
  7794. _loading.appendChild(_lchild)
  7795. var _box = $$('div', {
  7796. "style": {
  7797. "position": "relative",
  7798. "width": "100%",
  7799. "height": "100%",
  7800. },
  7801. })
  7802. _box.appendChild(_loading)
  7803. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7804. switch (str) {
  7805. case "whiteboard":
  7806. aTool = 1;
  7807. _iframe = $$("iframe", {
  7808. "frameborder": "no",
  7809. "border": "0",
  7810. "scrolling ": "no",
  7811. "style": {
  7812. "cssText": "border:0;width:100%;height:100%"
  7813. },
  7814. "src": "https://beta.iwb.cocorobo.cn/"
  7815. })
  7816. _box.appendChild(_iframe);
  7817. _box.appendChild(_jie);
  7818. _formdiv = new U.UF.UI.form(
  7819. "电子白板",
  7820. _box, {
  7821. "id": "whiteboards" + cid + stage + task + tool,
  7822. "style": {
  7823. "width": "90%",
  7824. "height": "90%",
  7825. "overflow": 'hidden'
  7826. },
  7827. "onresize": function () { }
  7828. }, {
  7829. closecallback: function () { }
  7830. }, {
  7831. "style": {
  7832. "height": "36px"
  7833. }
  7834. }).form; //创建窗体
  7835. _taskbar = {
  7836. "id": str + _formdiv.id,
  7837. "style": {
  7838. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7839. },
  7840. "name": "电子白板",
  7841. "forms": _formdiv,
  7842. "click": function () {
  7843. U.MD.D.I.openApplication(str, obj, info);
  7844. }
  7845. }
  7846. break;
  7847. case "mind":
  7848. aTool = 3;
  7849. _iframe = $$("iframe", {
  7850. "frameborder": "no",
  7851. "border": "0",
  7852. "scrolling ": "no",
  7853. "style": {
  7854. "cssText": "border:0;width:100%;height:100%"
  7855. },
  7856. "src": "/kityminder-editor/dist/index.html"
  7857. });
  7858. _box.appendChild(_iframe);
  7859. _box.appendChild(_jie);
  7860. _formdiv = new U.UF.UI.form(
  7861. "思维导图",
  7862. _box, { //"/jsmind/example/demo.html"
  7863. "id": "minds" + cid + stage + task + tool,
  7864. "style": {
  7865. "width": "90%",
  7866. "height": "90%",
  7867. "overflow": 'hidden'
  7868. },
  7869. "onresize": function () { }
  7870. }, {
  7871. closecallback: function () { }
  7872. }, {
  7873. "style": {
  7874. "height": "36px"
  7875. }
  7876. }).form; //创建窗体
  7877. _taskbar = {
  7878. "id": str + _formdiv.id,
  7879. "style": {
  7880. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7881. },
  7882. "name": "思维导图",
  7883. "forms": _formdiv,
  7884. "click": function () {
  7885. U.MD.D.I.openApplication(str, obj, info);
  7886. }
  7887. }
  7888. break;
  7889. case "doc":
  7890. aTool = 6;
  7891. _iframe = $$("iframe", {
  7892. "frameborder": "no",
  7893. "border": "0",
  7894. "scrolling ": "no",
  7895. "style": {
  7896. "cssText": "border:0;width:100%;height:100%"
  7897. },
  7898. "src": "/Office/Word/WordEditArea.htm"
  7899. })
  7900. _box.appendChild(_iframe);
  7901. _box.appendChild(_jie);
  7902. _formdiv = new U.UF.UI.form(
  7903. "协同文档",
  7904. _box, {
  7905. "id": "docs" + cid + stage + task + tool,
  7906. "style": {
  7907. "width": "90%",
  7908. "height": "90%",
  7909. "overflow": 'hidden'
  7910. },
  7911. "onresize": function () { }
  7912. }, {
  7913. closecallback: function () { }
  7914. }, {
  7915. "style": {
  7916. "height": "36px"
  7917. }
  7918. }).form; //创建窗体
  7919. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7920. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7921. })
  7922. _taskbar = {
  7923. "id": str + _formdiv.id,
  7924. "style": {
  7925. "backgroundImage": "url(/img/icon/doc.png)"
  7926. },
  7927. "name": "协同文档",
  7928. "forms": _formdiv,
  7929. "click": function () {
  7930. U.MD.D.I.openApplication(str, obj, info);
  7931. }
  7932. }
  7933. break;
  7934. }
  7935. const script1 = document.createElement("script");
  7936. script1.type = "text/javascript";
  7937. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7938. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7939. const script2 = document.createElement("script");
  7940. script2.type = "text/javascript";
  7941. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7942. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7943. const script3 = document.createElement("script");
  7944. script3.type = "text/javascript";
  7945. script3.charset = "UTF-8";
  7946. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7947. const script4 = document.createElement("script");
  7948. script4.type = "text/javascript";
  7949. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7950. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7951. if (_iframe) {
  7952. if (str == 'doc') {
  7953. _iframe = _formdiv.querySelector('iframe')
  7954. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7955. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7956. _iframe.contentWindow.document.body.appendChild(script1);
  7957. _iframe.contentWindow.document.body.appendChild(script2);
  7958. // _iframe.contentWindow.document.body.appendChild(script3);
  7959. _iframe.contentWindow.document.body.appendChild(script4);
  7960. })
  7961. if (onloadListener) {
  7962. _iframe.contentDocument.location.reload()
  7963. } else {
  7964. _iframe.contentDocument.location.reload()
  7965. }
  7966. } else if (str == 'mind') {
  7967. _iframe = _formdiv.querySelector('iframe')
  7968. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7969. _iframe.contentWindow.document.body.appendChild(script1);
  7970. _iframe.contentWindow.document.body.appendChild(script2);
  7971. _iframe.contentWindow.document.body.appendChild(script4);
  7972. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7973. })
  7974. if (onloadListener) {
  7975. _iframe.contentDocument.location.reload()
  7976. } else {
  7977. _iframe.contentDocument.location.reload()
  7978. }
  7979. } else {
  7980. _iframe.onload = () => {
  7981. _iframe.contentWindow.document.body.appendChild(script1);
  7982. _iframe.contentWindow.document.body.appendChild(script2);
  7983. // _iframe.contentWindow.document.body.appendChild(script3);
  7984. _iframe.contentWindow.document.body.appendChild(script4);
  7985. };
  7986. }
  7987. _jie.onclick = async () => {
  7988. let text = ''
  7989. if (aTool == 6) {
  7990. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7991. } else if (aTool == 3) {
  7992. text = await U.MD.D.I.getEditorContent(_iframe);
  7993. }
  7994. _loading.style.display = 'flex'
  7995. console.log(_loading);
  7996. var _ajs = _iframe.contentWindow.document.createElement("script");
  7997. _ajs.type = "text/javascript";
  7998. _ajs.innerHTML =
  7999. // 'console.log(' + _loading + ');\n' +
  8000. 'var _js = document.createElement("script");\n' +
  8001. '_js.type="text/javascript";\n' +
  8002. '_js.charset="UTF-8";\n' +
  8003. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8004. "_js.onload = function(){\n" +
  8005. ' var a = document.getElementsByTagName("img")\n' +
  8006. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8007. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8008. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8009. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8010. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8011. "beforeUpload_shishi(file," +
  8012. "'" +
  8013. _userid +
  8014. "'" +
  8015. ", " +
  8016. "'" +
  8017. _cid +
  8018. "'" +
  8019. ", " +
  8020. "'" +
  8021. _stage +
  8022. "'" +
  8023. ", " +
  8024. "'" +
  8025. _task +
  8026. "'" +
  8027. ", " +
  8028. "'" +
  8029. _tool +
  8030. "'" +
  8031. ", " +
  8032. "'" +
  8033. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8034. "'" +
  8035. ", " +
  8036. "'" +
  8037. aTool +
  8038. "'" +
  8039. ", " +
  8040. "`" +
  8041. text +
  8042. "`" +
  8043. ")\n" +
  8044. " });\n" +
  8045. "}\n" +
  8046. "document.head.appendChild(_js);\n";
  8047. _iframe.contentWindow.document.head.appendChild(_ajs);
  8048. }
  8049. }
  8050. //U.MD.D.I.openClick(str);
  8051. //如果有任务栏信息
  8052. // if (_taskbar) {
  8053. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8054. // }
  8055. }
  8056. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8057. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8058. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8059. _userinfo = US.userInfo, //登录用户信息
  8060. _userid = US.userInfo.userid //登录用户id
  8061. let _iframe;
  8062. let _cid = cid,
  8063. _stage = stage,
  8064. _task = task,
  8065. _tool = tool;
  8066. var _jie = $$("div", {
  8067. "style": {
  8068. "position": "absolute",
  8069. "bottom": "50px",
  8070. "right": "50px",
  8071. "zIndex": "9999",
  8072. "backgroundColor": "#2268bc",
  8073. "color": "#fff",
  8074. "padding": "12px 20px",
  8075. "cursor": "pointer",
  8076. "borderRadius": "4px",
  8077. },
  8078. "innerHTML": "确认并提交"
  8079. })
  8080. let aTool = ''
  8081. let _loading = document.createElement('div')
  8082. _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;"
  8083. // _loading.id = "";
  8084. let _lchild = document.createElement('div')
  8085. let _limg = document.createElement('img')
  8086. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8087. _limg.style = "width: 26px;margin-right: 10px;"
  8088. _lchild.appendChild(_limg)
  8089. let _lspan = document.createElement('span')
  8090. _lspan.innerHTML = "上传中..."
  8091. _lchild.appendChild(_lspan)
  8092. _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%);"
  8093. _loading.appendChild(_lchild)
  8094. var _box = $$('div', {
  8095. "style": {
  8096. "position": "relative",
  8097. "width": "100%",
  8098. "height": "100%",
  8099. },
  8100. })
  8101. _box.appendChild(_loading)
  8102. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8103. switch (str) {
  8104. case "whiteboard":
  8105. aTool = 1;
  8106. _iframe = $$("iframe", {
  8107. "frameborder": "no",
  8108. "border": "0",
  8109. "scrolling ": "no",
  8110. "style": {
  8111. "cssText": "border:0;width:100%;height:100%"
  8112. },
  8113. "src": "https://beta.iwb.cocorobo.cn/"
  8114. })
  8115. _box.appendChild(_iframe);
  8116. _box.appendChild(_jie);
  8117. _formdiv = new U.UF.UI.form(
  8118. "电子白板",
  8119. _box, {
  8120. "id": "whiteboards" + cid + stage + task + tool,
  8121. "style": {
  8122. "width": "90%",
  8123. "height": "90%",
  8124. "overflow": 'hidden'
  8125. },
  8126. "onresize": function () { }
  8127. }, {
  8128. closecallback: function () { }
  8129. }, {
  8130. "style": {
  8131. "height": "36px"
  8132. }
  8133. }).form; //创建窗体
  8134. _taskbar = {
  8135. "id": str + _formdiv.id,
  8136. "style": {
  8137. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8138. },
  8139. "name": "电子白板",
  8140. "forms": _formdiv,
  8141. "click": function () {
  8142. U.MD.D.I.openApplication(str, obj, info);
  8143. }
  8144. }
  8145. break;
  8146. case "mind":
  8147. aTool = 3;
  8148. _iframe = $$("iframe", {
  8149. "frameborder": "no",
  8150. "border": "0",
  8151. "scrolling ": "no",
  8152. "style": {
  8153. "cssText": "border:0;width:100%;height:100%"
  8154. },
  8155. "src": "/kityminder-editor/dist/index.html"
  8156. });
  8157. _box.appendChild(_iframe);
  8158. _box.appendChild(_jie);
  8159. _formdiv = new U.UF.UI.form(
  8160. "思维导图",
  8161. _box, { //"/jsmind/example/demo.html"
  8162. "id": "minds" + cid + stage + task + tool,
  8163. "style": {
  8164. "width": "90%",
  8165. "height": "90%",
  8166. "overflow": 'hidden'
  8167. },
  8168. "onresize": function () { }
  8169. }, {
  8170. closecallback: function () { }
  8171. }, {
  8172. "style": {
  8173. "height": "36px"
  8174. }
  8175. }).form; //创建窗体
  8176. _taskbar = {
  8177. "id": str + _formdiv.id,
  8178. "style": {
  8179. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8180. },
  8181. "name": "思维导图",
  8182. "forms": _formdiv,
  8183. "click": function () {
  8184. U.MD.D.I.openApplication(str, obj, info);
  8185. }
  8186. }
  8187. break;
  8188. case "doc":
  8189. aTool = 6;
  8190. _iframe = $$("iframe", {
  8191. "frameborder": "no",
  8192. "border": "0",
  8193. "scrolling ": "no",
  8194. "style": {
  8195. "cssText": "border:0;width:100%;height:100%"
  8196. },
  8197. "src": "/Office/Word/WordEditArea.htm"
  8198. })
  8199. _box.appendChild(_iframe);
  8200. _box.appendChild(_jie);
  8201. _formdiv = new U.UF.UI.form(
  8202. "协同文档",
  8203. _box, {
  8204. "id": "docs" + cid + stage + task + tool,
  8205. "style": {
  8206. "width": "90%",
  8207. "height": "90%",
  8208. "overflow": 'hidden'
  8209. },
  8210. "onresize": function () { }
  8211. }, {
  8212. closecallback: function () { }
  8213. }, {
  8214. "style": {
  8215. "height": "36px"
  8216. }
  8217. }).form; //创建窗体
  8218. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8219. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8220. })
  8221. _taskbar = {
  8222. "id": str + _formdiv.id,
  8223. "style": {
  8224. "backgroundImage": "url(/img/icon/doc.png)"
  8225. },
  8226. "name": "协同文档",
  8227. "forms": _formdiv,
  8228. "click": function () {
  8229. U.MD.D.I.openApplication(str, obj, info);
  8230. }
  8231. }
  8232. break;
  8233. }
  8234. const script1 = document.createElement("script");
  8235. script1.type = "text/javascript";
  8236. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8237. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8238. const script2 = document.createElement("script");
  8239. script2.type = "text/javascript";
  8240. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8241. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8242. const script3 = document.createElement("script");
  8243. script3.type = "text/javascript";
  8244. script3.charset = "UTF-8";
  8245. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8246. const script4 = document.createElement("script");
  8247. script4.type = "text/javascript";
  8248. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8249. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8250. if (_iframe) {
  8251. if (str == 'doc') {
  8252. _iframe = _formdiv.querySelector('iframe')
  8253. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8254. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8255. _iframe.contentWindow.document.body.appendChild(script1);
  8256. _iframe.contentWindow.document.body.appendChild(script2);
  8257. // _iframe.contentWindow.document.body.appendChild(script3);
  8258. _iframe.contentWindow.document.body.appendChild(script4);
  8259. })
  8260. if (onloadListener) {
  8261. _iframe.contentDocument.location.reload()
  8262. } else {
  8263. _iframe.contentDocument.location.reload()
  8264. }
  8265. } else if (str == 'mind') {
  8266. _iframe = _formdiv.querySelector('iframe')
  8267. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8268. _iframe.contentWindow.document.body.appendChild(script1);
  8269. _iframe.contentWindow.document.body.appendChild(script2);
  8270. _iframe.contentWindow.document.body.appendChild(script4);
  8271. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8272. })
  8273. if (onloadListener) {
  8274. _iframe.contentDocument.location.reload()
  8275. } else {
  8276. _iframe.contentDocument.location.reload()
  8277. }
  8278. } else {
  8279. _iframe.onload = () => {
  8280. _iframe.contentWindow.document.body.appendChild(script1);
  8281. _iframe.contentWindow.document.body.appendChild(script2);
  8282. // _iframe.contentWindow.document.body.appendChild(script3);
  8283. _iframe.contentWindow.document.body.appendChild(script4);
  8284. };
  8285. }
  8286. _jie.onclick = async () => {
  8287. let text = ''
  8288. if (aTool == 6) {
  8289. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8290. } else if (aTool == 3) {
  8291. text = await U.MD.D.I.getEditorContent(_iframe);
  8292. }
  8293. _loading.style.display = 'flex'
  8294. console.log(_loading);
  8295. var _ajs = _iframe.contentWindow.document.createElement("script");
  8296. _ajs.type = "text/javascript";
  8297. _ajs.innerHTML =
  8298. // 'console.log(' + _loading + ');\n' +
  8299. 'var _js = document.createElement("script");\n' +
  8300. '_js.type="text/javascript";\n' +
  8301. '_js.charset="UTF-8";\n' +
  8302. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8303. "_js.onload = function(){\n" +
  8304. ' var a = document.getElementsByTagName("img")\n' +
  8305. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8306. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8307. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8308. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8309. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8310. "beforeUpload_shishi(file," +
  8311. "'" +
  8312. _userid +
  8313. "'" +
  8314. ", " +
  8315. "'" +
  8316. _cid +
  8317. "'" +
  8318. ", " +
  8319. "'" +
  8320. _stage +
  8321. "'" +
  8322. ", " +
  8323. "'" +
  8324. _task +
  8325. "'" +
  8326. ", " +
  8327. "'" +
  8328. _tool +
  8329. "'" +
  8330. ", " +
  8331. "'" +
  8332. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8333. "'" +
  8334. ", " +
  8335. "'" +
  8336. aTool +
  8337. "'" +
  8338. ", " +
  8339. "`" +
  8340. text +
  8341. "`" +
  8342. ")\n" +
  8343. " });\n" +
  8344. "}\n" +
  8345. "document.head.appendChild(_js);\n";
  8346. _iframe.contentWindow.document.head.appendChild(_ajs);
  8347. }
  8348. }
  8349. //U.MD.D.I.openClick(str);
  8350. //如果有任务栏信息
  8351. // if (_taskbar) {
  8352. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8353. // }
  8354. }
  8355. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8356. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8357. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8358. _userinfo = US.userInfo, //登录用户信息
  8359. _userid = US.userInfo.userid //登录用户id
  8360. let _iframe;
  8361. let _cid = cid,
  8362. _stage = stage,
  8363. _task = task,
  8364. _tool = tool;
  8365. var _jie = $$("div", {
  8366. "style": {
  8367. "position": "absolute",
  8368. "bottom": "50px",
  8369. "right": "50px",
  8370. "zIndex": "9999",
  8371. "backgroundColor": "#2268bc",
  8372. "color": "#fff",
  8373. "padding": "12px 20px",
  8374. "cursor": "pointer",
  8375. "borderRadius": "4px",
  8376. },
  8377. "innerHTML": "上传模板"
  8378. })
  8379. let aTool = ''
  8380. let _loading = document.createElement('div')
  8381. _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;"
  8382. // _loading.id = "";
  8383. let _lchild = document.createElement('div')
  8384. let _limg = document.createElement('img')
  8385. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8386. _limg.style = "width: 26px;margin-right: 10px;"
  8387. _lchild.appendChild(_limg)
  8388. let _lspan = document.createElement('span')
  8389. _lspan.innerHTML = "上传中..."
  8390. _lchild.appendChild(_lspan)
  8391. _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%);"
  8392. _loading.appendChild(_lchild)
  8393. var _box = $$('div', {
  8394. "style": {
  8395. "position": "relative",
  8396. "width": "100%",
  8397. "height": "100%",
  8398. },
  8399. })
  8400. _box.appendChild(_loading)
  8401. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8402. switch (str) {
  8403. case "whiteboard":
  8404. aTool = 1;
  8405. _iframe = $$("iframe", {
  8406. "frameborder": "no",
  8407. "border": "0",
  8408. "scrolling ": "no",
  8409. "style": {
  8410. "cssText": "border:0;width:100%;height:100%"
  8411. },
  8412. "src": "https://beta.iwb.cocorobo.cn/"
  8413. })
  8414. _box.appendChild(_iframe);
  8415. _box.appendChild(_jie);
  8416. _formdiv = new U.UF.UI.form(
  8417. "电子白板",
  8418. _box, {
  8419. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8420. "style": {
  8421. "width": "90%",
  8422. "height": "90%",
  8423. "overflow": 'hidden'
  8424. },
  8425. "onresize": function () { }
  8426. }, {
  8427. closecallback: function () { }
  8428. }, {
  8429. "style": {
  8430. "height": "36px"
  8431. }
  8432. }).form; //创建窗体
  8433. _taskbar = {
  8434. "id": str + _formdiv.id,
  8435. "style": {
  8436. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8437. },
  8438. "name": "电子白板",
  8439. "forms": _formdiv,
  8440. "click": function () {
  8441. U.MD.D.I.openApplication(str, obj, info);
  8442. }
  8443. }
  8444. break;
  8445. case "mind":
  8446. aTool = 3;
  8447. _iframe = $$("iframe", {
  8448. "frameborder": "no",
  8449. "border": "0",
  8450. "scrolling ": "no",
  8451. "style": {
  8452. "cssText": "border:0;width:100%;height:100%"
  8453. },
  8454. "src": "/kityminder-editor/dist/index.html"
  8455. });
  8456. _box.appendChild(_iframe);
  8457. _box.appendChild(_jie);
  8458. _formdiv = new U.UF.UI.form(
  8459. "思维导图",
  8460. _box, { //"/jsmind/example/demo.html"
  8461. "id": "minds_Yu" + cid + stage + task + tool,
  8462. "style": {
  8463. "width": "90%",
  8464. "height": "90%",
  8465. "overflow": 'hidden'
  8466. },
  8467. "onresize": function () { }
  8468. }, {
  8469. closecallback: function () { }
  8470. }, {
  8471. "style": {
  8472. "height": "36px"
  8473. }
  8474. }).form; //创建窗体
  8475. _taskbar = {
  8476. "id": str + _formdiv.id,
  8477. "style": {
  8478. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8479. },
  8480. "name": "思维导图",
  8481. "forms": _formdiv,
  8482. "click": function () {
  8483. U.MD.D.I.openApplication(str, obj, info);
  8484. }
  8485. }
  8486. break;
  8487. case "doc":
  8488. aTool = 6;
  8489. _iframe = $$("iframe", {
  8490. "frameborder": "no",
  8491. "border": "0",
  8492. "scrolling ": "no",
  8493. "style": {
  8494. "cssText": "border:0;width:100%;height:100%"
  8495. },
  8496. "src": "/Office/Word/WordEditArea.htm"
  8497. })
  8498. _box.appendChild(_iframe);
  8499. _box.appendChild(_jie);
  8500. _formdiv = new U.UF.UI.form(
  8501. "协同文档",
  8502. _box, {
  8503. "id": "docs_Yu" + cid + stage + task + tool,
  8504. "style": {
  8505. "width": "90%",
  8506. "height": "90%",
  8507. "overflow": 'hidden'
  8508. },
  8509. "onresize": function () { }
  8510. }, {
  8511. closecallback: function () { }
  8512. }, {
  8513. "style": {
  8514. "height": "36px"
  8515. }
  8516. }).form; //创建窗体
  8517. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8518. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8519. })
  8520. _taskbar = {
  8521. "id": str + _formdiv.id,
  8522. "style": {
  8523. "backgroundImage": "url(/img/icon/doc.png)"
  8524. },
  8525. "name": "协同文档",
  8526. "forms": _formdiv,
  8527. "click": function () {
  8528. U.MD.D.I.openApplication(str, obj, info);
  8529. }
  8530. }
  8531. break;
  8532. case "CocoPi":
  8533. aTool = 57;
  8534. _iframe = $$("iframe", {
  8535. "allowpaymentrequest": "allowpaymentrequest",
  8536. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8537. "webkitallowfullscreen": "",
  8538. "mozallowfullscreen": "",
  8539. "frameborder": "no",
  8540. "border": "0",
  8541. "scrolling ": "no",
  8542. "style": {
  8543. "cssText": "border:0;width:100%;height:100%"
  8544. },
  8545. "src": "https://pi.cocorobo.cn/"
  8546. })
  8547. _box.appendChild(_iframe);
  8548. _box.appendChild(_jie);
  8549. _formdiv = new U.UF.UI.form(
  8550. "CocoPi",
  8551. _box, {
  8552. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8553. "style": {
  8554. "width": "90%",
  8555. "height": "90%",
  8556. "overflow": 'hidden'
  8557. },
  8558. "onresize": function () { }
  8559. }, {
  8560. closecallback: function () { }
  8561. }, {
  8562. "style": {
  8563. "height": "36px"
  8564. }
  8565. }).form; //创建窗体
  8566. _taskbar = {
  8567. "id": str + _formdiv.id,
  8568. "style": {
  8569. "backgroundImage": "url(/img/icon/cocopi.png)"
  8570. },
  8571. "name": "CocoPi",
  8572. "forms": _formdiv,
  8573. "click": function () {
  8574. U.MD.D.I.openApplication(str, obj, info);
  8575. }
  8576. }
  8577. break;
  8578. }
  8579. if (_iframe) {
  8580. if (str == 'doc') {
  8581. _iframe = _formdiv.querySelector('iframe')
  8582. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8583. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8584. })
  8585. if (onloadListener) {
  8586. _iframe.contentDocument.location.reload()
  8587. } else {
  8588. _iframe.contentDocument.location.reload()
  8589. }
  8590. } else if (str == 'mind') {
  8591. _iframe = _formdiv.querySelector('iframe')
  8592. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8593. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8594. })
  8595. if (onloadListener) {
  8596. _iframe.contentDocument.location.reload()
  8597. } else {
  8598. _iframe.contentDocument.location.reload()
  8599. }
  8600. } else if (str == 'whiteboard') {
  8601. _iframe = _formdiv.querySelector('iframe')
  8602. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8603. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8604. })
  8605. // if (onloadListener) {
  8606. // try {
  8607. // _iframe.src += "?cocorobo="+new Date().getTime()
  8608. // _iframe.contentWindow.document.location.reload()
  8609. // } catch (error) {
  8610. // }
  8611. // } else {
  8612. // _iframe.contentDocument.location.reload()
  8613. // }
  8614. } else if (str == 'CocoPi') {
  8615. _iframe = _formdiv.querySelector('iframe')
  8616. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8617. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8618. })
  8619. if (onloadListener) {
  8620. _iframe.contentDocument.location.reload()
  8621. } else {
  8622. _iframe.contentDocument.location.reload()
  8623. }
  8624. } else {
  8625. _iframe.onload = () => { };
  8626. }
  8627. _jie.onclick = async () => {
  8628. let text = ''
  8629. let type = '2'
  8630. if (aTool == 1) {
  8631. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8632. type = '3'
  8633. } else if (aTool == 6) {
  8634. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8635. type = '1'
  8636. } else if (aTool == 3) {
  8637. text = await U.MD.D.I.getEditorContent(_iframe);
  8638. type = '2'
  8639. } else if (aTool == 57) {
  8640. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8641. type = '4'
  8642. }
  8643. _loading.style.display = 'flex'
  8644. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8645. }
  8646. }
  8647. //U.MD.D.I.openClick(str);
  8648. //如果有任务栏信息
  8649. // if (_taskbar) {
  8650. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8651. // }
  8652. }
  8653. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8654. var xmlhttp;
  8655. var Mac, Sn, DeviceId
  8656. if (window.XMLHttpRequest) {
  8657. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8658. xmlhttp = new XMLHttpRequest();
  8659. } else {
  8660. // IE6, IE5 浏览器执行代码
  8661. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8662. }
  8663. xmlhttp.onreadystatechange = function () {
  8664. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8665. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8666. // resolve(res.value[0][0].text);
  8667. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8668. }
  8669. }
  8670. }
  8671. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8672. xmlhttp.send();
  8673. }
  8674. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8675. var xmlhttp;
  8676. var Mac, Sn, DeviceId
  8677. if (window.XMLHttpRequest) {
  8678. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8679. xmlhttp = new XMLHttpRequest();
  8680. } else {
  8681. // IE6, IE5 浏览器执行代码
  8682. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8683. }
  8684. xmlhttp.onreadystatechange = function () {
  8685. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8686. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8687. // resolve(res.value[0][0].text);
  8688. if (type == '2') {
  8689. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8690. } else if (type == '3') {
  8691. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8692. } else if (type == '4') {
  8693. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8694. }
  8695. } else {
  8696. if (type == '2') {
  8697. iframe.contentWindow.editor.minder.importData('json', '')
  8698. } else if (type == '3') {
  8699. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8700. } else if (type == '4') {
  8701. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8702. }
  8703. }
  8704. }
  8705. }
  8706. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8707. xmlhttp.send();
  8708. }
  8709. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8710. var xmlhttp;
  8711. var Mac, Sn, DeviceId
  8712. if (window.XMLHttpRequest) {
  8713. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8714. xmlhttp = new XMLHttpRequest();
  8715. } else {
  8716. // IE6, IE5 浏览器执行代码
  8717. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8718. }
  8719. xmlhttp.onreadystatechange = function () {
  8720. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8721. if (xmlhttp.response) {
  8722. // resolve(res.value[0][0].text);
  8723. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8724. // $(fileInput).val('');
  8725. // });
  8726. span.innerHTML = '上传成功'
  8727. setTimeout(() => {
  8728. loading.style.display = 'none'
  8729. }, 1000);
  8730. }
  8731. }
  8732. }
  8733. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8734. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8735. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8736. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8737. // 设置请求头,表示请求体的编码格式
  8738. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8739. // 设置请求体,使用url-encoded格式的数据
  8740. }
  8741. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8742. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8743. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8744. _userinfo = US.userInfo, //登录用户信息
  8745. _userid = US.userInfo.userid //登录用户id
  8746. let _iframe;
  8747. let _cid = cid,
  8748. _stage = stage,
  8749. _task = task,
  8750. _tool = tool;
  8751. var _jie = $$("div", {
  8752. "style": {
  8753. "position": "absolute",
  8754. "bottom": "50px",
  8755. "right": "50px",
  8756. "zIndex": "9999",
  8757. "backgroundColor": "#2268bc",
  8758. "color": "#fff",
  8759. "padding": "12px 20px",
  8760. "cursor": "pointer",
  8761. "borderRadius": "4px",
  8762. },
  8763. "innerHTML": "提交作业"
  8764. })
  8765. let aTool = ''
  8766. let _loading = document.createElement('div')
  8767. _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;"
  8768. // _loading.id = "";
  8769. let _lchild = document.createElement('div')
  8770. let _limg = document.createElement('img')
  8771. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8772. _limg.style = "width: 26px;margin-right: 10px;"
  8773. _lchild.appendChild(_limg)
  8774. let _lspan = document.createElement('span')
  8775. _lspan.innerHTML = "上传中..."
  8776. _lchild.appendChild(_lspan)
  8777. _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%);"
  8778. _loading.appendChild(_lchild)
  8779. var _box = $$('div', {
  8780. "style": {
  8781. "position": "relative",
  8782. "width": "100%",
  8783. "height": "100%",
  8784. },
  8785. })
  8786. _box.appendChild(_loading)
  8787. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8788. switch (str) {
  8789. case "CocoPi":
  8790. aTool = 57;
  8791. _iframe = $$("iframe", {
  8792. "allowpaymentrequest": "allowpaymentrequest",
  8793. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8794. "webkitallowfullscreen": "",
  8795. "mozallowfullscreen": "",
  8796. "frameborder": "no",
  8797. "border": "0",
  8798. "scrolling ": "no",
  8799. "style": {
  8800. "cssText": "border:0;width:100%;height:100%"
  8801. },
  8802. "src": "https://pi.cocorobo.cn/"
  8803. })
  8804. _box.appendChild(_iframe);
  8805. _box.appendChild(_jie);
  8806. _formdiv = new U.UF.UI.form(
  8807. "CocoPi",
  8808. _box, {
  8809. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8810. "style": {
  8811. "width": "90%",
  8812. "height": "90%",
  8813. "overflow": 'hidden'
  8814. },
  8815. "onresize": function () { }
  8816. }, {
  8817. closecallback: function () { }
  8818. }, {
  8819. "style": {
  8820. "height": "36px"
  8821. }
  8822. }).form; //创建窗体
  8823. _taskbar = {
  8824. "id": str + _formdiv.id,
  8825. "style": {
  8826. "backgroundImage": "url(/img/icon/cocopi.png)"
  8827. },
  8828. "name": "CocoPi",
  8829. "forms": _formdiv,
  8830. "click": function () {
  8831. U.MD.D.I.openApplication(str, obj, info);
  8832. }
  8833. }
  8834. break;
  8835. }
  8836. if (_iframe) {
  8837. if (str == 'CocoPi') {
  8838. _iframe = _formdiv.querySelector('iframe')
  8839. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8840. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8841. })
  8842. if (onloadListener) {
  8843. _iframe.contentDocument.location.reload()
  8844. } else {
  8845. _iframe.contentDocument.location.reload()
  8846. }
  8847. }
  8848. _jie.onclick = async () => {
  8849. let text = ''
  8850. if (aTool == 57) {
  8851. text = _iframe.contentWindow.getLoadXmlStr()
  8852. }
  8853. _loading.style.display = 'flex'
  8854. console.log(_loading);
  8855. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8856. _loading.style.display = 'none'
  8857. let _div = document.createElement('div')
  8858. _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;"
  8859. let _inner = document.createElement('div')
  8860. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8861. _inner.innerHTML = "上传成功"
  8862. _div.appendChild(_inner)
  8863. _iframe.contentWindow.window.document.body.appendChild(_div)
  8864. _div.onclick = () => {
  8865. _iframe.contentWindow.window.document.body.removeChild(_div)
  8866. }
  8867. setTimeout(() => {
  8868. _iframe.contentWindow.window.document.body.removeChild(_div)
  8869. }, 1000);
  8870. }, [], { "type": "POST", "withCredentials": true });
  8871. }
  8872. }
  8873. }
  8874. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8875. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8876. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8877. _userid = student.userid, //登录用户id
  8878. _username = student.student //用户名字
  8879. let _iframe;
  8880. let _cid = cid,
  8881. _stage = stage,
  8882. _task = task,
  8883. _tool = tool;
  8884. var _jie = $$("div", {
  8885. "style": {
  8886. "position": "absolute",
  8887. "bottom": "50px",
  8888. "right": "50px",
  8889. "zIndex": "9999",
  8890. "backgroundColor": "#2268bc",
  8891. "color": "#fff",
  8892. "padding": "12px 20px",
  8893. "cursor": "pointer",
  8894. "borderRadius": "4px",
  8895. },
  8896. "innerHTML": "提交作业"
  8897. })
  8898. let aTool = ''
  8899. let _loading = document.createElement('div')
  8900. _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;"
  8901. // _loading.id = "";
  8902. let _lchild = document.createElement('div')
  8903. let _limg = document.createElement('img')
  8904. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8905. _limg.style = "width: 26px;margin-right: 10px;"
  8906. _lchild.appendChild(_limg)
  8907. let _lspan = document.createElement('span')
  8908. _lspan.innerHTML = "上传中..."
  8909. _lchild.appendChild(_lspan)
  8910. _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%);"
  8911. _loading.appendChild(_lchild)
  8912. var _box = $$('div', {
  8913. "style": {
  8914. "position": "relative",
  8915. "width": "100%",
  8916. "height": "100%",
  8917. },
  8918. })
  8919. _box.appendChild(_loading)
  8920. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8921. switch (str) {
  8922. case "CocoPi":
  8923. aTool = 57;
  8924. _iframe = $$("iframe", {
  8925. "allowpaymentrequest": "allowpaymentrequest",
  8926. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8927. "webkitallowfullscreen": "",
  8928. "mozallowfullscreen": "",
  8929. "frameborder": "no",
  8930. "border": "0",
  8931. "scrolling ": "no",
  8932. "style": {
  8933. "cssText": "border:0;width:100%;height:100%"
  8934. },
  8935. "src": "https://pi.cocorobo.cn/"
  8936. })
  8937. _box.appendChild(_iframe);
  8938. _box.appendChild(_jie);
  8939. _formdiv = new U.UF.UI.form(
  8940. "CocoPi-" + _username,
  8941. _box, {
  8942. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8943. "style": {
  8944. "width": "90%",
  8945. "height": "90%",
  8946. "overflow": 'hidden'
  8947. },
  8948. "onresize": function () { }
  8949. }, {
  8950. closecallback: function () { }
  8951. }, {
  8952. "style": {
  8953. "height": "36px"
  8954. }
  8955. }).form; //创建窗体
  8956. _taskbar = {
  8957. "id": str + _formdiv.id,
  8958. "style": {
  8959. "backgroundImage": "url(/img/icon/cocopi.png)"
  8960. },
  8961. "name": "CocoPi",
  8962. "forms": _formdiv,
  8963. "click": function () {
  8964. U.MD.D.I.openApplication(str, obj, info);
  8965. }
  8966. }
  8967. break;
  8968. }
  8969. if (_iframe) {
  8970. if (str == 'CocoPi') {
  8971. _iframe = _formdiv.querySelector('iframe')
  8972. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8973. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8974. })
  8975. if (onloadListener) {
  8976. _iframe.contentDocument.location.reload()
  8977. } else {
  8978. _iframe.contentDocument.location.reload()
  8979. }
  8980. }
  8981. _jie.onclick = async () => {
  8982. let text = ''
  8983. if (aTool == 57) {
  8984. text = _iframe.contentWindow.getLoadXmlStr()
  8985. }
  8986. _loading.style.display = 'flex'
  8987. console.log(_loading);
  8988. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8989. _loading.style.display = 'none'
  8990. let _div = document.createElement('div')
  8991. _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;"
  8992. let _inner = document.createElement('div')
  8993. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8994. _inner.innerHTML = "上传成功"
  8995. _div.appendChild(_inner)
  8996. _iframe.contentWindow.window.document.body.appendChild(_div)
  8997. _div.onclick = () => {
  8998. _iframe.contentWindow.window.document.body.removeChild(_div)
  8999. }
  9000. setTimeout(() => {
  9001. _iframe.contentWindow.window.document.body.removeChild(_div)
  9002. }, 1000);
  9003. }, [], { "type": "POST", "withCredentials": true });
  9004. }
  9005. }
  9006. }
  9007. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9008. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9009. if (res.value[0].length > 0) {
  9010. if (atool == 57) {
  9011. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9012. }
  9013. } else {
  9014. if (atool == 57) {
  9015. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9016. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9017. }
  9018. }
  9019. }, [], { "type": "POST", "withCredentials": true });
  9020. }