DeskTop.js 553 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098
  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": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  633. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  634. ];
  635. //教科院实小教师桌面图标的全局变量
  636. U.MD.D.I.siesStudentDeskIcon = [
  637. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  638. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  639. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  640. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  641. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  642. ];
  643. //福田
  644. U.MD.D.I.gdjgTeacherDeskIcon = [
  645. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  646. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  647. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  648. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  649. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  650. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  651. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  652. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  653. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  654. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  655. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  656. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  657. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. ];
  660. //gdjg
  661. U.MD.D.I.gdjgAdminDeskIcon = [
  662. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  663. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  664. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  665. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  666. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  667. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  668. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  669. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  670. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  671. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  672. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  673. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  674. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  675. ];
  676. //hk
  677. U.MD.D.I.hkteacherDeskIcon = [
  678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  680. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  681. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  682. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  683. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  684. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  685. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  687. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  688. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  689. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  690. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  691. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  692. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  694. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  695. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  696. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  697. ];
  698. //hk
  699. U.MD.D.I.hkStudentDeskIcon = [
  700. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  704. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  705. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkaceteacherDeskIcon = [
  709. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  710. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  712. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  713. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  715. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  716. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  718. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  719. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  720. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  721. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  722. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  725. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  728. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  729. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  730. ];
  731. //hk
  732. U.MD.D.I.hkaceStudentDeskIcon = [
  733. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  734. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  735. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  736. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  737. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  739. ];
  740. //香海正覺蓮社佛教正覺中學
  741. U.MD.D.I.hkZJLSteacherDeskIcon = [
  742. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  743. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  744. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  745. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  746. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  747. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  748. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  749. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  750. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  751. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  752. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  753. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  754. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  755. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  757. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  758. ];
  759. //香海正覺蓮社佛教正覺中學
  760. U.MD.D.I.hkZJLSStudentDeskIcon = [
  761. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  762. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. ];
  766. //云海
  767. U.MD.D.I.yunhaiTeacherDeskIcon = [
  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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  775. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  776. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  777. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  778. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  779. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  780. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  781. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  782. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  783. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  786. ];
  787. //福田
  788. U.MD.D.I.heyuanTeacherDeskIcon = [
  789. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  790. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  791. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  792. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  793. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  794. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  795. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  796. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  797. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  798. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  801. ];
  802. //福田
  803. U.MD.D.I.heyuanAdminDeskIcon = [
  804. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  805. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  806. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  807. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  808. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  809. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  810. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  811. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  812. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  813. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  814. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  815. ];
  816. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  817. U.MD.D.I.szherTeacherDeskIcon = [
  818. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  819. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  820. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  821. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  822. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  823. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  824. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  825. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  826. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  827. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  828. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  829. ];
  830. //dsei
  831. U.MD.D.I.dseiTeacherDeskIcon = [
  832. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  833. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  834. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  835. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  836. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  837. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  838. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  839. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  840. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  841. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  842. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  843. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  844. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  845. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  846. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  847. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  848. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  849. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  850. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  851. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  852. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  853. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  854. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  855. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  856. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  857. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  858. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  859. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  860. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  861. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  862. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  863. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  864. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  865. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  866. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  867. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  868. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  869. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  870. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  871. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  872. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  873. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  874. ];
  875. //dsei
  876. U.MD.D.I.dseiAdminDeskIcon = [
  877. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  878. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  879. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  880. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  886. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  887. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  888. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  889. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  890. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  891. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  892. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  893. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  894. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  895. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  896. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  897. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  898. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  899. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  900. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  901. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  902. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  903. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  904. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  905. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  906. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  907. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  908. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  909. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  910. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  911. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  912. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  913. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  918. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  919. ];
  920. //dsei
  921. U.MD.D.I.dseiStudentDeskIcon = [
  922. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  923. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  924. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  925. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  927. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  928. ];
  929. //未来教育基地
  930. U.MD.D.I.szjkyTeacherDeskIcon = [
  931. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  932. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  933. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  934. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  935. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  936. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  937. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  938. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  939. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  940. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  941. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  942. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  943. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  944. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  945. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  946. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  947. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  948. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  949. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  950. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  951. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  952. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  953. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyAdminDeskIcon = [
  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.szjkyStudentDeskIcon = [
  983. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  984. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  985. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. ];
  988. //成华教育局
  989. U.MD.D.I.chjyjTeacherDeskIcon = [
  990. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  991. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  992. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  993. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  994. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  995. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  998. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  999. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1000. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1001. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1004. ];
  1005. //成华教育局chjyj
  1006. U.MD.D.I.chjyjAdminDeskIcon = [
  1007. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1008. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1009. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1011. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1012. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1013. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1014. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1015. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1016. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1017. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1018. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1021. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1022. ];
  1023. //成华教育局chjyj
  1024. U.MD.D.I.chjyjStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcStudentDeskIcon = [
  1032. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1033. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1034. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1035. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1036. ];
  1037. //tpc
  1038. U.MD.D.I.tpcTeacherDeskIcon = [
  1039. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1040. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1041. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1042. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1043. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1044. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1045. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1046. ];
  1047. //tpc
  1048. U.MD.D.I.tpcAdminDeskIcon = [
  1049. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1050. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1055. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1056. ];
  1057. //THU-IOE
  1058. U.MD.D.I.thuioeTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1062. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1063. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1064. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1065. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1066. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1067. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1068. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1069. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1070. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1071. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1072. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1073. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1074. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1075. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1076. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1077. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1078. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1079. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1080. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1081. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1082. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1083. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1084. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1085. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1086. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1087. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1088. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1089. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1090. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1091. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1092. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1093. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1094. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1097. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1098. ];
  1099. //THU-IOE
  1100. U.MD.D.I.thuioeStudentDeskIcon = [
  1101. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1102. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1103. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1104. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1105. ];
  1106. //jccssyl
  1107. U.MD.D.I.jccssylTeacherDeskIcon = [
  1108. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1109. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1110. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1111. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1112. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1113. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1114. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1115. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1116. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1117. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1118. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1119. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1120. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1121. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1122. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1127. ];
  1128. //jccssyl
  1129. U.MD.D.I.jccssylStudentDeskIcon = [
  1130. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1132. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1133. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1134. ];
  1135. //cale
  1136. U.MD.D.I.caleTeacherDeskIcon = [
  1137. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1138. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1139. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1140. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1141. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1142. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1143. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1144. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1145. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1146. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1147. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1148. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1149. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1150. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1151. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1153. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1154. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1155. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1156. ];
  1157. //cale
  1158. U.MD.D.I.caleStudentDeskIcon = [
  1159. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1160. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1161. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1162. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1163. ];
  1164. //lqwmsgzs
  1165. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1166. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1167. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1168. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1169. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1170. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1171. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1172. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1173. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1174. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1175. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1176. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1177. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1178. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1179. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1180. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1181. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1182. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1183. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1184. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1185. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1186. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1187. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1188. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1189. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1190. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1191. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1192. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1193. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1194. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1195. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1196. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1197. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1198. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1199. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1202. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1203. ];
  1204. //lqwmsgzs
  1205. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1206. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1207. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1208. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1210. ];
  1211. //盐田区幼儿园
  1212. U.MD.D.I.ytyTeacherDeskIcon = [
  1213. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1214. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1215. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1216. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1217. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1218. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1219. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1220. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1221. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1222. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1223. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1224. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1225. ];
  1226. //盐田区幼儿园
  1227. U.MD.D.I.ytyStudentDeskIcon = [
  1228. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1230. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1231. ];
  1232. //scnuai
  1233. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1234. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1235. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1236. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1237. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1238. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1239. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1240. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1241. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1242. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1243. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1244. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1245. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1246. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1247. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1248. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1249. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1250. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1251. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1252. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1253. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1254. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1255. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1256. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1257. ];
  1258. //scnuai
  1259. U.MD.D.I.scnuaiAdminDeskIcon = [
  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.scnuaiStudentDeskIcon = [
  1286. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1287. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1288. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1289. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1290. ];
  1291. //#region 桌面初始化a
  1292. /**
  1293. * 初始化桌面的起始函数
  1294. *
  1295. */
  1296. U.MD.D.I.init = function () {
  1297. if ($("#U_MD_D_K")[0]) {
  1298. //初始化桌面图标
  1299. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1300. // var clickUrl = ':12588/requestIp.php';
  1301. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1302. // U.MD.D.I.Ip = data;
  1303. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1304. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1305. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1306. // })
  1307. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1308. // })
  1309. }
  1310. }
  1311. /**
  1312. * 模式切换
  1313. *
  1314. */
  1315. U.MD.D.I.ModeCheck = function (type) {
  1316. if (US.Config.type == type) {
  1317. return
  1318. }
  1319. US.Config.type = type
  1320. $('.U_PBL_Check .active')[0].className = ''
  1321. if (type == 1) {
  1322. $('.U_PBL_Check div')[0].className = 'active'
  1323. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1324. } else {
  1325. $('.U_PBL_Check div')[1].className = 'active'
  1326. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1327. }
  1328. //初始化桌面图标
  1329. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1330. if (type == 2) {
  1331. U.MD.D.I.openApplication("project")
  1332. }
  1333. }
  1334. /**
  1335. * 隐藏任务栏
  1336. *
  1337. * @param {element} 桌面元素
  1338. */
  1339. U.MD.D.I.hiddenTaskbar = function (el) {
  1340. //任务栏位置变小
  1341. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1342. //桌面的位置变大
  1343. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1344. }
  1345. /**
  1346. * 隐藏任务栏
  1347. *
  1348. * @param {element} 桌面元素
  1349. */
  1350. U.MD.D.I.hiddenTaskbarout = function (el) {
  1351. //任务栏位置变小
  1352. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1353. //任务栏位置变化
  1354. U.selectEl(el).css({ "bottom": "-60px" });
  1355. //桌面的位置变大
  1356. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1357. }
  1358. }
  1359. /**
  1360. * 初始化打印桌面图标
  1361. *
  1362. * @param {element} 桌面元素
  1363. */
  1364. U.MD.D.I.initDesktopIcons = function (el, type) {
  1365. var i, //用于循环
  1366. _content, //桌面图标元素
  1367. _iconcontent, //桌面图标元素
  1368. _frag = $$("frag"), //定义一个碎片元素
  1369. _type = US.userInfo.type,
  1370. _org = US.userInfo.org,
  1371. _oid = US.userInfo.organizeid,
  1372. _role = US.userInfo.role,
  1373. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1374. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1375. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1376. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1377. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1378. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1379. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1380. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1381. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1382. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1383. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1384. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1385. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1386. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1387. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1388. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1389. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1390. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1391. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1392. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1393. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1394. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1395. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1396. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1397. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1398. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1399. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1400. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1401. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1402. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1403. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1404. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1405. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1406. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1407. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1408. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1409. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1410. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1411. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1412. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1413. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1414. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1415. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1416. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1417. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1418. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1419. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1420. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1421. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1422. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1423. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1424. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1425. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1426. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1427. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1428. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1429. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1430. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1431. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1432. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1433. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1434. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1435. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1436. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1437. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1438. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1439. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1440. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1441. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1442. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1443. 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'];
  1444. 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'];
  1445. //清楚桌面图标
  1446. el.innerHTML = "";
  1447. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1448. _teacherDesktopIconInfo.push(
  1449. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1450. { "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)" } },
  1451. )
  1452. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1453. }
  1454. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1455. _teacherDesktopIconInfo.push(
  1456. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1457. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1458. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1459. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1460. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1461. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1462. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1463. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1464. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1465. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1466. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1467. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1468. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1469. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1470. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1471. )
  1472. }
  1473. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1474. _teacherDesktopIconInfo.push(
  1475. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1476. )
  1477. }
  1478. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1479. // _teacherDesktopIconInfo.push(
  1480. // )
  1481. // }
  1482. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1483. _teacherDesktopIconInfo.push(
  1484. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1485. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1486. )
  1487. }
  1488. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1489. _teacherDesktopIconInfo.push(
  1490. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1491. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1493. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1494. )
  1495. _studentDesktopIconInfo.push(
  1496. )
  1497. }
  1498. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1499. _teacherDesktopIconInfo.push(
  1500. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1501. )
  1502. _studentDesktopIconInfo.push(
  1503. )
  1504. }
  1505. //麒麟二中 和 民新小学
  1506. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1507. _teacherDesktopIconInfo.push(
  1508. )
  1509. }
  1510. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1511. _teacherDesktopIconInfo.push(
  1512. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1513. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1514. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1515. )
  1516. }
  1517. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1518. _teacherDesktopIconInfo.push(
  1519. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1520. )
  1521. }
  1522. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1523. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1524. _teacherDesktopIconInfo.push(
  1525. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1526. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1527. )
  1528. }
  1529. //麒麟二中
  1530. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1531. _studentDesktopIconInfo.push(
  1532. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1533. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1534. )
  1535. }
  1536. //万科双语
  1537. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1538. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1539. if (el.Name == '项目管理') {
  1540. el.Name = 'PBL项目'
  1541. }
  1542. return el
  1543. })
  1544. _studentDesktopIconInfo3.push(
  1545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1546. )
  1547. }
  1548. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1549. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1550. return el.Name != '魔盒识字' && el.Name != '24点'
  1551. })
  1552. }
  1553. 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) {
  1554. _studentDesktopIconInfo.push(
  1555. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1556. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1557. )
  1558. }
  1559. //循环创建桌面图标
  1560. if (type == 1) {
  1561. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1562. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1563. _content = $$("div", {
  1564. className: "U_MD_D_KO",
  1565. "onmousedown": U.UF.C.closure(function (obj) {
  1566. //防止拖动图标即打开了桌面应用
  1567. U.MD.D.click(this, obj);
  1568. }, [_studentDesktopIconInfo[i]]),
  1569. "onclick": U.UF.C.closure(function (obj) {
  1570. //防止拖动图标即打开了桌面应用
  1571. U.MD.D.click(this, obj);
  1572. }, [_studentDesktopIconInfo[i]])
  1573. }, _frag); //
  1574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1577. }
  1578. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1579. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1580. _content = $$("div", {
  1581. className: "U_MD_D_KO",
  1582. "onmousedown": U.UF.C.closure(function (obj) {
  1583. //防止拖动图标即打开了桌面应用
  1584. U.MD.D.click(this, obj);
  1585. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1586. "onclick": U.UF.C.closure(function (obj) {
  1587. //防止拖动图标即打开了桌面应用
  1588. U.MD.D.click(this, obj);
  1589. }, [_hkZJLSStudentDeskIconInfo[i]])
  1590. }, _frag); //
  1591. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1592. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1593. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1594. } //
  1595. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1596. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1597. _content = $$("div", {
  1598. className: "U_MD_D_KO",
  1599. "onmousedown": U.UF.C.closure(function (obj) {
  1600. //防止拖动图标即打开了桌面应用
  1601. U.MD.D.click(this, obj);
  1602. }, [_ytyStudentDeskIconInfo[i]]),
  1603. "onclick": U.UF.C.closure(function (obj) {
  1604. //防止拖动图标即打开了桌面应用
  1605. U.MD.D.click(this, obj);
  1606. }, [_ytyStudentDeskIconInfo[i]])
  1607. }, _frag); //
  1608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1611. } //
  1612. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1613. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1614. _content = $$("div", {
  1615. className: "U_MD_D_KO",
  1616. "onmousedown": U.UF.C.closure(function (obj) {
  1617. //防止拖动图标即打开了桌面应用
  1618. U.MD.D.click(this, obj);
  1619. }, [_jccssylStudentDeskIconInfo[i]]),
  1620. "onclick": U.UF.C.closure(function (obj) {
  1621. //防止拖动图标即打开了桌面应用
  1622. U.MD.D.click(this, obj);
  1623. }, [_jccssylStudentDeskIconInfo[i]])
  1624. }, _frag); //
  1625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1628. }
  1629. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1630. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1631. _content = $$("div", {
  1632. className: "U_MD_D_KO",
  1633. "onmousedown": U.UF.C.closure(function (obj) {
  1634. //防止拖动图标即打开了桌面应用
  1635. U.MD.D.click(this, obj);
  1636. }, [_scnuaiStudentDeskIconInfo[i]]),
  1637. "onclick": U.UF.C.closure(function (obj) {
  1638. //防止拖动图标即打开了桌面应用
  1639. U.MD.D.click(this, obj);
  1640. }, [_scnuaiStudentDeskIconInfo[i]])
  1641. }, _frag); //
  1642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1645. }
  1646. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1647. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1648. _content = $$("div", {
  1649. className: "U_MD_D_KO",
  1650. "onmousedown": U.UF.C.closure(function (obj) {
  1651. //防止拖动图标即打开了桌面应用
  1652. U.MD.D.click(this, obj);
  1653. }, [_caleStudentDeskIconInfo[i]]),
  1654. "onclick": U.UF.C.closure(function (obj) {
  1655. //防止拖动图标即打开了桌面应用
  1656. U.MD.D.click(this, obj);
  1657. }, [_caleStudentDeskIconInfo[i]])
  1658. }, _frag); //
  1659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1662. }
  1663. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1664. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1665. _content = $$("div", {
  1666. className: "U_MD_D_KO",
  1667. "onmousedown": U.UF.C.closure(function (obj) {
  1668. //防止拖动图标即打开了桌面应用
  1669. U.MD.D.click(this, obj);
  1670. }, [_thuioeStudentDeskIconInfo[i]]),
  1671. "onclick": U.UF.C.closure(function (obj) {
  1672. //防止拖动图标即打开了桌面应用
  1673. U.MD.D.click(this, obj);
  1674. }, [_thuioeStudentDeskIconInfo[i]])
  1675. }, _frag); //
  1676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1679. }
  1680. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1681. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1682. _content = $$("div", {
  1683. className: "U_MD_D_KO",
  1684. "onmousedown": U.UF.C.closure(function (obj) {
  1685. //防止拖动图标即打开了桌面应用
  1686. U.MD.D.click(this, obj);
  1687. }, [_tpcStudentDeskIconInfo[i]]),
  1688. "onclick": U.UF.C.closure(function (obj) {
  1689. //防止拖动图标即打开了桌面应用
  1690. U.MD.D.click(this, obj);
  1691. }, [_tpcStudentDeskIconInfo[i]])
  1692. }, _frag); //
  1693. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1696. } //
  1697. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1698. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1699. _content = $$("div", {
  1700. className: "U_MD_D_KO",
  1701. "onmousedown": U.UF.C.closure(function (obj) {
  1702. //防止拖动图标即打开了桌面应用
  1703. U.MD.D.click(this, obj);
  1704. }, [_chjyjStudentDeskIconInfo[i]]),
  1705. "onclick": U.UF.C.closure(function (obj) {
  1706. //防止拖动图标即打开了桌面应用
  1707. U.MD.D.click(this, obj);
  1708. }, [_chjyjStudentDeskIconInfo[i]])
  1709. }, _frag); //
  1710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1713. }
  1714. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1715. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1716. _content = $$("div", {
  1717. className: "U_MD_D_KO",
  1718. "onmousedown": U.UF.C.closure(function (obj) {
  1719. //防止拖动图标即打开了桌面应用
  1720. U.MD.D.click(this, obj);
  1721. }, [_szjkyStudentDeskIconInfo[i]]),
  1722. "onclick": U.UF.C.closure(function (obj) {
  1723. //防止拖动图标即打开了桌面应用
  1724. U.MD.D.click(this, obj);
  1725. }, [_szjkyStudentDeskIconInfo[i]])
  1726. }, _frag); //
  1727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1730. }
  1731. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1732. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1733. _content = $$("div", {
  1734. className: "U_MD_D_KO",
  1735. "onmousedown": U.UF.C.closure(function (obj) {
  1736. //防止拖动图标即打开了桌面应用
  1737. U.MD.D.click(this, obj);
  1738. }, [_dseiStudentDeskIconInfo[i]]),
  1739. "onclick": U.UF.C.closure(function (obj) {
  1740. //防止拖动图标即打开了桌面应用
  1741. U.MD.D.click(this, obj);
  1742. }, [_dseiStudentDeskIconInfo[i]])
  1743. }, _frag); //
  1744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1747. }
  1748. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1749. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1750. _content = $$("div", {
  1751. className: "U_MD_D_KO",
  1752. "onmousedown": U.UF.C.closure(function (obj) {
  1753. //防止拖动图标即打开了桌面应用
  1754. U.MD.D.click(this, obj);
  1755. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1756. "onclick": U.UF.C.closure(function (obj) {
  1757. //防止拖动图标即打开了桌面应用
  1758. U.MD.D.click(this, obj);
  1759. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1760. }, _frag); //
  1761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1764. }
  1765. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1766. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1767. _content = $$("div", {
  1768. className: "U_MD_D_KO",
  1769. "onmousedown": U.UF.C.closure(function (obj) {
  1770. //防止拖动图标即打开了桌面应用
  1771. U.MD.D.click(this, obj);
  1772. }, [_siesStudentDeskIconInfo[i]]),
  1773. "onclick": U.UF.C.closure(function (obj) {
  1774. //防止拖动图标即打开了桌面应用
  1775. U.MD.D.click(this, obj);
  1776. }, [_siesStudentDeskIconInfo[i]])
  1777. }, _frag); //
  1778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1781. }
  1782. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1783. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1784. _content = $$("div", {
  1785. className: "U_MD_D_KO",
  1786. "onmousedown": U.UF.C.closure(function (obj) {
  1787. //防止拖动图标即打开了桌面应用
  1788. U.MD.D.click(this, obj);
  1789. }, [_hkStudentDeskIconInfo[i]]),
  1790. "onclick": U.UF.C.closure(function (obj) {
  1791. //防止拖动图标即打开了桌面应用
  1792. U.MD.D.click(this, obj);
  1793. }, [_hkStudentDeskIconInfo[i]])
  1794. }, _frag); //
  1795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1798. }
  1799. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1800. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1801. _content = $$("div", {
  1802. className: "U_MD_D_KO",
  1803. "onmousedown": U.UF.C.closure(function (obj) {
  1804. //防止拖动图标即打开了桌面应用
  1805. U.MD.D.click(this, obj);
  1806. }, [_hkaceStudentDeskIconInfo[i]]),
  1807. "onclick": U.UF.C.closure(function (obj) {
  1808. //防止拖动图标即打开了桌面应用
  1809. U.MD.D.click(this, obj);
  1810. }, [_hkaceStudentDeskIconInfo[i]])
  1811. }, _frag); //
  1812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1815. }
  1816. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1817. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1818. _content = $$("div", {
  1819. className: "U_MD_D_KO",
  1820. "onmousedown": U.UF.C.closure(function (obj) {
  1821. //防止拖动图标即打开了桌面应用
  1822. U.MD.D.click(this, obj);
  1823. }, [_studentDesktopIconInfo[i]]),
  1824. "onclick": U.UF.C.closure(function (obj) {
  1825. //防止拖动图标即打开了桌面应用
  1826. U.MD.D.click(this, obj);
  1827. }, [_studentDesktopIconInfo[i]])
  1828. }, _frag); //
  1829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1832. }
  1833. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1834. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1835. _content = $$("div", {
  1836. className: "U_MD_D_KO",
  1837. "onmousedown": U.UF.C.closure(function (obj) {
  1838. //防止拖动图标即打开了桌面应用
  1839. U.MD.D.click(this, obj);
  1840. }, [_tcStudentDeskIconInfo[i]]),
  1841. "onclick": U.UF.C.closure(function (obj) {
  1842. //防止拖动图标即打开了桌面应用
  1843. U.MD.D.click(this, obj);
  1844. }, [_tcStudentDeskIconInfo[i]])
  1845. }, _frag); //
  1846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1849. }
  1850. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1851. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1852. _content = $$("div", {
  1853. className: "U_MD_D_KO",
  1854. "onmousedown": U.UF.C.closure(function (obj) {
  1855. //防止拖动图标即打开了桌面应用
  1856. U.MD.D.click(this, obj);
  1857. }, [_szscStudentDeskIconInfo[i]]),
  1858. "onclick": U.UF.C.closure(function (obj) {
  1859. //防止拖动图标即打开了桌面应用
  1860. U.MD.D.click(this, obj);
  1861. }, [_szscStudentDeskIconInfo[i]])
  1862. }, _frag); //
  1863. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1866. }
  1867. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1868. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1869. _content = $$("div", {
  1870. className: "U_MD_D_KO",
  1871. "onmousedown": U.UF.C.closure(function (obj) {
  1872. //防止拖动图标即打开了桌面应用
  1873. U.MD.D.click(this, obj);
  1874. }, [_studentDesktopIconInfo3[i]]),
  1875. "onclick": U.UF.C.closure(function (obj) {
  1876. //防止拖动图标即打开了桌面应用
  1877. U.MD.D.click(this, obj);
  1878. }, [_studentDesktopIconInfo3[i]])
  1879. }, _frag); //
  1880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1883. }
  1884. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1885. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1886. _content = $$("div", {
  1887. className: "U_MD_D_KO",
  1888. "onmousedown": U.UF.C.closure(function (obj) {
  1889. //防止拖动图标即打开了桌面应用
  1890. U.MD.D.click(this, obj);
  1891. }, [_studentDesktopIconInfo2[i]]),
  1892. "onclick": U.UF.C.closure(function (obj) {
  1893. //防止拖动图标即打开了桌面应用
  1894. U.MD.D.click(this, obj);
  1895. }, [_studentDesktopIconInfo2[i]])
  1896. }, _frag); //
  1897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1900. }
  1901. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1902. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1903. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  1904. continue
  1905. }
  1906. _content = $$("div", {
  1907. className: "U_MD_D_KO",
  1908. "onmousedown": U.UF.C.closure(function (obj) {
  1909. //防止拖动图标即打开了桌面应用
  1910. U.MD.D.click(this, obj);
  1911. }, [_wanketeacherDesktopIconInfo[i]]),
  1912. "onclick": U.UF.C.closure(function (obj) {
  1913. //防止拖动图标即打开了桌面应用
  1914. U.MD.D.click(this, obj);
  1915. }, [_wanketeacherDesktopIconInfo[i]])
  1916. }, _frag); //
  1917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1920. }
  1921. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1922. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1923. _content = $$("div", {
  1924. className: "U_MD_D_KO",
  1925. "onmousedown": U.UF.C.closure(function (obj) {
  1926. //防止拖动图标即打开了桌面应用
  1927. U.MD.D.click(this, obj);
  1928. }, [_wankeAdminDesktopIconInfo[i]]),
  1929. "onclick": U.UF.C.closure(function (obj) {
  1930. //防止拖动图标即打开了桌面应用
  1931. U.MD.D.click(this, obj);
  1932. }, [_wankeAdminDesktopIconInfo[i]])
  1933. }, _frag); //
  1934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1937. }
  1938. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  1939. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  1940. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  1941. continue
  1942. }
  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. }, [_scnuaiTeacherDeskIconInfo[i]]),
  1949. "onclick": U.UF.C.closure(function (obj) {
  1950. //防止拖动图标即打开了桌面应用
  1951. U.MD.D.click(this, obj);
  1952. }, [_scnuaiTeacherDeskIconInfo[i]])
  1953. }, _frag); //
  1954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  1956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  1957. }
  1958. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  1959. for (i = 0; i < _scnuaiAdminDeskIconInfo.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. }, [_scnuaiAdminDeskIconInfo[i]]),
  1966. "onclick": U.UF.C.closure(function (obj) {
  1967. //防止拖动图标即打开了桌面应用
  1968. U.MD.D.click(this, obj);
  1969. }, [_scnuaiAdminDeskIconInfo[i]])
  1970. }, _frag); //
  1971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  1973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  1974. }
  1975. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1976. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1977. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  1978. continue
  1979. }
  1980. _content = $$("div", {
  1981. className: "U_MD_D_KO",
  1982. "onmousedown": U.UF.C.closure(function (obj) {
  1983. //防止拖动图标即打开了桌面应用
  1984. U.MD.D.click(this, obj);
  1985. }, [_jccssylTeacherDeskIconInfo[i]]),
  1986. "onclick": U.UF.C.closure(function (obj) {
  1987. //防止拖动图标即打开了桌面应用
  1988. U.MD.D.click(this, obj);
  1989. }, [_jccssylTeacherDeskIconInfo[i]])
  1990. }, _frag); //
  1991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1994. }
  1995. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1996. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1997. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  1998. continue
  1999. }
  2000. _content = $$("div", {
  2001. className: "U_MD_D_KO",
  2002. "onmousedown": U.UF.C.closure(function (obj) {
  2003. //防止拖动图标即打开了桌面应用
  2004. U.MD.D.click(this, obj);
  2005. }, [_caleTeacherDeskIconInfo[i]]),
  2006. "onclick": U.UF.C.closure(function (obj) {
  2007. //防止拖动图标即打开了桌面应用
  2008. U.MD.D.click(this, obj);
  2009. }, [_caleTeacherDeskIconInfo[i]])
  2010. }, _frag); //
  2011. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2012. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2013. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2014. }
  2015. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2016. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2017. _content = $$("div", {
  2018. className: "U_MD_D_KO",
  2019. "onmousedown": U.UF.C.closure(function (obj) {
  2020. //防止拖动图标即打开了桌面应用
  2021. U.MD.D.click(this, obj);
  2022. }, [_tpcOrganizerDeskIconInfo[i]]),
  2023. "onclick": U.UF.C.closure(function (obj) {
  2024. //防止拖动图标即打开了桌面应用
  2025. U.MD.D.click(this, obj);
  2026. }, [_tpcOrganizerDeskIconInfo[i]])
  2027. }, _frag); //
  2028. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2029. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2030. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2031. }
  2032. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2033. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2034. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2035. continue
  2036. }
  2037. _content = $$("div", {
  2038. className: "U_MD_D_KO",
  2039. "onmousedown": U.UF.C.closure(function (obj) {
  2040. //防止拖动图标即打开了桌面应用
  2041. U.MD.D.click(this, obj);
  2042. }, [_tpcTeacherDeskIconInfo[i]]),
  2043. "onclick": U.UF.C.closure(function (obj) {
  2044. //防止拖动图标即打开了桌面应用
  2045. U.MD.D.click(this, obj);
  2046. }, [_tpcTeacherDeskIconInfo[i]])
  2047. }, _frag); //
  2048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2051. }
  2052. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2053. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2054. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2055. continue
  2056. }
  2057. _content = $$("div", {
  2058. className: "U_MD_D_KO",
  2059. "onmousedown": U.UF.C.closure(function (obj) {
  2060. //防止拖动图标即打开了桌面应用
  2061. U.MD.D.click(this, obj);
  2062. }, [_teacherDesktopIconInfo2[i]]),
  2063. "onclick": U.UF.C.closure(function (obj) {
  2064. //防止拖动图标即打开了桌面应用
  2065. U.MD.D.click(this, obj);
  2066. }, [_teacherDesktopIconInfo2[i]])
  2067. }, _frag); //
  2068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2071. }
  2072. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2073. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2074. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2075. continue
  2076. }
  2077. _content = $$("div", {
  2078. className: "U_MD_D_KO",
  2079. "onmousedown": U.UF.C.closure(function (obj) {
  2080. //防止拖动图标即打开了桌面应用
  2081. U.MD.D.click(this, obj);
  2082. }, [_thuioeTeacherDeskIconInfo[i]]),
  2083. "onclick": U.UF.C.closure(function (obj) {
  2084. //防止拖动图标即打开了桌面应用
  2085. U.MD.D.click(this, obj);
  2086. }, [_thuioeTeacherDeskIconInfo[i]])
  2087. }, _frag); //
  2088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2091. }
  2092. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2093. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2094. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2095. continue
  2096. }
  2097. _content = $$("div", {
  2098. className: "U_MD_D_KO",
  2099. "onmousedown": U.UF.C.closure(function (obj) {
  2100. //防止拖动图标即打开了桌面应用
  2101. U.MD.D.click(this, obj);
  2102. }, [_lotechTeacherDeskIconInfo[i]]),
  2103. "onclick": U.UF.C.closure(function (obj) {
  2104. //防止拖动图标即打开了桌面应用
  2105. U.MD.D.click(this, obj);
  2106. }, [_lotechTeacherDeskIconInfo[i]])
  2107. }, _frag); //
  2108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2111. }//
  2112. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2113. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2114. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2115. continue
  2116. }
  2117. _content = $$("div", {
  2118. className: "U_MD_D_KO",
  2119. "onmousedown": U.UF.C.closure(function (obj) {
  2120. //防止拖动图标即打开了桌面应用
  2121. U.MD.D.click(this, obj);
  2122. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2123. "onclick": U.UF.C.closure(function (obj) {
  2124. //防止拖动图标即打开了桌面应用
  2125. U.MD.D.click(this, obj);
  2126. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2127. }, _frag); //
  2128. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2129. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2130. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2131. }
  2132. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2133. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2134. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2135. continue
  2136. }
  2137. _content = $$("div", {
  2138. className: "U_MD_D_KO",
  2139. "onmousedown": U.UF.C.closure(function (obj) {
  2140. //防止拖动图标即打开了桌面应用
  2141. U.MD.D.click(this, obj);
  2142. }, [_siesTeacherDeskIconInfo[i]]),
  2143. "onclick": U.UF.C.closure(function (obj) {
  2144. //防止拖动图标即打开了桌面应用
  2145. U.MD.D.click(this, obj);
  2146. }, [_siesTeacherDeskIconInfo[i]])
  2147. }, _frag); //
  2148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2151. }
  2152. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2153. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2154. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2155. continue
  2156. }
  2157. _content = $$("div", {
  2158. className: "U_MD_D_KO",
  2159. "onmousedown": U.UF.C.closure(function (obj) {
  2160. //防止拖动图标即打开了桌面应用
  2161. U.MD.D.click(this, obj);
  2162. }, [_longhuaTeacherDeskIconInfo[i]]),
  2163. "onclick": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_longhuaTeacherDeskIconInfo[i]])
  2167. }, _frag); //
  2168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2171. }
  2172. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2173. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2174. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2175. continue
  2176. }
  2177. _content = $$("div", {
  2178. className: "U_MD_D_KO",
  2179. "onmousedown": U.UF.C.closure(function (obj) {
  2180. //防止拖动图标即打开了桌面应用
  2181. U.MD.D.click(this, obj);
  2182. }, [_ytyTeacherDeskIconInfo[i]]),
  2183. "onclick": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_ytyTeacherDeskIconInfo[i]])
  2187. }, _frag); //
  2188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2191. }
  2192. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2193. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2194. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2195. continue
  2196. }
  2197. _content = $$("div", {
  2198. className: "U_MD_D_KO",
  2199. "onmousedown": U.UF.C.closure(function (obj) {
  2200. //防止拖动图标即打开了桌面应用
  2201. U.MD.D.click(this, obj);
  2202. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2203. "onclick": U.UF.C.closure(function (obj) {
  2204. //防止拖动图标即打开了桌面应用
  2205. U.MD.D.click(this, obj);
  2206. }, [_yunhaiTeacherDeskIconInfo[i]])
  2207. }, _frag); //
  2208. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2209. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2210. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2211. } //_hkStudentDeskIconInfo
  2212. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2213. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2214. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2215. continue
  2216. }
  2217. _content = $$("div", {
  2218. className: "U_MD_D_KO",
  2219. "onmousedown": U.UF.C.closure(function (obj) {
  2220. //防止拖动图标即打开了桌面应用
  2221. U.MD.D.click(this, obj);
  2222. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2223. "onclick": U.UF.C.closure(function (obj) {
  2224. //防止拖动图标即打开了桌面应用
  2225. U.MD.D.click(this, obj);
  2226. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2227. }, _frag); //
  2228. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2229. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2230. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2231. }
  2232. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2233. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2234. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2235. continue
  2236. }
  2237. _content = $$("div", {
  2238. className: "U_MD_D_KO",
  2239. "onmousedown": U.UF.C.closure(function (obj) {
  2240. //防止拖动图标即打开了桌面应用
  2241. U.MD.D.click(this, obj);
  2242. }, [_hkTeacherDeskIconInfo[i]]),
  2243. "onclick": U.UF.C.closure(function (obj) {
  2244. //防止拖动图标即打开了桌面应用
  2245. U.MD.D.click(this, obj);
  2246. }, [_hkTeacherDeskIconInfo[i]])
  2247. }, _frag); //
  2248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2251. }
  2252. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2253. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2254. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2255. continue
  2256. }
  2257. _content = $$("div", {
  2258. className: "U_MD_D_KO",
  2259. "onmousedown": U.UF.C.closure(function (obj) {
  2260. //防止拖动图标即打开了桌面应用
  2261. U.MD.D.click(this, obj);
  2262. }, [_hkaceTeacherDeskIconInfo[i]]),
  2263. "onclick": U.UF.C.closure(function (obj) {
  2264. //防止拖动图标即打开了桌面应用
  2265. U.MD.D.click(this, obj);
  2266. }, [_hkaceTeacherDeskIconInfo[i]])
  2267. }, _frag); //
  2268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2271. }
  2272. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2273. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2274. _content = $$("div", {
  2275. className: "U_MD_D_KO",
  2276. "onmousedown": U.UF.C.closure(function (obj) {
  2277. //防止拖动图标即打开了桌面应用
  2278. U.MD.D.click(this, obj);
  2279. }, [_gdjgAdminDeskIconInfo[i]]),
  2280. "onclick": U.UF.C.closure(function (obj) {
  2281. //防止拖动图标即打开了桌面应用
  2282. U.MD.D.click(this, obj);
  2283. }, [_gdjgAdminDeskIconInfo[i]])
  2284. }, _frag); //
  2285. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2286. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2287. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2288. }
  2289. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2290. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2291. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2292. continue
  2293. }
  2294. _content = $$("div", {
  2295. className: "U_MD_D_KO",
  2296. "onmousedown": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_gdjgTeacherDeskIconInfo[i]]),
  2300. "onclick": U.UF.C.closure(function (obj) {
  2301. //防止拖动图标即打开了桌面应用
  2302. U.MD.D.click(this, obj);
  2303. }, [_gdjgTeacherDeskIconInfo[i]])
  2304. }, _frag); //
  2305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2308. }
  2309. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2310. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2311. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2312. continue
  2313. }
  2314. _content = $$("div", {
  2315. className: "U_MD_D_KO",
  2316. "onmousedown": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_szherTeacherDeskIconInfo[i]]),
  2320. "onclick": U.UF.C.closure(function (obj) {
  2321. //防止拖动图标即打开了桌面应用
  2322. U.MD.D.click(this, obj);
  2323. }, [_szherTeacherDeskIconInfo[i]])
  2324. }, _frag); //
  2325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2328. }
  2329. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2330. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2331. _content = $$("div", {
  2332. className: "U_MD_D_KO",
  2333. "onmousedown": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_heyuannAdminDeskIconInfo[i]]),
  2337. "onclick": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_heyuannAdminDeskIconInfo[i]])
  2341. }, _frag); //
  2342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2345. }
  2346. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2347. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2348. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2349. continue
  2350. }
  2351. _content = $$("div", {
  2352. className: "U_MD_D_KO",
  2353. "onmousedown": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_heyuanTeacherDeskIconInfo[i]]),
  2357. "onclick": U.UF.C.closure(function (obj) {
  2358. //防止拖动图标即打开了桌面应用
  2359. U.MD.D.click(this, obj);
  2360. }, [_heyuanTeacherDeskIconInfo[i]])
  2361. }, _frag); //
  2362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2365. } //
  2366. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2367. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2368. _content = $$("div", {
  2369. className: "U_MD_D_KO",
  2370. "onmousedown": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_dseiAdminDeskIconInfo[i]]),
  2374. "onclick": U.UF.C.closure(function (obj) {
  2375. //防止拖动图标即打开了桌面应用
  2376. U.MD.D.click(this, obj);
  2377. }, [_dseiAdminDeskIconInfo[i]])
  2378. }, _frag); //
  2379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2382. }
  2383. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2384. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2385. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2386. continue
  2387. }
  2388. _content = $$("div", {
  2389. className: "U_MD_D_KO",
  2390. "onmousedown": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_dseiTeacherDeskIconInfo[i]]),
  2394. "onclick": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_dseiTeacherDeskIconInfo[i]])
  2398. }, _frag); //
  2399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2402. } //
  2403. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2404. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2405. _content = $$("div", {
  2406. className: "U_MD_D_KO",
  2407. "onmousedown": U.UF.C.closure(function (obj) {
  2408. //防止拖动图标即打开了桌面应用
  2409. U.MD.D.click(this, obj);
  2410. }, [_chjyjAdminDeskIconInfo[i]]),
  2411. "onclick": U.UF.C.closure(function (obj) {
  2412. //防止拖动图标即打开了桌面应用
  2413. U.MD.D.click(this, obj);
  2414. }, [_chjyjAdminDeskIconInfo[i]])
  2415. }, _frag); //
  2416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2419. }//
  2420. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2421. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2422. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2423. continue
  2424. }
  2425. _content = $$("div", {
  2426. className: "U_MD_D_KO",
  2427. "onmousedown": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_chjyjTeacherDeskIconInfo[i]]),
  2431. "onclick": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_chjyjTeacherDeskIconInfo[i]])
  2435. }, _frag); //
  2436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2439. }
  2440. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2441. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2442. _content = $$("div", {
  2443. className: "U_MD_D_KO",
  2444. "onmousedown": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_szjkyAdminDeskIconInfo[i]]),
  2448. "onclick": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_szjkyAdminDeskIconInfo[i]])
  2452. }, _frag); //
  2453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2456. }//
  2457. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2458. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2459. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2460. continue
  2461. }
  2462. _content = $$("div", {
  2463. className: "U_MD_D_KO",
  2464. "onmousedown": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_szjkyTeacherDeskIconInfo[i]]),
  2468. "onclick": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_szjkyTeacherDeskIconInfo[i]])
  2472. }, _frag); //
  2473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2476. }
  2477. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2478. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2479. _content = $$("div", {
  2480. className: "U_MD_D_KO",
  2481. "onmousedown": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_futianAdminDeskIconInfo[i]]),
  2485. "onclick": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_futianAdminDeskIconInfo[i]])
  2489. }, _frag); //
  2490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2493. }
  2494. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2495. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2496. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2497. continue
  2498. }
  2499. _content = $$("div", {
  2500. className: "U_MD_D_KO",
  2501. "onmousedown": U.UF.C.closure(function (obj) {
  2502. //防止拖动图标即打开了桌面应用
  2503. U.MD.D.click(this, obj);
  2504. }, [_futianTeacherDeskIconInfo[i]]),
  2505. "onclick": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_futianTeacherDeskIconInfo[i]])
  2509. }, _frag); //
  2510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2513. }
  2514. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2515. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2516. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2517. continue
  2518. }
  2519. _content = $$("div", {
  2520. className: "U_MD_D_KO",
  2521. "onmousedown": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_MingdeTeacherDeskIcon[i]]),
  2525. "onclick": U.UF.C.closure(function (obj) {
  2526. //防止拖动图标即打开了桌面应用
  2527. U.MD.D.click(this, obj);
  2528. }, [_MingdeTeacherDeskIcon[i]])
  2529. }, _frag); //
  2530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2533. }
  2534. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2535. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2536. _content = $$("div", {
  2537. className: "U_MD_D_KO",
  2538. "onmousedown": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_lhsAdminDesktopIconInfo[i]]),
  2542. "onclick": U.UF.C.closure(function (obj) {
  2543. //防止拖动图标即打开了桌面应用
  2544. U.MD.D.click(this, obj);
  2545. }, [_lhsAdminDesktopIconInfo[i]])
  2546. }, _frag); //
  2547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2550. }
  2551. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2552. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2553. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2554. continue
  2555. }
  2556. _content = $$("div", {
  2557. className: "U_MD_D_KO",
  2558. "onmousedown": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_lhsteacherDesktopIconInfo[i]]),
  2562. "onclick": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_lhsteacherDesktopIconInfo[i]])
  2566. }, _frag); //
  2567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2570. }
  2571. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2572. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2573. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2574. continue
  2575. }
  2576. _content = $$("div", {
  2577. className: "U_MD_D_KO",
  2578. "onmousedown": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2582. "onclick": U.UF.C.closure(function (obj) {
  2583. //防止拖动图标即打开了桌面应用
  2584. U.MD.D.click(this, obj);
  2585. }, [_zhoujiateacherDesktopIconInfo[i]])
  2586. }, _frag); //
  2587. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2588. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2589. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2590. }
  2591. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2592. for (i = 0; i < _hanDeskIcon.length; i++) {
  2593. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2594. continue
  2595. }
  2596. _content = $$("div", {
  2597. className: "U_MD_D_KO",
  2598. "onmousedown": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_hanDeskIcon[i]]),
  2602. "onclick": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_hanDeskIcon[i]])
  2606. }, _frag); //
  2607. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2608. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2609. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2610. }
  2611. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2612. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2613. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2614. continue
  2615. }
  2616. _content = $$("div", {
  2617. className: "U_MD_D_KO",
  2618. "onmousedown": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_orgStemDeskIcon[i]]),
  2622. "onclick": U.UF.C.closure(function (obj) {
  2623. //防止拖动图标即打开了桌面应用
  2624. U.MD.D.click(this, obj);
  2625. }, [_orgStemDeskIcon[i]])
  2626. }, _frag); //
  2627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2630. }
  2631. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2632. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2633. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2634. continue
  2635. }
  2636. _content = $$("div", {
  2637. className: "U_MD_D_KO",
  2638. "onmousedown": U.UF.C.closure(function (obj) {
  2639. //防止拖动图标即打开了桌面应用
  2640. U.MD.D.click(this, obj);
  2641. }, [_szulsDeskIcon[i]]),
  2642. "onclick": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_szulsDeskIcon[i]])
  2646. }, _frag); //
  2647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2650. }
  2651. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2652. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2653. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2654. continue
  2655. }
  2656. _content = $$("div", {
  2657. className: "U_MD_D_KO",
  2658. "onmousedown": U.UF.C.closure(function (obj) {
  2659. //防止拖动图标即打开了桌面应用
  2660. U.MD.D.click(this, obj);
  2661. }, [_orgDesktopIconInfo[i]]),
  2662. "onclick": U.UF.C.closure(function (obj) {
  2663. //防止拖动图标即打开了桌面应用
  2664. U.MD.D.click(this, obj);
  2665. }, [_orgDesktopIconInfo[i]])
  2666. }, _frag); //
  2667. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2668. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2669. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2670. }
  2671. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2672. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2673. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2674. continue
  2675. }
  2676. _content = $$("div", {
  2677. className: "U_MD_D_KO",
  2678. "onmousedown": U.UF.C.closure(function (obj) {
  2679. //防止拖动图标即打开了桌面应用
  2680. U.MD.D.click(this, obj);
  2681. }, [_schoolDesktopIconInfo[i]]),
  2682. "onclick": U.UF.C.closure(function (obj) {
  2683. //防止拖动图标即打开了桌面应用
  2684. U.MD.D.click(this, obj);
  2685. }, [_schoolDesktopIconInfo[i]])
  2686. }, _frag); //
  2687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2690. }
  2691. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2692. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2693. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2694. continue
  2695. }
  2696. _content = $$("div", {
  2697. className: "U_MD_D_KO",
  2698. "onmousedown": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_GMteacherDesktopIconInfo[i]]),
  2702. "onclick": U.UF.C.closure(function (obj) {
  2703. //防止拖动图标即打开了桌面应用
  2704. U.MD.D.click(this, obj);
  2705. }, [_GMteacherDesktopIconInfo[i]])
  2706. }, _frag); //
  2707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2710. }
  2711. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2712. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2713. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2714. continue
  2715. }
  2716. _content = $$("div", {
  2717. className: "U_MD_D_KO",
  2718. "onmousedown": U.UF.C.closure(function (obj) {
  2719. //防止拖动图标即打开了桌面应用
  2720. U.MD.D.click(this, obj);
  2721. }, [_SONGteacherDesktopIconInfo[i]]),
  2722. "onclick": U.UF.C.closure(function (obj) {
  2723. //防止拖动图标即打开了桌面应用
  2724. U.MD.D.click(this, obj);
  2725. }, [_SONGteacherDesktopIconInfo[i]])
  2726. }, _frag); //
  2727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2730. }
  2731. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2732. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2733. _content = $$("div", {
  2734. className: "U_MD_D_KO",
  2735. "onmousedown": U.UF.C.closure(function (obj) {
  2736. //防止拖动图标即打开了桌面应用
  2737. U.MD.D.click(this, obj);
  2738. }, [_GMstudentDesktopIconInfo[i]]),
  2739. "onclick": U.UF.C.closure(function (obj) {
  2740. //防止拖动图标即打开了桌面应用
  2741. U.MD.D.click(this, obj);
  2742. }, [_GMstudentDesktopIconInfo[i]])
  2743. }, _frag); //
  2744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2747. }
  2748. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2749. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2750. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2751. continue
  2752. }
  2753. _content = $$("div", {
  2754. className: "U_MD_D_KO",
  2755. "onmousedown": U.UF.C.closure(function (obj) {
  2756. //防止拖动图标即打开了桌面应用
  2757. U.MD.D.click(this, obj);
  2758. }, [_tcTeacherDeskIconInfo[i]]),
  2759. "onclick": U.UF.C.closure(function (obj) {
  2760. //防止拖动图标即打开了桌面应用
  2761. U.MD.D.click(this, obj);
  2762. }, [_tcTeacherDeskIconInfo[i]])
  2763. }, _frag); //
  2764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2767. }
  2768. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2769. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2770. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  2771. continue
  2772. }
  2773. _content = $$("div", {
  2774. className: "U_MD_D_KO",
  2775. "onmousedown": U.UF.C.closure(function (obj) {
  2776. //防止拖动图标即打开了桌面应用
  2777. U.MD.D.click(this, obj);
  2778. }, [_tcOrganizerDeskIconInfo[i]]),
  2779. "onclick": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_tcOrganizerDeskIconInfo[i]])
  2783. }, _frag); //
  2784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2787. }
  2788. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2789. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2790. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2791. continue
  2792. }
  2793. _content = $$("div", {
  2794. className: "U_MD_D_KO",
  2795. "onmousedown": U.UF.C.closure(function (obj) {
  2796. //防止拖动图标即打开了桌面应用
  2797. U.MD.D.click(this, obj);
  2798. }, [_szscTeacherDeskIconInfo[i]]),
  2799. "onclick": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_szscTeacherDeskIconInfo[i]])
  2803. }, _frag); //
  2804. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2805. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2806. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2807. }
  2808. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2809. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2810. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  2811. continue
  2812. }
  2813. _content = $$("div", {
  2814. className: "U_MD_D_KO",
  2815. "onmousedown": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_szscOrganizerDeskIconInfo[i]]),
  2819. "onclick": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_szscOrganizerDeskIconInfo[i]])
  2823. }, _frag); //
  2824. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2825. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2826. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2827. }
  2828. } else {
  2829. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2830. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher'){
  2831. continue
  2832. }
  2833. _content = $$("div", {
  2834. className: "U_MD_D_KO",
  2835. "onmousedown": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_teacherDesktopIconInfo[i]]),
  2839. "onclick": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_teacherDesktopIconInfo[i]])
  2843. }, _frag); //
  2844. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2845. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2846. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2847. }
  2848. }
  2849. } else {
  2850. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2851. _content = $$("div", {
  2852. className: "U_MD_D_KO",
  2853. style: { 'width': '124px', 'height': '145px' },
  2854. "onmousedown": U.UF.C.closure(function (obj) {
  2855. //防止拖动图标即打开了桌面应用
  2856. U.MD.D.click(this, obj);
  2857. }, [_easyDesktopIconInfo[i]]),
  2858. "onclick": U.UF.C.closure(function (obj) {
  2859. //防止拖动图标即打开了桌面应用
  2860. U.MD.D.click(this, obj);
  2861. }, [_easyDesktopIconInfo[i]])
  2862. }, _frag); //
  2863. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2866. }
  2867. }
  2868. if (type == 1) {
  2869. //加载好后给图标定位
  2870. U.MD.D.iconPostion($(_frag).Child());
  2871. } else {
  2872. //加载好后给图标定位
  2873. U.MD.D.iconPostion2($(_frag).Child());
  2874. }
  2875. //把图标加载到页面
  2876. el.appendChild(_frag);
  2877. }
  2878. /**
  2879. * 显示任务栏
  2880. *
  2881. * @param {element} 桌面元素
  2882. */
  2883. U.MD.D.I.displayTaskbar = function (el) {
  2884. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2885. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2886. //任务栏位置变化
  2887. U.selectEl(el).css({ "bottom": "0px" });
  2888. //桌面位置变话
  2889. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2890. }
  2891. }
  2892. //#region 桌面图标拖动逻辑
  2893. /**
  2894. * 桌面排列图标
  2895. *
  2896. * @param {element} 桌面元素
  2897. * @param {object} 上下相距的距离
  2898. * @param {object} 左右相距的距离
  2899. * @return {object} 命名空间
  2900. */
  2901. U.MD.D.iconPostion = function (childs, top, left) {
  2902. var i; //用于循环处理
  2903. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2904. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2905. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2906. for (i = 0; i < childs.length; i++) {
  2907. //如果竖排top超过了范围处理
  2908. if (top + 95 > US.height - 10) {
  2909. //left超过了页面范围处理,则向上重叠打印处理
  2910. if ((left + 180) > US.width) {
  2911. top -= 110;
  2912. left -= 90;
  2913. }
  2914. //没有超过范围,那么left+90添加到下一个竖排打印
  2915. else {
  2916. left += 90;
  2917. top = 15;
  2918. };
  2919. }
  2920. //给图标的位置赋值
  2921. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2922. if (i < childs.length - 1) {
  2923. //页面图标每次向下加95
  2924. top += 95;
  2925. }
  2926. }
  2927. //返回最后调用的图标的位置
  2928. return [top, left];
  2929. }
  2930. /**
  2931. * 桌面排列图标
  2932. *
  2933. * @param {element} 桌面元素
  2934. * @param {object} 上下相距的距离
  2935. * @param {object} 左右相距的距离
  2936. * @return {object} 命名空间
  2937. */
  2938. U.MD.D.iconPostion2 = function (childs, top, left) {
  2939. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2940. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2941. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2942. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2943. for (i = 0; i < childs.length; i++) {
  2944. //如果竖排top超过了范围处理
  2945. if (left + 150 > US.width - 10) {
  2946. //left超过了页面范围处理,则向上重叠打印处理
  2947. if ((top + 180) > US.Height) {
  2948. top -= 150;
  2949. left -= 150;
  2950. }
  2951. //没有超过范围,那么left+90添加到下一个竖排打印
  2952. else {
  2953. top += 150;
  2954. left = ol;
  2955. };
  2956. }
  2957. //给图标的位置赋值
  2958. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2959. if (i < childs.length - 1) {
  2960. //页面图标每次向下加95
  2961. left += 150;
  2962. }
  2963. }
  2964. //返回最后调用的图标的位置
  2965. return [top, left];
  2966. }
  2967. /**
  2968. * 桌面点击事件逻辑
  2969. *
  2970. * @param {element} 桌面元素
  2971. * @param {object} 上下相距的距离
  2972. * @param {object} 左右相距的距离
  2973. * @return {object} 命名空间
  2974. */
  2975. U.MD.D.click = function (el, obj) {
  2976. var _buttonnumber = event.button; //点击的按钮的事件值
  2977. var _userinfo = US.userInfo;
  2978. U.UF.EV.stopBubble(); //阻止向上冒泡
  2979. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2980. if (_buttonnumber < 2) {
  2981. //如果是click事件的处理
  2982. if (event.type == "click") {
  2983. //如果元素在mousemove事件中没有移动则出发click事件
  2984. if (!U.MD.D.I.IsDrag) {
  2985. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2986. U.alert("请先登录您的账号!");
  2987. setTimeout(() => {
  2988. U.MD.U.L.login();
  2989. }, 2000);
  2990. } else {
  2991. //打开应用处理
  2992. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2993. }
  2994. }
  2995. }
  2996. //如果是mouse事件的处理
  2997. else {
  2998. if (US.Config.type == '1') {
  2999. //拖动处理,添加拖动和拖动结束事件
  3000. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3001. }
  3002. }
  3003. U.MD.D.I.IsDrag = false;
  3004. }
  3005. }
  3006. /**
  3007. * 拖动的处理
  3008. *
  3009. */
  3010. U.MD.D.iconMove = function () {
  3011. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3012. U.MD.D.I.IsDrag = true;
  3013. }
  3014. /**
  3015. * 拖动结束后,这里是定位处理,以网状的形式定位
  3016. *
  3017. * @param {element} 拖动的元素
  3018. * @return {object} 命名空间
  3019. */
  3020. U.MD.D.iconUp = function (el) {
  3021. var _top = 15,
  3022. _left = 20,
  3023. _margin,
  3024. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3025. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3026. if (_positioninfo["OT"] > 15) {
  3027. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3028. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3029. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3030. }
  3031. if (_positioninfo["OL"] > 20) {
  3032. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3033. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3034. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3035. }
  3036. //while循环判断么一个重叠的元素
  3037. do {
  3038. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3039. _top = _positioninfo[0] + 95; //得到定位后的top
  3040. _left = _positioninfo[1]; //得到定位后的left
  3041. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3042. }
  3043. /**
  3044. * 判断拖动后图标是否重叠
  3045. *
  3046. * @param {element} 拖动的元素
  3047. * @param {element} 桌面所有的元素
  3048. * @param {array} 拖动元素的位置
  3049. ----------[0] 上 top
  3050. ----------[1] 左 left
  3051. * @return {object} 命名空间
  3052. */
  3053. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3054. //循环所有的图标
  3055. for (var i = 0; i < childs.length; i++) {
  3056. //判断有没有和该图标诶子重叠的元素
  3057. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3058. return childs[i]; //如果有返回
  3059. }
  3060. }
  3061. }
  3062. //#endregion
  3063. //#endregion
  3064. //#region 桌面应用
  3065. /**
  3066. * 打开应用
  3067. *
  3068. * @param {string} 类型
  3069. -----------------Disk 网盘系统
  3070. -----------------PDisk 学习系统网盘
  3071. -----------------Poto 图片
  3072. -----------------Video 视频
  3073. -----------------Music 音乐
  3074. -----------------Word word
  3075. -----------------Excel excel
  3076. -----------------Txt 记事本
  3077. -----------------PB 学习系统
  3078. -----------------Blog 朋友圈系统
  3079. -----------------FTP ftp系统
  3080. -----------------Group 好友群
  3081. -----------------SY 首页系统
  3082. -----------------Set 个人设置
  3083. -----------------XSet 系统设置
  3084. -----------------App 我们所有的app
  3085. -----------------BC c.1473.cn 平台
  3086. -----------------CWeb d.1473.cn 变成平台
  3087. -----------------其他的外联系统 我们统一用iframe打开
  3088. * @param {array} 类型
  3089. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3090. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3091. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3092. 如果第一个参数为其他,则无第二个参数
  3093. * @returns {array}
  3094. */
  3095. window.addEventListener('message', function (e) { // 监听 message 事件
  3096. // alert(e.data.type);
  3097. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3098. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3099. //3是展示全部阶段 2学生 1老师 4专家
  3100. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3101. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3102. //3是展示全部阶段 2学生 1老师 4专家
  3103. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3104. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3105. //3是展示全部阶段 2学生 1老师 4专家
  3106. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3107. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3108. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3109. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3110. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3111. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3112. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3113. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3114. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3115. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3116. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3117. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3118. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3119. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3120. //3是展示全部阶段 2学生 1老师 4专家
  3121. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3122. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3123. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3124. U.MD.D.I.selectUser();
  3125. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3126. var _formel = document.getElementById("study");
  3127. U.UF.F.windowZooming(_formel);
  3128. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3129. var _formel = document.getElementById("studyDetail");
  3130. U.UF.F.windowZooming(_formel);
  3131. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3132. var _formel = document.getElementById("studyDetail");
  3133. U.UF.F.windowZooming(_formel);
  3134. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3135. var _formel = document.getElementById("studentStudy");
  3136. U.UF.F.windowZooming(_formel);
  3137. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3138. // var _formel = document.getElementById("study");
  3139. //如果最大化了,那么就把他缩小
  3140. // if (_formel.ismaximize) {
  3141. // return;
  3142. // }
  3143. // U.UF.F.windowZooming(_formel);
  3144. // U.UF.F.topWindow(_formel);
  3145. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3146. // var _formel = document.getElementById("studyDetail");
  3147. //如果最大化了,那么就把他缩小
  3148. // if (_formel.ismaximize) {
  3149. // return;
  3150. // }
  3151. // U.UF.F.windowZooming(_formel);
  3152. // U.UF.F.topWindow(_formel);
  3153. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3154. // var _formel = document.getElementById("studentStudy");
  3155. // if (_formel.ismaximize) {
  3156. // return;
  3157. // }
  3158. // U.UF.F.windowZooming(_formel);
  3159. // U.UF.F.topWindow(_formel);
  3160. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3161. var _formel = document.getElementById("study");
  3162. // if (_formel.ismaximize) {
  3163. // return;
  3164. // }
  3165. // U.UF.F.windowZooming(_formel);
  3166. U.UF.F.topWindow(_formel);
  3167. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3168. var _formel = document.getElementById("studentIndex");
  3169. U.UF.F.windowZooming(_formel);
  3170. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3171. var _formel = document.getElementById("studyDetailS");
  3172. U.UF.F.windowZooming(_formel);
  3173. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3174. var _formel = document.getElementById("studioIndex");
  3175. U.UF.F.windowZooming(_formel);
  3176. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3177. var _formel = document.getElementById("studyDetailStudio");
  3178. U.UF.F.windowZooming(_formel);
  3179. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3180. var _formel = document.getElementById("studyDetailStudio");
  3181. U.UF.F.windowZooming(_formel);
  3182. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3183. var _formel = document.getElementById("studyDetailNT");
  3184. U.UF.F.windowZooming(_formel);
  3185. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3186. var _formel = document.getElementById("studyDetailS");
  3187. U.UF.F.windowZooming(_formel);
  3188. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3189. var _formel = document.getElementById("studyDetailS");
  3190. U.UF.F.topWindow(_formel);
  3191. } else if (e.data.tools && e.data.tools == "1") {
  3192. // U.MD.D.I.openApplication("whiteboard")
  3193. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3194. } else if (e.data.tools && e.data.tools == "2") {
  3195. U.MD.D.I.openApplication("note")
  3196. } else if (e.data.tools && e.data.tools == "3") {
  3197. // U.MD.D.I.openApplication("mind")
  3198. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3199. } else if (e.data.tools && e.data.tools == "4") {
  3200. U.MD.D.I.openApplication("investigation")
  3201. } else if (e.data.tools && e.data.tools == "6") {
  3202. // U.MD.D.I.openApplication("doc")
  3203. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3204. } else if (e.data.tools && e.data.tools == "7") {
  3205. // U.MD.D.I.openApplication("mindNetwork")
  3206. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3207. } else if (e.data.tools && e.data.tools == "8") {
  3208. U.MD.D.I.openApplication("library")
  3209. } else if (e.data.tools && e.data.tools == "17") {
  3210. U.MD.D.I.openApplication("stuLibrary")
  3211. } else if (e.data.tools && e.data.tools == "18") {
  3212. U.MD.D.I.openApplication("train")
  3213. } else if (e.data.tools && e.data.tools == "21") {
  3214. U.MD.D.I.openApplication("program")
  3215. } else if (e.data.tools && e.data.tools == "22") {
  3216. U.MD.D.I.openApplication("AIprogram2")
  3217. } else if (e.data.tools && e.data.tools == "23") {
  3218. U.MD.D.I.openApplication("Pythonprogram")
  3219. } else if (e.data.tools && e.data.tools == "24") {
  3220. U.MD.D.I.openApplication("AIprogram")
  3221. } else if (e.data.tools && e.data.tools == "25") {
  3222. U.MD.D.I.openApplication("sys")
  3223. } else if (e.data.tools && e.data.tools == "26") {
  3224. // U.MD.D.I.openApplication("courseDesign")
  3225. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3226. } else if (e.data.tools && e.data.tools == "31") {
  3227. U.MD.D.I.openApplication("netWorkPanel")
  3228. } else if (e.data.tools && e.data.tools == "32") {
  3229. U.MD.D.I.openApplication("codeEdit")
  3230. } else if (e.data.tools && e.data.tools == "57") {
  3231. U.MD.D.I.openApplication("CocoPi")
  3232. } else if (e.data.tools && e.data.tools == "63") {
  3233. U.MD.D.I.openApplication("Wood")
  3234. } else if (e.data.tools && e.data.tools == "58") {
  3235. U.MD.D.I.openApplication("car")
  3236. } else if (e.data.tools && e.data.tools == "59") {
  3237. U.MD.D.I.openApplication("lineSearch")
  3238. } else if (e.data.tools && e.data.tools == "60") {
  3239. U.MD.D.I.openApplication("deepLearning")
  3240. } else if (e.data.tools && e.data.tools == "61") {
  3241. U.MD.D.I.openApplication("allHistory")
  3242. } else if (e.data.tools && e.data.tools == "28") {
  3243. U.MD.D.I.openApplication("translation")
  3244. } else if (e.data.tools && e.data.tools == "37") {
  3245. U.MD.D.I.openApplication("mohe")
  3246. } else if (e.data.tools && e.data.tools == "38") {
  3247. U.MD.D.I.openApplication("24game")
  3248. } else if (e.data.tools && e.data.tools == "39") {
  3249. U.MD.D.I.openApplication("GeoGebra")
  3250. } else if (e.data.tools && e.data.tools == "43") {
  3251. U.MD.D.I.openApplication("studentEvaluate")
  3252. } else if (e.data.tools && e.data.tools == "44") {
  3253. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3254. } else if (e.data.tools && e.data.tools == "46") {
  3255. U.MD.D.I.openApplication("project")
  3256. } else if (e.data.tools && e.data.tools == "71") {
  3257. U.MD.D.I.openApplication("aigptCourse")
  3258. } else if (e.data.tools && e.data.tools == "1s") {
  3259. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3260. } else if (e.data.tools && e.data.tools == "3s") {
  3261. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3262. } else if (e.data.tools && e.data.tools == "6s") {
  3263. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3264. } else if (e.data.tools && e.data.tools == "1studio") {
  3265. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3266. } else if (e.data.tools && e.data.tools == "3studio") {
  3267. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3268. } else if (e.data.tools && e.data.tools == "6studio") {
  3269. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3270. } else if (e.data.tools && e.data.tools == "3y") {
  3271. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3272. } else if (e.data.tools && e.data.tools == "1y") {
  3273. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3274. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3275. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3276. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3277. U.MD.D.I.openApplication("AIAnalyse")
  3278. } else if (e.data.tools && e.data.tools == "1teacher") {
  3279. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3280. } else if (e.data.tools && e.data.tools == "3teacher") {
  3281. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3282. } else if (e.data.tools && e.data.tools == "7teacher") {
  3283. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3284. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3285. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3286. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3287. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3288. } else if (e.data.tools && e.data.tools == "1E") {
  3289. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3290. } else if (e.data.tools && e.data.tools == "3E") {
  3291. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3292. } else if (e.data.tools && e.data.tools == "57y") {
  3293. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3294. } else if (e.data.tools && e.data.tools == "57u") {
  3295. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3296. } else if (e.data.tools && e.data.tools == "57teacher") {
  3297. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3298. } else if (e.data.tools && e.data.tools == "64") {
  3299. U.MD.D.I.openApplication("AIChat")
  3300. } else if (e.data.tools && e.data.tools == "66") {
  3301. U.MD.D.I.openApplication("formulaEdi")
  3302. } else if (e.data.tools && e.data.tools == "67") {
  3303. U.MD.D.I.openApplication("molStr")
  3304. } else if (e.data.tools && e.data.tools == "68") {
  3305. U.MD.D.I.openApplication("timeAxis")
  3306. } else if (e.data.tools && e.data.tools == "openCourse") {
  3307. let _data = {
  3308. typea: e.data.typea || '',
  3309. typeb: e.data.typeb || '',
  3310. typed: e.data.typed || '',
  3311. }
  3312. U.MD.D.I.openInApplication("index", _data)
  3313. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3314. let _data = {
  3315. classid: e.data.classid || '',
  3316. }
  3317. U.MD.D.I.openInApplication("dataClass", _data)
  3318. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3319. let _data = {
  3320. cid: e.data.cid || '',
  3321. gid: e.data.gid || '',
  3322. }
  3323. U.MD.D.I.openInApplication("opencCscl", _data)
  3324. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3325. U.MD.D.I.openApplication("dataBoardTest")
  3326. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3327. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3328. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3329. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3330. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3331. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3332. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3333. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3334. }else if (e.data.tools && e.data.tools == "loginSz") {
  3335. U.MD.D.I.openInApplication("loginSz")
  3336. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3337. if($('#classroom_observation_board')[0]){
  3338. // U.UF.F.closeWindow($('#classroom_observation_board'))
  3339. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3340. }
  3341. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3342. }
  3343. });
  3344. U.MD.D.I.selectUser = function () {
  3345. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3346. if (res.value[0].length > 0) {
  3347. US.userInfo = res.value[0][0];
  3348. $(".userName")[0].innerHTML = US.userInfo.username;
  3349. }
  3350. }, [], { "type": "GET", "withCredentials": true });
  3351. }
  3352. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3353. var _userinfo = US.userInfo, //登录用户信息
  3354. _userid = US.userInfo.userid, //登录用户id
  3355. _oid = _userinfo.organizeid,
  3356. _type = US.userInfo.type,
  3357. _org = US.userInfo.org,
  3358. _role = US.userInfo.role,
  3359. _classId = US.userInfo.classid;
  3360. if (_type == 4) {
  3361. tType = 4
  3362. }
  3363. switch (str) {
  3364. case "studyDetailNT": //无终端模式
  3365. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3366. setTimeout(() => {
  3367. U.MD.U.L.login();
  3368. }, 2000);
  3369. } else {
  3370. _formdiv = new U.UF.UI.form(
  3371. "课程详情",
  3372. $$("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 }), {
  3373. "id": "studyDetailNT",
  3374. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3375. "onresize": function () { }
  3376. }, {
  3377. closecallback: function () { }
  3378. }, { "style": { "height": "36px" } }).form; //创建窗体
  3379. _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); } }
  3380. break;
  3381. }
  3382. case "studyDetail":
  3383. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3384. setTimeout(() => {
  3385. U.MD.U.L.login();
  3386. }, 2000);
  3387. } else {
  3388. _formdiv = new U.UF.UI.form(
  3389. "课程详情",
  3390. $$("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 }), {
  3391. "id": "studyDetail",
  3392. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3393. "onresize": function () { }
  3394. }, {
  3395. closecallback: function () { }
  3396. }, { "style": { "height": "36px" } }).form; //创建窗体
  3397. _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); } }
  3398. break;
  3399. }
  3400. case "studyDetailTrain":
  3401. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3402. setTimeout(() => {
  3403. U.MD.U.L.login();
  3404. }, 2000);
  3405. } else {
  3406. _formdiv = new U.UF.UI.form(
  3407. "培训详情",
  3408. $$("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 }), {
  3409. "id": "studyDetailTrain",
  3410. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3411. "onresize": function () { }
  3412. }, {
  3413. closecallback: function () { }
  3414. }, { "style": { "height": "36px" } }).form; //创建窗体
  3415. _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); } }
  3416. break;
  3417. }
  3418. case "studyDetailS":
  3419. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3420. setTimeout(() => {
  3421. U.MD.U.L.login();
  3422. }, 2000);
  3423. } else {
  3424. _formdiv = new U.UF.UI.form(
  3425. "项目详情",
  3426. $$("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 }), {
  3427. "id": "studyDetailS",
  3428. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3429. "onresize": function () { }
  3430. }, {
  3431. closecallback: function () { }
  3432. }, { "style": { "height": "36px" } }).form; //创建窗体
  3433. _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); } }
  3434. break;
  3435. }
  3436. case "studyDetailStudio":
  3437. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3438. setTimeout(() => {
  3439. U.MD.U.L.login();
  3440. }, 2000);
  3441. } else {
  3442. _formdiv = new U.UF.UI.form(
  3443. "工作详情",
  3444. $$("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 }), {
  3445. "id": "studyDetailStudio",
  3446. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3447. "onresize": function () { }
  3448. }, {
  3449. closecallback: function () { }
  3450. }, { "style": { "height": "36px" } }).form; //创建窗体
  3451. _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); } }
  3452. break;
  3453. }
  3454. case "studyDetailS5":
  3455. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3456. setTimeout(() => {
  3457. U.MD.U.L.login();
  3458. }, 2000);
  3459. } else {
  3460. _formdiv = new U.UF.UI.form(
  3461. "项目详情",
  3462. $$("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 }), {
  3463. "id": "studyDetailS",
  3464. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3465. "onresize": function () { }
  3466. }, {
  3467. closecallback: function () { }
  3468. }, { "style": { "height": "36px" } }).form; //创建窗体
  3469. _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); } }
  3470. break;
  3471. }
  3472. case "studyDetailGM":
  3473. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3474. setTimeout(() => {
  3475. U.MD.U.L.login();
  3476. }, 2000);
  3477. } else {
  3478. _formdiv = new U.UF.UI.form(
  3479. "课程详情",
  3480. $$("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 }), {
  3481. "id": "studyDetail",
  3482. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3483. "onresize": function () { }
  3484. }, {
  3485. closecallback: function () { }
  3486. }, { "style": { "height": "36px" } }).form; //创建窗体
  3487. _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); } }
  3488. break;
  3489. }
  3490. case "hanUrl":
  3491. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3492. setTimeout(() => {
  3493. U.MD.U.L.login();
  3494. }, 2000);
  3495. } else {
  3496. _formdiv = new U.UF.UI.form(
  3497. "汉字宫",
  3498. $$("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" }), {
  3499. "id": "hanUrl",
  3500. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3501. "onresize": function () { }
  3502. }, {
  3503. closecallback: function () { }
  3504. }, { "style": { "height": "36px" } }).form; //创建窗体
  3505. _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); } }
  3506. break;
  3507. }
  3508. case "index":
  3509. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3510. setTimeout(() => {
  3511. U.MD.U.L.login();
  3512. }, 2000);
  3513. } else {
  3514. _formdiv = new U.UF.UI.form(
  3515. "课程中心",
  3516. $$("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 }), {
  3517. "id": "study",
  3518. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3519. "onresize": function () { }
  3520. }, {
  3521. closecallback: function () { }
  3522. }, { "style": { "height": "36px" } }).form; //创建窗体
  3523. _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); } }
  3524. break;
  3525. }
  3526. case "dataClass":
  3527. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3528. setTimeout(() => {
  3529. U.MD.U.L.login();
  3530. }, 2000);
  3531. } else {
  3532. _formdiv = new U.UF.UI.form(
  3533. "数据报告",
  3534. $$("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 }), {
  3535. "id": "dataClass",
  3536. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3537. "onresize": function () { }
  3538. }, {
  3539. closecallback: function () { }
  3540. }, { "style": { "height": "36px" } }).form; //创建窗体
  3541. _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); } }
  3542. break;
  3543. }
  3544. case "opencCscl":
  3545. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3546. setTimeout(() => {
  3547. U.MD.U.L.login();
  3548. }, 2000);
  3549. } else {
  3550. _formdiv = new U.UF.UI.form(
  3551. "协同建构",
  3552. $$("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 }), {
  3553. "id": "futureClass",
  3554. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3555. "onresize": function () { }
  3556. }, {
  3557. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3558. }, { "style": { "height": "36px" } }).form; //创建窗体
  3559. _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); } }
  3560. break;
  3561. }
  3562. case "openCourseUpdate":
  3563. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3564. setTimeout(() => {
  3565. U.MD.U.L.login();
  3566. }, 2000);
  3567. } else {
  3568. _formdiv = new U.UF.UI.form(
  3569. "课程管理",
  3570. $$("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 }), {
  3571. "id": "openCourseUpdate",
  3572. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3573. "onresize": function () { }
  3574. }, {
  3575. closecallback: function () { }
  3576. }, { "style": { "height": "36px" } }).form; //创建窗体
  3577. break;
  3578. }
  3579. case "openNewCourseUpdate":
  3580. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3581. setTimeout(() => {
  3582. U.MD.U.L.login();
  3583. }, 2000);
  3584. } else {
  3585. _formdiv = new U.UF.UI.form(
  3586. "课程管理",
  3587. $$("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 }), {
  3588. "id": "openCourseUpdate",
  3589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3590. "onresize": function () { }
  3591. }, {
  3592. closecallback: function () { }
  3593. }, { "style": { "height": "36px" } }).form; //创建窗体
  3594. break;
  3595. }
  3596. case "openCourseEUpdate":
  3597. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3598. setTimeout(() => {
  3599. U.MD.U.L.login();
  3600. }, 2000);
  3601. } else {
  3602. _formdiv = new U.UF.UI.form(
  3603. "课程管理",
  3604. $$("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 }), {
  3605. "id": "openCourseUpdate",
  3606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3607. "onresize": function () { }
  3608. }, {
  3609. closecallback: function () { }
  3610. }, { "style": { "height": "36px" } }).form; //创建窗体
  3611. break;
  3612. }
  3613. case "openCourseNewUpdate":
  3614. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3615. setTimeout(() => {
  3616. U.MD.U.L.login();
  3617. }, 2000);
  3618. } else {
  3619. _formdiv = new U.UF.UI.form(
  3620. "课程管理",
  3621. $$("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 }), {
  3622. "id": "openCourseUpdate",
  3623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3624. "onresize": function () { }
  3625. }, {
  3626. closecallback: function () { }
  3627. }, { "style": { "height": "36px" } }).form; //创建窗体
  3628. break;
  3629. }
  3630. case "inviteLoginSz":
  3631. _formdiv = new U.UF.UI.form(
  3632. "随机码登录",
  3633. $$("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 }), {
  3634. "id": "loginSz",
  3635. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3636. "onresize": function () { }
  3637. }, {
  3638. closecallback: function () { }
  3639. }, { "style": { "height": "36px" } }).form; //创建窗体
  3640. break;
  3641. case "loginSz":
  3642. _formdiv = new U.UF.UI.form(
  3643. "教师登录",
  3644. $$("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" }), {
  3645. "id": "loginSz",
  3646. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3647. "onresize": function () { }
  3648. }, {
  3649. closecallback: function () { }
  3650. }, { "style": { "height": "36px" } }).form; //创建窗体
  3651. break;
  3652. case "teacher":
  3653. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3654. setTimeout(() => {
  3655. U.MD.U.L.login();
  3656. }, 2000);
  3657. } else {
  3658. _formdiv = new U.UF.UI.form(
  3659. "教师管理",
  3660. $$("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 }), {
  3661. "id": "teacher",
  3662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3663. "onresize": function () { }
  3664. }, {
  3665. closecallback: function () { }
  3666. }, { "style": { "height": "36px" } }).form; //创建窗体
  3667. break;
  3668. }
  3669. case "dataBoardSZArea":
  3670. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3671. setTimeout(() => {
  3672. U.MD.U.L.login();
  3673. }, 2000);
  3674. } else {
  3675. _formdiv = new U.UF.UI.form(
  3676. "综合数据看板",
  3677. $$("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 }), {
  3678. "id": "dataBoardSZArea",
  3679. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3680. "onresize": function () { }
  3681. }, {
  3682. closecallback: function () { }
  3683. }, { "style": { "height": "36px" } }).form; //创建窗体
  3684. break;
  3685. }
  3686. case "dataBoardSZCity":
  3687. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3688. setTimeout(() => {
  3689. U.MD.U.L.login();
  3690. }, 2000);
  3691. } else {
  3692. _formdiv = new U.UF.UI.form(
  3693. "综合数据看板",
  3694. $$("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 }), {
  3695. "id": "dataBoardSZCity",
  3696. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3697. "onresize": function () { }
  3698. }, {
  3699. closecallback: function () { }
  3700. }, { "style": { "height": "36px" } }).form; //创建窗体
  3701. break;
  3702. }
  3703. case "classroom_observation_board":
  3704. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3705. setTimeout(() => {
  3706. U.MD.U.L.login();
  3707. }, 2000);
  3708. } else {
  3709. _formdiv = new U.UF.UI.form(
  3710. "课堂观察",
  3711. $$("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 }), {
  3712. "id": "classroom_observation_board",
  3713. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3714. "onresize": function () { }
  3715. }, {
  3716. closecallback: function () { }
  3717. }, { "style": { "height": "36px" } }).form; //创建窗体
  3718. break;
  3719. }
  3720. }
  3721. }
  3722. U.MD.D.I.openApplication = function (str, obj, info) {
  3723. obj = obj || {};
  3724. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3725. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3726. _userinfo = US.userInfo, //登录用户信息
  3727. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3728. _oid = obj.organizeid || _userinfo.organizeid,
  3729. _type = US.userInfo.type,
  3730. _org = US.userInfo.org,
  3731. _role = US.userInfo.role,
  3732. _classId = US.userInfo.classid,
  3733. _TscreenType = 1
  3734. _screenType = 2,
  3735. _SscreenType = 3;
  3736. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3737. return;
  3738. }
  3739. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3740. switch (str) {
  3741. case "studnetProject": //好友打开
  3742. _formdiv = new U.UF.UI.form(
  3743. "我的项目",
  3744. $$("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 }), {
  3745. "id": "studnetProject",
  3746. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3747. "onresize": function () { }
  3748. }, {
  3749. closecallback: function () { }
  3750. }, { "style": { "height": "36px" } }).form; //创建窗体
  3751. _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); } }
  3752. break;
  3753. case "studentEvaluate": //好友打开
  3754. _formdiv = new U.UF.UI.form(
  3755. "我的评价",
  3756. $$("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 }), {
  3757. "id": "studentEvaluate",
  3758. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3759. "onresize": function () { }
  3760. }, {
  3761. closecallback: function () { }
  3762. }, { "style": { "height": "36px" } }).form; //创建窗体
  3763. _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); } }
  3764. break;
  3765. case "my":
  3766. _formdiv = new U.UF.UI.form(
  3767. "我的资料",
  3768. $$("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 }), {
  3769. "id": "my",
  3770. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3771. "onresize": function () { }
  3772. }, {
  3773. closecallback: function () { }
  3774. }, { "style": { "height": "36px" } }).form; //创建窗体
  3775. _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); } }
  3776. break;
  3777. case "program":
  3778. _formdiv = new U.UF.UI.form(
  3779. "编程平台",
  3780. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3781. "id": "program",
  3782. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3783. "onresize": function () { }
  3784. }, {
  3785. closecallback: function () { }
  3786. }, { "style": { "height": "36px" } }).form; //创建窗体
  3787. _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); } }
  3788. break;
  3789. case "library":
  3790. _formdiv = new U.UF.UI.form(
  3791. "素材库",
  3792. $$("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 }), {
  3793. "id": "library",
  3794. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3795. "onresize": function () { }
  3796. }, {
  3797. closecallback: function () { }
  3798. }, { "style": { "height": "36px" } }).form; //创建窗体
  3799. _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); } }
  3800. break;
  3801. case "whiteboard":
  3802. _formdiv = new U.UF.UI.form(
  3803. "电子白板",
  3804. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3805. "id": "whiteboard",
  3806. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3807. "onresize": function () { }
  3808. }, {
  3809. closecallback: function () { }
  3810. }, { "style": { "height": "36px" } }).form; //创建窗体
  3811. _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); } }
  3812. break;
  3813. case "investigation":
  3814. _formdiv = new U.UF.UI.form(
  3815. "问卷调查",
  3816. $$("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 }), {
  3817. "id": "investigation",
  3818. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3819. "onresize": function () { }
  3820. }, {
  3821. closecallback: function () { }
  3822. }, { "style": { "height": "36px" } }).form; //创建窗体
  3823. _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); } }
  3824. break;
  3825. case "note":
  3826. _formdiv = new U.UF.UI.form(
  3827. "便签分类",
  3828. $$("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 }), {
  3829. "id": "note",
  3830. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3831. "onresize": function () { }
  3832. }, {
  3833. closecallback: function () { }
  3834. }, { "style": { "height": "36px" } }).form; //创建窗体
  3835. _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); } }
  3836. break;
  3837. // case "score":
  3838. // _formdiv = new U.UF.UI.form(
  3839. // "量规评分",
  3840. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3841. // "id": "score",
  3842. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3843. // "onresize": function() {}
  3844. // }, {
  3845. // closecallback: function() {}
  3846. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3847. // _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); } }
  3848. // break;
  3849. case "mind":
  3850. _formdiv = new U.UF.UI.form(
  3851. "思维导图",
  3852. $$("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"
  3853. "id": "mind",
  3854. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3855. "onresize": function () { }
  3856. }, {
  3857. closecallback: function () { }
  3858. }, { "style": { "height": "36px" } }).form; //创建窗体
  3859. _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); } }
  3860. break;
  3861. case "doc":
  3862. // U.MD.D.I.isRoom();
  3863. _formdiv = new U.UF.UI.form(
  3864. "协同文档",
  3865. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3866. "id": "doc",
  3867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3868. "onresize": function () { }
  3869. }, {
  3870. closecallback: function () { }
  3871. }, { "style": { "height": "36px" } }).form; //创建窗体
  3872. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3873. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3874. // })
  3875. _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); } }
  3876. break;
  3877. case "studentStudy":
  3878. _formdiv = new U.UF.UI.form(
  3879. "课程中心",
  3880. $$("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
  3881. "id": "studentStudy",
  3882. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3883. "onresize": function () { }
  3884. }, {
  3885. closecallback: function () { }
  3886. }, { "style": { "height": "36px" } }).form; //创建窗体
  3887. _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); } }
  3888. break;
  3889. case "train": //好友打开
  3890. _formdiv = new U.UF.UI.form(
  3891. "训练平台",
  3892. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3893. "id": "train",
  3894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3895. "onresize": function () { }
  3896. }, {
  3897. closecallback: function () { }
  3898. }, { "style": { "height": "36px" } }).form; //创建窗体
  3899. _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); } }
  3900. break;
  3901. case "mindNetwork": //好友打开
  3902. _formdiv = new U.UF.UI.form(
  3903. "思维网格",
  3904. $$("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 }), {
  3905. "id": "mindNetwork",
  3906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3907. "onresize": function () { }
  3908. }, {
  3909. closecallback: function () { }
  3910. }, { "style": { "height": "36px" } }).form; //创建窗体
  3911. _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); } }
  3912. break;
  3913. case "studentClassRoom": //好友打开
  3914. _formdiv = new U.UF.UI.form(
  3915. "实时课堂",
  3916. $$("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 }), {
  3917. "id": "studentClassRoom",
  3918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3919. "onresize": function () { }
  3920. }, {
  3921. closecallback: function () { }
  3922. }, { "style": { "height": "36px" } }).form; //创建窗体
  3923. _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); } }
  3924. setTimeout(() => {
  3925. U.UF.F.windowZooming(_formdiv)
  3926. }, 0);
  3927. break;
  3928. }
  3929. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3930. switch (str) {
  3931. case "studnetProject": //好友打开
  3932. _formdiv = new U.UF.UI.form(
  3933. "我的项目",
  3934. $$("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 }), {
  3935. "id": "studnetProject",
  3936. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3937. "onresize": function () { }
  3938. }, {
  3939. closecallback: function () { }
  3940. }, { "style": { "height": "36px" } }).form; //创建窗体
  3941. _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); } }
  3942. break;
  3943. case "studentEvaluate": //好友打开
  3944. _formdiv = new U.UF.UI.form(
  3945. "我的评价",
  3946. $$("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 }), {
  3947. "id": "studentEvaluate",
  3948. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3949. "onresize": function () { }
  3950. }, {
  3951. closecallback: function () { }
  3952. }, { "style": { "height": "36px" } }).form; //创建窗体
  3953. _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); } }
  3954. break;
  3955. case "my":
  3956. _formdiv = new U.UF.UI.form(
  3957. "我的资料",
  3958. $$("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 }), {
  3959. "id": "my",
  3960. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3961. "onresize": function () { }
  3962. }, {
  3963. closecallback: function () { }
  3964. }, { "style": { "height": "36px" } }).form; //创建窗体
  3965. _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); } }
  3966. break;
  3967. case "program":
  3968. _formdiv = new U.UF.UI.form(
  3969. "编程平台",
  3970. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3971. "id": "program",
  3972. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3973. "onresize": function () { }
  3974. }, {
  3975. closecallback: function () { }
  3976. }, { "style": { "height": "36px" } }).form; //创建窗体
  3977. _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); } }
  3978. break;
  3979. case "library":
  3980. _formdiv = new U.UF.UI.form(
  3981. "素材库",
  3982. $$("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 }), {
  3983. "id": "library",
  3984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3985. "onresize": function () { }
  3986. }, {
  3987. closecallback: function () { }
  3988. }, { "style": { "height": "36px" } }).form; //创建窗体
  3989. _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); } }
  3990. break;
  3991. case "whiteboard":
  3992. _formdiv = new U.UF.UI.form(
  3993. "电子白板",
  3994. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3995. "id": "whiteboard",
  3996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3997. "onresize": function () { }
  3998. }, {
  3999. closecallback: function () { }
  4000. }, { "style": { "height": "36px" } }).form; //创建窗体
  4001. _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); } }
  4002. break;
  4003. case "investigation":
  4004. _formdiv = new U.UF.UI.form(
  4005. "问卷调查",
  4006. $$("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 }), {
  4007. "id": "investigation",
  4008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4009. "onresize": function () { }
  4010. }, {
  4011. closecallback: function () { }
  4012. }, { "style": { "height": "36px" } }).form; //创建窗体
  4013. _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); } }
  4014. break;
  4015. case "note":
  4016. _formdiv = new U.UF.UI.form(
  4017. "便签分类",
  4018. $$("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 }), {
  4019. "id": "note",
  4020. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4021. "onresize": function () { }
  4022. }, {
  4023. closecallback: function () { }
  4024. }, { "style": { "height": "36px" } }).form; //创建窗体
  4025. _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); } }
  4026. break;
  4027. // case "score":
  4028. // _formdiv = new U.UF.UI.form(
  4029. // "量规评分",
  4030. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4031. // "id": "score",
  4032. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4033. // "onresize": function() {}
  4034. // }, {
  4035. // closecallback: function() {}
  4036. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4037. // _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); } }
  4038. // break;
  4039. case "mind":
  4040. _formdiv = new U.UF.UI.form(
  4041. "思维导图",
  4042. $$("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"
  4043. "id": "mind",
  4044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4045. "onresize": function () { }
  4046. }, {
  4047. closecallback: function () { }
  4048. }, { "style": { "height": "36px" } }).form; //创建窗体
  4049. _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); } }
  4050. break;
  4051. case "doc":
  4052. // U.MD.D.I.isRoom();
  4053. _formdiv = new U.UF.UI.form(
  4054. "协同文档",
  4055. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4056. "id": "doc",
  4057. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4058. "onresize": function () { }
  4059. }, {
  4060. closecallback: function () { }
  4061. }, { "style": { "height": "36px" } }).form; //创建窗体
  4062. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4063. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4064. })
  4065. _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); } }
  4066. break;
  4067. case "train": //好友打开
  4068. _formdiv = new U.UF.UI.form(
  4069. "训练平台",
  4070. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4071. "id": "train",
  4072. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4073. "onresize": function () { }
  4074. }, {
  4075. closecallback: function () { }
  4076. }, { "style": { "height": "36px" } }).form; //创建窗体
  4077. _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); } }
  4078. break;
  4079. case "studentStudy":
  4080. _formdiv = new U.UF.UI.form(
  4081. "课程中心",
  4082. $$("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
  4083. "id": "studentStudy",
  4084. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4085. "onresize": function () { }
  4086. }, {
  4087. closecallback: function () { }
  4088. }, { "style": { "height": "36px" } }).form; //创建窗体
  4089. _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); } }
  4090. break;
  4091. case "mindNetwork": //好友打开
  4092. _formdiv = new U.UF.UI.form(
  4093. "思维网格",
  4094. $$("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 }), {
  4095. "id": "mindNetwork",
  4096. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4097. "onresize": function () { }
  4098. }, {
  4099. closecallback: function () { }
  4100. }, { "style": { "height": "36px" } }).form; //创建窗体
  4101. _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); } }
  4102. break;
  4103. case "studentClassRoom": //好友打开
  4104. _formdiv = new U.UF.UI.form(
  4105. "实时课堂",
  4106. $$("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 }), {
  4107. "id": "studentClassRoom",
  4108. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4109. "onresize": function () { }
  4110. }, {
  4111. closecallback: function () { }
  4112. }, { "style": { "height": "36px" } }).form; //创建窗体
  4113. _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); } }
  4114. setTimeout(() => {
  4115. U.UF.F.windowZooming(_formdiv)
  4116. }, 0);
  4117. break;
  4118. }
  4119. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4120. //选择应用处理
  4121. switch (str) {
  4122. case "project": //好友打开
  4123. _formdiv = new U.UF.UI.form(
  4124. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4125. $$("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 }), {
  4126. "id": "project",
  4127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4128. "onresize": function () { }
  4129. }, {
  4130. closecallback: function () { }
  4131. }, { "style": { "height": "36px" } }).form; //创建窗体
  4132. _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); } }
  4133. break;
  4134. case "student":
  4135. _formdiv = new U.UF.UI.form(
  4136. "学生管理",
  4137. $$("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 }), {
  4138. "id": "student",
  4139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4140. "onresize": function () { }
  4141. }, {
  4142. closecallback: function () { }
  4143. }, { "style": { "height": "36px" } }).form; //创建窗体
  4144. _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); } }
  4145. break;
  4146. case "evaluate":
  4147. _formdiv = new U.UF.UI.form(
  4148. "学生评价",
  4149. $$("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 }), {
  4150. "id": "evaluate",
  4151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4152. "onresize": function () { }
  4153. }, {
  4154. closecallback: function () { }
  4155. }, { "style": { "height": "36px" } }).form; //创建窗体
  4156. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4157. break;
  4158. case "sys":
  4159. _formdiv = new U.UF.UI.form(
  4160. "目标管理",
  4161. $$("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 }), {
  4162. "id": "sys",
  4163. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4164. "onresize": function () { }
  4165. }, {
  4166. closecallback: function () { }
  4167. }, { "style": { "height": "36px" } }).form; //创建窗体
  4168. _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); } }
  4169. break;
  4170. case "courseDesign":
  4171. _formdiv = new U.UF.UI.form(
  4172. "项目设计",
  4173. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4174. "id": "courseDesign",
  4175. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4176. "onresize": function () { }
  4177. }, {
  4178. closecallback: function () { }
  4179. }, { "style": { "height": "36px" } }).form; //创建窗体
  4180. _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); } }
  4181. break;
  4182. case "program":
  4183. _formdiv = new U.UF.UI.form(
  4184. "编程平台",
  4185. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4186. "id": "program",
  4187. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4188. "onresize": function () { }
  4189. }, {
  4190. closecallback: function () { }
  4191. }, { "style": { "height": "36px" } }).form; //创建窗体
  4192. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4193. break;
  4194. case "class":
  4195. _formdiv = new U.UF.UI.form(
  4196. "班级管理",
  4197. $$("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 }), {
  4198. "id": "class",
  4199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4200. "onresize": function () { }
  4201. }, {
  4202. closecallback: function () { }
  4203. }, { "style": { "height": "36px" } }).form; //创建窗体
  4204. _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); } }
  4205. break;
  4206. case "Grade":
  4207. _formdiv = new U.UF.UI.form(
  4208. "年级管理",
  4209. $$("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 }), {
  4210. "id": "Grade",
  4211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4212. "onresize": function () { }
  4213. }, {
  4214. closecallback: function () { }
  4215. }, { "style": { "height": "36px" } }).form; //创建窗体
  4216. _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); } }
  4217. break;
  4218. case "teacherOffice":
  4219. _formdiv = new U.UF.UI.form(
  4220. "教研室",
  4221. $$("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 }), {
  4222. "id": "teacherOffice",
  4223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4224. "onresize": function () { }
  4225. }, {
  4226. closecallback: function () { }
  4227. }, { "style": { "height": "36px" } }).form; //创建窗体
  4228. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4229. break;
  4230. case "my":
  4231. _formdiv = new U.UF.UI.form(
  4232. "我的资料",
  4233. $$("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 }), {
  4234. "id": "my",
  4235. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4236. "onresize": function () { }
  4237. }, {
  4238. closecallback: function () { }
  4239. }, { "style": { "height": "36px" } }).form; //创建窗体
  4240. _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); } }
  4241. break;
  4242. case "notice":
  4243. _formdiv = new U.UF.UI.form(
  4244. "通知公告",
  4245. $$("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 }), {
  4246. "id": "notice",
  4247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4248. "onresize": function () { }
  4249. }, {
  4250. closecallback: function () { }
  4251. }, { "style": { "height": "36px" } }).form; //创建窗体
  4252. _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); } }
  4253. break;
  4254. case "library":
  4255. _formdiv = new U.UF.UI.form(
  4256. "素材库",
  4257. $$("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 }), {
  4258. "id": "library",
  4259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4260. "onresize": function () { }
  4261. }, {
  4262. closecallback: function () { }
  4263. }, { "style": { "height": "36px" } }).form; //创建窗体
  4264. _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); } }
  4265. break;
  4266. case "whiteboard":
  4267. _formdiv = new U.UF.UI.form(
  4268. "电子白板",
  4269. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4270. "id": "whiteboard",
  4271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4272. "onresize": function () { }
  4273. }, {
  4274. closecallback: function () { }
  4275. }, { "style": { "height": "36px" } }).form; //创建窗体
  4276. _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); } }
  4277. break;
  4278. case "investigation":
  4279. _formdiv = new U.UF.UI.form(
  4280. "问卷调查",
  4281. $$("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 }), {
  4282. "id": "investigation",
  4283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4284. "onresize": function () { }
  4285. }, {
  4286. closecallback: function () { }
  4287. }, { "style": { "height": "36px" } }).form; //创建窗体
  4288. _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); } }
  4289. break;
  4290. case "note":
  4291. _formdiv = new U.UF.UI.form(
  4292. "便签分类",
  4293. $$("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 }), {
  4294. "id": "note",
  4295. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4296. "onresize": function () { }
  4297. }, {
  4298. closecallback: function () { }
  4299. }, { "style": { "height": "36px" } }).form; //创建窗体
  4300. _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); } }
  4301. break;
  4302. // case "score":
  4303. // _formdiv = new U.UF.UI.form(
  4304. // "量规评分",
  4305. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4306. // "id": "score",
  4307. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4308. // "onresize": function() {}
  4309. // }, {
  4310. // closecallback: function() {}
  4311. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4312. // _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); } }
  4313. // break;
  4314. case "mind":
  4315. _formdiv = new U.UF.UI.form(
  4316. "思维导图",
  4317. $$("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"
  4318. "id": "mind",
  4319. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4320. "onresize": function () { }
  4321. }, {
  4322. closecallback: function () { }
  4323. }, { "style": { "height": "36px" } }).form; //创建窗体
  4324. _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); } }
  4325. break;
  4326. case "doc":
  4327. // U.MD.D.I.isRoom();
  4328. _formdiv = new U.UF.UI.form(
  4329. "协同文档",
  4330. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4331. "id": "doc",
  4332. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4333. "onresize": function () { }
  4334. }, {
  4335. closecallback: function () { }
  4336. }, { "style": { "height": "36px" } }).form; //创建窗体
  4337. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4338. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4339. })
  4340. _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); } }
  4341. break;
  4342. case "study":
  4343. _formdiv = new U.UF.UI.form(
  4344. "课程中心",
  4345. $$("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
  4346. "id": "study",
  4347. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4348. "onresize": function () { }
  4349. }, {
  4350. closecallback: function () { }
  4351. }, { "style": { "height": "36px" } }).form; //创建窗体
  4352. _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); } }
  4353. break;
  4354. case "mindNetwork": //好友打开
  4355. _formdiv = new U.UF.UI.form(
  4356. "思维网格",
  4357. $$("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 }), {
  4358. "id": "mindNetwork",
  4359. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4360. "onresize": function () { }
  4361. }, {
  4362. closecallback: function () { }
  4363. }, { "style": { "height": "36px" } }).form; //创建窗体
  4364. _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); } }
  4365. break;
  4366. case "train": //好友打开
  4367. _formdiv = new U.UF.UI.form(
  4368. "训练平台",
  4369. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4370. "id": "mindNetwork",
  4371. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4372. "onresize": function () { }
  4373. }, {
  4374. closecallback: function () { }
  4375. }, { "style": { "height": "36px" } }).form; //创建窗体
  4376. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4377. break;
  4378. case "teacherClassRoom": //好友打开
  4379. _formdiv = new U.UF.UI.form(
  4380. "实时课堂",
  4381. $$("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 }), {
  4382. "id": "teacherClassRoom",
  4383. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4384. "onresize": function () { }
  4385. }, {
  4386. closecallback: function () { }
  4387. }, { "style": { "height": "36px" } }).form; //创建窗体
  4388. _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); } }
  4389. setTimeout(() => {
  4390. U.UF.F.windowZooming(_formdiv)
  4391. }, 0);
  4392. break;
  4393. }
  4394. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4395. switch (str) {
  4396. case "project": //好友打开
  4397. _formdiv = new U.UF.UI.form(
  4398. "课程管理",
  4399. $$("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 }), {
  4400. "id": "project",
  4401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4402. "onresize": function () { }
  4403. }, {
  4404. closecallback: function () { }
  4405. }, { "style": { "height": "36px" } }).form; //创建窗体
  4406. _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); } }
  4407. break;
  4408. case "evaluate":
  4409. _formdiv = new U.UF.UI.form(
  4410. "学生评价",
  4411. $$("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 }), {
  4412. "id": "evaluate",
  4413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4414. "onresize": function () { }
  4415. }, {
  4416. closecallback: function () { }
  4417. }, { "style": { "height": "36px" } }).form; //创建窗体
  4418. _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); } }
  4419. break;
  4420. case "notice":
  4421. _formdiv = new U.UF.UI.form(
  4422. "通知公告",
  4423. $$("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 }), {
  4424. "id": "notice",
  4425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4426. "onresize": function () { }
  4427. }, {
  4428. closecallback: function () { }
  4429. }, { "style": { "height": "36px" } }).form; //创建窗体
  4430. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4431. break;
  4432. case "stuLibrary":
  4433. _formdiv = new U.UF.UI.form(
  4434. "学习资料",
  4435. $$("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 }), {
  4436. "id": "stuLibrary",
  4437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4438. "onresize": function () { }
  4439. }, {
  4440. closecallback: function () { }
  4441. }, { "style": { "height": "36px" } }).form; //创建窗体
  4442. _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); } }
  4443. break;
  4444. case "program":
  4445. _formdiv = new U.UF.UI.form(
  4446. "编程平台",
  4447. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4448. "id": "program",
  4449. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4450. "onresize": function () { }
  4451. }, {
  4452. closecallback: function () { }
  4453. }, { "style": { "height": "36px" } }).form; //创建窗体
  4454. _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); } }
  4455. break;
  4456. case "whiteboard":
  4457. _formdiv = new U.UF.UI.form(
  4458. "电子白板",
  4459. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4460. "id": "whiteboard",
  4461. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4462. "onresize": function () { }
  4463. }, {
  4464. closecallback: function () { }
  4465. }, { "style": { "height": "36px" } }).form; //创建窗体
  4466. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4467. break;
  4468. case "investigation":
  4469. _formdiv = new U.UF.UI.form(
  4470. "问卷调查",
  4471. $$("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 }), {
  4472. "id": "investigation",
  4473. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4474. "onresize": function () { }
  4475. }, {
  4476. closecallback: function () { }
  4477. }, { "style": { "height": "36px" } }).form; //创建窗体
  4478. _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); } }
  4479. break;
  4480. case "mind":
  4481. _formdiv = new U.UF.UI.form(
  4482. "思维导图",
  4483. $$("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"
  4484. "id": "mind",
  4485. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4486. "onresize": function () { }
  4487. }, {
  4488. closecallback: function () { }
  4489. }, { "style": { "height": "36px" } }).form; //创建窗体
  4490. _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); } }
  4491. break;
  4492. case "doc":
  4493. // U.MD.D.I.isRoom();
  4494. _formdiv = new U.UF.UI.form(
  4495. "协同文档",
  4496. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4497. "id": "doc",
  4498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4499. "onresize": function () { }
  4500. }, {
  4501. closecallback: function () { }
  4502. }, { "style": { "height": "36px" } }).form; //创建窗体
  4503. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4504. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4505. })
  4506. _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); } }
  4507. break;
  4508. case "study":
  4509. _formdiv = new U.UF.UI.form(
  4510. "课程中心",
  4511. $$("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
  4512. "id": "study",
  4513. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4514. "onresize": function () { }
  4515. }, {
  4516. closecallback: function () { }
  4517. }, { "style": { "height": "36px" } }).form; //创建窗体
  4518. _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); } }
  4519. break;
  4520. case "mindNetwork": //好友打开
  4521. _formdiv = new U.UF.UI.form(
  4522. "思维网格",
  4523. $$("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 }), {
  4524. "id": "mindNetwork",
  4525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4526. "onresize": function () { }
  4527. }, {
  4528. closecallback: function () { }
  4529. }, { "style": { "height": "36px" } }).form; //创建窗体
  4530. _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); } }
  4531. break;
  4532. case "train": //好友打开
  4533. _formdiv = new U.UF.UI.form(
  4534. "训练平台",
  4535. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4536. "id": "train",
  4537. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4538. "onresize": function () { }
  4539. }, {
  4540. closecallback: function () { }
  4541. }, { "style": { "height": "36px" } }).form; //创建窗体
  4542. _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); } }
  4543. break;
  4544. case "sys":
  4545. _formdiv = new U.UF.UI.form(
  4546. "目标管理",
  4547. $$("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 }), {
  4548. "id": "sys",
  4549. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4550. "onresize": function () { }
  4551. }, {
  4552. closecallback: function () { }
  4553. }, { "style": { "height": "36px" } }).form; //创建窗体
  4554. _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); } }
  4555. break;
  4556. case "courseDesign":
  4557. _formdiv = new U.UF.UI.form(
  4558. "项目设计",
  4559. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4560. "id": "courseDesign",
  4561. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4562. "onresize": function () { }
  4563. }, {
  4564. closecallback: function () { }
  4565. }, { "style": { "height": "36px" } }).form; //创建窗体
  4566. _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); } }
  4567. break;
  4568. }
  4569. } else if (!_type) {
  4570. switch (str) {
  4571. case "my":
  4572. _formdiv = new U.UF.UI.form(
  4573. "我的资料",
  4574. $$("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 }), {
  4575. "id": "my",
  4576. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4577. "onresize": function () { }
  4578. }, {
  4579. closecallback: function () { }
  4580. }, { "style": { "height": "36px" } }).form; //创建窗体
  4581. _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); } }
  4582. break;
  4583. }
  4584. }
  4585. switch (str) {
  4586. // AIprogram2 AI体验 aihub.cocorobo.cn
  4587. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4588. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4589. case "formulaEdi": //公式编辑
  4590. _formdiv = new U.UF.UI.form(
  4591. "公式编辑",
  4592. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4593. "id": "formulaEdi",
  4594. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4595. "onresize": function () { }
  4596. }, {
  4597. closecallback: function () { }
  4598. }, { "style": { "height": "36px" } }).form; //创建窗体
  4599. _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); } }
  4600. break;
  4601. case "molStr": //分子结构
  4602. _formdiv = new U.UF.UI.form(
  4603. "分子结构",
  4604. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4605. "id": "molStr",
  4606. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4607. "onresize": function () { }
  4608. }, {
  4609. closecallback: function () { }
  4610. }, { "style": { "height": "36px" } }).form; //创建窗体
  4611. _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); } }
  4612. break;
  4613. case "timeAxis": //时间轴
  4614. _formdiv = new U.UF.UI.form(
  4615. "时间轴",
  4616. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4617. "id": "timeAxis",
  4618. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4619. "onresize": function () { }
  4620. }, {
  4621. closecallback: function () { }
  4622. }, { "style": { "height": "36px" } }).form; //创建窗体
  4623. _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); } }
  4624. break;
  4625. case "AIprogram2": //AI体验
  4626. _formdiv = new U.UF.UI.form(
  4627. "AI体验",
  4628. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4629. "id": "AIprogram2",
  4630. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4631. "onresize": function () { }
  4632. }, {
  4633. closecallback: function () { }
  4634. }, { "style": { "height": "36px" } }).form; //创建窗体
  4635. _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); } }
  4636. break;
  4637. case "Pythonprogram": //python编程
  4638. _formdiv = new U.UF.UI.form(
  4639. "Python编程",
  4640. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4641. "id": "Pythonprogram",
  4642. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4643. "onresize": function () { }
  4644. }, {
  4645. closecallback: function () { }
  4646. }, { "style": { "height": "36px" } }).form; //创建窗体
  4647. _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); } }
  4648. break;
  4649. case "AIprogram": //ai编程
  4650. _formdiv = new U.UF.UI.form(
  4651. "AI编程平台",
  4652. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4653. "id": "AIprogram",
  4654. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4655. "onresize": function () { }
  4656. }, {
  4657. closecallback: function () { }
  4658. }, { "style": { "height": "36px" } }).form; //创建窗体
  4659. _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); } }
  4660. break;
  4661. case "CocoPi": //CocoPi
  4662. _formdiv = new U.UF.UI.form(
  4663. "CocoPi",
  4664. $$("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" }), {
  4665. "id": "CocoPi",
  4666. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4667. "onresize": function () { }
  4668. }, {
  4669. closecallback: function () { }
  4670. }, { "style": { "height": "36px" } }).form; //创建窗体
  4671. _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); } }
  4672. break;
  4673. case "Wood": //Wood
  4674. _formdiv = new U.UF.UI.form(
  4675. "海龟编程",
  4676. $$("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/" }), {
  4677. "id": "Wood",
  4678. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4679. "onresize": function () { }
  4680. }, {
  4681. closecallback: function () { }
  4682. }, { "style": { "height": "36px" } }).form; //创建窗体
  4683. _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); } }
  4684. break;
  4685. case "car": //模拟驾驶
  4686. _formdiv = new U.UF.UI.form(
  4687. "模拟驾驶",
  4688. $$("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/" }), {
  4689. "id": "car",
  4690. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4691. "onresize": function () { }
  4692. }, {
  4693. closecallback: function () { }
  4694. }, { "style": { "height": "36px" } }).form; //创建窗体
  4695. _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); } }
  4696. break;
  4697. case "lineSearch": //路径搜索
  4698. _formdiv = new U.UF.UI.form(
  4699. "路径搜索",
  4700. $$("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/" }), {
  4701. "id": "lineSearch",
  4702. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4703. "onresize": function () { }
  4704. }, {
  4705. closecallback: function () { }
  4706. }, { "style": { "height": "36px" } }).form; //创建窗体
  4707. _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); } }
  4708. break;
  4709. case "deepLearning": //深度学习
  4710. _formdiv = new U.UF.UI.form(
  4711. "深度学习",
  4712. $$("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/#" }), {
  4713. "id": "deepLearning",
  4714. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4715. "onresize": function () { }
  4716. }, {
  4717. closecallback: function () { }
  4718. }, { "style": { "height": "36px" } }).form; //创建窗体
  4719. _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); } }
  4720. break;
  4721. case "allHistory": //深度学习
  4722. _formdiv = new U.UF.UI.form(
  4723. "全历史",
  4724. $$("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/" }), {
  4725. "id": "allHistory",
  4726. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4727. "onresize": function () { }
  4728. }, {
  4729. closecallback: function () { }
  4730. }, { "style": { "height": "36px" } }).form; //创建窗体
  4731. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4732. break;
  4733. case "chatPDF": //ai编程
  4734. _formdiv = new U.UF.UI.form(
  4735. "chatPDF",
  4736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4737. "id": "chatPDF",
  4738. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4739. "onresize": function () { }
  4740. }, {
  4741. closecallback: function () { }
  4742. }, { "style": { "height": "36px" } }).form; //创建窗体
  4743. _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); } }
  4744. break;
  4745. case "resources": //国家教育
  4746. _formdiv = new U.UF.UI.form(
  4747. "国家教育",
  4748. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4749. "id": "resources",
  4750. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4751. "onresize": function () { }
  4752. }, {
  4753. closecallback: function () { }
  4754. }, { "style": { "height": "36px" } }).form; //创建窗体
  4755. _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); } }
  4756. break;
  4757. case "codeEdit": //源码编辑
  4758. _formdiv = new U.UF.UI.form(
  4759. "源码编辑",
  4760. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4761. "id": "codeEdit",
  4762. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4763. "onresize": function () { }
  4764. }, {
  4765. closecallback: function () { }
  4766. }, { "style": { "height": "36px" } }).form; //创建窗体
  4767. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4768. break; //
  4769. case "MindMap": //MindMap
  4770. _formdiv = new U.UF.UI.form(
  4771. "MindMap",
  4772. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4773. "id": "MindMap",
  4774. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4775. "onresize": function () { }
  4776. }, {
  4777. closecallback: function () { }
  4778. }, { "style": { "height": "36px" } }).form; //创建窗体
  4779. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4780. break;
  4781. case "netWorkPanel": //netWorkPanel
  4782. _formdiv = new U.UF.UI.form(
  4783. "netWorkPanel",
  4784. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4785. "id": "netWorkPanel",
  4786. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4787. "onresize": function () { }
  4788. }, {
  4789. closecallback: function () { }
  4790. }, { "style": { "height": "36px" } }).form; //创建窗体
  4791. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4792. break;
  4793. case "GeoGebra": //GeoGebra
  4794. _formdiv = new U.UF.UI.form(
  4795. "GeoGebra",
  4796. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  4797. "id": "GeoGebra",
  4798. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4799. "onresize": function () { }
  4800. }, {
  4801. closecallback: function () { }
  4802. }, { "style": { "height": "36px" } }).form; //创建窗体
  4803. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4804. break;
  4805. case "translation": //翻译
  4806. _formdiv = new U.UF.UI.form(
  4807. "翻译",
  4808. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4809. "id": "translation",
  4810. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4811. "onresize": function () { }
  4812. }, {
  4813. closecallback: function () { }
  4814. }, { "style": { "height": "36px" } }).form; //创建窗体
  4815. _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); } }
  4816. break;
  4817. case "mohe": //魔盒
  4818. _formdiv = new U.UF.UI.form(
  4819. "魔盒识字",
  4820. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4821. "id": "mohe",
  4822. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4823. "onresize": function () { }
  4824. }, {
  4825. closecallback: function () { }
  4826. }, { "style": { "height": "36px" } }).form; //创建窗体
  4827. _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); } }
  4828. break;
  4829. case "24game": //24点
  4830. _formdiv = new U.UF.UI.form(
  4831. "24点",
  4832. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4833. "id": "24game",
  4834. "style": { "width": "375px", "height": "667px", "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/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4840. break;
  4841. case "case":
  4842. _formdiv = new U.UF.UI.form(
  4843. "课程进展",
  4844. $$("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 }), {
  4845. "id": "case",
  4846. "style": { "width": "90%", "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/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4852. break;
  4853. case "snf":
  4854. _formdiv = new U.UF.UI.form(
  4855. "赛诺梵",
  4856. $$("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" }), {
  4857. "id": "snf",
  4858. "style": { "width": "90%", "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/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4864. break;
  4865. case "hanFamily":
  4866. _formdiv = new U.UF.UI.form(
  4867. "汉字家族",
  4868. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4869. "id": "hanFamily",
  4870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4871. "onresize": function () { }
  4872. }, {
  4873. closecallback: function () { }
  4874. }, { "style": { "height": "36px" } }).form; //创建窗体
  4875. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4876. break;
  4877. case "hanClassics":
  4878. _formdiv = new U.UF.UI.form(
  4879. "国学经典",
  4880. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4881. "id": "hanClassics",
  4882. "style": { "width": "90%", "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/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4888. break;
  4889. case "hanTraining":
  4890. _formdiv = new U.UF.UI.form(
  4891. "笔画训练",
  4892. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4893. "id": "hanTraining",
  4894. "style": { "width": "90%", "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/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4900. break;
  4901. case "hanClass":
  4902. _formdiv = new U.UF.UI.form(
  4903. "书法课堂",
  4904. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4905. "id": "hanClass",
  4906. "style": { "width": "90%", "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/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4912. break;
  4913. case "han":
  4914. _formdiv = new U.UF.UI.form(
  4915. "汉字宫",
  4916. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4917. "id": "han",
  4918. "style": { "width": "90%", "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/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4924. break;
  4925. case "projectGM": //课程管理
  4926. _formdiv = new U.UF.UI.form(
  4927. "课程管理",
  4928. $$("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 }), {
  4929. "id": "projectGM",
  4930. "style": { "width": "90%", "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/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4936. break;
  4937. case "studyGM": //课程中心
  4938. _formdiv = new U.UF.UI.form(
  4939. "课程中心",
  4940. $$("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
  4941. "id": "study",
  4942. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4948. break;
  4949. // studentGM
  4950. case "studentGM": //学生管理
  4951. _formdiv = new U.UF.UI.form(
  4952. "学生管理",
  4953. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  4954. "id": "studentGM",
  4955. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4956. "onresize": function () { }
  4957. }, {
  4958. closecallback: function () { }
  4959. }, { "style": { "height": "36px" } }).form; //创建窗体
  4960. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4961. break;
  4962. case "evaluateGM": //学生评价
  4963. _formdiv = new U.UF.UI.form(
  4964. "学生评价",
  4965. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4966. "id": "evaluateGM",
  4967. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4968. "onresize": function () { }
  4969. }, {
  4970. closecallback: function () { }
  4971. }, { "style": { "height": "36px" } }).form; //创建窗体
  4972. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4973. break;
  4974. // classGM
  4975. case "classGM": //班级管理
  4976. _formdiv = new U.UF.UI.form(
  4977. "班级管理",
  4978. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4979. "id": "classGM",
  4980. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4981. "onresize": function () { }
  4982. }, {
  4983. closecallback: function () { }
  4984. }, { "style": { "height": "36px" } }).form; //创建窗体
  4985. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4986. break;
  4987. // dataGM
  4988. case "dataGM":
  4989. _formdiv = new U.UF.UI.form(
  4990. "我的资料",
  4991. $$("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 }), {
  4992. "id": "dataGM",
  4993. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4994. "onresize": function () { }
  4995. }, {
  4996. closecallback: function () { }
  4997. }, { "style": { "height": "36px" } }).form; //创建窗体
  4998. _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); } }
  4999. break;
  5000. // caseGM
  5001. case "caseGM": //课程进展
  5002. _formdiv = new U.UF.UI.form(
  5003. "课程进展",
  5004. $$("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 }), {
  5005. "id": "caseGM",
  5006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5007. "onresize": function () { }
  5008. }, {
  5009. closecallback: function () { }
  5010. }, { "style": { "height": "36px" } }).form; //创建窗体
  5011. _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); } }
  5012. break;
  5013. // meterialGM
  5014. case "meterialGM": //素材库
  5015. _formdiv = new U.UF.UI.form(
  5016. "素材库",
  5017. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  5018. "id": "meterialGM",
  5019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5020. "onresize": function () { }
  5021. }, {
  5022. closecallback: function () { }
  5023. }, { "style": { "height": "36px" } }).form; //创建窗体
  5024. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5025. break;
  5026. // evaluateSGM
  5027. case "evaluateSGM": //我的评价
  5028. _formdiv = new U.UF.UI.form(
  5029. "我的评价",
  5030. $$("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 }), {
  5031. "id": "evaluateSGM",
  5032. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5033. "onresize": function () { }
  5034. }, {
  5035. closecallback: function () { }
  5036. }, { "style": { "height": "36px" } }).form; //创建窗体
  5037. _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); } }
  5038. break;
  5039. case "jupyter": //jupyter
  5040. _formdiv = new U.UF.UI.form(
  5041. "jupyter",
  5042. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5043. "id": "jupyter",
  5044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5045. "onresize": function () { }
  5046. }, {
  5047. closecallback: function () { }
  5048. }, { "style": { "height": "36px" } }).form; //创建窗体
  5049. _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); } }
  5050. break;
  5051. case "number": //数字实验室
  5052. _formdiv = new U.UF.UI.form(
  5053. "数字实验室",
  5054. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5055. "id": "number",
  5056. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5057. "onresize": function () { }
  5058. }, {
  5059. closecallback: function () { }
  5060. }, { "style": { "height": "36px" } }).form; //创建窗体
  5061. _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); } }
  5062. break;
  5063. case "studentCourse": //项目管理 学生
  5064. _formdiv = new U.UF.UI.form(
  5065. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5066. $$("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 }), {
  5067. "id": "studentCourse",
  5068. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5069. "onresize": function () { }
  5070. }, {
  5071. closecallback: function () { }
  5072. }, { "style": { "height": "36px" } }).form; //创建窗体
  5073. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5074. break;
  5075. case "studentCourseS": //项目管理 老师
  5076. _formdiv = new U.UF.UI.form(
  5077. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5078. $$("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 }), {
  5079. "id": "studentCourseS",
  5080. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5081. "onresize": function () { }
  5082. }, {
  5083. closecallback: function () { }
  5084. }, { "style": { "height": "36px" } }).form; //创建窗体
  5085. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5086. break;
  5087. case "studentIndex": //项目中心
  5088. _formdiv = new U.UF.UI.form(
  5089. "项目中心",
  5090. $$("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 }), {
  5091. "id": "studentIndex",
  5092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5093. "onresize": function () { }
  5094. }, {
  5095. closecallback: function () { }
  5096. }, { "style": { "height": "36px" } }).form; //创建窗体
  5097. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5098. break;
  5099. case "CaseDesignS":
  5100. _formdiv = new U.UF.UI.form(
  5101. "项目进展",
  5102. $$("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 }), {
  5103. "id": "case",
  5104. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5105. "onresize": function () { }
  5106. }, {
  5107. closecallback: function () { }
  5108. }, { "style": { "height": "36px" } }).form; //创建窗体
  5109. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5110. break;
  5111. case "tcStudent": //腾讯学生管理
  5112. _formdiv = new U.UF.UI.form(
  5113. "学生管理",
  5114. $$("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 }), {
  5115. "id": "tcStudent",
  5116. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5117. "onresize": function () { }
  5118. }, {
  5119. closecallback: function () { }
  5120. }, { "style": { "height": "36px" } }).form; //创建窗体
  5121. _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); } }
  5122. break;
  5123. case "tcSchool": //腾讯学校管理
  5124. _formdiv = new U.UF.UI.form(
  5125. "学校管理",
  5126. $$("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 }), {
  5127. "id": "tcSchool",
  5128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5129. "onresize": function () { }
  5130. }, {
  5131. closecallback: function () { }
  5132. }, { "style": { "height": "36px" } }).form; //创建窗体
  5133. _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); } }
  5134. break;
  5135. case "tcTeacher": //腾讯学校管理
  5136. _formdiv = new U.UF.UI.form(
  5137. "教师管理",
  5138. $$("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 }), {
  5139. "id": "tcTeacher",
  5140. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5141. "onresize": function () { }
  5142. }, {
  5143. closecallback: function () { }
  5144. }, { "style": { "height": "36px" } }).form; //创建窗体
  5145. _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); } }
  5146. break;
  5147. case "tcData": //腾讯我的资料
  5148. _formdiv = new U.UF.UI.form(
  5149. "我的资料",
  5150. $$("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 }), {
  5151. "id": "tcData",
  5152. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5153. "onresize": function () { }
  5154. }, {
  5155. closecallback: function () { }
  5156. }, { "style": { "height": "36px" } }).form; //创建窗体
  5157. _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); } }
  5158. break;
  5159. case "tcNotice": //腾讯消息通知
  5160. _formdiv = new U.UF.UI.form(
  5161. "消息通知",
  5162. $$("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 }), {
  5163. "id": "tcNotice",
  5164. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5165. "onresize": function () { }
  5166. }, {
  5167. closecallback: function () { }
  5168. }, { "style": { "height": "36px" } }).form; //创建窗体
  5169. _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); } }
  5170. break;
  5171. case "myReport": //好友打开
  5172. _formdiv = new U.UF.UI.form(
  5173. "我的评价",
  5174. $$("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 }), {
  5175. "id": "myReport",
  5176. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5177. "onresize": function () { }
  5178. }, {
  5179. closecallback: function () { }
  5180. }, { "style": { "height": "36px" } }).form; //创建窗体
  5181. _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); } }
  5182. break;
  5183. case "learnAna": //好友打开
  5184. _formdiv = new U.UF.UI.form(
  5185. "学习分析",
  5186. $$("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 }), {
  5187. "id": "learnAna",
  5188. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5189. "onresize": function () { }
  5190. }, {
  5191. closecallback: function () { }
  5192. }, { "style": { "height": "36px" } }).form; //创建窗体
  5193. _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); } }
  5194. break;
  5195. case "AIChat": //AI共创
  5196. _formdiv = new U.UF.UI.form(
  5197. "AI共创",
  5198. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5199. "id": "AIChat",
  5200. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5201. "onresize": function () { }
  5202. }, {
  5203. istop: true,
  5204. closecallback: function () { $("#aichat_icon").remove(); },
  5205. narrowcallback: function () {
  5206. if (!$("#aichat_icon")[0]) {
  5207. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5208. }
  5209. },
  5210. }, { "style": { "height": "36px" } }).form; //创建窗体
  5211. _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); } }
  5212. break;
  5213. case "ainew": //AI共创
  5214. _formdiv = new U.UF.UI.form(
  5215. "AI协同",
  5216. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5217. "id": "ainew",
  5218. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5219. "onresize": function () { }
  5220. }, {
  5221. closecallback: function () { }
  5222. }, { "style": { "height": "36px" } }).form; //创建窗体
  5223. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5224. break;
  5225. case "gpt4": //gpt4
  5226. _formdiv = new U.UF.UI.form(
  5227. "AI助手",
  5228. $$("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 }), {
  5229. "id": "gpt4",
  5230. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5231. "onresize": function () { }
  5232. }, {
  5233. closecallback: function () { }
  5234. }, { "style": { "height": "36px" } }).form; //创建窗体
  5235. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5236. break;
  5237. case "aigpt": //gpt4
  5238. _formdiv = new U.UF.UI.form(
  5239. "AI助手+",
  5240. $$("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 }), {
  5241. "id": "aigpt",
  5242. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5243. "onresize": function () { }
  5244. }, {
  5245. closecallback: function () { }
  5246. }, { "style": { "height": "36px" } }).form; //创建窗体
  5247. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigpt.png)" }, "name": "AI助手+", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5248. break;
  5249. case "futureClass": //AI共创
  5250. _formdiv = new U.UF.UI.form(
  5251. "协同建构",
  5252. $$("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
  5253. "id": "synergyCourse",
  5254. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5255. "onresize": function () { }
  5256. }, {
  5257. closecallback: function () {
  5258. $("iframe", _formdiv)[0].contentWindow.loginout();
  5259. }
  5260. }, { "style": { "height": "36px" } }).form; //创建窗体
  5261. _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); } }
  5262. break;
  5263. case "aiagent": //ai agent
  5264. _formdiv = new U.UF.UI.form(
  5265. "AI Agent",
  5266. $$("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" }), {
  5267. "id": "AIAgent",
  5268. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5269. "onresize": function () { }
  5270. }, {
  5271. closecallback: function () { }
  5272. }, { "style": { "height": "36px" } }).form; //创建窗体
  5273. _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); } }
  5274. break;
  5275. case "dataBoard": //数据看板
  5276. _formdiv = new U.UF.UI.form(
  5277. "数据看板",
  5278. $$("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 }), {
  5279. "id": "dataBoard",
  5280. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5281. "onresize": function () { }
  5282. }, {
  5283. closecallback: function () { }
  5284. }, { "style": { "height": "36px" } }).form; //创建窗体
  5285. _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); } }
  5286. break;
  5287. case "dataBoardSies": //数据融合
  5288. _formdiv = new U.UF.UI.form(
  5289. "数据融合",
  5290. $$("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 }), {
  5291. "id": "dataBoardSies",
  5292. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5293. "onresize": function () { }
  5294. }, {
  5295. closecallback: function () { }
  5296. }, { "style": { "height": "36px" } }).form; //创建窗体
  5297. _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); } }
  5298. break;
  5299. case "dataBoardNew": //数据看板
  5300. _formdiv = new U.UF.UI.form(
  5301. "综合看板",
  5302. $$("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 }), {
  5303. "id": "dataBoardNew",
  5304. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5305. "onresize": function () { }
  5306. }, {
  5307. closecallback: function () { }
  5308. }, { "style": { "height": "36px" } }).form; //创建窗体
  5309. _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); } }
  5310. break;
  5311. case "dataBoardTest": //数据看板
  5312. _formdiv = new U.UF.UI.form(
  5313. "评测看板",
  5314. $$("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 }), {
  5315. "id": "dataBoardTest",
  5316. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5317. "onresize": function () { }
  5318. }, {
  5319. closecallback: function () { }
  5320. }, { "style": { "height": "36px" } }).form; //创建窗体
  5321. _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); } }
  5322. break;
  5323. case "AIAnalyse": //AI共创
  5324. _formdiv = new U.UF.UI.form(
  5325. "AI分析",
  5326. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5327. "id": "AIAnalyse",
  5328. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5329. "onresize": function () { }
  5330. }, {
  5331. closecallback: function () { }
  5332. }, { "style": { "height": "36px" } }).form; //创建窗体
  5333. _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); } }
  5334. break;
  5335. case "studioCourse": //AI共创
  5336. _formdiv = new U.UF.UI.form(
  5337. "工作管理",
  5338. $$("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 }), {
  5339. "id": "studioCourse",
  5340. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5341. "onresize": function () { }
  5342. }, {
  5343. closecallback: function () { }
  5344. }, { "style": { "height": "36px" } }).form; //创建窗体
  5345. _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); } }
  5346. break;
  5347. case "studioIndex": //AI共创
  5348. _formdiv = new U.UF.UI.form(
  5349. "工作中心",
  5350. $$("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 }), {
  5351. "id": "studioIndex",
  5352. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5353. "onresize": function () { }
  5354. }, {
  5355. closecallback: function () { }
  5356. }, { "style": { "height": "36px" } }).form; //创建窗体
  5357. _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); } }
  5358. break;
  5359. case "source":
  5360. _formdiv = new U.UF.UI.form(
  5361. "教学资源",
  5362. $$("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 }), {
  5363. "id": "source",
  5364. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5365. "onresize": function () { }
  5366. }, {
  5367. closecallback: function () { }
  5368. }, { "style": { "height": "36px" } }).form; //创建窗体
  5369. _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); } }
  5370. break;
  5371. case "testTeacher":
  5372. _formdiv = new U.UF.UI.form(
  5373. "教师管理",
  5374. $$("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 }), {
  5375. "id": "testTeacher",
  5376. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5377. "onresize": function () { }
  5378. }, {
  5379. closecallback: function () { }
  5380. }, { "style": { "height": "36px" } }).form; //创建窗体
  5381. _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); } }
  5382. break;
  5383. case "testStudent":
  5384. _formdiv = new U.UF.UI.form(
  5385. "教师中心",
  5386. $$("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 }), {
  5387. "id": "testStudent",
  5388. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5389. "onresize": function () { }
  5390. }, {
  5391. closecallback: function () { }
  5392. }, { "style": { "height": "36px" } }).form; //创建窗体
  5393. _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); } }
  5394. break;
  5395. case "testTeacherSies":
  5396. _formdiv = new U.UF.UI.form(
  5397. "教师管理",
  5398. $$("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 }), {
  5399. "id": "testTeacherSies",
  5400. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5401. "onresize": function () { }
  5402. }, {
  5403. closecallback: function () { }
  5404. }, { "style": { "height": "36px" } }).form; //创建窗体
  5405. _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); } }
  5406. break;
  5407. case "testStudentSies":
  5408. _formdiv = new U.UF.UI.form(
  5409. "教师中心",
  5410. $$("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 }), {
  5411. "id": "testStudentSies",
  5412. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5413. "onresize": function () { }
  5414. }, {
  5415. closecallback: function () { }
  5416. }, { "style": { "height": "36px" } }).form; //创建窗体
  5417. _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); } }
  5418. break;
  5419. case "ytpbl": //消息通知
  5420. _formdiv = new U.UF.UI.form(
  5421. "案例征集",
  5422. $$("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 }), {
  5423. "id": "ytpbl",
  5424. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5425. "onresize": function () { }
  5426. }, {
  5427. closecallback: function () { }
  5428. }, { "style": { "height": "36px" } }).form; //创建窗体
  5429. _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); } }
  5430. // 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");
  5431. break;
  5432. case "aiCourseResource": //人工智能窗体
  5433. _formdiv = new U.UF.UI.form(
  5434. false,
  5435. $$("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 }), {
  5436. "id": "aiCourseResource",
  5437. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5438. "onresize": function () { },
  5439. "isdrag": false,
  5440. }, {
  5441. closecallback: function () { }
  5442. }, { "style": { "height": "36px" } }).form; //创建窗体
  5443. _taskbar = ''
  5444. break;
  5445. case "szdjgCocooroboX": //图形化编程
  5446. _formdiv = new U.UF.UI.form(
  5447. "图形化编程",
  5448. $$("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" }), {
  5449. "id": "szdjgCocooroboX",
  5450. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5451. "onresize": function () { }
  5452. }, {
  5453. closecallback: function () { }
  5454. }, { "style": { "height": "36px" } }).form; //创建窗体
  5455. _taskbar = ''
  5456. break;
  5457. case "szdjgPython": //python编程
  5458. _formdiv = new U.UF.UI.form(
  5459. "Python编程",
  5460. $$("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" }), {
  5461. "id": "szdjgPython",
  5462. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5463. "onresize": function () { }
  5464. }, {
  5465. closecallback: function () { }
  5466. }, { "style": { "height": "36px" } }).form; //创建窗体
  5467. _taskbar = ''
  5468. break;
  5469. case "Record":
  5470. _formdiv = new U.UF.UI.form(
  5471. "观察记录",
  5472. $$("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 }), {
  5473. "id": "Record",
  5474. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5475. "onresize": function () { }
  5476. }, {
  5477. closecallback: function () { }
  5478. }, { "style": { "height": "36px" } }).form; //创建窗体
  5479. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5480. break;
  5481. case "aigptCourse":
  5482. _formdiv = new U.UF.UI.form(
  5483. "AI智能体",
  5484. $$("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' }), {
  5485. "id": "aigptCourse",
  5486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //创建窗体
  5491. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5492. break;
  5493. case "classroomObservation":
  5494. _formdiv = new U.UF.UI.form(
  5495. "课堂观察",
  5496. $$("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 }), {
  5497. "id": "classroomObservation",
  5498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5504. break;
  5505. case "pblCourse":
  5506. _formdiv = new U.UF.UI.form(
  5507. "学生PBL",
  5508. $$("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/#/pblCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5509. "id": "pblCourse",
  5510. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5511. "onresize": function () { }
  5512. }, {
  5513. closecallback: function () { }
  5514. }, { "style": { "height": "36px" } }).form; //创建窗体
  5515. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5516. break;
  5517. }
  5518. //U.MD.D.I.openClick(str);
  5519. //如果有任务栏信息
  5520. if (_taskbar) {
  5521. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5522. }
  5523. }
  5524. // U.MD.D.I.openClick = function(str){
  5525. // var click = '';
  5526. // switch(str){
  5527. // case 'friend':
  5528. // click = '我的好友';
  5529. // break;
  5530. // case 'domain':
  5531. // click = '域名管理';
  5532. // break;
  5533. // case 'disk':
  5534. // click = '我的云盘';
  5535. // break;
  5536. // case 'word':
  5537. // click = 'Word';
  5538. // break;
  5539. // case 'excel':
  5540. // click = 'Execl';
  5541. // break;
  5542. // case 'txt':
  5543. // click = '文本文件';
  5544. // break;
  5545. // case 'lookupFriend':
  5546. // click = '查找好友';
  5547. // break;
  5548. // case 'ftp':
  5549. // click = 'FTP';
  5550. // break;
  5551. // case 'group':
  5552. // click = '群组';
  5553. // break;
  5554. // case 'set':
  5555. // click = '我的设置';
  5556. // break;
  5557. // case 'systemSet':
  5558. // click = '系统设置';
  5559. // break;
  5560. // case 'boomYun':
  5561. // click = '互联办公';
  5562. // break;
  5563. // case 'xz':
  5564. // click = '云端下载';
  5565. // break;
  5566. // case 'client':
  5567. // click = '有思浏览器';
  5568. // break;
  5569. // case 'backEndProgramming':
  5570. // click = '在线后台编程';
  5571. // break;
  5572. // case 'frontEndProgramming':
  5573. // click = '在线前端编程';
  5574. // break;
  5575. // default: break;
  5576. // }
  5577. // if(U.MD.D.I.Ip && click){
  5578. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5579. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5580. // })
  5581. // }
  5582. // }
  5583. /**
  5584. *函数作用:ajax简易函数,使用post格式
  5585. *@param url {data} 后台地址
  5586. *@param data {data} 参数json
  5587. *@param fn {data} 回调函数
  5588. *
  5589. */
  5590. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5591. // var xhr = new XMLHttpRequest();
  5592. // xhr.open("GET",url,true);
  5593. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5594. // xhr.onreadystatechange = function(){
  5595. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5596. // fn.call(this,xhr.responseText);
  5597. // }
  5598. // };
  5599. // xhr.send();
  5600. // }
  5601. /*判断是否是内网IP*/
  5602. // U.MD.D.I.isInnerIPFn = function(str){
  5603. // var curPageUrl = str;
  5604. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5605. // curPageUrl =curPageUrl.replace(reg1,'');
  5606. // // console.log('curPageUrl-1 '+curPageUrl);
  5607. // var reg2 = /\:+/g;//替换冒号为一点
  5608. // curPageUrl =curPageUrl.replace(reg2,'.');
  5609. // // console.log('curPageUrl-2 '+curPageUrl);
  5610. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5611. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5612. // if(curPageUrl[2] != '16'){
  5613. // return ipAddress;
  5614. // }else{
  5615. // return false;
  5616. // }
  5617. // }
  5618. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5619. // //compatibility for firefox and chrome
  5620. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5621. // var pc = new myPeerConnection({
  5622. // iceServers: []
  5623. // }),
  5624. // noop = function() {},
  5625. // localIPs = {},
  5626. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5627. // key;
  5628. // function iterateIP(ip) {
  5629. // if (!localIPs[ip]) onNewIP(ip);
  5630. // localIPs[ip] = true;
  5631. // }
  5632. // //create a bogus data channel
  5633. // pc.createDataChannel("");
  5634. // // create offer and set local description
  5635. // pc.createOffer().then(function(sdp) {
  5636. // sdp.sdp.split('\n').forEach(function(line) {
  5637. // if (line.indexOf('candidate') < 0) return;
  5638. // line.match(ipRegex).forEach(iterateIP);
  5639. // });
  5640. // pc.setLocalDescription(sdp, noop, noop);
  5641. // }).catch(function(reason) {
  5642. // // An error occurred, so handle the failure to connect
  5643. // });
  5644. // //sten for candidate events
  5645. // pc.onicecandidate = function(ice) {
  5646. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5647. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5648. // };
  5649. // }
  5650. // U.MD.D.I.getUserIpBool = function(callback){
  5651. // U.MD.D.I.getUserIP(function(ip){
  5652. // alert("Got IP! :" + ip);
  5653. // });
  5654. //}
  5655. //#endregion
  5656. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5657. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5658. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5659. _userinfo = US.userInfo, //登录用户信息
  5660. _userid = US.userInfo.userid //登录用户id
  5661. let _iframe;
  5662. let _cid = cid,
  5663. _stage = stage,
  5664. _task = task,
  5665. _tool = tool;
  5666. var _jie = $$("div", {
  5667. "style": {
  5668. "position": "absolute",
  5669. "bottom": "50px",
  5670. "right": "50px",
  5671. "zIndex": "9999",
  5672. "backgroundColor": "#2268bc",
  5673. "color": "#fff",
  5674. "padding": "12px 20px",
  5675. "cursor": "pointer",
  5676. "borderRadius": "4px",
  5677. },
  5678. "innerHTML": "提交作业"
  5679. })
  5680. let aTool = ''
  5681. let _loading = document.createElement('div')
  5682. _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;"
  5683. // _loading.id = "";
  5684. let _lchild = document.createElement('div')
  5685. let _limg = document.createElement('img')
  5686. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5687. _limg.style = "width: 26px;margin-right: 10px;"
  5688. _lchild.appendChild(_limg)
  5689. let _lspan = document.createElement('span')
  5690. _lspan.innerHTML = "上传中..."
  5691. _lchild.appendChild(_lspan)
  5692. _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%);"
  5693. _loading.appendChild(_lchild)
  5694. var _box = $$('div', {
  5695. "style": {
  5696. "position": "relative",
  5697. "width": "100%",
  5698. "height": "100%",
  5699. },
  5700. })
  5701. // _box.appendChild(_loading)
  5702. // _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5703. _box.id = ''
  5704. switch (str) {
  5705. case "whiteboard":
  5706. aTool = 1;
  5707. _iframe = $$("iframe", {
  5708. "frameborder": "no",
  5709. "border": "0",
  5710. "scrolling ": "no",
  5711. "style": {
  5712. "cssText": "border:0;width:100%;height:100%"
  5713. },
  5714. "src": "https://beta.iwb.cocorobo.cn/"
  5715. })
  5716. _box.appendChild(_iframe);
  5717. _box.appendChild(_jie);
  5718. _formdiv = new U.UF.UI.form(
  5719. "电子白板",
  5720. _box, {
  5721. "id": "whiteboard" + cid + stage + task + tool,
  5722. "style": {
  5723. "width": "90%",
  5724. "height": "90%",
  5725. "overflow": 'hidden'
  5726. },
  5727. "onresize": function () { }
  5728. }, {
  5729. closecallback: function () { }
  5730. }, {
  5731. "style": {
  5732. "height": "36px"
  5733. }
  5734. }).form; //创建窗体
  5735. _taskbar = {
  5736. "id": str + _formdiv.id,
  5737. "style": {
  5738. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5739. },
  5740. "name": "电子白板",
  5741. "forms": _formdiv,
  5742. "click": function () {
  5743. U.MD.D.I.openApplication(str, obj, info);
  5744. }
  5745. }
  5746. break;
  5747. case "mind":
  5748. aTool = 3;
  5749. _iframe = $$("iframe", {
  5750. "frameborder": "no",
  5751. "border": "0",
  5752. "scrolling ": "no",
  5753. "style": {
  5754. "cssText": "border:0;width:100%;height:100%"
  5755. },
  5756. "src": "/kityminder-editor/dist/index.html"
  5757. })
  5758. _box.appendChild(_iframe);
  5759. _box.appendChild(_jie);
  5760. _formdiv = new U.UF.UI.form(
  5761. "思维导图",
  5762. _box, { //"/jsmind/example/demo.html"
  5763. "id": "mind" + cid + stage + task + tool,
  5764. "style": {
  5765. "width": "90%",
  5766. "height": "90%",
  5767. "overflow": 'hidden'
  5768. },
  5769. "onresize": function () { }
  5770. }, {
  5771. closecallback: function () { }
  5772. }, {
  5773. "style": {
  5774. "height": "36px"
  5775. }
  5776. }).form; //创建窗体
  5777. _taskbar = {
  5778. "id": str + _formdiv.id,
  5779. "style": {
  5780. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5781. },
  5782. "name": "思维导图",
  5783. "forms": _formdiv,
  5784. "click": function () {
  5785. U.MD.D.I.openApplication(str, obj, info);
  5786. }
  5787. }
  5788. break;
  5789. case "MindMap":
  5790. aTool = 3;
  5791. _iframe = $$("iframe", {
  5792. "frameborder": "no",
  5793. "border": "0",
  5794. "scrolling ": "no",
  5795. "style": {
  5796. "cssText": "border:0;width:100%;height:100%"
  5797. },
  5798. "src": "//cloud.cocorobo.cn/mind/"
  5799. })
  5800. _box.appendChild(_iframe);
  5801. _box.appendChild(_jie);
  5802. _formdiv = new U.UF.UI.form(
  5803. "思维导图",
  5804. _box, { //"/jsmind/example/demo.html"
  5805. "id": "mind" + cid + stage + task + tool,
  5806. "style": {
  5807. "width": "90%",
  5808. "height": "90%",
  5809. "overflow": 'hidden'
  5810. },
  5811. "onresize": function () { }
  5812. }, {
  5813. closecallback: function () { }
  5814. }, {
  5815. "style": {
  5816. "height": "36px"
  5817. }
  5818. }).form; //创建窗体
  5819. _taskbar = {
  5820. "id": str + _formdiv.id,
  5821. "style": {
  5822. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5823. },
  5824. "name": "思维导图",
  5825. "forms": _formdiv,
  5826. "click": function () {
  5827. U.MD.D.I.openApplication(str, obj, info);
  5828. }
  5829. }
  5830. break;
  5831. case "doc":
  5832. aTool = 6;
  5833. _iframe = $$("iframe", {
  5834. "frameborder": "no",
  5835. "border": "0",
  5836. "scrolling ": "no",
  5837. "style": {
  5838. "cssText": "border:0;width:100%;height:100%"
  5839. },
  5840. "src": "/Office/Word/WordEditArea.htm"
  5841. })
  5842. _box.appendChild(_iframe);
  5843. _box.appendChild(_jie);
  5844. _formdiv = new U.UF.UI.form(
  5845. "协同文档",
  5846. _box, {
  5847. "id": "doc" + cid + stage + task + tool,
  5848. "style": {
  5849. "width": "90%",
  5850. "height": "90%",
  5851. "overflow": 'hidden'
  5852. },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, {
  5857. "style": {
  5858. "height": "36px"
  5859. }
  5860. }).form; //创建窗体
  5861. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5862. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5863. })
  5864. _taskbar = {
  5865. "id": str + _formdiv.id,
  5866. "style": {
  5867. "backgroundImage": "url(/img/icon/doc.png)"
  5868. },
  5869. "name": "协同文档",
  5870. "forms": _formdiv,
  5871. "click": function () {
  5872. U.MD.D.I.openApplication(str, obj, info);
  5873. }
  5874. }
  5875. break;
  5876. case "mindNetwork": //好友打开
  5877. aTool = 7;
  5878. _iframe = $$("iframe", {
  5879. "webkitallowfullscreen": "",
  5880. "mozallowfullscreen": "",
  5881. "allowfullscreen": "",
  5882. "frameborder": "no",
  5883. "border": "0",
  5884. "scrolling ": "no",
  5885. "style": {
  5886. "cssText": "border:0; width:100%; height:100%;"
  5887. },
  5888. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5889. })
  5890. _box.appendChild(_iframe);
  5891. _box.appendChild(_jie);
  5892. _formdiv = new U.UF.UI.form(
  5893. "思维网格",
  5894. _box, {
  5895. "id": "mindNetwork" + cid + stage + task + tool,
  5896. "style": {
  5897. "width": "90%",
  5898. "height": "90%",
  5899. "overflow": 'hidden'
  5900. },
  5901. "onresize": function () { }
  5902. }, {
  5903. closecallback: function () { }
  5904. }, {
  5905. "style": {
  5906. "height": "36px"
  5907. }
  5908. }).form; //创建窗体
  5909. _taskbar = {
  5910. "id": str + _formdiv.id,
  5911. "style": {
  5912. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5913. },
  5914. "name": "思维网格",
  5915. "forms": _formdiv,
  5916. "click": function () {
  5917. U.MD.D.I.openApplication(str, obj, info);
  5918. }
  5919. }
  5920. break;
  5921. case "courseDesign":
  5922. _iframe = $$("iframe", {
  5923. "webkitallowfullscreen": "",
  5924. "mozallowfullscreen": "",
  5925. "allowfullscreen": "",
  5926. "frameborder": "no",
  5927. "border": "0",
  5928. "scrolling ": "no",
  5929. "style": {
  5930. "cssText": "border:0; width:100%; height:100%;"
  5931. },
  5932. "src": "/course-design-vue"
  5933. })
  5934. _box.appendChild(_iframe);
  5935. _box.appendChild(_jie);
  5936. _formdiv = new U.UF.UI.form(
  5937. "项目设计",
  5938. _box, {
  5939. "id": "courseDesign" + cid + stage + task + tool,
  5940. "style": {
  5941. "width": "90%",
  5942. "height": "90%",
  5943. "overflow": 'hidden'
  5944. },
  5945. "onresize": function () { }
  5946. }, {
  5947. closecallback: function () { }
  5948. }, {
  5949. "style": {
  5950. "height": "36px"
  5951. }
  5952. }).form; //创建窗体
  5953. _taskbar = {
  5954. "id": str + _formdiv.id,
  5955. "style": {
  5956. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5957. },
  5958. "name": "项目设计",
  5959. "forms": _formdiv,
  5960. "click": function () {
  5961. U.MD.D.I.openApplication(str, obj, info);
  5962. }
  5963. }
  5964. break;
  5965. }
  5966. const script1 = document.createElement("script");
  5967. script1.type = "text/javascript";
  5968. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5969. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5970. const script2 = document.createElement("script");
  5971. script2.type = "text/javascript";
  5972. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5973. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5974. const script3 = document.createElement("script");
  5975. script3.type = "text/javascript";
  5976. script3.charset = "UTF-8";
  5977. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5978. const script4 = document.createElement("script");
  5979. script4.type = "text/javascript";
  5980. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5981. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5982. if (_iframe) {
  5983. if (str == 'doc') {
  5984. _iframe = _formdiv.querySelector('iframe')
  5985. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5986. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5987. _iframe.contentWindow.document.body.appendChild(script1);
  5988. _iframe.contentWindow.document.body.appendChild(script2);
  5989. // _iframe.contentWindow.document.body.appendChild(script3);
  5990. _iframe.contentWindow.document.body.appendChild(script4);
  5991. })
  5992. if (onloadListener) {
  5993. _iframe.contentDocument.location.reload()
  5994. } else {
  5995. _iframe.contentDocument.location.reload()
  5996. }
  5997. } else if (str == 'courseDesign') {
  5998. U.UF.DL.iframeLoad(_iframe, function () {
  5999. // _iframe.contentWindow.U.MD.O.W.load();
  6000. // _iframe.contentWindow.document.body.appendChild(script1);
  6001. _iframe.contentWindow.document.body.appendChild(script2);
  6002. _iframe.contentWindow.document.body.appendChild(script4);
  6003. })
  6004. } else if (str == 'mind') {
  6005. _iframe = _formdiv.querySelector('iframe')
  6006. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6007. //
  6008. _iframe.contentWindow.document.body.appendChild(script1);
  6009. _iframe.contentWindow.document.body.appendChild(script2);
  6010. _iframe.contentWindow.document.body.appendChild(script4);
  6011. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6012. })
  6013. if (onloadListener) {
  6014. _iframe.contentDocument.location.reload()
  6015. } else {
  6016. _iframe.contentDocument.location.reload()
  6017. }
  6018. } else if (str == 'whiteboard') {
  6019. _iframe = _formdiv.querySelector('iframe')
  6020. let onloadListener = _iframe.onload = () => {
  6021. alert(_box.offsetWidth)
  6022. alert(_iframe.offsetLeft)
  6023. alert(_iframe.contentWindow.document.body.innerHTML)
  6024. _iframe.contentWindow.document.body.appendChild(script1);
  6025. _iframe.contentWindow.document.body.appendChild(script2);
  6026. _iframe.contentWindow.document.body.appendChild(script4);
  6027. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6028. };
  6029. if (onloadListener) {
  6030. try {
  6031. _iframe.src += "?cocorobo="+new Date().getTime()
  6032. _iframe.contentWindow.document.location.reload()
  6033. } catch (error) {
  6034. }
  6035. } else {
  6036. _iframe.contentDocument.location.reload()
  6037. }
  6038. } else {
  6039. _iframe.onload = () => {
  6040. _iframe.contentWindow.document.body.appendChild(script1);
  6041. _iframe.contentWindow.document.body.appendChild(script2);
  6042. // _iframe.contentWindow.document.body.appendChild(script3);
  6043. _iframe.contentWindow.document.body.appendChild(script4);
  6044. };
  6045. }
  6046. _jie.onclick = async () => {
  6047. let text = ''
  6048. if (aTool == 1) {
  6049. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6050. } else if (aTool == 6) {
  6051. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6052. } else if (aTool == 3) {
  6053. text = await U.MD.D.I.getEditorContent(_iframe);
  6054. }
  6055. _loading.style.display = 'flex'
  6056. console.log(_loading);
  6057. var _ajs = _iframe.contentWindow.document.createElement("script");
  6058. _ajs.type = "text/javascript";
  6059. _ajs.innerHTML =
  6060. // 'console.log(' + _loading + ');\n' +
  6061. 'var _js = document.createElement("script");\n' +
  6062. '_js.type="text/javascript";\n' +
  6063. '_js.charset="UTF-8";\n' +
  6064. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6065. "_js.onload = function(){\n" +
  6066. ' var a = document.getElementsByTagName("img")\n' +
  6067. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6068. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6069. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6070. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6071. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6072. "beforeUpload_shishi(file," +
  6073. "'" +
  6074. _userid +
  6075. "'" +
  6076. ", " +
  6077. "'" +
  6078. _cid +
  6079. "'" +
  6080. ", " +
  6081. "'" +
  6082. _stage +
  6083. "'" +
  6084. ", " +
  6085. "'" +
  6086. _task +
  6087. "'" +
  6088. ", " +
  6089. "'" +
  6090. _tool +
  6091. "'" +
  6092. ", " +
  6093. "'" +
  6094. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6095. "'" +
  6096. ", " +
  6097. "'" +
  6098. aTool +
  6099. "'" +
  6100. ", " +
  6101. "`" +
  6102. text +
  6103. "`" +
  6104. ")\n" +
  6105. " });\n" +
  6106. "}\n" +
  6107. "document.head.appendChild(_js);\n";
  6108. _iframe.contentWindow.document.head.appendChild(_ajs);
  6109. }
  6110. }
  6111. //U.MD.D.I.openClick(str);
  6112. //如果有任务栏信息
  6113. // if (_taskbar) {
  6114. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6115. // }
  6116. }
  6117. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6118. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6119. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6120. _userinfo = US.userInfo, //登录用户信息
  6121. _userid = US.userInfo.userid //登录用户id
  6122. let _iframe;
  6123. let _cid = cid,
  6124. _stage = stage,
  6125. _task = task,
  6126. _tool = tool;
  6127. var _jie = $$("div", {
  6128. "style": {
  6129. "position": "absolute",
  6130. "bottom": "50px",
  6131. "right": "50px",
  6132. "zIndex": "9999",
  6133. "backgroundColor": "#2268bc",
  6134. "color": "#fff",
  6135. "padding": "12px 20px",
  6136. "cursor": "pointer",
  6137. "borderRadius": "4px",
  6138. },
  6139. "innerHTML": "提交作业"
  6140. })
  6141. let aTool = ''
  6142. let _loading = document.createElement('div')
  6143. _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;"
  6144. // _loading.id = "";
  6145. let _lchild = document.createElement('div')
  6146. let _limg = document.createElement('img')
  6147. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6148. _limg.style = "width: 26px;margin-right: 10px;"
  6149. _lchild.appendChild(_limg)
  6150. let _lspan = document.createElement('span')
  6151. _lspan.innerHTML = "上传中..."
  6152. _lchild.appendChild(_lspan)
  6153. _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%);"
  6154. _loading.appendChild(_lchild)
  6155. let _box = $$('div', {
  6156. "style": {
  6157. "position": "relative",
  6158. "width": "100%",
  6159. "height": "100%",
  6160. },
  6161. })
  6162. _box.appendChild(_loading)
  6163. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6164. switch (str) {
  6165. case "whiteboard":
  6166. aTool = 1;
  6167. _iframe = $$("iframe", {
  6168. "frameborder": "no",
  6169. "border": "0",
  6170. "scrolling ": "no",
  6171. "style": {
  6172. "cssText": "border:0;width:100%;height:100%"
  6173. },
  6174. "src": "https://beta.iwb.cocorobo.cn/"
  6175. })
  6176. _box.appendChild(_iframe);
  6177. _box.appendChild(_jie);
  6178. _formdiv = new U.UF.UI.form(
  6179. "电子白板",
  6180. _box, {
  6181. "id": "whiteboard" + cid + stage + task + tool,
  6182. "style": {
  6183. "width": "90%",
  6184. "height": "90%",
  6185. "overflow": 'hidden'
  6186. },
  6187. "onresize": function () { }
  6188. }, {
  6189. closecallback: function () { }
  6190. }, {
  6191. "style": {
  6192. "height": "36px"
  6193. }
  6194. }).form; //创建窗体
  6195. _taskbar = {
  6196. "id": str + _formdiv.id,
  6197. "style": {
  6198. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6199. },
  6200. "name": "电子白板",
  6201. "forms": _formdiv,
  6202. "click": function () {
  6203. U.MD.D.I.openApplication(str, obj, info);
  6204. }
  6205. }
  6206. break;
  6207. case "mind":
  6208. aTool = 3;
  6209. _iframe = $$("iframe", {
  6210. "frameborder": "no",
  6211. "border": "0",
  6212. "scrolling ": "no",
  6213. "style": {
  6214. "cssText": "border:0;width:100%;height:100%"
  6215. },
  6216. "src": "/kityminder-editor/dist/index.html"
  6217. })
  6218. _box.appendChild(_iframe);
  6219. _box.appendChild(_jie);
  6220. _formdiv = new U.UF.UI.form(
  6221. "思维导图",
  6222. _box, { //"/jsmind/example/demo.html"
  6223. "id": "mind" + cid + stage + task + tool,
  6224. "style": {
  6225. "width": "90%",
  6226. "height": "90%",
  6227. "overflow": 'hidden'
  6228. },
  6229. "onresize": function () { }
  6230. }, {
  6231. closecallback: function () { }
  6232. }, {
  6233. "style": {
  6234. "height": "36px"
  6235. }
  6236. }).form; //创建窗体
  6237. _taskbar = {
  6238. "id": str + _formdiv.id,
  6239. "style": {
  6240. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6241. },
  6242. "name": "思维导图",
  6243. "forms": _formdiv,
  6244. "click": function () {
  6245. U.MD.D.I.openApplication(str, obj, info);
  6246. }
  6247. }
  6248. break;
  6249. case "MindMap":
  6250. aTool = 3;
  6251. _iframe = $$("iframe", {
  6252. "frameborder": "no",
  6253. "border": "0",
  6254. "scrolling ": "no",
  6255. "style": {
  6256. "cssText": "border:0;width:100%;height:100%"
  6257. },
  6258. "src": "//cloud.cocorobo.cn/mind/"
  6259. })
  6260. _box.appendChild(_iframe);
  6261. _box.appendChild(_jie);
  6262. _formdiv = new U.UF.UI.form(
  6263. "思维导图",
  6264. _box, { //"/jsmind/example/demo.html"
  6265. "id": "mind" + cid + stage + task + tool,
  6266. "style": {
  6267. "width": "90%",
  6268. "height": "90%",
  6269. "overflow": 'hidden'
  6270. },
  6271. "onresize": function () { }
  6272. }, {
  6273. closecallback: function () { }
  6274. }, {
  6275. "style": {
  6276. "height": "36px"
  6277. }
  6278. }).form; //创建窗体
  6279. _taskbar = {
  6280. "id": str + _formdiv.id,
  6281. "style": {
  6282. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6283. },
  6284. "name": "思维导图",
  6285. "forms": _formdiv,
  6286. "click": function () {
  6287. U.MD.D.I.openApplication(str, obj, info);
  6288. }
  6289. }
  6290. break;
  6291. case "doc":
  6292. aTool = 6;
  6293. _iframe = $$("iframe", {
  6294. "frameborder": "no",
  6295. "border": "0",
  6296. "scrolling ": "no",
  6297. "style": {
  6298. "cssText": "border:0;width:100%;height:100%"
  6299. },
  6300. "src": "/Office/Word/WordEditArea.htm"
  6301. })
  6302. _box.appendChild(_iframe);
  6303. _box.appendChild(_jie);
  6304. _formdiv = new U.UF.UI.form(
  6305. "协同文档",
  6306. _box, {
  6307. "id": "doc" + cid + stage + task + tool,
  6308. "style": {
  6309. "width": "90%",
  6310. "height": "90%",
  6311. "overflow": 'hidden'
  6312. },
  6313. "onresize": function () { }
  6314. }, {
  6315. closecallback: function () { }
  6316. }, {
  6317. "style": {
  6318. "height": "36px"
  6319. }
  6320. }).form; //创建窗体
  6321. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6322. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6323. })
  6324. _taskbar = {
  6325. "id": str + _formdiv.id,
  6326. "style": {
  6327. "backgroundImage": "url(/img/icon/doc.png)"
  6328. },
  6329. "name": "协同文档",
  6330. "forms": _formdiv,
  6331. "click": function () {
  6332. U.MD.D.I.openApplication(str, obj, info);
  6333. }
  6334. }
  6335. break;
  6336. case "mindNetwork": //好友打开
  6337. aTool = 7;
  6338. _iframe = $$("iframe", {
  6339. "webkitallowfullscreen": "",
  6340. "mozallowfullscreen": "",
  6341. "allowfullscreen": "",
  6342. "frameborder": "no",
  6343. "border": "0",
  6344. "scrolling ": "no",
  6345. "style": {
  6346. "cssText": "border:0; width:100%; height:100%;"
  6347. },
  6348. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6349. })
  6350. _box.appendChild(_iframe);
  6351. _box.appendChild(_jie);
  6352. _formdiv = new U.UF.UI.form(
  6353. "思维网格",
  6354. _box, {
  6355. "id": "mindNetwork" + cid + stage + task + tool,
  6356. "style": {
  6357. "width": "90%",
  6358. "height": "90%",
  6359. "overflow": 'hidden'
  6360. },
  6361. "onresize": function () { }
  6362. }, {
  6363. closecallback: function () { }
  6364. }, {
  6365. "style": {
  6366. "height": "36px"
  6367. }
  6368. }).form; //创建窗体
  6369. _taskbar = {
  6370. "id": str + _formdiv.id,
  6371. "style": {
  6372. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6373. },
  6374. "name": "思维网格",
  6375. "forms": _formdiv,
  6376. "click": function () {
  6377. U.MD.D.I.openApplication(str, obj, info);
  6378. }
  6379. }
  6380. break;
  6381. case "courseDesign":
  6382. _iframe = $$("iframe", {
  6383. "webkitallowfullscreen": "",
  6384. "mozallowfullscreen": "",
  6385. "allowfullscreen": "",
  6386. "frameborder": "no",
  6387. "border": "0",
  6388. "scrolling ": "no",
  6389. "style": {
  6390. "cssText": "border:0; width:100%; height:100%;"
  6391. },
  6392. "src": "/course-design-vue"
  6393. })
  6394. _box.appendChild(_iframe);
  6395. _box.appendChild(_jie);
  6396. _formdiv = new U.UF.UI.form(
  6397. "项目设计",
  6398. _box, {
  6399. "id": "courseDesign" + cid + stage + task + tool,
  6400. "style": {
  6401. "width": "90%",
  6402. "height": "90%",
  6403. "overflow": 'hidden'
  6404. },
  6405. "onresize": function () { }
  6406. }, {
  6407. closecallback: function () { }
  6408. }, {
  6409. "style": {
  6410. "height": "36px"
  6411. }
  6412. }).form; //创建窗体
  6413. _taskbar = {
  6414. "id": str + _formdiv.id,
  6415. "style": {
  6416. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6417. },
  6418. "name": "项目设计",
  6419. "forms": _formdiv,
  6420. "click": function () {
  6421. U.MD.D.I.openApplication(str, obj, info);
  6422. }
  6423. }
  6424. break;
  6425. }
  6426. const script1 = document.createElement("script");
  6427. script1.type = "text/javascript";
  6428. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6429. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6430. const script2 = document.createElement("script");
  6431. script2.type = "text/javascript";
  6432. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6433. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6434. const script3 = document.createElement("script");
  6435. script3.type = "text/javascript";
  6436. script3.charset = "UTF-8";
  6437. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6438. const script4 = document.createElement("script");
  6439. script4.type = "text/javascript";
  6440. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6441. script4.src = window.origin + "/js/Common/jietu2E.js";
  6442. if (_iframe) {
  6443. if (str == 'doc') {
  6444. _iframe = _formdiv.querySelector('iframe')
  6445. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6446. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6447. _iframe.contentWindow.document.body.appendChild(script1);
  6448. _iframe.contentWindow.document.body.appendChild(script2);
  6449. // _iframe.contentWindow.document.body.appendChild(script3);
  6450. _iframe.contentWindow.document.body.appendChild(script4);
  6451. })
  6452. if (onloadListener) {
  6453. _iframe.contentDocument.location.reload()
  6454. } else {
  6455. _iframe.contentDocument.location.reload()
  6456. }
  6457. } else if (str == 'courseDesign') {
  6458. U.UF.DL.iframeLoad(_iframe, function () {
  6459. // _iframe.contentWindow.U.MD.O.W.load();
  6460. // _iframe.contentWindow.document.body.appendChild(script1);
  6461. _iframe.contentWindow.document.body.appendChild(script2);
  6462. _iframe.contentWindow.document.body.appendChild(script4);
  6463. })
  6464. } else if (str == 'mind') {
  6465. _iframe = _formdiv.querySelector('iframe')
  6466. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6467. //
  6468. _iframe.contentWindow.document.body.appendChild(script1);
  6469. _iframe.contentWindow.document.body.appendChild(script2);
  6470. _iframe.contentWindow.document.body.appendChild(script4);
  6471. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6472. })
  6473. if (onloadListener) {
  6474. _iframe.contentDocument.location.reload()
  6475. } else {
  6476. _iframe.contentDocument.location.reload()
  6477. }
  6478. } else if (str == 'whiteboard') {
  6479. _iframe = _formdiv.querySelector('iframe')
  6480. let onloadListener = _iframe.onload = () => {
  6481. _iframe.contentWindow.document.body.appendChild(script1);
  6482. _iframe.contentWindow.document.body.appendChild(script2);
  6483. _iframe.contentWindow.document.body.appendChild(script4);
  6484. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6485. };
  6486. if (onloadListener) {
  6487. try {
  6488. _iframe.src += "?cocorobo="+new Date().getTime()
  6489. _iframe.contentWindow.document.location.reload()
  6490. } catch (error) {
  6491. }
  6492. } else {
  6493. _iframe.contentDocument.location.reload()
  6494. }
  6495. } else {
  6496. _iframe.onload = () => {
  6497. _iframe.contentWindow.document.body.appendChild(script1);
  6498. _iframe.contentWindow.document.body.appendChild(script2);
  6499. // _iframe.contentWindow.document.body.appendChild(script3);
  6500. _iframe.contentWindow.document.body.appendChild(script4);
  6501. };
  6502. }
  6503. _jie.onclick = async () => {
  6504. let text = ''
  6505. if (aTool == 1) {
  6506. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6507. } else if (aTool == 6) {
  6508. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6509. } else if (aTool == 3) {
  6510. text = await U.MD.D.I.getEditorContent(_iframe);
  6511. }
  6512. _loading.style.display = 'flex'
  6513. console.log(_loading);
  6514. var _ajs = _iframe.contentWindow.document.createElement("script");
  6515. _ajs.type = "text/javascript";
  6516. _ajs.innerHTML =
  6517. // 'console.log(' + _loading + ');\n' +
  6518. 'var _js = document.createElement("script");\n' +
  6519. '_js.type="text/javascript";\n' +
  6520. '_js.charset="UTF-8";\n' +
  6521. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6522. "_js.onload = function(){\n" +
  6523. ' var a = document.getElementsByTagName("img")\n' +
  6524. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6525. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6526. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6527. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6528. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6529. "beforeUpload_shishi(file," +
  6530. "'" +
  6531. _userid +
  6532. "'" +
  6533. ", " +
  6534. "'" +
  6535. _cid +
  6536. "'" +
  6537. ", " +
  6538. "'" +
  6539. _stage +
  6540. "'" +
  6541. ", " +
  6542. "'" +
  6543. _task +
  6544. "'" +
  6545. ", " +
  6546. "'" +
  6547. _tool +
  6548. "'" +
  6549. ", " +
  6550. "'" +
  6551. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6552. "'" +
  6553. ", " +
  6554. "'" +
  6555. aTool +
  6556. "'" +
  6557. ", " +
  6558. "`" +
  6559. text +
  6560. "`" +
  6561. ")\n" +
  6562. " });\n" +
  6563. "}\n" +
  6564. "document.head.appendChild(_js);\n";
  6565. _iframe.contentWindow.document.head.appendChild(_ajs);
  6566. }
  6567. }
  6568. //U.MD.D.I.openClick(str);
  6569. //如果有任务栏信息
  6570. // if (_taskbar) {
  6571. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6572. // }
  6573. }
  6574. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6575. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6576. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6577. _userid = student.userid, //登录用户id
  6578. _username = student.student //用户名字
  6579. let _iframe;
  6580. let _cid = cid,
  6581. _stage = stage,
  6582. _task = task,
  6583. _tool = tool;
  6584. var _jie = $$("div", {
  6585. "style": {
  6586. "position": "absolute",
  6587. "bottom": "50px",
  6588. "right": "50px",
  6589. "zIndex": "9999",
  6590. "backgroundColor": "#2268bc",
  6591. "color": "#fff",
  6592. "padding": "12px 20px",
  6593. "cursor": "pointer",
  6594. "borderRadius": "4px",
  6595. },
  6596. "innerHTML": "提交作业"
  6597. })
  6598. let aTool = ''
  6599. let _loading = document.createElement('div')
  6600. _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;"
  6601. // _loading.id = "";
  6602. let _lchild = document.createElement('div')
  6603. let _limg = document.createElement('img')
  6604. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6605. _limg.style = "width: 26px;margin-right: 10px;"
  6606. _lchild.appendChild(_limg)
  6607. let _lspan = document.createElement('span')
  6608. _lspan.innerHTML = "上传中..."
  6609. _lchild.appendChild(_lspan)
  6610. _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%);"
  6611. _loading.appendChild(_lchild)
  6612. var _box = $$('div', {
  6613. "style": {
  6614. "position": "relative",
  6615. "width": "100%",
  6616. "height": "100%",
  6617. },
  6618. })
  6619. _box.appendChild(_loading)
  6620. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6621. switch (str) {
  6622. case "whiteboard":
  6623. aTool = 1;
  6624. _iframe = $$("iframe", {
  6625. "frameborder": "no",
  6626. "border": "0",
  6627. "scrolling ": "no",
  6628. "style": {
  6629. "cssText": "border:0;width:100%;height:100%"
  6630. },
  6631. "src": "https://beta.iwb.cocorobo.cn/"
  6632. })
  6633. _box.appendChild(_iframe);
  6634. _box.appendChild(_jie);
  6635. _formdiv = new U.UF.UI.form(
  6636. "电子白板-" + _username,
  6637. _box, {
  6638. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6639. "style": {
  6640. "width": "90%",
  6641. "height": "90%",
  6642. "overflow": 'hidden'
  6643. },
  6644. "onresize": function () { }
  6645. }, {
  6646. closecallback: function () { }
  6647. }, {
  6648. "style": {
  6649. "height": "36px"
  6650. }
  6651. }).form; //创建窗体
  6652. _taskbar = {
  6653. "id": str + _formdiv.id,
  6654. "style": {
  6655. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6656. },
  6657. "name": "电子白板",
  6658. "forms": _formdiv,
  6659. "click": function () {
  6660. U.MD.D.I.openApplication(str, obj, info);
  6661. }
  6662. }
  6663. break;
  6664. case "mind":
  6665. aTool = 3;
  6666. _iframe = $$("iframe", {
  6667. "frameborder": "no",
  6668. "border": "0",
  6669. "scrolling ": "no",
  6670. "style": {
  6671. "cssText": "border:0;width:100%;height:100%"
  6672. },
  6673. "src": "/kityminder-editor/dist/index.html"
  6674. })
  6675. _box.appendChild(_iframe);
  6676. _box.appendChild(_jie);
  6677. _formdiv = new U.UF.UI.form(
  6678. "思维导图-" + _username,
  6679. _box, { //"/jsmind/example/demo.html"
  6680. "id": "mind" + cid + stage + task + tool + _userid,
  6681. "style": {
  6682. "width": "90%",
  6683. "height": "90%",
  6684. "overflow": 'hidden'
  6685. },
  6686. "onresize": function () { }
  6687. }, {
  6688. closecallback: function () { }
  6689. }, {
  6690. "style": {
  6691. "height": "36px"
  6692. }
  6693. }).form; //创建窗体
  6694. _taskbar = {
  6695. "id": str + _formdiv.id,
  6696. "style": {
  6697. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6698. },
  6699. "name": "思维导图",
  6700. "forms": _formdiv,
  6701. "click": function () {
  6702. U.MD.D.I.openApplication(str, obj, info);
  6703. }
  6704. }
  6705. break;
  6706. case "MindMap":
  6707. aTool = 3;
  6708. _iframe = $$("iframe", {
  6709. "frameborder": "no",
  6710. "border": "0",
  6711. "scrolling ": "no",
  6712. "style": {
  6713. "cssText": "border:0;width:100%;height:100%"
  6714. },
  6715. "src": "//cloud.cocorobo.cn/mind/"
  6716. })
  6717. _box.appendChild(_iframe);
  6718. _box.appendChild(_jie);
  6719. _formdiv = new U.UF.UI.form(
  6720. "思维导图-" + _username,
  6721. _box, { //"/jsmind/example/demo.html"
  6722. "id": "mind" + cid + stage + task + tool + _userid,
  6723. "style": {
  6724. "width": "90%",
  6725. "height": "90%",
  6726. "overflow": 'hidden'
  6727. },
  6728. "onresize": function () { }
  6729. }, {
  6730. closecallback: function () { }
  6731. }, {
  6732. "style": {
  6733. "height": "36px"
  6734. }
  6735. }).form; //创建窗体
  6736. _taskbar = {
  6737. "id": str + _formdiv.id,
  6738. "style": {
  6739. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6740. },
  6741. "name": "思维导图",
  6742. "forms": _formdiv,
  6743. "click": function () {
  6744. U.MD.D.I.openApplication(str, obj, info);
  6745. }
  6746. }
  6747. break;
  6748. case "doc":
  6749. aTool = 6;
  6750. _iframe = $$("iframe", {
  6751. "frameborder": "no",
  6752. "border": "0",
  6753. "scrolling ": "no",
  6754. "style": {
  6755. "cssText": "border:0;width:100%;height:100%"
  6756. },
  6757. "src": "/Office/Word/WordEditArea.htm"
  6758. })
  6759. _box.appendChild(_iframe);
  6760. _box.appendChild(_jie);
  6761. _formdiv = new U.UF.UI.form(
  6762. "协同文档-" + _username,
  6763. _box, {
  6764. "id": "doc" + cid + stage + task + tool + _userid,
  6765. "style": {
  6766. "width": "90%",
  6767. "height": "90%",
  6768. "overflow": 'hidden'
  6769. },
  6770. "onresize": function () { }
  6771. }, {
  6772. closecallback: function () { }
  6773. }, {
  6774. "style": {
  6775. "height": "36px"
  6776. }
  6777. }).form; //创建窗体
  6778. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6779. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6780. })
  6781. _taskbar = {
  6782. "id": str + _formdiv.id,
  6783. "style": {
  6784. "backgroundImage": "url(/img/icon/doc.png)"
  6785. },
  6786. "name": "协同文档",
  6787. "forms": _formdiv,
  6788. "click": function () {
  6789. U.MD.D.I.openApplication(str, obj, info);
  6790. }
  6791. }
  6792. break;
  6793. case "mindNetwork": //好友打开
  6794. aTool = 7;
  6795. _iframe = $$("iframe", {
  6796. "webkitallowfullscreen": "",
  6797. "mozallowfullscreen": "",
  6798. "allowfullscreen": "",
  6799. "frameborder": "no",
  6800. "border": "0",
  6801. "scrolling ": "no",
  6802. "style": {
  6803. "cssText": "border:0; width:100%; height:100%;"
  6804. },
  6805. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6806. })
  6807. _box.appendChild(_iframe);
  6808. _box.appendChild(_jie);
  6809. _formdiv = new U.UF.UI.form(
  6810. "思维网格-" + _username,
  6811. _box, {
  6812. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6813. "style": {
  6814. "width": "90%",
  6815. "height": "90%",
  6816. "overflow": 'hidden'
  6817. },
  6818. "onresize": function () { }
  6819. }, {
  6820. closecallback: function () { }
  6821. }, {
  6822. "style": {
  6823. "height": "36px"
  6824. }
  6825. }).form; //创建窗体
  6826. _taskbar = {
  6827. "id": str + _formdiv.id,
  6828. "style": {
  6829. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6830. },
  6831. "name": "思维网格",
  6832. "forms": _formdiv,
  6833. "click": function () {
  6834. U.MD.D.I.openApplication(str, obj, info);
  6835. }
  6836. }
  6837. break;
  6838. case "courseDesign":
  6839. _iframe = $$("iframe", {
  6840. "webkitallowfullscreen": "",
  6841. "mozallowfullscreen": "",
  6842. "allowfullscreen": "",
  6843. "frameborder": "no",
  6844. "border": "0",
  6845. "scrolling ": "no",
  6846. "style": {
  6847. "cssText": "border:0; width:100%; height:100%;"
  6848. },
  6849. "src": "/course-design-vue"
  6850. })
  6851. _box.appendChild(_iframe);
  6852. _box.appendChild(_jie);
  6853. _formdiv = new U.UF.UI.form(
  6854. "项目设计-" + _username,
  6855. _box, {
  6856. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6857. "style": {
  6858. "width": "90%",
  6859. "height": "90%",
  6860. "overflow": 'hidden'
  6861. },
  6862. "onresize": function () { }
  6863. }, {
  6864. closecallback: function () { }
  6865. }, {
  6866. "style": {
  6867. "height": "36px"
  6868. }
  6869. }).form; //创建窗体
  6870. _taskbar = {
  6871. "id": str + _formdiv.id,
  6872. "style": {
  6873. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6874. },
  6875. "name": "项目设计",
  6876. "forms": _formdiv,
  6877. "click": function () {
  6878. U.MD.D.I.openApplication(str, obj, info);
  6879. }
  6880. }
  6881. break;
  6882. }
  6883. const script1 = document.createElement("script");
  6884. script1.type = "text/javascript";
  6885. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6886. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6887. const script2 = document.createElement("script");
  6888. script2.type = "text/javascript";
  6889. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6890. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6891. const script3 = document.createElement("script");
  6892. script3.type = "text/javascript";
  6893. script3.charset = "UTF-8";
  6894. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6895. const script4 = document.createElement("script");
  6896. script4.type = "text/javascript";
  6897. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6898. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6899. if (_iframe) {
  6900. if (str == 'doc') {
  6901. _iframe = _formdiv.querySelector('iframe')
  6902. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6903. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6904. _iframe.contentWindow.document.body.appendChild(script1);
  6905. _iframe.contentWindow.document.body.appendChild(script2);
  6906. // _iframe.contentWindow.document.body.appendChild(script3);
  6907. _iframe.contentWindow.document.body.appendChild(script4);
  6908. })
  6909. if (onloadListener) {
  6910. _iframe.contentDocument.location.reload()
  6911. } else {
  6912. _iframe.contentDocument.location.reload()
  6913. }
  6914. } else if (str == 'courseDesign') {
  6915. U.UF.DL.iframeLoad(_iframe, function () {
  6916. // _iframe.contentWindow.U.MD.O.W.load();
  6917. // _iframe.contentWindow.document.body.appendChild(script1);
  6918. _iframe.contentWindow.document.body.appendChild(script2);
  6919. _iframe.contentWindow.document.body.appendChild(script4);
  6920. })
  6921. } else if (str == 'mind') {
  6922. _iframe = _formdiv.querySelector('iframe')
  6923. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6924. //
  6925. _iframe.contentWindow.document.body.appendChild(script1);
  6926. _iframe.contentWindow.document.body.appendChild(script2);
  6927. _iframe.contentWindow.document.body.appendChild(script4);
  6928. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6929. })
  6930. if (onloadListener) {
  6931. _iframe.contentDocument.location.reload()
  6932. } else {
  6933. _iframe.contentDocument.location.reload()
  6934. }
  6935. } else if (str == 'whiteboard') {
  6936. _iframe = _formdiv.querySelector('iframe')
  6937. let onloadListener = _iframe.onload = () => {
  6938. _iframe.contentWindow.document.body.appendChild(script1);
  6939. _iframe.contentWindow.document.body.appendChild(script2);
  6940. _iframe.contentWindow.document.body.appendChild(script4);
  6941. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6942. };
  6943. if (onloadListener) {
  6944. try {
  6945. _iframe.src += "?cocorobo="+new Date().getTime()
  6946. _iframe.contentWindow.document.location.reload()
  6947. } catch (error) {
  6948. }
  6949. } else {
  6950. _iframe.contentDocument.location.reload()
  6951. }
  6952. } else {
  6953. _iframe.onload = () => {
  6954. _iframe.contentWindow.document.body.appendChild(script1);
  6955. _iframe.contentWindow.document.body.appendChild(script2);
  6956. // _iframe.contentWindow.document.body.appendChild(script3);
  6957. _iframe.contentWindow.document.body.appendChild(script4);
  6958. };
  6959. }
  6960. _jie.onclick = async () => {
  6961. let text = ''
  6962. if (aTool == 1) {
  6963. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6964. } else if (aTool == 6) {
  6965. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6966. } else if (aTool == 3) {
  6967. text = await U.MD.D.I.getEditorContent(_iframe);
  6968. }
  6969. _loading.style.display = 'flex'
  6970. console.log(_loading);
  6971. var _ajs = _iframe.contentWindow.document.createElement("script");
  6972. _ajs.type = "text/javascript";
  6973. _ajs.innerHTML =
  6974. // 'console.log(' + _loading + ');\n' +
  6975. 'var _js = document.createElement("script");\n' +
  6976. '_js.type="text/javascript";\n' +
  6977. '_js.charset="UTF-8";\n' +
  6978. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6979. "_js.onload = function(){\n" +
  6980. ' var a = document.getElementsByTagName("img")\n' +
  6981. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6982. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6983. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6984. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6985. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6986. "beforeUpload_shishi(file," +
  6987. "'" +
  6988. _userid +
  6989. "'" +
  6990. ", " +
  6991. "'" +
  6992. _cid +
  6993. "'" +
  6994. ", " +
  6995. "'" +
  6996. _stage +
  6997. "'" +
  6998. ", " +
  6999. "'" +
  7000. _task +
  7001. "'" +
  7002. ", " +
  7003. "'" +
  7004. _tool +
  7005. "'" +
  7006. ", " +
  7007. "'" +
  7008. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7009. "'" +
  7010. ", " +
  7011. "'" +
  7012. aTool +
  7013. "'" +
  7014. ", " +
  7015. "`" +
  7016. text +
  7017. "`" +
  7018. ")\n" +
  7019. " });\n" +
  7020. "}\n" +
  7021. "document.head.appendChild(_js);\n";
  7022. _iframe.contentWindow.document.head.appendChild(_ajs);
  7023. }
  7024. }
  7025. }
  7026. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7027. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7028. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7029. _userid = student.userid, //登录用户id
  7030. _username = student.student //用户名字
  7031. let _iframe;
  7032. let _cid = cid,
  7033. _stage = stage,
  7034. _task = task,
  7035. _tool = tool;
  7036. var _jie = $$("div", {
  7037. "style": {
  7038. "position": "absolute",
  7039. "bottom": "50px",
  7040. "right": "50px",
  7041. "zIndex": "9999",
  7042. "backgroundColor": "#2268bc",
  7043. "color": "#fff",
  7044. "padding": "12px 20px",
  7045. "cursor": "pointer",
  7046. "borderRadius": "4px",
  7047. },
  7048. "innerHTML": "提交作业"
  7049. })
  7050. let aTool = ''
  7051. let _loading = document.createElement('div')
  7052. _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;"
  7053. // _loading.id = "";
  7054. let _lchild = document.createElement('div')
  7055. let _limg = document.createElement('img')
  7056. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7057. _limg.style = "width: 26px;margin-right: 10px;"
  7058. _lchild.appendChild(_limg)
  7059. let _lspan = document.createElement('span')
  7060. _lspan.innerHTML = "上传中..."
  7061. _lchild.appendChild(_lspan)
  7062. _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%);"
  7063. _loading.appendChild(_lchild)
  7064. var _box = $$('div', {
  7065. "style": {
  7066. "position": "relative",
  7067. "width": "100%",
  7068. "height": "100%",
  7069. },
  7070. })
  7071. _box.appendChild(_loading)
  7072. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7073. switch (str) {
  7074. case "whiteboard":
  7075. aTool = 1;
  7076. _iframe = $$("iframe", {
  7077. "frameborder": "no",
  7078. "border": "0",
  7079. "scrolling ": "no",
  7080. "style": {
  7081. "cssText": "border:0;width:100%;height:100%"
  7082. },
  7083. "src": "https://beta.iwb.cocorobo.cn/"
  7084. })
  7085. _box.appendChild(_iframe);
  7086. _box.appendChild(_jie);
  7087. _formdiv = new U.UF.UI.form(
  7088. "电子白板-" + _username,
  7089. _box, {
  7090. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7091. "style": {
  7092. "width": "90%",
  7093. "height": "90%",
  7094. "overflow": 'hidden'
  7095. },
  7096. "onresize": function () { }
  7097. }, {
  7098. closecallback: function () { }
  7099. }, {
  7100. "style": {
  7101. "height": "36px"
  7102. }
  7103. }).form; //创建窗体
  7104. _taskbar = {
  7105. "id": str + _formdiv.id,
  7106. "style": {
  7107. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7108. },
  7109. "name": "电子白板",
  7110. "forms": _formdiv,
  7111. "click": function () {
  7112. U.MD.D.I.openApplication(str, obj, info);
  7113. }
  7114. }
  7115. break;
  7116. case "mind":
  7117. aTool = 3;
  7118. _iframe = $$("iframe", {
  7119. "frameborder": "no",
  7120. "border": "0",
  7121. "scrolling ": "no",
  7122. "style": {
  7123. "cssText": "border:0;width:100%;height:100%"
  7124. },
  7125. "src": "/kityminder-editor/dist/index.html"
  7126. })
  7127. _box.appendChild(_iframe);
  7128. _box.appendChild(_jie);
  7129. _formdiv = new U.UF.UI.form(
  7130. "思维导图-" + _username,
  7131. _box, { //"/jsmind/example/demo.html"
  7132. "id": "mind" + cid + stage + task + tool + _userid,
  7133. "style": {
  7134. "width": "90%",
  7135. "height": "90%",
  7136. "overflow": 'hidden'
  7137. },
  7138. "onresize": function () { }
  7139. }, {
  7140. closecallback: function () { }
  7141. }, {
  7142. "style": {
  7143. "height": "36px"
  7144. }
  7145. }).form; //创建窗体
  7146. _taskbar = {
  7147. "id": str + _formdiv.id,
  7148. "style": {
  7149. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7150. },
  7151. "name": "思维导图",
  7152. "forms": _formdiv,
  7153. "click": function () {
  7154. U.MD.D.I.openApplication(str, obj, info);
  7155. }
  7156. }
  7157. break;
  7158. case "MindMap":
  7159. aTool = 3;
  7160. _iframe = $$("iframe", {
  7161. "frameborder": "no",
  7162. "border": "0",
  7163. "scrolling ": "no",
  7164. "style": {
  7165. "cssText": "border:0;width:100%;height:100%"
  7166. },
  7167. "src": "//cloud.cocorobo.cn/mind/"
  7168. })
  7169. _box.appendChild(_iframe);
  7170. _box.appendChild(_jie);
  7171. _formdiv = new U.UF.UI.form(
  7172. "思维导图-" + _username,
  7173. _box, { //"/jsmind/example/demo.html"
  7174. "id": "mind" + cid + stage + task + tool + _userid,
  7175. "style": {
  7176. "width": "90%",
  7177. "height": "90%",
  7178. "overflow": 'hidden'
  7179. },
  7180. "onresize": function () { }
  7181. }, {
  7182. closecallback: function () { }
  7183. }, {
  7184. "style": {
  7185. "height": "36px"
  7186. }
  7187. }).form; //创建窗体
  7188. _taskbar = {
  7189. "id": str + _formdiv.id,
  7190. "style": {
  7191. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7192. },
  7193. "name": "思维导图",
  7194. "forms": _formdiv,
  7195. "click": function () {
  7196. U.MD.D.I.openApplication(str, obj, info);
  7197. }
  7198. }
  7199. break;
  7200. case "doc":
  7201. aTool = 6;
  7202. _iframe = $$("iframe", {
  7203. "frameborder": "no",
  7204. "border": "0",
  7205. "scrolling ": "no",
  7206. "style": {
  7207. "cssText": "border:0;width:100%;height:100%"
  7208. },
  7209. "src": "/Office/Word/WordEditArea.htm"
  7210. })
  7211. _box.appendChild(_iframe);
  7212. _box.appendChild(_jie);
  7213. _formdiv = new U.UF.UI.form(
  7214. "协同文档-" + _username,
  7215. _box, {
  7216. "id": "doc" + cid + stage + task + tool + _userid,
  7217. "style": {
  7218. "width": "90%",
  7219. "height": "90%",
  7220. "overflow": 'hidden'
  7221. },
  7222. "onresize": function () { }
  7223. }, {
  7224. closecallback: function () { }
  7225. }, {
  7226. "style": {
  7227. "height": "36px"
  7228. }
  7229. }).form; //创建窗体
  7230. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7231. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7232. })
  7233. _taskbar = {
  7234. "id": str + _formdiv.id,
  7235. "style": {
  7236. "backgroundImage": "url(/img/icon/doc.png)"
  7237. },
  7238. "name": "协同文档",
  7239. "forms": _formdiv,
  7240. "click": function () {
  7241. U.MD.D.I.openApplication(str, obj, info);
  7242. }
  7243. }
  7244. break;
  7245. case "mindNetwork": //好友打开
  7246. aTool = 7;
  7247. _iframe = $$("iframe", {
  7248. "webkitallowfullscreen": "",
  7249. "mozallowfullscreen": "",
  7250. "allowfullscreen": "",
  7251. "frameborder": "no",
  7252. "border": "0",
  7253. "scrolling ": "no",
  7254. "style": {
  7255. "cssText": "border:0; width:100%; height:100%;"
  7256. },
  7257. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7258. })
  7259. _box.appendChild(_iframe);
  7260. _box.appendChild(_jie);
  7261. _formdiv = new U.UF.UI.form(
  7262. "思维网格-" + _username,
  7263. _box, {
  7264. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7265. "style": {
  7266. "width": "90%",
  7267. "height": "90%",
  7268. "overflow": 'hidden'
  7269. },
  7270. "onresize": function () { }
  7271. }, {
  7272. closecallback: function () { }
  7273. }, {
  7274. "style": {
  7275. "height": "36px"
  7276. }
  7277. }).form; //创建窗体
  7278. _taskbar = {
  7279. "id": str + _formdiv.id,
  7280. "style": {
  7281. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7282. },
  7283. "name": "思维网格",
  7284. "forms": _formdiv,
  7285. "click": function () {
  7286. U.MD.D.I.openApplication(str, obj, info);
  7287. }
  7288. }
  7289. break;
  7290. case "courseDesign":
  7291. _iframe = $$("iframe", {
  7292. "webkitallowfullscreen": "",
  7293. "mozallowfullscreen": "",
  7294. "allowfullscreen": "",
  7295. "frameborder": "no",
  7296. "border": "0",
  7297. "scrolling ": "no",
  7298. "style": {
  7299. "cssText": "border:0; width:100%; height:100%;"
  7300. },
  7301. "src": "/course-design-vue"
  7302. })
  7303. _box.appendChild(_iframe);
  7304. _box.appendChild(_jie);
  7305. _formdiv = new U.UF.UI.form(
  7306. "项目设计-" + _username,
  7307. _box, {
  7308. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7309. "style": {
  7310. "width": "90%",
  7311. "height": "90%",
  7312. "overflow": 'hidden'
  7313. },
  7314. "onresize": function () { }
  7315. }, {
  7316. closecallback: function () { }
  7317. }, {
  7318. "style": {
  7319. "height": "36px"
  7320. }
  7321. }).form; //创建窗体
  7322. _taskbar = {
  7323. "id": str + _formdiv.id,
  7324. "style": {
  7325. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7326. },
  7327. "name": "项目设计",
  7328. "forms": _formdiv,
  7329. "click": function () {
  7330. U.MD.D.I.openApplication(str, obj, info);
  7331. }
  7332. }
  7333. break;
  7334. }
  7335. const script1 = document.createElement("script");
  7336. script1.type = "text/javascript";
  7337. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7338. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7339. const script2 = document.createElement("script");
  7340. script2.type = "text/javascript";
  7341. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7342. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7343. const script3 = document.createElement("script");
  7344. script3.type = "text/javascript";
  7345. script3.charset = "UTF-8";
  7346. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7347. const script4 = document.createElement("script");
  7348. script4.type = "text/javascript";
  7349. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7350. script4.src = window.origin + "/js/Common/jietu2E.js";
  7351. if (_iframe) {
  7352. if (str == 'doc') {
  7353. _iframe = _formdiv.querySelector('iframe')
  7354. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7355. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7356. _iframe.contentWindow.document.body.appendChild(script1);
  7357. _iframe.contentWindow.document.body.appendChild(script2);
  7358. // _iframe.contentWindow.document.body.appendChild(script3);
  7359. _iframe.contentWindow.document.body.appendChild(script4);
  7360. })
  7361. if (onloadListener) {
  7362. _iframe.contentDocument.location.reload()
  7363. } else {
  7364. _iframe.contentDocument.location.reload()
  7365. }
  7366. } else if (str == 'courseDesign') {
  7367. U.UF.DL.iframeLoad(_iframe, function () {
  7368. // _iframe.contentWindow.U.MD.O.W.load();
  7369. // _iframe.contentWindow.document.body.appendChild(script1);
  7370. _iframe.contentWindow.document.body.appendChild(script2);
  7371. _iframe.contentWindow.document.body.appendChild(script4);
  7372. })
  7373. } else if (str == 'mind') {
  7374. _iframe = _formdiv.querySelector('iframe')
  7375. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7376. //
  7377. _iframe.contentWindow.document.body.appendChild(script1);
  7378. _iframe.contentWindow.document.body.appendChild(script2);
  7379. _iframe.contentWindow.document.body.appendChild(script4);
  7380. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7381. })
  7382. if (onloadListener) {
  7383. _iframe.contentDocument.location.reload()
  7384. } else {
  7385. _iframe.contentDocument.location.reload()
  7386. }
  7387. } else if (str == 'whiteboard') {
  7388. _iframe = _formdiv.querySelector('iframe')
  7389. let onloadListener = _iframe.onload = () => {
  7390. _iframe.contentWindow.document.body.appendChild(script1);
  7391. _iframe.contentWindow.document.body.appendChild(script2);
  7392. _iframe.contentWindow.document.body.appendChild(script4);
  7393. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7394. };
  7395. if (onloadListener) {
  7396. try {
  7397. _iframe.src += "?cocorobo="+new Date().getTime()
  7398. _iframe.contentWindow.document.location.reload()
  7399. } catch (error) {
  7400. }
  7401. } else {
  7402. _iframe.contentDocument.location.reload()
  7403. }
  7404. } else {
  7405. _iframe.onload = () => {
  7406. _iframe.contentWindow.document.body.appendChild(script1);
  7407. _iframe.contentWindow.document.body.appendChild(script2);
  7408. // _iframe.contentWindow.document.body.appendChild(script3);
  7409. _iframe.contentWindow.document.body.appendChild(script4);
  7410. };
  7411. }
  7412. _jie.onclick = async () => {
  7413. let text = ''
  7414. if (aTool == 1) {
  7415. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7416. } else if (aTool == 6) {
  7417. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7418. } else if (aTool == 3) {
  7419. text = await U.MD.D.I.getEditorContent(_iframe);
  7420. }
  7421. _loading.style.display = 'flex'
  7422. console.log(_loading);
  7423. var _ajs = _iframe.contentWindow.document.createElement("script");
  7424. _ajs.type = "text/javascript";
  7425. _ajs.innerHTML =
  7426. // 'console.log(' + _loading + ');\n' +
  7427. 'var _js = document.createElement("script");\n' +
  7428. '_js.type="text/javascript";\n' +
  7429. '_js.charset="UTF-8";\n' +
  7430. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7431. "_js.onload = function(){\n" +
  7432. ' var a = document.getElementsByTagName("img")\n' +
  7433. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7434. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7435. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7436. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7437. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7438. "beforeUpload_shishi(file," +
  7439. "'" +
  7440. _userid +
  7441. "'" +
  7442. ", " +
  7443. "'" +
  7444. _cid +
  7445. "'" +
  7446. ", " +
  7447. "'" +
  7448. _stage +
  7449. "'" +
  7450. ", " +
  7451. "'" +
  7452. _task +
  7453. "'" +
  7454. ", " +
  7455. "'" +
  7456. _tool +
  7457. "'" +
  7458. ", " +
  7459. "'" +
  7460. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7461. "'" +
  7462. ", " +
  7463. "'" +
  7464. aTool +
  7465. "'" +
  7466. ", " +
  7467. "`" +
  7468. text +
  7469. "`" +
  7470. ")\n" +
  7471. " });\n" +
  7472. "}\n" +
  7473. "document.head.appendChild(_js);\n";
  7474. _iframe.contentWindow.document.head.appendChild(_ajs);
  7475. }
  7476. }
  7477. }
  7478. U.MD.D.I.getEditorContent = function (iframe) {
  7479. return new Promise((resolve, reject) => {
  7480. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7481. console.log(content);
  7482. resolve(content)
  7483. });
  7484. });
  7485. }
  7486. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7487. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7488. // if (res.value[0].length > 0) {
  7489. // // resolve(res.value[0][0].text);
  7490. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7491. // $(fileInput).val('');
  7492. // });
  7493. // }
  7494. // }, [], { "type": "GET", "withCredentials": true });
  7495. var xmlhttp;
  7496. var Mac, Sn, DeviceId
  7497. if (window.XMLHttpRequest) {
  7498. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7499. xmlhttp = new XMLHttpRequest();
  7500. } else {
  7501. // IE6, IE5 浏览器执行代码
  7502. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7503. }
  7504. xmlhttp.onreadystatechange = function () {
  7505. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7506. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7507. // resolve(res.value[0][0].text);
  7508. if (type == '2') {
  7509. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7510. } else if (type == '3') {
  7511. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7512. }
  7513. } else {
  7514. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7515. }
  7516. }
  7517. }
  7518. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7519. xmlhttp.send();
  7520. }
  7521. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7522. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7523. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7524. _userinfo = US.userInfo, //登录用户信息
  7525. _userid = US.userInfo.userid //登录用户id
  7526. let _iframe;
  7527. let _cid = cid,
  7528. _stage = stage,
  7529. _task = task,
  7530. _tool = tool;
  7531. var _jie = $$("div", {
  7532. "style": {
  7533. "position": "absolute",
  7534. "bottom": "50px",
  7535. "right": "50px",
  7536. "zIndex": "9999",
  7537. "backgroundColor": "#2268bc",
  7538. "color": "#fff",
  7539. "padding": "12px 20px",
  7540. "cursor": "pointer",
  7541. "borderRadius": "4px",
  7542. },
  7543. "innerHTML": "确认并提交"
  7544. })
  7545. let aTool = ''
  7546. let _loading = document.createElement('div')
  7547. _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;"
  7548. // _loading.id = "";
  7549. let _lchild = document.createElement('div')
  7550. let _limg = document.createElement('img')
  7551. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7552. _limg.style = "width: 26px;margin-right: 10px;"
  7553. _lchild.appendChild(_limg)
  7554. let _lspan = document.createElement('span')
  7555. _lspan.innerHTML = "上传中..."
  7556. _lchild.appendChild(_lspan)
  7557. _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%);"
  7558. _loading.appendChild(_lchild)
  7559. var _box = $$('div', {
  7560. "style": {
  7561. "position": "relative",
  7562. "width": "100%",
  7563. "height": "100%",
  7564. },
  7565. })
  7566. _box.appendChild(_loading)
  7567. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7568. switch (str) {
  7569. case "whiteboard":
  7570. aTool = 1;
  7571. _iframe = $$("iframe", {
  7572. "frameborder": "no",
  7573. "border": "0",
  7574. "scrolling ": "no",
  7575. "style": {
  7576. "cssText": "border:0;width:100%;height:100%"
  7577. },
  7578. "src": "https://beta.iwb.cocorobo.cn/"
  7579. })
  7580. _box.appendChild(_iframe);
  7581. _box.appendChild(_jie);
  7582. _formdiv = new U.UF.UI.form(
  7583. "电子白板",
  7584. _box, {
  7585. "id": "whiteboards" + cid + stage + task + tool,
  7586. "style": {
  7587. "width": "90%",
  7588. "height": "90%",
  7589. "overflow": 'hidden'
  7590. },
  7591. "onresize": function () { }
  7592. }, {
  7593. closecallback: function () { }
  7594. }, {
  7595. "style": {
  7596. "height": "36px"
  7597. }
  7598. }).form; //创建窗体
  7599. _taskbar = {
  7600. "id": str + _formdiv.id,
  7601. "style": {
  7602. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7603. },
  7604. "name": "电子白板",
  7605. "forms": _formdiv,
  7606. "click": function () {
  7607. U.MD.D.I.openApplication(str, obj, info);
  7608. }
  7609. }
  7610. break;
  7611. case "mind":
  7612. aTool = 3;
  7613. _iframe = $$("iframe", {
  7614. "frameborder": "no",
  7615. "border": "0",
  7616. "scrolling ": "no",
  7617. "style": {
  7618. "cssText": "border:0;width:100%;height:100%"
  7619. },
  7620. "src": "/kityminder-editor/dist/index.html"
  7621. });
  7622. _box.appendChild(_iframe);
  7623. _box.appendChild(_jie);
  7624. _formdiv = new U.UF.UI.form(
  7625. "思维导图",
  7626. _box, { //"/jsmind/example/demo.html"
  7627. "id": "minds" + cid + stage + task + tool,
  7628. "style": {
  7629. "width": "90%",
  7630. "height": "90%",
  7631. "overflow": 'hidden'
  7632. },
  7633. "onresize": function () { }
  7634. }, {
  7635. closecallback: function () { }
  7636. }, {
  7637. "style": {
  7638. "height": "36px"
  7639. }
  7640. }).form; //创建窗体
  7641. _taskbar = {
  7642. "id": str + _formdiv.id,
  7643. "style": {
  7644. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7645. },
  7646. "name": "思维导图",
  7647. "forms": _formdiv,
  7648. "click": function () {
  7649. U.MD.D.I.openApplication(str, obj, info);
  7650. }
  7651. }
  7652. break;
  7653. case "doc":
  7654. aTool = 6;
  7655. _iframe = $$("iframe", {
  7656. "frameborder": "no",
  7657. "border": "0",
  7658. "scrolling ": "no",
  7659. "style": {
  7660. "cssText": "border:0;width:100%;height:100%"
  7661. },
  7662. "src": "/Office/Word/WordEditArea.htm"
  7663. })
  7664. _box.appendChild(_iframe);
  7665. _box.appendChild(_jie);
  7666. _formdiv = new U.UF.UI.form(
  7667. "协同文档",
  7668. _box, {
  7669. "id": "docs" + cid + stage + task + tool,
  7670. "style": {
  7671. "width": "90%",
  7672. "height": "90%",
  7673. "overflow": 'hidden'
  7674. },
  7675. "onresize": function () { }
  7676. }, {
  7677. closecallback: function () { }
  7678. }, {
  7679. "style": {
  7680. "height": "36px"
  7681. }
  7682. }).form; //创建窗体
  7683. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7684. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7685. })
  7686. _taskbar = {
  7687. "id": str + _formdiv.id,
  7688. "style": {
  7689. "backgroundImage": "url(/img/icon/doc.png)"
  7690. },
  7691. "name": "协同文档",
  7692. "forms": _formdiv,
  7693. "click": function () {
  7694. U.MD.D.I.openApplication(str, obj, info);
  7695. }
  7696. }
  7697. break;
  7698. }
  7699. const script1 = document.createElement("script");
  7700. script1.type = "text/javascript";
  7701. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7702. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7703. const script2 = document.createElement("script");
  7704. script2.type = "text/javascript";
  7705. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7706. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7707. const script3 = document.createElement("script");
  7708. script3.type = "text/javascript";
  7709. script3.charset = "UTF-8";
  7710. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7711. const script4 = document.createElement("script");
  7712. script4.type = "text/javascript";
  7713. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7714. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7715. if (_iframe) {
  7716. if (str == 'doc') {
  7717. _iframe = _formdiv.querySelector('iframe')
  7718. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7719. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7720. _iframe.contentWindow.document.body.appendChild(script1);
  7721. _iframe.contentWindow.document.body.appendChild(script2);
  7722. // _iframe.contentWindow.document.body.appendChild(script3);
  7723. _iframe.contentWindow.document.body.appendChild(script4);
  7724. })
  7725. if (onloadListener) {
  7726. _iframe.contentDocument.location.reload()
  7727. } else {
  7728. _iframe.contentDocument.location.reload()
  7729. }
  7730. } else if (str == 'mind') {
  7731. _iframe = _formdiv.querySelector('iframe')
  7732. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7733. _iframe.contentWindow.document.body.appendChild(script1);
  7734. _iframe.contentWindow.document.body.appendChild(script2);
  7735. _iframe.contentWindow.document.body.appendChild(script4);
  7736. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7737. })
  7738. if (onloadListener) {
  7739. _iframe.contentDocument.location.reload()
  7740. } else {
  7741. _iframe.contentDocument.location.reload()
  7742. }
  7743. } else {
  7744. _iframe.onload = () => {
  7745. _iframe.contentWindow.document.body.appendChild(script1);
  7746. _iframe.contentWindow.document.body.appendChild(script2);
  7747. // _iframe.contentWindow.document.body.appendChild(script3);
  7748. _iframe.contentWindow.document.body.appendChild(script4);
  7749. };
  7750. }
  7751. _jie.onclick = async () => {
  7752. let text = ''
  7753. if (aTool == 6) {
  7754. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7755. } else if (aTool == 3) {
  7756. text = await U.MD.D.I.getEditorContent(_iframe);
  7757. }
  7758. _loading.style.display = 'flex'
  7759. console.log(_loading);
  7760. var _ajs = _iframe.contentWindow.document.createElement("script");
  7761. _ajs.type = "text/javascript";
  7762. _ajs.innerHTML =
  7763. // 'console.log(' + _loading + ');\n' +
  7764. 'var _js = document.createElement("script");\n' +
  7765. '_js.type="text/javascript";\n' +
  7766. '_js.charset="UTF-8";\n' +
  7767. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7768. "_js.onload = function(){\n" +
  7769. ' var a = document.getElementsByTagName("img")\n' +
  7770. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7771. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7772. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7773. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7774. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7775. "beforeUpload_shishi(file," +
  7776. "'" +
  7777. _userid +
  7778. "'" +
  7779. ", " +
  7780. "'" +
  7781. _cid +
  7782. "'" +
  7783. ", " +
  7784. "'" +
  7785. _stage +
  7786. "'" +
  7787. ", " +
  7788. "'" +
  7789. _task +
  7790. "'" +
  7791. ", " +
  7792. "'" +
  7793. _tool +
  7794. "'" +
  7795. ", " +
  7796. "'" +
  7797. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7798. "'" +
  7799. ", " +
  7800. "'" +
  7801. aTool +
  7802. "'" +
  7803. ", " +
  7804. "`" +
  7805. text +
  7806. "`" +
  7807. ")\n" +
  7808. " });\n" +
  7809. "}\n" +
  7810. "document.head.appendChild(_js);\n";
  7811. _iframe.contentWindow.document.head.appendChild(_ajs);
  7812. }
  7813. }
  7814. //U.MD.D.I.openClick(str);
  7815. //如果有任务栏信息
  7816. // if (_taskbar) {
  7817. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7818. // }
  7819. }
  7820. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7821. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7822. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7823. _userinfo = US.userInfo, //登录用户信息
  7824. _userid = US.userInfo.userid //登录用户id
  7825. let _iframe;
  7826. let _cid = cid,
  7827. _stage = stage,
  7828. _task = task,
  7829. _tool = tool;
  7830. var _jie = $$("div", {
  7831. "style": {
  7832. "position": "absolute",
  7833. "bottom": "50px",
  7834. "right": "50px",
  7835. "zIndex": "9999",
  7836. "backgroundColor": "#2268bc",
  7837. "color": "#fff",
  7838. "padding": "12px 20px",
  7839. "cursor": "pointer",
  7840. "borderRadius": "4px",
  7841. },
  7842. "innerHTML": "确认并提交"
  7843. })
  7844. let aTool = ''
  7845. let _loading = document.createElement('div')
  7846. _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;"
  7847. // _loading.id = "";
  7848. let _lchild = document.createElement('div')
  7849. let _limg = document.createElement('img')
  7850. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7851. _limg.style = "width: 26px;margin-right: 10px;"
  7852. _lchild.appendChild(_limg)
  7853. let _lspan = document.createElement('span')
  7854. _lspan.innerHTML = "上传中..."
  7855. _lchild.appendChild(_lspan)
  7856. _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%);"
  7857. _loading.appendChild(_lchild)
  7858. var _box = $$('div', {
  7859. "style": {
  7860. "position": "relative",
  7861. "width": "100%",
  7862. "height": "100%",
  7863. },
  7864. })
  7865. _box.appendChild(_loading)
  7866. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7867. switch (str) {
  7868. case "whiteboard":
  7869. aTool = 1;
  7870. _iframe = $$("iframe", {
  7871. "frameborder": "no",
  7872. "border": "0",
  7873. "scrolling ": "no",
  7874. "style": {
  7875. "cssText": "border:0;width:100%;height:100%"
  7876. },
  7877. "src": "https://beta.iwb.cocorobo.cn/"
  7878. })
  7879. _box.appendChild(_iframe);
  7880. _box.appendChild(_jie);
  7881. _formdiv = new U.UF.UI.form(
  7882. "电子白板",
  7883. _box, {
  7884. "id": "whiteboards" + cid + stage + task + tool,
  7885. "style": {
  7886. "width": "90%",
  7887. "height": "90%",
  7888. "overflow": 'hidden'
  7889. },
  7890. "onresize": function () { }
  7891. }, {
  7892. closecallback: function () { }
  7893. }, {
  7894. "style": {
  7895. "height": "36px"
  7896. }
  7897. }).form; //创建窗体
  7898. _taskbar = {
  7899. "id": str + _formdiv.id,
  7900. "style": {
  7901. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7902. },
  7903. "name": "电子白板",
  7904. "forms": _formdiv,
  7905. "click": function () {
  7906. U.MD.D.I.openApplication(str, obj, info);
  7907. }
  7908. }
  7909. break;
  7910. case "mind":
  7911. aTool = 3;
  7912. _iframe = $$("iframe", {
  7913. "frameborder": "no",
  7914. "border": "0",
  7915. "scrolling ": "no",
  7916. "style": {
  7917. "cssText": "border:0;width:100%;height:100%"
  7918. },
  7919. "src": "/kityminder-editor/dist/index.html"
  7920. });
  7921. _box.appendChild(_iframe);
  7922. _box.appendChild(_jie);
  7923. _formdiv = new U.UF.UI.form(
  7924. "思维导图",
  7925. _box, { //"/jsmind/example/demo.html"
  7926. "id": "minds" + cid + stage + task + tool,
  7927. "style": {
  7928. "width": "90%",
  7929. "height": "90%",
  7930. "overflow": 'hidden'
  7931. },
  7932. "onresize": function () { }
  7933. }, {
  7934. closecallback: function () { }
  7935. }, {
  7936. "style": {
  7937. "height": "36px"
  7938. }
  7939. }).form; //创建窗体
  7940. _taskbar = {
  7941. "id": str + _formdiv.id,
  7942. "style": {
  7943. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7944. },
  7945. "name": "思维导图",
  7946. "forms": _formdiv,
  7947. "click": function () {
  7948. U.MD.D.I.openApplication(str, obj, info);
  7949. }
  7950. }
  7951. break;
  7952. case "doc":
  7953. aTool = 6;
  7954. _iframe = $$("iframe", {
  7955. "frameborder": "no",
  7956. "border": "0",
  7957. "scrolling ": "no",
  7958. "style": {
  7959. "cssText": "border:0;width:100%;height:100%"
  7960. },
  7961. "src": "/Office/Word/WordEditArea.htm"
  7962. })
  7963. _box.appendChild(_iframe);
  7964. _box.appendChild(_jie);
  7965. _formdiv = new U.UF.UI.form(
  7966. "协同文档",
  7967. _box, {
  7968. "id": "docs" + cid + stage + task + tool,
  7969. "style": {
  7970. "width": "90%",
  7971. "height": "90%",
  7972. "overflow": 'hidden'
  7973. },
  7974. "onresize": function () { }
  7975. }, {
  7976. closecallback: function () { }
  7977. }, {
  7978. "style": {
  7979. "height": "36px"
  7980. }
  7981. }).form; //创建窗体
  7982. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7983. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7984. })
  7985. _taskbar = {
  7986. "id": str + _formdiv.id,
  7987. "style": {
  7988. "backgroundImage": "url(/img/icon/doc.png)"
  7989. },
  7990. "name": "协同文档",
  7991. "forms": _formdiv,
  7992. "click": function () {
  7993. U.MD.D.I.openApplication(str, obj, info);
  7994. }
  7995. }
  7996. break;
  7997. }
  7998. const script1 = document.createElement("script");
  7999. script1.type = "text/javascript";
  8000. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8001. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8002. const script2 = document.createElement("script");
  8003. script2.type = "text/javascript";
  8004. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8005. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8006. const script3 = document.createElement("script");
  8007. script3.type = "text/javascript";
  8008. script3.charset = "UTF-8";
  8009. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8010. const script4 = document.createElement("script");
  8011. script4.type = "text/javascript";
  8012. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8013. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8014. if (_iframe) {
  8015. if (str == 'doc') {
  8016. _iframe = _formdiv.querySelector('iframe')
  8017. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8018. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8019. _iframe.contentWindow.document.body.appendChild(script1);
  8020. _iframe.contentWindow.document.body.appendChild(script2);
  8021. // _iframe.contentWindow.document.body.appendChild(script3);
  8022. _iframe.contentWindow.document.body.appendChild(script4);
  8023. })
  8024. if (onloadListener) {
  8025. _iframe.contentDocument.location.reload()
  8026. } else {
  8027. _iframe.contentDocument.location.reload()
  8028. }
  8029. } else if (str == 'mind') {
  8030. _iframe = _formdiv.querySelector('iframe')
  8031. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8032. _iframe.contentWindow.document.body.appendChild(script1);
  8033. _iframe.contentWindow.document.body.appendChild(script2);
  8034. _iframe.contentWindow.document.body.appendChild(script4);
  8035. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8036. })
  8037. if (onloadListener) {
  8038. _iframe.contentDocument.location.reload()
  8039. } else {
  8040. _iframe.contentDocument.location.reload()
  8041. }
  8042. } else {
  8043. _iframe.onload = () => {
  8044. _iframe.contentWindow.document.body.appendChild(script1);
  8045. _iframe.contentWindow.document.body.appendChild(script2);
  8046. // _iframe.contentWindow.document.body.appendChild(script3);
  8047. _iframe.contentWindow.document.body.appendChild(script4);
  8048. };
  8049. }
  8050. _jie.onclick = async () => {
  8051. let text = ''
  8052. if (aTool == 6) {
  8053. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8054. } else if (aTool == 3) {
  8055. text = await U.MD.D.I.getEditorContent(_iframe);
  8056. }
  8057. _loading.style.display = 'flex'
  8058. console.log(_loading);
  8059. var _ajs = _iframe.contentWindow.document.createElement("script");
  8060. _ajs.type = "text/javascript";
  8061. _ajs.innerHTML =
  8062. // 'console.log(' + _loading + ');\n' +
  8063. 'var _js = document.createElement("script");\n' +
  8064. '_js.type="text/javascript";\n' +
  8065. '_js.charset="UTF-8";\n' +
  8066. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8067. "_js.onload = function(){\n" +
  8068. ' var a = document.getElementsByTagName("img")\n' +
  8069. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8070. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8071. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8072. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8073. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8074. "beforeUpload_shishi(file," +
  8075. "'" +
  8076. _userid +
  8077. "'" +
  8078. ", " +
  8079. "'" +
  8080. _cid +
  8081. "'" +
  8082. ", " +
  8083. "'" +
  8084. _stage +
  8085. "'" +
  8086. ", " +
  8087. "'" +
  8088. _task +
  8089. "'" +
  8090. ", " +
  8091. "'" +
  8092. _tool +
  8093. "'" +
  8094. ", " +
  8095. "'" +
  8096. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8097. "'" +
  8098. ", " +
  8099. "'" +
  8100. aTool +
  8101. "'" +
  8102. ", " +
  8103. "`" +
  8104. text +
  8105. "`" +
  8106. ")\n" +
  8107. " });\n" +
  8108. "}\n" +
  8109. "document.head.appendChild(_js);\n";
  8110. _iframe.contentWindow.document.head.appendChild(_ajs);
  8111. }
  8112. }
  8113. //U.MD.D.I.openClick(str);
  8114. //如果有任务栏信息
  8115. // if (_taskbar) {
  8116. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8117. // }
  8118. }
  8119. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8120. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8121. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8122. _userinfo = US.userInfo, //登录用户信息
  8123. _userid = US.userInfo.userid //登录用户id
  8124. let _iframe;
  8125. let _cid = cid,
  8126. _stage = stage,
  8127. _task = task,
  8128. _tool = tool;
  8129. var _jie = $$("div", {
  8130. "style": {
  8131. "position": "absolute",
  8132. "bottom": "50px",
  8133. "right": "50px",
  8134. "zIndex": "9999",
  8135. "backgroundColor": "#2268bc",
  8136. "color": "#fff",
  8137. "padding": "12px 20px",
  8138. "cursor": "pointer",
  8139. "borderRadius": "4px",
  8140. },
  8141. "innerHTML": "上传模板"
  8142. })
  8143. let aTool = ''
  8144. let _loading = document.createElement('div')
  8145. _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;"
  8146. // _loading.id = "";
  8147. let _lchild = document.createElement('div')
  8148. let _limg = document.createElement('img')
  8149. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8150. _limg.style = "width: 26px;margin-right: 10px;"
  8151. _lchild.appendChild(_limg)
  8152. let _lspan = document.createElement('span')
  8153. _lspan.innerHTML = "上传中..."
  8154. _lchild.appendChild(_lspan)
  8155. _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%);"
  8156. _loading.appendChild(_lchild)
  8157. var _box = $$('div', {
  8158. "style": {
  8159. "position": "relative",
  8160. "width": "100%",
  8161. "height": "100%",
  8162. },
  8163. })
  8164. _box.appendChild(_loading)
  8165. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8166. switch (str) {
  8167. case "whiteboard":
  8168. aTool = 1;
  8169. _iframe = $$("iframe", {
  8170. "frameborder": "no",
  8171. "border": "0",
  8172. "scrolling ": "no",
  8173. "style": {
  8174. "cssText": "border:0;width:100%;height:100%"
  8175. },
  8176. "src": "https://beta.iwb.cocorobo.cn/"
  8177. })
  8178. _box.appendChild(_iframe);
  8179. _box.appendChild(_jie);
  8180. _formdiv = new U.UF.UI.form(
  8181. "电子白板",
  8182. _box, {
  8183. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8184. "style": {
  8185. "width": "90%",
  8186. "height": "90%",
  8187. "overflow": 'hidden'
  8188. },
  8189. "onresize": function () { }
  8190. }, {
  8191. closecallback: function () { }
  8192. }, {
  8193. "style": {
  8194. "height": "36px"
  8195. }
  8196. }).form; //创建窗体
  8197. _taskbar = {
  8198. "id": str + _formdiv.id,
  8199. "style": {
  8200. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8201. },
  8202. "name": "电子白板",
  8203. "forms": _formdiv,
  8204. "click": function () {
  8205. U.MD.D.I.openApplication(str, obj, info);
  8206. }
  8207. }
  8208. break;
  8209. case "mind":
  8210. aTool = 3;
  8211. _iframe = $$("iframe", {
  8212. "frameborder": "no",
  8213. "border": "0",
  8214. "scrolling ": "no",
  8215. "style": {
  8216. "cssText": "border:0;width:100%;height:100%"
  8217. },
  8218. "src": "/kityminder-editor/dist/index.html"
  8219. });
  8220. _box.appendChild(_iframe);
  8221. _box.appendChild(_jie);
  8222. _formdiv = new U.UF.UI.form(
  8223. "思维导图",
  8224. _box, { //"/jsmind/example/demo.html"
  8225. "id": "minds_Yu" + cid + stage + task + tool,
  8226. "style": {
  8227. "width": "90%",
  8228. "height": "90%",
  8229. "overflow": 'hidden'
  8230. },
  8231. "onresize": function () { }
  8232. }, {
  8233. closecallback: function () { }
  8234. }, {
  8235. "style": {
  8236. "height": "36px"
  8237. }
  8238. }).form; //创建窗体
  8239. _taskbar = {
  8240. "id": str + _formdiv.id,
  8241. "style": {
  8242. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8243. },
  8244. "name": "思维导图",
  8245. "forms": _formdiv,
  8246. "click": function () {
  8247. U.MD.D.I.openApplication(str, obj, info);
  8248. }
  8249. }
  8250. break;
  8251. case "doc":
  8252. aTool = 6;
  8253. _iframe = $$("iframe", {
  8254. "frameborder": "no",
  8255. "border": "0",
  8256. "scrolling ": "no",
  8257. "style": {
  8258. "cssText": "border:0;width:100%;height:100%"
  8259. },
  8260. "src": "/Office/Word/WordEditArea.htm"
  8261. })
  8262. _box.appendChild(_iframe);
  8263. _box.appendChild(_jie);
  8264. _formdiv = new U.UF.UI.form(
  8265. "协同文档",
  8266. _box, {
  8267. "id": "docs_Yu" + cid + stage + task + tool,
  8268. "style": {
  8269. "width": "90%",
  8270. "height": "90%",
  8271. "overflow": 'hidden'
  8272. },
  8273. "onresize": function () { }
  8274. }, {
  8275. closecallback: function () { }
  8276. }, {
  8277. "style": {
  8278. "height": "36px"
  8279. }
  8280. }).form; //创建窗体
  8281. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8282. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8283. })
  8284. _taskbar = {
  8285. "id": str + _formdiv.id,
  8286. "style": {
  8287. "backgroundImage": "url(/img/icon/doc.png)"
  8288. },
  8289. "name": "协同文档",
  8290. "forms": _formdiv,
  8291. "click": function () {
  8292. U.MD.D.I.openApplication(str, obj, info);
  8293. }
  8294. }
  8295. break;
  8296. case "CocoPi":
  8297. aTool = 57;
  8298. _iframe = $$("iframe", {
  8299. "allowpaymentrequest": "allowpaymentrequest",
  8300. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8301. "webkitallowfullscreen": "",
  8302. "mozallowfullscreen": "",
  8303. "frameborder": "no",
  8304. "border": "0",
  8305. "scrolling ": "no",
  8306. "style": {
  8307. "cssText": "border:0;width:100%;height:100%"
  8308. },
  8309. "src": "https://pi.cocorobo.cn/"
  8310. })
  8311. _box.appendChild(_iframe);
  8312. _box.appendChild(_jie);
  8313. _formdiv = new U.UF.UI.form(
  8314. "CocoPi",
  8315. _box, {
  8316. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8317. "style": {
  8318. "width": "90%",
  8319. "height": "90%",
  8320. "overflow": 'hidden'
  8321. },
  8322. "onresize": function () { }
  8323. }, {
  8324. closecallback: function () { }
  8325. }, {
  8326. "style": {
  8327. "height": "36px"
  8328. }
  8329. }).form; //创建窗体
  8330. _taskbar = {
  8331. "id": str + _formdiv.id,
  8332. "style": {
  8333. "backgroundImage": "url(/img/icon/cocopi.png)"
  8334. },
  8335. "name": "CocoPi",
  8336. "forms": _formdiv,
  8337. "click": function () {
  8338. U.MD.D.I.openApplication(str, obj, info);
  8339. }
  8340. }
  8341. break;
  8342. }
  8343. if (_iframe) {
  8344. if (str == 'doc') {
  8345. _iframe = _formdiv.querySelector('iframe')
  8346. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8347. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8348. })
  8349. if (onloadListener) {
  8350. _iframe.contentDocument.location.reload()
  8351. } else {
  8352. _iframe.contentDocument.location.reload()
  8353. }
  8354. } else if (str == 'mind') {
  8355. _iframe = _formdiv.querySelector('iframe')
  8356. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8357. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8358. })
  8359. if (onloadListener) {
  8360. _iframe.contentDocument.location.reload()
  8361. } else {
  8362. _iframe.contentDocument.location.reload()
  8363. }
  8364. } else if (str == 'whiteboard') {
  8365. _iframe = _formdiv.querySelector('iframe')
  8366. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8367. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8368. })
  8369. if (onloadListener) {
  8370. try {
  8371. _iframe.src += "?cocorobo="+new Date().getTime()
  8372. _iframe.contentWindow.document.location.reload()
  8373. } catch (error) {
  8374. }
  8375. } else {
  8376. _iframe.contentDocument.location.reload()
  8377. }
  8378. } else if (str == 'CocoPi') {
  8379. _iframe = _formdiv.querySelector('iframe')
  8380. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8381. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8382. })
  8383. if (onloadListener) {
  8384. _iframe.contentDocument.location.reload()
  8385. } else {
  8386. _iframe.contentDocument.location.reload()
  8387. }
  8388. } else {
  8389. _iframe.onload = () => { };
  8390. }
  8391. _jie.onclick = async () => {
  8392. let text = ''
  8393. let type = '2'
  8394. if (aTool == 1) {
  8395. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8396. type = '3'
  8397. } else if (aTool == 6) {
  8398. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8399. type = '1'
  8400. } else if (aTool == 3) {
  8401. text = await U.MD.D.I.getEditorContent(_iframe);
  8402. type = '2'
  8403. } else if (aTool == 57) {
  8404. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8405. type = '4'
  8406. }
  8407. _loading.style.display = 'flex'
  8408. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8409. }
  8410. }
  8411. //U.MD.D.I.openClick(str);
  8412. //如果有任务栏信息
  8413. // if (_taskbar) {
  8414. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8415. // }
  8416. }
  8417. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8418. var xmlhttp;
  8419. var Mac, Sn, DeviceId
  8420. if (window.XMLHttpRequest) {
  8421. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8422. xmlhttp = new XMLHttpRequest();
  8423. } else {
  8424. // IE6, IE5 浏览器执行代码
  8425. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8426. }
  8427. xmlhttp.onreadystatechange = function () {
  8428. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8429. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8430. // resolve(res.value[0][0].text);
  8431. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8432. }
  8433. }
  8434. }
  8435. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8436. xmlhttp.send();
  8437. }
  8438. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8439. var xmlhttp;
  8440. var Mac, Sn, DeviceId
  8441. if (window.XMLHttpRequest) {
  8442. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8443. xmlhttp = new XMLHttpRequest();
  8444. } else {
  8445. // IE6, IE5 浏览器执行代码
  8446. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8447. }
  8448. xmlhttp.onreadystatechange = function () {
  8449. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8450. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8451. // resolve(res.value[0][0].text);
  8452. if (type == '2') {
  8453. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8454. } else if (type == '3') {
  8455. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8456. } else if (type == '4') {
  8457. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8458. }
  8459. } else {
  8460. if (type == '2') {
  8461. iframe.contentWindow.editor.minder.importData('json', '')
  8462. } else if (type == '3') {
  8463. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8464. } else if (type == '4') {
  8465. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8466. }
  8467. }
  8468. }
  8469. }
  8470. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8471. xmlhttp.send();
  8472. }
  8473. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8474. var xmlhttp;
  8475. var Mac, Sn, DeviceId
  8476. if (window.XMLHttpRequest) {
  8477. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8478. xmlhttp = new XMLHttpRequest();
  8479. } else {
  8480. // IE6, IE5 浏览器执行代码
  8481. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8482. }
  8483. xmlhttp.onreadystatechange = function () {
  8484. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8485. if (xmlhttp.response) {
  8486. // resolve(res.value[0][0].text);
  8487. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8488. // $(fileInput).val('');
  8489. // });
  8490. span.innerHTML = '上传成功'
  8491. setTimeout(() => {
  8492. loading.style.display = 'none'
  8493. }, 1000);
  8494. }
  8495. }
  8496. }
  8497. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8498. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8499. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8500. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8501. // 设置请求头,表示请求体的编码格式
  8502. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8503. // 设置请求体,使用url-encoded格式的数据
  8504. }
  8505. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8506. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8507. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8508. _userinfo = US.userInfo, //登录用户信息
  8509. _userid = US.userInfo.userid //登录用户id
  8510. let _iframe;
  8511. let _cid = cid,
  8512. _stage = stage,
  8513. _task = task,
  8514. _tool = tool;
  8515. var _jie = $$("div", {
  8516. "style": {
  8517. "position": "absolute",
  8518. "bottom": "50px",
  8519. "right": "50px",
  8520. "zIndex": "9999",
  8521. "backgroundColor": "#2268bc",
  8522. "color": "#fff",
  8523. "padding": "12px 20px",
  8524. "cursor": "pointer",
  8525. "borderRadius": "4px",
  8526. },
  8527. "innerHTML": "提交作业"
  8528. })
  8529. let aTool = ''
  8530. let _loading = document.createElement('div')
  8531. _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;"
  8532. // _loading.id = "";
  8533. let _lchild = document.createElement('div')
  8534. let _limg = document.createElement('img')
  8535. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8536. _limg.style = "width: 26px;margin-right: 10px;"
  8537. _lchild.appendChild(_limg)
  8538. let _lspan = document.createElement('span')
  8539. _lspan.innerHTML = "上传中..."
  8540. _lchild.appendChild(_lspan)
  8541. _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%);"
  8542. _loading.appendChild(_lchild)
  8543. var _box = $$('div', {
  8544. "style": {
  8545. "position": "relative",
  8546. "width": "100%",
  8547. "height": "100%",
  8548. },
  8549. })
  8550. _box.appendChild(_loading)
  8551. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8552. switch (str) {
  8553. case "CocoPi":
  8554. aTool = 57;
  8555. _iframe = $$("iframe", {
  8556. "allowpaymentrequest": "allowpaymentrequest",
  8557. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8558. "webkitallowfullscreen": "",
  8559. "mozallowfullscreen": "",
  8560. "frameborder": "no",
  8561. "border": "0",
  8562. "scrolling ": "no",
  8563. "style": {
  8564. "cssText": "border:0;width:100%;height:100%"
  8565. },
  8566. "src": "https://pi.cocorobo.cn/"
  8567. })
  8568. _box.appendChild(_iframe);
  8569. _box.appendChild(_jie);
  8570. _formdiv = new U.UF.UI.form(
  8571. "CocoPi",
  8572. _box, {
  8573. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8574. "style": {
  8575. "width": "90%",
  8576. "height": "90%",
  8577. "overflow": 'hidden'
  8578. },
  8579. "onresize": function () { }
  8580. }, {
  8581. closecallback: function () { }
  8582. }, {
  8583. "style": {
  8584. "height": "36px"
  8585. }
  8586. }).form; //创建窗体
  8587. _taskbar = {
  8588. "id": str + _formdiv.id,
  8589. "style": {
  8590. "backgroundImage": "url(/img/icon/cocopi.png)"
  8591. },
  8592. "name": "CocoPi",
  8593. "forms": _formdiv,
  8594. "click": function () {
  8595. U.MD.D.I.openApplication(str, obj, info);
  8596. }
  8597. }
  8598. break;
  8599. }
  8600. if (_iframe) {
  8601. if (str == 'CocoPi') {
  8602. _iframe = _formdiv.querySelector('iframe')
  8603. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8604. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8605. })
  8606. if (onloadListener) {
  8607. _iframe.contentDocument.location.reload()
  8608. } else {
  8609. _iframe.contentDocument.location.reload()
  8610. }
  8611. }
  8612. _jie.onclick = async () => {
  8613. let text = ''
  8614. if (aTool == 57) {
  8615. text = _iframe.contentWindow.getLoadXmlStr()
  8616. }
  8617. _loading.style.display = 'flex'
  8618. console.log(_loading);
  8619. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8620. _loading.style.display = 'none'
  8621. let _div = document.createElement('div')
  8622. _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;"
  8623. let _inner = document.createElement('div')
  8624. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8625. _inner.innerHTML = "上传成功"
  8626. _div.appendChild(_inner)
  8627. _iframe.contentWindow.window.document.body.appendChild(_div)
  8628. _div.onclick = () => {
  8629. _iframe.contentWindow.window.document.body.removeChild(_div)
  8630. }
  8631. setTimeout(() => {
  8632. _iframe.contentWindow.window.document.body.removeChild(_div)
  8633. }, 1000);
  8634. }, [], { "type": "POST", "withCredentials": true });
  8635. }
  8636. }
  8637. }
  8638. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8639. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8640. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8641. _userid = student.userid, //登录用户id
  8642. _username = student.student //用户名字
  8643. let _iframe;
  8644. let _cid = cid,
  8645. _stage = stage,
  8646. _task = task,
  8647. _tool = tool;
  8648. var _jie = $$("div", {
  8649. "style": {
  8650. "position": "absolute",
  8651. "bottom": "50px",
  8652. "right": "50px",
  8653. "zIndex": "9999",
  8654. "backgroundColor": "#2268bc",
  8655. "color": "#fff",
  8656. "padding": "12px 20px",
  8657. "cursor": "pointer",
  8658. "borderRadius": "4px",
  8659. },
  8660. "innerHTML": "提交作业"
  8661. })
  8662. let aTool = ''
  8663. let _loading = document.createElement('div')
  8664. _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;"
  8665. // _loading.id = "";
  8666. let _lchild = document.createElement('div')
  8667. let _limg = document.createElement('img')
  8668. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8669. _limg.style = "width: 26px;margin-right: 10px;"
  8670. _lchild.appendChild(_limg)
  8671. let _lspan = document.createElement('span')
  8672. _lspan.innerHTML = "上传中..."
  8673. _lchild.appendChild(_lspan)
  8674. _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%);"
  8675. _loading.appendChild(_lchild)
  8676. var _box = $$('div', {
  8677. "style": {
  8678. "position": "relative",
  8679. "width": "100%",
  8680. "height": "100%",
  8681. },
  8682. })
  8683. _box.appendChild(_loading)
  8684. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8685. switch (str) {
  8686. case "CocoPi":
  8687. aTool = 57;
  8688. _iframe = $$("iframe", {
  8689. "allowpaymentrequest": "allowpaymentrequest",
  8690. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8691. "webkitallowfullscreen": "",
  8692. "mozallowfullscreen": "",
  8693. "frameborder": "no",
  8694. "border": "0",
  8695. "scrolling ": "no",
  8696. "style": {
  8697. "cssText": "border:0;width:100%;height:100%"
  8698. },
  8699. "src": "https://pi.cocorobo.cn/"
  8700. })
  8701. _box.appendChild(_iframe);
  8702. _box.appendChild(_jie);
  8703. _formdiv = new U.UF.UI.form(
  8704. "CocoPi-" + _username,
  8705. _box, {
  8706. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8707. "style": {
  8708. "width": "90%",
  8709. "height": "90%",
  8710. "overflow": 'hidden'
  8711. },
  8712. "onresize": function () { }
  8713. }, {
  8714. closecallback: function () { }
  8715. }, {
  8716. "style": {
  8717. "height": "36px"
  8718. }
  8719. }).form; //创建窗体
  8720. _taskbar = {
  8721. "id": str + _formdiv.id,
  8722. "style": {
  8723. "backgroundImage": "url(/img/icon/cocopi.png)"
  8724. },
  8725. "name": "CocoPi",
  8726. "forms": _formdiv,
  8727. "click": function () {
  8728. U.MD.D.I.openApplication(str, obj, info);
  8729. }
  8730. }
  8731. break;
  8732. }
  8733. if (_iframe) {
  8734. if (str == 'CocoPi') {
  8735. _iframe = _formdiv.querySelector('iframe')
  8736. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8737. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8738. })
  8739. if (onloadListener) {
  8740. _iframe.contentDocument.location.reload()
  8741. } else {
  8742. _iframe.contentDocument.location.reload()
  8743. }
  8744. }
  8745. _jie.onclick = async () => {
  8746. let text = ''
  8747. if (aTool == 57) {
  8748. text = _iframe.contentWindow.getLoadXmlStr()
  8749. }
  8750. _loading.style.display = 'flex'
  8751. console.log(_loading);
  8752. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8753. _loading.style.display = 'none'
  8754. let _div = document.createElement('div')
  8755. _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;"
  8756. let _inner = document.createElement('div')
  8757. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8758. _inner.innerHTML = "上传成功"
  8759. _div.appendChild(_inner)
  8760. _iframe.contentWindow.window.document.body.appendChild(_div)
  8761. _div.onclick = () => {
  8762. _iframe.contentWindow.window.document.body.removeChild(_div)
  8763. }
  8764. setTimeout(() => {
  8765. _iframe.contentWindow.window.document.body.removeChild(_div)
  8766. }, 1000);
  8767. }, [], { "type": "POST", "withCredentials": true });
  8768. }
  8769. }
  8770. }
  8771. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8772. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8773. if (res.value[0].length > 0) {
  8774. if (atool == 57) {
  8775. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8776. }
  8777. } else {
  8778. if (atool == 57) {
  8779. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8780. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8781. }
  8782. }
  8783. }, [], { "type": "POST", "withCredentials": true });
  8784. }