DeskTop.js 537 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843
  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. ];
  730. //hk
  731. U.MD.D.I.hkaceStudentDeskIcon = [
  732. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  734. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  735. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  736. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  737. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  738. ];
  739. //香海正覺蓮社佛教正覺中學
  740. U.MD.D.I.hkZJLSteacherDeskIcon = [
  741. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  742. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  743. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  744. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  745. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  746. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  747. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  748. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  749. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  750. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  751. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  752. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  753. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  754. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  756. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  757. ];
  758. //香海正覺蓮社佛教正覺中學
  759. U.MD.D.I.hkZJLSStudentDeskIcon = [
  760. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  764. ];
  765. //云海
  766. U.MD.D.I.yunhaiTeacherDeskIcon = [
  767. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  768. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  769. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  770. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  771. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  772. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  773. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  774. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  775. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  776. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  777. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  778. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  779. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  780. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  781. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  782. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  783. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  784. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  785. ];
  786. //福田
  787. U.MD.D.I.heyuanTeacherDeskIcon = [
  788. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  789. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  790. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  791. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  792. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  793. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  794. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  795. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  796. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  797. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  800. ];
  801. //福田
  802. U.MD.D.I.heyuanAdminDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  807. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  808. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  809. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  810. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  811. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  812. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  813. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  814. ];
  815. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  816. U.MD.D.I.szherTeacherDeskIcon = [
  817. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  818. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  819. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  820. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  821. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  822. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  823. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  824. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  825. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  826. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  827. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  828. ];
  829. //dsei
  830. U.MD.D.I.dseiTeacherDeskIcon = [
  831. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  832. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  833. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  834. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  835. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  836. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  837. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  838. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  839. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  840. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  841. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  842. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  843. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  844. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  845. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  846. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  847. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  848. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  849. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  850. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  851. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  852. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  853. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  854. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  855. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  856. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  857. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  858. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  859. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  860. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  861. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  862. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  863. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  864. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  865. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  866. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  867. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  868. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  869. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  870. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  871. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  872. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  873. ];
  874. //dsei
  875. U.MD.D.I.dseiAdminDeskIcon = [
  876. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  877. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  878. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  879. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  880. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  881. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  882. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  883. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  884. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  885. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  886. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  887. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  888. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  889. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  890. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  891. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  892. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  893. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  894. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  895. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  896. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  897. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  898. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  899. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  900. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  901. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  902. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  903. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  904. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  905. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  906. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  907. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  908. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  909. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  910. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  911. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  912. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  913. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  914. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  916. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  917. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  918. ];
  919. //dsei
  920. U.MD.D.I.dseiStudentDeskIcon = [
  921. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  927. ];
  928. //未来教育基地
  929. U.MD.D.I.szjkyTeacherDeskIcon = [
  930. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  931. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  932. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  933. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  934. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  935. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  936. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  937. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  938. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  939. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  940. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  941. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  942. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  944. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  945. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  946. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  947. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  948. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  949. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  950. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  951. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  952. { "Name": "学生pbl", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  953. ];
  954. //未来教育基地
  955. U.MD.D.I.szjkyAdminDeskIcon = [
  956. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  957. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  958. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  959. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  960. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  961. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  962. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. { "Name": "学生pbl", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. ];
  980. //未来教育基地
  981. U.MD.D.I.szjkyStudentDeskIcon = [
  982. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  983. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  984. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  985. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  986. ];
  987. //成华教育局
  988. U.MD.D.I.chjyjTeacherDeskIcon = [
  989. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  990. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  991. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  992. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  993. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  994. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  995. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  996. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  997. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  998. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  999. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1000. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1001. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1002. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1003. ];
  1004. //成华教育局chjyj
  1005. U.MD.D.I.chjyjAdminDeskIcon = [
  1006. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1007. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1008. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1009. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1010. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1011. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1012. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1013. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1014. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1015. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1016. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1017. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1018. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1021. ];
  1022. //成华教育局chjyj
  1023. U.MD.D.I.chjyjStudentDeskIcon = [
  1024. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1028. ];
  1029. //tpc
  1030. U.MD.D.I.tpcStudentDeskIcon = [
  1031. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1032. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1033. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1034. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1035. ];
  1036. //tpc
  1037. U.MD.D.I.tpcTeacherDeskIcon = [
  1038. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1039. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1040. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1041. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1042. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1043. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1044. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1045. ];
  1046. //tpc
  1047. U.MD.D.I.tpcAdminDeskIcon = [
  1048. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1049. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1050. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1051. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1052. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1053. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1054. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1055. ];
  1056. //THU-IOE
  1057. U.MD.D.I.thuioeTeacherDeskIcon = [
  1058. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1059. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1060. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1061. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1062. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1063. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1064. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1065. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1066. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1067. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1068. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1069. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1070. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1071. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1072. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1073. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1074. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1075. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1076. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1077. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1078. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1079. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1080. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1081. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1082. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1083. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1084. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1085. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1086. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1087. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1088. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1089. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1090. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1091. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1092. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1093. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1094. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1095. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1096. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1097. ];
  1098. //THU-IOE
  1099. U.MD.D.I.thuioeStudentDeskIcon = [
  1100. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1101. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1102. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1104. ];
  1105. //jccssyl
  1106. U.MD.D.I.jccssylTeacherDeskIcon = [
  1107. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1108. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1109. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1110. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1111. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1112. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1113. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1114. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1115. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1116. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1117. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1118. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1119. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1120. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1121. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1122. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1123. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1124. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1125. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1126. ];
  1127. //jccssyl
  1128. U.MD.D.I.jccssylStudentDeskIcon = [
  1129. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1131. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1132. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1133. ];
  1134. //cale
  1135. U.MD.D.I.caleTeacherDeskIcon = [
  1136. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1137. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1138. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1139. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1140. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1141. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1142. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1143. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1144. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1145. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1146. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1147. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1148. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1149. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1150. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1152. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1153. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1154. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1155. ];
  1156. //cale
  1157. U.MD.D.I.caleStudentDeskIcon = [
  1158. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1159. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1160. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1161. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1162. ];
  1163. //lqwmsgzs
  1164. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1165. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1166. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1167. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1168. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1169. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1170. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1171. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1172. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1173. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1174. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1175. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1176. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1177. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1178. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1179. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1180. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1181. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1182. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1183. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1184. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1185. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1186. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1187. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1188. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1189. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1190. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1191. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1192. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1193. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1194. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1195. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1196. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1197. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1198. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1199. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1200. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1201. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1202. ];
  1203. //lqwmsgzs
  1204. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1205. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1206. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1207. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1209. ];
  1210. //盐田区幼儿园
  1211. U.MD.D.I.ytyTeacherDeskIcon = [
  1212. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1213. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1214. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1215. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1216. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1217. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1218. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1219. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1220. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1221. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1222. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1223. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1224. ];
  1225. //盐田区幼儿园
  1226. U.MD.D.I.ytyStudentDeskIcon = [
  1227. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1228. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1229. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1230. ];
  1231. //#region 桌面初始化a
  1232. /**
  1233. * 初始化桌面的起始函数
  1234. *
  1235. */
  1236. U.MD.D.I.init = function () {
  1237. if ($("#U_MD_D_K")[0]) {
  1238. //初始化桌面图标
  1239. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1240. // var clickUrl = ':12588/requestIp.php';
  1241. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1242. // U.MD.D.I.Ip = data;
  1243. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1244. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1245. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1246. // })
  1247. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1248. // })
  1249. }
  1250. }
  1251. /**
  1252. * 模式切换
  1253. *
  1254. */
  1255. U.MD.D.I.ModeCheck = function (type) {
  1256. if (US.Config.type == type) {
  1257. return
  1258. }
  1259. US.Config.type = type
  1260. $('.U_PBL_Check .active')[0].className = ''
  1261. if (type == 1) {
  1262. $('.U_PBL_Check div')[0].className = 'active'
  1263. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1264. } else {
  1265. $('.U_PBL_Check div')[1].className = 'active'
  1266. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1267. }
  1268. //初始化桌面图标
  1269. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1270. if (type == 2) {
  1271. U.MD.D.I.openApplication("project")
  1272. }
  1273. }
  1274. /**
  1275. * 隐藏任务栏
  1276. *
  1277. * @param {element} 桌面元素
  1278. */
  1279. U.MD.D.I.hiddenTaskbar = function (el) {
  1280. //任务栏位置变小
  1281. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1282. //桌面的位置变大
  1283. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1284. }
  1285. /**
  1286. * 隐藏任务栏
  1287. *
  1288. * @param {element} 桌面元素
  1289. */
  1290. U.MD.D.I.hiddenTaskbarout = function (el) {
  1291. //任务栏位置变小
  1292. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1293. //任务栏位置变化
  1294. U.selectEl(el).css({ "bottom": "-60px" });
  1295. //桌面的位置变大
  1296. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1297. }
  1298. }
  1299. /**
  1300. * 初始化打印桌面图标
  1301. *
  1302. * @param {element} 桌面元素
  1303. */
  1304. U.MD.D.I.initDesktopIcons = function (el, type) {
  1305. var i, //用于循环
  1306. _content, //桌面图标元素
  1307. _iconcontent, //桌面图标元素
  1308. _frag = $$("frag"), //定义一个碎片元素
  1309. _type = US.userInfo.type,
  1310. _org = US.userInfo.org,
  1311. _oid = US.userInfo.organizeid,
  1312. _role = US.userInfo.role,
  1313. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1314. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1315. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1316. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1317. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1318. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1319. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1320. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1321. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1322. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1323. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1324. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1325. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1326. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1327. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1328. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1329. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1330. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1331. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1332. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1333. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1334. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1335. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1336. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1337. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1338. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1339. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1340. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1341. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1342. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1343. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1344. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1345. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1346. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1347. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1348. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1349. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1350. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1351. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1352. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1353. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1354. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1355. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1356. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1357. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1358. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1359. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1360. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1361. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1362. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1363. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1364. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1365. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1366. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1367. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1368. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1369. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1370. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1371. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1372. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1373. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1374. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1375. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1376. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1377. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1378. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1379. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //网络夏令营
  1380. 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'];
  1381. 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'];
  1382. //清楚桌面图标
  1383. el.innerHTML = "";
  1384. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1385. _teacherDesktopIconInfo.push(
  1386. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1387. { "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)" } },
  1388. )
  1389. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1390. }
  1391. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1392. _teacherDesktopIconInfo.push(
  1393. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1394. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1395. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1396. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1397. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1398. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1399. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1400. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1401. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1402. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1403. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1404. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1405. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1406. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1407. { "Name": "学生pbl", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1408. )
  1409. }
  1410. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1411. _teacherDesktopIconInfo.push(
  1412. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1413. )
  1414. }
  1415. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1416. // _teacherDesktopIconInfo.push(
  1417. // )
  1418. // }
  1419. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1420. _teacherDesktopIconInfo.push(
  1421. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1422. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1423. )
  1424. }
  1425. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1426. _teacherDesktopIconInfo.push(
  1427. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1428. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1429. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1431. )
  1432. _studentDesktopIconInfo.push(
  1433. )
  1434. }
  1435. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1436. _teacherDesktopIconInfo.push(
  1437. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1438. )
  1439. _studentDesktopIconInfo.push(
  1440. )
  1441. }
  1442. //麒麟二中 和 民新小学
  1443. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1444. _teacherDesktopIconInfo.push(
  1445. )
  1446. }
  1447. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1448. _teacherDesktopIconInfo.push(
  1449. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1450. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1451. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1452. )
  1453. }
  1454. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1455. _teacherDesktopIconInfo.push(
  1456. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1457. )
  1458. }
  1459. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1460. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1461. _teacherDesktopIconInfo.push(
  1462. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1463. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1464. )
  1465. }
  1466. //麒麟二中
  1467. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1468. _studentDesktopIconInfo.push(
  1469. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1470. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1471. )
  1472. }
  1473. //万科双语
  1474. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1475. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1476. if (el.Name == '项目管理') {
  1477. el.Name = 'PBL项目'
  1478. }
  1479. return el
  1480. })
  1481. _studentDesktopIconInfo3.push(
  1482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1483. )
  1484. }
  1485. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1486. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1487. return el.Name != '魔盒识字' && el.Name != '24点'
  1488. })
  1489. }
  1490. 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) {
  1491. _studentDesktopIconInfo.push(
  1492. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1493. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1494. )
  1495. }
  1496. //循环创建桌面图标
  1497. if (type == 1) {
  1498. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1499. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1500. _content = $$("div", {
  1501. className: "U_MD_D_KO",
  1502. "onmousedown": U.UF.C.closure(function (obj) {
  1503. //防止拖动图标即打开了桌面应用
  1504. U.MD.D.click(this, obj);
  1505. }, [_studentDesktopIconInfo[i]]),
  1506. "onclick": U.UF.C.closure(function (obj) {
  1507. //防止拖动图标即打开了桌面应用
  1508. U.MD.D.click(this, obj);
  1509. }, [_studentDesktopIconInfo[i]])
  1510. }, _frag); //
  1511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1514. }
  1515. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1516. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1517. _content = $$("div", {
  1518. className: "U_MD_D_KO",
  1519. "onmousedown": U.UF.C.closure(function (obj) {
  1520. //防止拖动图标即打开了桌面应用
  1521. U.MD.D.click(this, obj);
  1522. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1523. "onclick": U.UF.C.closure(function (obj) {
  1524. //防止拖动图标即打开了桌面应用
  1525. U.MD.D.click(this, obj);
  1526. }, [_hkZJLSStudentDeskIconInfo[i]])
  1527. }, _frag); //
  1528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1531. } //
  1532. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1533. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1534. _content = $$("div", {
  1535. className: "U_MD_D_KO",
  1536. "onmousedown": U.UF.C.closure(function (obj) {
  1537. //防止拖动图标即打开了桌面应用
  1538. U.MD.D.click(this, obj);
  1539. }, [_ytyStudentDeskIconInfo[i]]),
  1540. "onclick": U.UF.C.closure(function (obj) {
  1541. //防止拖动图标即打开了桌面应用
  1542. U.MD.D.click(this, obj);
  1543. }, [_ytyStudentDeskIconInfo[i]])
  1544. }, _frag); //
  1545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1548. } //
  1549. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1550. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1551. _content = $$("div", {
  1552. className: "U_MD_D_KO",
  1553. "onmousedown": U.UF.C.closure(function (obj) {
  1554. //防止拖动图标即打开了桌面应用
  1555. U.MD.D.click(this, obj);
  1556. }, [_jccssylStudentDeskIconInfo[i]]),
  1557. "onclick": U.UF.C.closure(function (obj) {
  1558. //防止拖动图标即打开了桌面应用
  1559. U.MD.D.click(this, obj);
  1560. }, [_jccssylStudentDeskIconInfo[i]])
  1561. }, _frag); //
  1562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1565. }
  1566. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1567. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1568. _content = $$("div", {
  1569. className: "U_MD_D_KO",
  1570. "onmousedown": U.UF.C.closure(function (obj) {
  1571. //防止拖动图标即打开了桌面应用
  1572. U.MD.D.click(this, obj);
  1573. }, [_caleStudentDeskIconInfo[i]]),
  1574. "onclick": U.UF.C.closure(function (obj) {
  1575. //防止拖动图标即打开了桌面应用
  1576. U.MD.D.click(this, obj);
  1577. }, [_caleStudentDeskIconInfo[i]])
  1578. }, _frag); //
  1579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1582. }
  1583. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1584. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1585. _content = $$("div", {
  1586. className: "U_MD_D_KO",
  1587. "onmousedown": U.UF.C.closure(function (obj) {
  1588. //防止拖动图标即打开了桌面应用
  1589. U.MD.D.click(this, obj);
  1590. }, [_thuioeStudentDeskIconInfo[i]]),
  1591. "onclick": U.UF.C.closure(function (obj) {
  1592. //防止拖动图标即打开了桌面应用
  1593. U.MD.D.click(this, obj);
  1594. }, [_thuioeStudentDeskIconInfo[i]])
  1595. }, _frag); //
  1596. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1597. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1598. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1599. }
  1600. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1601. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1602. _content = $$("div", {
  1603. className: "U_MD_D_KO",
  1604. "onmousedown": U.UF.C.closure(function (obj) {
  1605. //防止拖动图标即打开了桌面应用
  1606. U.MD.D.click(this, obj);
  1607. }, [_tpcStudentDeskIconInfo[i]]),
  1608. "onclick": U.UF.C.closure(function (obj) {
  1609. //防止拖动图标即打开了桌面应用
  1610. U.MD.D.click(this, obj);
  1611. }, [_tpcStudentDeskIconInfo[i]])
  1612. }, _frag); //
  1613. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1614. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1615. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1616. } //
  1617. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1618. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1619. _content = $$("div", {
  1620. className: "U_MD_D_KO",
  1621. "onmousedown": U.UF.C.closure(function (obj) {
  1622. //防止拖动图标即打开了桌面应用
  1623. U.MD.D.click(this, obj);
  1624. }, [_chjyjStudentDeskIconInfo[i]]),
  1625. "onclick": U.UF.C.closure(function (obj) {
  1626. //防止拖动图标即打开了桌面应用
  1627. U.MD.D.click(this, obj);
  1628. }, [_chjyjStudentDeskIconInfo[i]])
  1629. }, _frag); //
  1630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1633. }
  1634. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1635. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1636. _content = $$("div", {
  1637. className: "U_MD_D_KO",
  1638. "onmousedown": U.UF.C.closure(function (obj) {
  1639. //防止拖动图标即打开了桌面应用
  1640. U.MD.D.click(this, obj);
  1641. }, [_szjkyStudentDeskIconInfo[i]]),
  1642. "onclick": U.UF.C.closure(function (obj) {
  1643. //防止拖动图标即打开了桌面应用
  1644. U.MD.D.click(this, obj);
  1645. }, [_szjkyStudentDeskIconInfo[i]])
  1646. }, _frag); //
  1647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1650. }
  1651. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1652. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1653. _content = $$("div", {
  1654. className: "U_MD_D_KO",
  1655. "onmousedown": U.UF.C.closure(function (obj) {
  1656. //防止拖动图标即打开了桌面应用
  1657. U.MD.D.click(this, obj);
  1658. }, [_dseiStudentDeskIconInfo[i]]),
  1659. "onclick": U.UF.C.closure(function (obj) {
  1660. //防止拖动图标即打开了桌面应用
  1661. U.MD.D.click(this, obj);
  1662. }, [_dseiStudentDeskIconInfo[i]])
  1663. }, _frag); //
  1664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1667. }
  1668. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1669. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1670. _content = $$("div", {
  1671. className: "U_MD_D_KO",
  1672. "onmousedown": U.UF.C.closure(function (obj) {
  1673. //防止拖动图标即打开了桌面应用
  1674. U.MD.D.click(this, obj);
  1675. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1676. "onclick": U.UF.C.closure(function (obj) {
  1677. //防止拖动图标即打开了桌面应用
  1678. U.MD.D.click(this, obj);
  1679. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1680. }, _frag); //
  1681. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1682. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1683. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1684. }
  1685. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1686. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1687. _content = $$("div", {
  1688. className: "U_MD_D_KO",
  1689. "onmousedown": U.UF.C.closure(function (obj) {
  1690. //防止拖动图标即打开了桌面应用
  1691. U.MD.D.click(this, obj);
  1692. }, [_siesStudentDeskIconInfo[i]]),
  1693. "onclick": U.UF.C.closure(function (obj) {
  1694. //防止拖动图标即打开了桌面应用
  1695. U.MD.D.click(this, obj);
  1696. }, [_siesStudentDeskIconInfo[i]])
  1697. }, _frag); //
  1698. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1699. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1700. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1701. }
  1702. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1703. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1704. _content = $$("div", {
  1705. className: "U_MD_D_KO",
  1706. "onmousedown": U.UF.C.closure(function (obj) {
  1707. //防止拖动图标即打开了桌面应用
  1708. U.MD.D.click(this, obj);
  1709. }, [_hkStudentDeskIconInfo[i]]),
  1710. "onclick": U.UF.C.closure(function (obj) {
  1711. //防止拖动图标即打开了桌面应用
  1712. U.MD.D.click(this, obj);
  1713. }, [_hkStudentDeskIconInfo[i]])
  1714. }, _frag); //
  1715. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1716. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1717. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1718. }
  1719. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1720. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1721. _content = $$("div", {
  1722. className: "U_MD_D_KO",
  1723. "onmousedown": U.UF.C.closure(function (obj) {
  1724. //防止拖动图标即打开了桌面应用
  1725. U.MD.D.click(this, obj);
  1726. }, [_hkaceStudentDeskIconInfo[i]]),
  1727. "onclick": U.UF.C.closure(function (obj) {
  1728. //防止拖动图标即打开了桌面应用
  1729. U.MD.D.click(this, obj);
  1730. }, [_hkaceStudentDeskIconInfo[i]])
  1731. }, _frag); //
  1732. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1733. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1734. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1735. }
  1736. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1737. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1738. _content = $$("div", {
  1739. className: "U_MD_D_KO",
  1740. "onmousedown": U.UF.C.closure(function (obj) {
  1741. //防止拖动图标即打开了桌面应用
  1742. U.MD.D.click(this, obj);
  1743. }, [_studentDesktopIconInfo[i]]),
  1744. "onclick": U.UF.C.closure(function (obj) {
  1745. //防止拖动图标即打开了桌面应用
  1746. U.MD.D.click(this, obj);
  1747. }, [_studentDesktopIconInfo[i]])
  1748. }, _frag); //
  1749. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1750. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1751. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1752. }
  1753. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1754. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1755. _content = $$("div", {
  1756. className: "U_MD_D_KO",
  1757. "onmousedown": U.UF.C.closure(function (obj) {
  1758. //防止拖动图标即打开了桌面应用
  1759. U.MD.D.click(this, obj);
  1760. }, [_tcStudentDeskIconInfo[i]]),
  1761. "onclick": U.UF.C.closure(function (obj) {
  1762. //防止拖动图标即打开了桌面应用
  1763. U.MD.D.click(this, obj);
  1764. }, [_tcStudentDeskIconInfo[i]])
  1765. }, _frag); //
  1766. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1767. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1768. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1769. }
  1770. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1771. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1772. _content = $$("div", {
  1773. className: "U_MD_D_KO",
  1774. "onmousedown": U.UF.C.closure(function (obj) {
  1775. //防止拖动图标即打开了桌面应用
  1776. U.MD.D.click(this, obj);
  1777. }, [_szscStudentDeskIconInfo[i]]),
  1778. "onclick": U.UF.C.closure(function (obj) {
  1779. //防止拖动图标即打开了桌面应用
  1780. U.MD.D.click(this, obj);
  1781. }, [_szscStudentDeskIconInfo[i]])
  1782. }, _frag); //
  1783. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1784. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1785. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1786. }
  1787. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1788. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1789. _content = $$("div", {
  1790. className: "U_MD_D_KO",
  1791. "onmousedown": U.UF.C.closure(function (obj) {
  1792. //防止拖动图标即打开了桌面应用
  1793. U.MD.D.click(this, obj);
  1794. }, [_studentDesktopIconInfo3[i]]),
  1795. "onclick": U.UF.C.closure(function (obj) {
  1796. //防止拖动图标即打开了桌面应用
  1797. U.MD.D.click(this, obj);
  1798. }, [_studentDesktopIconInfo3[i]])
  1799. }, _frag); //
  1800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1803. }
  1804. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1805. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1806. _content = $$("div", {
  1807. className: "U_MD_D_KO",
  1808. "onmousedown": U.UF.C.closure(function (obj) {
  1809. //防止拖动图标即打开了桌面应用
  1810. U.MD.D.click(this, obj);
  1811. }, [_studentDesktopIconInfo2[i]]),
  1812. "onclick": U.UF.C.closure(function (obj) {
  1813. //防止拖动图标即打开了桌面应用
  1814. U.MD.D.click(this, obj);
  1815. }, [_studentDesktopIconInfo2[i]])
  1816. }, _frag); //
  1817. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1820. }
  1821. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1822. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1823. _content = $$("div", {
  1824. className: "U_MD_D_KO",
  1825. "onmousedown": U.UF.C.closure(function (obj) {
  1826. //防止拖动图标即打开了桌面应用
  1827. U.MD.D.click(this, obj);
  1828. }, [_wanketeacherDesktopIconInfo[i]]),
  1829. "onclick": U.UF.C.closure(function (obj) {
  1830. //防止拖动图标即打开了桌面应用
  1831. U.MD.D.click(this, obj);
  1832. }, [_wanketeacherDesktopIconInfo[i]])
  1833. }, _frag); //
  1834. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1835. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1836. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1837. }
  1838. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1839. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1840. _content = $$("div", {
  1841. className: "U_MD_D_KO",
  1842. "onmousedown": U.UF.C.closure(function (obj) {
  1843. //防止拖动图标即打开了桌面应用
  1844. U.MD.D.click(this, obj);
  1845. }, [_wankeAdminDesktopIconInfo[i]]),
  1846. "onclick": U.UF.C.closure(function (obj) {
  1847. //防止拖动图标即打开了桌面应用
  1848. U.MD.D.click(this, obj);
  1849. }, [_wankeAdminDesktopIconInfo[i]])
  1850. }, _frag); //
  1851. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1852. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1853. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1854. }
  1855. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1856. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1857. _content = $$("div", {
  1858. className: "U_MD_D_KO",
  1859. "onmousedown": U.UF.C.closure(function (obj) {
  1860. //防止拖动图标即打开了桌面应用
  1861. U.MD.D.click(this, obj);
  1862. }, [_jccssylTeacherDeskIconInfo[i]]),
  1863. "onclick": U.UF.C.closure(function (obj) {
  1864. //防止拖动图标即打开了桌面应用
  1865. U.MD.D.click(this, obj);
  1866. }, [_jccssylTeacherDeskIconInfo[i]])
  1867. }, _frag); //
  1868. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1869. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1870. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1871. }
  1872. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1873. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1874. _content = $$("div", {
  1875. className: "U_MD_D_KO",
  1876. "onmousedown": U.UF.C.closure(function (obj) {
  1877. //防止拖动图标即打开了桌面应用
  1878. U.MD.D.click(this, obj);
  1879. }, [_caleTeacherDeskIconInfo[i]]),
  1880. "onclick": U.UF.C.closure(function (obj) {
  1881. //防止拖动图标即打开了桌面应用
  1882. U.MD.D.click(this, obj);
  1883. }, [_caleTeacherDeskIconInfo[i]])
  1884. }, _frag); //
  1885. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1886. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  1887. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  1888. }
  1889. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  1890. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  1891. _content = $$("div", {
  1892. className: "U_MD_D_KO",
  1893. "onmousedown": U.UF.C.closure(function (obj) {
  1894. //防止拖动图标即打开了桌面应用
  1895. U.MD.D.click(this, obj);
  1896. }, [_tpcOrganizerDeskIconInfo[i]]),
  1897. "onclick": U.UF.C.closure(function (obj) {
  1898. //防止拖动图标即打开了桌面应用
  1899. U.MD.D.click(this, obj);
  1900. }, [_tpcOrganizerDeskIconInfo[i]])
  1901. }, _frag); //
  1902. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1903. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  1904. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  1905. }
  1906. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  1907. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  1908. _content = $$("div", {
  1909. className: "U_MD_D_KO",
  1910. "onmousedown": U.UF.C.closure(function (obj) {
  1911. //防止拖动图标即打开了桌面应用
  1912. U.MD.D.click(this, obj);
  1913. }, [_tpcTeacherDeskIconInfo[i]]),
  1914. "onclick": U.UF.C.closure(function (obj) {
  1915. //防止拖动图标即打开了桌面应用
  1916. U.MD.D.click(this, obj);
  1917. }, [_tpcTeacherDeskIconInfo[i]])
  1918. }, _frag); //
  1919. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1920. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  1921. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  1922. }
  1923. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  1924. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  1925. _content = $$("div", {
  1926. className: "U_MD_D_KO",
  1927. "onmousedown": U.UF.C.closure(function (obj) {
  1928. //防止拖动图标即打开了桌面应用
  1929. U.MD.D.click(this, obj);
  1930. }, [_teacherDesktopIconInfo2[i]]),
  1931. "onclick": U.UF.C.closure(function (obj) {
  1932. //防止拖动图标即打开了桌面应用
  1933. U.MD.D.click(this, obj);
  1934. }, [_teacherDesktopIconInfo2[i]])
  1935. }, _frag); //
  1936. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1937. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  1938. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  1939. }
  1940. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1941. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  1942. _content = $$("div", {
  1943. className: "U_MD_D_KO",
  1944. "onmousedown": U.UF.C.closure(function (obj) {
  1945. //防止拖动图标即打开了桌面应用
  1946. U.MD.D.click(this, obj);
  1947. }, [_thuioeTeacherDeskIconInfo[i]]),
  1948. "onclick": U.UF.C.closure(function (obj) {
  1949. //防止拖动图标即打开了桌面应用
  1950. U.MD.D.click(this, obj);
  1951. }, [_thuioeTeacherDeskIconInfo[i]])
  1952. }, _frag); //
  1953. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1954. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  1955. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  1956. }
  1957. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  1958. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  1959. _content = $$("div", {
  1960. className: "U_MD_D_KO",
  1961. "onmousedown": U.UF.C.closure(function (obj) {
  1962. //防止拖动图标即打开了桌面应用
  1963. U.MD.D.click(this, obj);
  1964. }, [_lotechTeacherDeskIconInfo[i]]),
  1965. "onclick": U.UF.C.closure(function (obj) {
  1966. //防止拖动图标即打开了桌面应用
  1967. U.MD.D.click(this, obj);
  1968. }, [_lotechTeacherDeskIconInfo[i]])
  1969. }, _frag); //
  1970. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1971. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  1972. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  1973. }//
  1974. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1975. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  1976. _content = $$("div", {
  1977. className: "U_MD_D_KO",
  1978. "onmousedown": U.UF.C.closure(function (obj) {
  1979. //防止拖动图标即打开了桌面应用
  1980. U.MD.D.click(this, obj);
  1981. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  1982. "onclick": U.UF.C.closure(function (obj) {
  1983. //防止拖动图标即打开了桌面应用
  1984. U.MD.D.click(this, obj);
  1985. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  1986. }, _frag); //
  1987. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1988. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  1989. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  1990. }
  1991. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1992. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  1993. _content = $$("div", {
  1994. className: "U_MD_D_KO",
  1995. "onmousedown": U.UF.C.closure(function (obj) {
  1996. //防止拖动图标即打开了桌面应用
  1997. U.MD.D.click(this, obj);
  1998. }, [_siesTeacherDeskIconInfo[i]]),
  1999. "onclick": U.UF.C.closure(function (obj) {
  2000. //防止拖动图标即打开了桌面应用
  2001. U.MD.D.click(this, obj);
  2002. }, [_siesTeacherDeskIconInfo[i]])
  2003. }, _frag); //
  2004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2007. }
  2008. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2009. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2010. _content = $$("div", {
  2011. className: "U_MD_D_KO",
  2012. "onmousedown": U.UF.C.closure(function (obj) {
  2013. //防止拖动图标即打开了桌面应用
  2014. U.MD.D.click(this, obj);
  2015. }, [_longhuaTeacherDeskIconInfo[i]]),
  2016. "onclick": U.UF.C.closure(function (obj) {
  2017. //防止拖动图标即打开了桌面应用
  2018. U.MD.D.click(this, obj);
  2019. }, [_longhuaTeacherDeskIconInfo[i]])
  2020. }, _frag); //
  2021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2024. }
  2025. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2026. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2027. _content = $$("div", {
  2028. className: "U_MD_D_KO",
  2029. "onmousedown": U.UF.C.closure(function (obj) {
  2030. //防止拖动图标即打开了桌面应用
  2031. U.MD.D.click(this, obj);
  2032. }, [_ytyTeacherDeskIconInfo[i]]),
  2033. "onclick": U.UF.C.closure(function (obj) {
  2034. //防止拖动图标即打开了桌面应用
  2035. U.MD.D.click(this, obj);
  2036. }, [_ytyTeacherDeskIconInfo[i]])
  2037. }, _frag); //
  2038. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2039. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2040. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2041. }
  2042. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2043. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2044. _content = $$("div", {
  2045. className: "U_MD_D_KO",
  2046. "onmousedown": U.UF.C.closure(function (obj) {
  2047. //防止拖动图标即打开了桌面应用
  2048. U.MD.D.click(this, obj);
  2049. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2050. "onclick": U.UF.C.closure(function (obj) {
  2051. //防止拖动图标即打开了桌面应用
  2052. U.MD.D.click(this, obj);
  2053. }, [_yunhaiTeacherDeskIconInfo[i]])
  2054. }, _frag); //
  2055. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2056. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2057. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2058. } //_hkStudentDeskIconInfo
  2059. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2060. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2061. _content = $$("div", {
  2062. className: "U_MD_D_KO",
  2063. "onmousedown": U.UF.C.closure(function (obj) {
  2064. //防止拖动图标即打开了桌面应用
  2065. U.MD.D.click(this, obj);
  2066. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2067. "onclick": U.UF.C.closure(function (obj) {
  2068. //防止拖动图标即打开了桌面应用
  2069. U.MD.D.click(this, obj);
  2070. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2071. }, _frag); //
  2072. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2073. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2074. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2075. }
  2076. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2077. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2078. _content = $$("div", {
  2079. className: "U_MD_D_KO",
  2080. "onmousedown": U.UF.C.closure(function (obj) {
  2081. //防止拖动图标即打开了桌面应用
  2082. U.MD.D.click(this, obj);
  2083. }, [_hkTeacherDeskIconInfo[i]]),
  2084. "onclick": U.UF.C.closure(function (obj) {
  2085. //防止拖动图标即打开了桌面应用
  2086. U.MD.D.click(this, obj);
  2087. }, [_hkTeacherDeskIconInfo[i]])
  2088. }, _frag); //
  2089. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2090. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2091. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2092. }
  2093. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2094. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2095. _content = $$("div", {
  2096. className: "U_MD_D_KO",
  2097. "onmousedown": U.UF.C.closure(function (obj) {
  2098. //防止拖动图标即打开了桌面应用
  2099. U.MD.D.click(this, obj);
  2100. }, [_hkaceTeacherDeskIconInfo[i]]),
  2101. "onclick": U.UF.C.closure(function (obj) {
  2102. //防止拖动图标即打开了桌面应用
  2103. U.MD.D.click(this, obj);
  2104. }, [_hkaceTeacherDeskIconInfo[i]])
  2105. }, _frag); //
  2106. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2107. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2108. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2109. }
  2110. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2111. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2112. _content = $$("div", {
  2113. className: "U_MD_D_KO",
  2114. "onmousedown": U.UF.C.closure(function (obj) {
  2115. //防止拖动图标即打开了桌面应用
  2116. U.MD.D.click(this, obj);
  2117. }, [_gdjgAdminDeskIconInfo[i]]),
  2118. "onclick": U.UF.C.closure(function (obj) {
  2119. //防止拖动图标即打开了桌面应用
  2120. U.MD.D.click(this, obj);
  2121. }, [_gdjgAdminDeskIconInfo[i]])
  2122. }, _frag); //
  2123. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2124. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2125. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2126. }
  2127. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2128. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2129. _content = $$("div", {
  2130. className: "U_MD_D_KO",
  2131. "onmousedown": U.UF.C.closure(function (obj) {
  2132. //防止拖动图标即打开了桌面应用
  2133. U.MD.D.click(this, obj);
  2134. }, [_gdjgTeacherDeskIconInfo[i]]),
  2135. "onclick": U.UF.C.closure(function (obj) {
  2136. //防止拖动图标即打开了桌面应用
  2137. U.MD.D.click(this, obj);
  2138. }, [_gdjgTeacherDeskIconInfo[i]])
  2139. }, _frag); //
  2140. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2141. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2142. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2143. }
  2144. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2145. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2146. _content = $$("div", {
  2147. className: "U_MD_D_KO",
  2148. "onmousedown": U.UF.C.closure(function (obj) {
  2149. //防止拖动图标即打开了桌面应用
  2150. U.MD.D.click(this, obj);
  2151. }, [_szherTeacherDeskIconInfo[i]]),
  2152. "onclick": U.UF.C.closure(function (obj) {
  2153. //防止拖动图标即打开了桌面应用
  2154. U.MD.D.click(this, obj);
  2155. }, [_szherTeacherDeskIconInfo[i]])
  2156. }, _frag); //
  2157. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2158. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2159. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2160. }
  2161. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2162. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2163. _content = $$("div", {
  2164. className: "U_MD_D_KO",
  2165. "onmousedown": U.UF.C.closure(function (obj) {
  2166. //防止拖动图标即打开了桌面应用
  2167. U.MD.D.click(this, obj);
  2168. }, [_heyuannAdminDeskIconInfo[i]]),
  2169. "onclick": U.UF.C.closure(function (obj) {
  2170. //防止拖动图标即打开了桌面应用
  2171. U.MD.D.click(this, obj);
  2172. }, [_heyuannAdminDeskIconInfo[i]])
  2173. }, _frag); //
  2174. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2175. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2176. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2177. }
  2178. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2179. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2180. _content = $$("div", {
  2181. className: "U_MD_D_KO",
  2182. "onmousedown": U.UF.C.closure(function (obj) {
  2183. //防止拖动图标即打开了桌面应用
  2184. U.MD.D.click(this, obj);
  2185. }, [_heyuanTeacherDeskIconInfo[i]]),
  2186. "onclick": U.UF.C.closure(function (obj) {
  2187. //防止拖动图标即打开了桌面应用
  2188. U.MD.D.click(this, obj);
  2189. }, [_heyuanTeacherDeskIconInfo[i]])
  2190. }, _frag); //
  2191. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2192. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2193. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2194. } //
  2195. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2196. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  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. }, [_dseiAdminDeskIconInfo[i]]),
  2203. "onclick": U.UF.C.closure(function (obj) {
  2204. //防止拖动图标即打开了桌面应用
  2205. U.MD.D.click(this, obj);
  2206. }, [_dseiAdminDeskIconInfo[i]])
  2207. }, _frag); //
  2208. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2209. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2210. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2211. }
  2212. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2213. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2214. _content = $$("div", {
  2215. className: "U_MD_D_KO",
  2216. "onmousedown": U.UF.C.closure(function (obj) {
  2217. //防止拖动图标即打开了桌面应用
  2218. U.MD.D.click(this, obj);
  2219. }, [_dseiTeacherDeskIconInfo[i]]),
  2220. "onclick": U.UF.C.closure(function (obj) {
  2221. //防止拖动图标即打开了桌面应用
  2222. U.MD.D.click(this, obj);
  2223. }, [_dseiTeacherDeskIconInfo[i]])
  2224. }, _frag); //
  2225. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2226. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2227. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2228. } //
  2229. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2230. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2231. _content = $$("div", {
  2232. className: "U_MD_D_KO",
  2233. "onmousedown": U.UF.C.closure(function (obj) {
  2234. //防止拖动图标即打开了桌面应用
  2235. U.MD.D.click(this, obj);
  2236. }, [_chjyjAdminDeskIconInfo[i]]),
  2237. "onclick": U.UF.C.closure(function (obj) {
  2238. //防止拖动图标即打开了桌面应用
  2239. U.MD.D.click(this, obj);
  2240. }, [_chjyjAdminDeskIconInfo[i]])
  2241. }, _frag); //
  2242. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2243. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2244. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2245. }//
  2246. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2247. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2248. _content = $$("div", {
  2249. className: "U_MD_D_KO",
  2250. "onmousedown": U.UF.C.closure(function (obj) {
  2251. //防止拖动图标即打开了桌面应用
  2252. U.MD.D.click(this, obj);
  2253. }, [_chjyjTeacherDeskIconInfo[i]]),
  2254. "onclick": U.UF.C.closure(function (obj) {
  2255. //防止拖动图标即打开了桌面应用
  2256. U.MD.D.click(this, obj);
  2257. }, [_chjyjTeacherDeskIconInfo[i]])
  2258. }, _frag); //
  2259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2262. }
  2263. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2264. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2265. _content = $$("div", {
  2266. className: "U_MD_D_KO",
  2267. "onmousedown": U.UF.C.closure(function (obj) {
  2268. //防止拖动图标即打开了桌面应用
  2269. U.MD.D.click(this, obj);
  2270. }, [_szjkyAdminDeskIconInfo[i]]),
  2271. "onclick": U.UF.C.closure(function (obj) {
  2272. //防止拖动图标即打开了桌面应用
  2273. U.MD.D.click(this, obj);
  2274. }, [_szjkyAdminDeskIconInfo[i]])
  2275. }, _frag); //
  2276. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2277. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2278. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2279. }//
  2280. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2281. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2282. _content = $$("div", {
  2283. className: "U_MD_D_KO",
  2284. "onmousedown": U.UF.C.closure(function (obj) {
  2285. //防止拖动图标即打开了桌面应用
  2286. U.MD.D.click(this, obj);
  2287. }, [_szjkyTeacherDeskIconInfo[i]]),
  2288. "onclick": U.UF.C.closure(function (obj) {
  2289. //防止拖动图标即打开了桌面应用
  2290. U.MD.D.click(this, obj);
  2291. }, [_szjkyTeacherDeskIconInfo[i]])
  2292. }, _frag); //
  2293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2296. }
  2297. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2298. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2299. _content = $$("div", {
  2300. className: "U_MD_D_KO",
  2301. "onmousedown": U.UF.C.closure(function (obj) {
  2302. //防止拖动图标即打开了桌面应用
  2303. U.MD.D.click(this, obj);
  2304. }, [_futianAdminDeskIconInfo[i]]),
  2305. "onclick": U.UF.C.closure(function (obj) {
  2306. //防止拖动图标即打开了桌面应用
  2307. U.MD.D.click(this, obj);
  2308. }, [_futianAdminDeskIconInfo[i]])
  2309. }, _frag); //
  2310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2313. }
  2314. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2315. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2316. _content = $$("div", {
  2317. className: "U_MD_D_KO",
  2318. "onmousedown": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_futianTeacherDeskIconInfo[i]]),
  2322. "onclick": U.UF.C.closure(function (obj) {
  2323. //防止拖动图标即打开了桌面应用
  2324. U.MD.D.click(this, obj);
  2325. }, [_futianTeacherDeskIconInfo[i]])
  2326. }, _frag); //
  2327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2330. }
  2331. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2332. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2333. _content = $$("div", {
  2334. className: "U_MD_D_KO",
  2335. "onmousedown": U.UF.C.closure(function (obj) {
  2336. //防止拖动图标即打开了桌面应用
  2337. U.MD.D.click(this, obj);
  2338. }, [_MingdeTeacherDeskIcon[i]]),
  2339. "onclick": U.UF.C.closure(function (obj) {
  2340. //防止拖动图标即打开了桌面应用
  2341. U.MD.D.click(this, obj);
  2342. }, [_MingdeTeacherDeskIcon[i]])
  2343. }, _frag); //
  2344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2347. }
  2348. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2349. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2350. _content = $$("div", {
  2351. className: "U_MD_D_KO",
  2352. "onmousedown": U.UF.C.closure(function (obj) {
  2353. //防止拖动图标即打开了桌面应用
  2354. U.MD.D.click(this, obj);
  2355. }, [_lhsAdminDesktopIconInfo[i]]),
  2356. "onclick": U.UF.C.closure(function (obj) {
  2357. //防止拖动图标即打开了桌面应用
  2358. U.MD.D.click(this, obj);
  2359. }, [_lhsAdminDesktopIconInfo[i]])
  2360. }, _frag); //
  2361. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2362. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2363. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2364. }
  2365. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2366. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2367. _content = $$("div", {
  2368. className: "U_MD_D_KO",
  2369. "onmousedown": U.UF.C.closure(function (obj) {
  2370. //防止拖动图标即打开了桌面应用
  2371. U.MD.D.click(this, obj);
  2372. }, [_lhsteacherDesktopIconInfo[i]]),
  2373. "onclick": U.UF.C.closure(function (obj) {
  2374. //防止拖动图标即打开了桌面应用
  2375. U.MD.D.click(this, obj);
  2376. }, [_lhsteacherDesktopIconInfo[i]])
  2377. }, _frag); //
  2378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2381. }
  2382. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2383. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2384. _content = $$("div", {
  2385. className: "U_MD_D_KO",
  2386. "onmousedown": U.UF.C.closure(function (obj) {
  2387. //防止拖动图标即打开了桌面应用
  2388. U.MD.D.click(this, obj);
  2389. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2390. "onclick": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_zhoujiateacherDesktopIconInfo[i]])
  2394. }, _frag); //
  2395. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2396. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2397. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2398. }
  2399. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2400. for (i = 0; i < _hanDeskIcon.length; i++) {
  2401. _content = $$("div", {
  2402. className: "U_MD_D_KO",
  2403. "onmousedown": U.UF.C.closure(function (obj) {
  2404. //防止拖动图标即打开了桌面应用
  2405. U.MD.D.click(this, obj);
  2406. }, [_hanDeskIcon[i]]),
  2407. "onclick": U.UF.C.closure(function (obj) {
  2408. //防止拖动图标即打开了桌面应用
  2409. U.MD.D.click(this, obj);
  2410. }, [_hanDeskIcon[i]])
  2411. }, _frag); //
  2412. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2413. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2414. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2415. }
  2416. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2417. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2418. _content = $$("div", {
  2419. className: "U_MD_D_KO",
  2420. "onmousedown": U.UF.C.closure(function (obj) {
  2421. //防止拖动图标即打开了桌面应用
  2422. U.MD.D.click(this, obj);
  2423. }, [_orgStemDeskIcon[i]]),
  2424. "onclick": U.UF.C.closure(function (obj) {
  2425. //防止拖动图标即打开了桌面应用
  2426. U.MD.D.click(this, obj);
  2427. }, [_orgStemDeskIcon[i]])
  2428. }, _frag); //
  2429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2432. }
  2433. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2434. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2435. _content = $$("div", {
  2436. className: "U_MD_D_KO",
  2437. "onmousedown": U.UF.C.closure(function (obj) {
  2438. //防止拖动图标即打开了桌面应用
  2439. U.MD.D.click(this, obj);
  2440. }, [_szulsDeskIcon[i]]),
  2441. "onclick": U.UF.C.closure(function (obj) {
  2442. //防止拖动图标即打开了桌面应用
  2443. U.MD.D.click(this, obj);
  2444. }, [_szulsDeskIcon[i]])
  2445. }, _frag); //
  2446. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2447. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2448. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2449. }
  2450. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2451. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2452. _content = $$("div", {
  2453. className: "U_MD_D_KO",
  2454. "onmousedown": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_orgDesktopIconInfo[i]]),
  2458. "onclick": U.UF.C.closure(function (obj) {
  2459. //防止拖动图标即打开了桌面应用
  2460. U.MD.D.click(this, obj);
  2461. }, [_orgDesktopIconInfo[i]])
  2462. }, _frag); //
  2463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2466. }
  2467. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2468. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2469. _content = $$("div", {
  2470. className: "U_MD_D_KO",
  2471. "onmousedown": U.UF.C.closure(function (obj) {
  2472. //防止拖动图标即打开了桌面应用
  2473. U.MD.D.click(this, obj);
  2474. }, [_schoolDesktopIconInfo[i]]),
  2475. "onclick": U.UF.C.closure(function (obj) {
  2476. //防止拖动图标即打开了桌面应用
  2477. U.MD.D.click(this, obj);
  2478. }, [_schoolDesktopIconInfo[i]])
  2479. }, _frag); //
  2480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2483. }
  2484. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2485. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2486. _content = $$("div", {
  2487. className: "U_MD_D_KO",
  2488. "onmousedown": U.UF.C.closure(function (obj) {
  2489. //防止拖动图标即打开了桌面应用
  2490. U.MD.D.click(this, obj);
  2491. }, [_GMteacherDesktopIconInfo[i]]),
  2492. "onclick": U.UF.C.closure(function (obj) {
  2493. //防止拖动图标即打开了桌面应用
  2494. U.MD.D.click(this, obj);
  2495. }, [_GMteacherDesktopIconInfo[i]])
  2496. }, _frag); //
  2497. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2498. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2499. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2500. }
  2501. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2502. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2503. _content = $$("div", {
  2504. className: "U_MD_D_KO",
  2505. "onmousedown": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_SONGteacherDesktopIconInfo[i]]),
  2509. "onclick": U.UF.C.closure(function (obj) {
  2510. //防止拖动图标即打开了桌面应用
  2511. U.MD.D.click(this, obj);
  2512. }, [_SONGteacherDesktopIconInfo[i]])
  2513. }, _frag); //
  2514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2517. }
  2518. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2519. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2520. _content = $$("div", {
  2521. className: "U_MD_D_KO",
  2522. "onmousedown": U.UF.C.closure(function (obj) {
  2523. //防止拖动图标即打开了桌面应用
  2524. U.MD.D.click(this, obj);
  2525. }, [_GMstudentDesktopIconInfo[i]]),
  2526. "onclick": U.UF.C.closure(function (obj) {
  2527. //防止拖动图标即打开了桌面应用
  2528. U.MD.D.click(this, obj);
  2529. }, [_GMstudentDesktopIconInfo[i]])
  2530. }, _frag); //
  2531. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2532. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2533. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2534. }
  2535. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2536. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2537. _content = $$("div", {
  2538. className: "U_MD_D_KO",
  2539. "onmousedown": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_tcTeacherDeskIconInfo[i]]),
  2543. "onclick": U.UF.C.closure(function (obj) {
  2544. //防止拖动图标即打开了桌面应用
  2545. U.MD.D.click(this, obj);
  2546. }, [_tcTeacherDeskIconInfo[i]])
  2547. }, _frag); //
  2548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2551. }
  2552. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2553. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2554. _content = $$("div", {
  2555. className: "U_MD_D_KO",
  2556. "onmousedown": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_tcOrganizerDeskIconInfo[i]]),
  2560. "onclick": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_tcOrganizerDeskIconInfo[i]])
  2564. }, _frag); //
  2565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2568. }
  2569. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2570. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2571. _content = $$("div", {
  2572. className: "U_MD_D_KO",
  2573. "onmousedown": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_szscTeacherDeskIconInfo[i]]),
  2577. "onclick": U.UF.C.closure(function (obj) {
  2578. //防止拖动图标即打开了桌面应用
  2579. U.MD.D.click(this, obj);
  2580. }, [_szscTeacherDeskIconInfo[i]])
  2581. }, _frag); //
  2582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2585. }
  2586. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2587. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2588. _content = $$("div", {
  2589. className: "U_MD_D_KO",
  2590. "onmousedown": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_szscOrganizerDeskIconInfo[i]]),
  2594. "onclick": U.UF.C.closure(function (obj) {
  2595. //防止拖动图标即打开了桌面应用
  2596. U.MD.D.click(this, obj);
  2597. }, [_szscOrganizerDeskIconInfo[i]])
  2598. }, _frag); //
  2599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2602. }
  2603. } else {
  2604. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2605. _content = $$("div", {
  2606. className: "U_MD_D_KO",
  2607. "onmousedown": U.UF.C.closure(function (obj) {
  2608. //防止拖动图标即打开了桌面应用
  2609. U.MD.D.click(this, obj);
  2610. }, [_teacherDesktopIconInfo[i]]),
  2611. "onclick": U.UF.C.closure(function (obj) {
  2612. //防止拖动图标即打开了桌面应用
  2613. U.MD.D.click(this, obj);
  2614. }, [_teacherDesktopIconInfo[i]])
  2615. }, _frag); //
  2616. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2617. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2618. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2619. }
  2620. }
  2621. } else {
  2622. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2623. _content = $$("div", {
  2624. className: "U_MD_D_KO",
  2625. style: { 'width': '124px', 'height': '145px' },
  2626. "onmousedown": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_easyDesktopIconInfo[i]]),
  2630. "onclick": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_easyDesktopIconInfo[i]])
  2634. }, _frag); //
  2635. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2636. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2637. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2638. }
  2639. }
  2640. if (type == 1) {
  2641. //加载好后给图标定位
  2642. U.MD.D.iconPostion($(_frag).Child());
  2643. } else {
  2644. //加载好后给图标定位
  2645. U.MD.D.iconPostion2($(_frag).Child());
  2646. }
  2647. //把图标加载到页面
  2648. el.appendChild(_frag);
  2649. }
  2650. /**
  2651. * 显示任务栏
  2652. *
  2653. * @param {element} 桌面元素
  2654. */
  2655. U.MD.D.I.displayTaskbar = function (el) {
  2656. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2657. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2658. //任务栏位置变化
  2659. U.selectEl(el).css({ "bottom": "0px" });
  2660. //桌面位置变话
  2661. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2662. }
  2663. }
  2664. //#region 桌面图标拖动逻辑
  2665. /**
  2666. * 桌面排列图标
  2667. *
  2668. * @param {element} 桌面元素
  2669. * @param {object} 上下相距的距离
  2670. * @param {object} 左右相距的距离
  2671. * @return {object} 命名空间
  2672. */
  2673. U.MD.D.iconPostion = function (childs, top, left) {
  2674. var i; //用于循环处理
  2675. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2676. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2677. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2678. for (i = 0; i < childs.length; i++) {
  2679. //如果竖排top超过了范围处理
  2680. if (top + 95 > US.height - 10) {
  2681. //left超过了页面范围处理,则向上重叠打印处理
  2682. if ((left + 180) > US.width) {
  2683. top -= 110;
  2684. left -= 90;
  2685. }
  2686. //没有超过范围,那么left+90添加到下一个竖排打印
  2687. else {
  2688. left += 90;
  2689. top = 15;
  2690. };
  2691. }
  2692. //给图标的位置赋值
  2693. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2694. if (i < childs.length - 1) {
  2695. //页面图标每次向下加95
  2696. top += 95;
  2697. }
  2698. }
  2699. //返回最后调用的图标的位置
  2700. return [top, left];
  2701. }
  2702. /**
  2703. * 桌面排列图标
  2704. *
  2705. * @param {element} 桌面元素
  2706. * @param {object} 上下相距的距离
  2707. * @param {object} 左右相距的距离
  2708. * @return {object} 命名空间
  2709. */
  2710. U.MD.D.iconPostion2 = function (childs, top, left) {
  2711. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2712. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2713. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2714. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2715. for (i = 0; i < childs.length; i++) {
  2716. //如果竖排top超过了范围处理
  2717. if (left + 150 > US.width - 10) {
  2718. //left超过了页面范围处理,则向上重叠打印处理
  2719. if ((top + 180) > US.Height) {
  2720. top -= 150;
  2721. left -= 150;
  2722. }
  2723. //没有超过范围,那么left+90添加到下一个竖排打印
  2724. else {
  2725. top += 150;
  2726. left = ol;
  2727. };
  2728. }
  2729. //给图标的位置赋值
  2730. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2731. if (i < childs.length - 1) {
  2732. //页面图标每次向下加95
  2733. left += 150;
  2734. }
  2735. }
  2736. //返回最后调用的图标的位置
  2737. return [top, left];
  2738. }
  2739. /**
  2740. * 桌面点击事件逻辑
  2741. *
  2742. * @param {element} 桌面元素
  2743. * @param {object} 上下相距的距离
  2744. * @param {object} 左右相距的距离
  2745. * @return {object} 命名空间
  2746. */
  2747. U.MD.D.click = function (el, obj) {
  2748. var _buttonnumber = event.button; //点击的按钮的事件值
  2749. var _userinfo = US.userInfo;
  2750. U.UF.EV.stopBubble(); //阻止向上冒泡
  2751. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2752. if (_buttonnumber < 2) {
  2753. //如果是click事件的处理
  2754. if (event.type == "click") {
  2755. //如果元素在mousemove事件中没有移动则出发click事件
  2756. if (!U.MD.D.I.IsDrag) {
  2757. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2758. U.alert("请先登录您的账号!");
  2759. setTimeout(() => {
  2760. U.MD.U.L.login();
  2761. }, 2000);
  2762. } else {
  2763. //打开应用处理
  2764. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2765. }
  2766. }
  2767. }
  2768. //如果是mouse事件的处理
  2769. else {
  2770. if (US.Config.type == '1') {
  2771. //拖动处理,添加拖动和拖动结束事件
  2772. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  2773. }
  2774. }
  2775. U.MD.D.I.IsDrag = false;
  2776. }
  2777. }
  2778. /**
  2779. * 拖动的处理
  2780. *
  2781. */
  2782. U.MD.D.iconMove = function () {
  2783. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  2784. U.MD.D.I.IsDrag = true;
  2785. }
  2786. /**
  2787. * 拖动结束后,这里是定位处理,以网状的形式定位
  2788. *
  2789. * @param {element} 拖动的元素
  2790. * @return {object} 命名空间
  2791. */
  2792. U.MD.D.iconUp = function (el) {
  2793. var _top = 15,
  2794. _left = 20,
  2795. _margin,
  2796. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  2797. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  2798. if (_positioninfo["OT"] > 15) {
  2799. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  2800. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  2801. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  2802. }
  2803. if (_positioninfo["OL"] > 20) {
  2804. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  2805. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  2806. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  2807. }
  2808. //while循环判断么一个重叠的元素
  2809. do {
  2810. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  2811. _top = _positioninfo[0] + 95; //得到定位后的top
  2812. _left = _positioninfo[1]; //得到定位后的left
  2813. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  2814. }
  2815. /**
  2816. * 判断拖动后图标是否重叠
  2817. *
  2818. * @param {element} 拖动的元素
  2819. * @param {element} 桌面所有的元素
  2820. * @param {array} 拖动元素的位置
  2821. ----------[0] 上 top
  2822. ----------[1] 左 left
  2823. * @return {object} 命名空间
  2824. */
  2825. U.MD.D.isOverlap = function (el, childs, postionarray) {
  2826. //循环所有的图标
  2827. for (var i = 0; i < childs.length; i++) {
  2828. //判断有没有和该图标诶子重叠的元素
  2829. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  2830. return childs[i]; //如果有返回
  2831. }
  2832. }
  2833. }
  2834. //#endregion
  2835. //#endregion
  2836. //#region 桌面应用
  2837. /**
  2838. * 打开应用
  2839. *
  2840. * @param {string} 类型
  2841. -----------------Disk 网盘系统
  2842. -----------------PDisk 学习系统网盘
  2843. -----------------Poto 图片
  2844. -----------------Video 视频
  2845. -----------------Music 音乐
  2846. -----------------Word word
  2847. -----------------Excel excel
  2848. -----------------Txt 记事本
  2849. -----------------PB 学习系统
  2850. -----------------Blog 朋友圈系统
  2851. -----------------FTP ftp系统
  2852. -----------------Group 好友群
  2853. -----------------SY 首页系统
  2854. -----------------Set 个人设置
  2855. -----------------XSet 系统设置
  2856. -----------------App 我们所有的app
  2857. -----------------BC c.1473.cn 平台
  2858. -----------------CWeb d.1473.cn 变成平台
  2859. -----------------其他的外联系统 我们统一用iframe打开
  2860. * @param {array} 类型
  2861. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  2862. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  2863. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  2864. 如果第一个参数为其他,则无第二个参数
  2865. * @returns {array}
  2866. */
  2867. window.addEventListener('message', function (e) { // 监听 message 事件
  2868. // alert(e.data.type);
  2869. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  2870. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  2871. //3是展示全部阶段 2学生 1老师 4专家
  2872. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  2873. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  2874. //3是展示全部阶段 2学生 1老师 4专家
  2875. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  2876. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  2877. //3是展示全部阶段 2学生 1老师 4专家
  2878. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  2879. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  2880. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  2881. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  2882. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  2883. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  2884. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  2885. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  2886. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  2887. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  2888. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  2889. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  2890. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  2891. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  2892. //3是展示全部阶段 2学生 1老师 4专家
  2893. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  2894. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  2895. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  2896. U.MD.D.I.selectUser();
  2897. } else if (e.data.allScreen && e.data.allScreen == "1") {
  2898. var _formel = document.getElementById("study");
  2899. U.UF.F.windowZooming(_formel);
  2900. } else if (e.data.allScreen && e.data.allScreen == "2") {
  2901. var _formel = document.getElementById("studyDetail");
  2902. U.UF.F.windowZooming(_formel);
  2903. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  2904. var _formel = document.getElementById("studyDetail");
  2905. U.UF.F.windowZooming(_formel);
  2906. } else if (e.data.allScreen && e.data.allScreen == "3") {
  2907. var _formel = document.getElementById("studentStudy");
  2908. U.UF.F.windowZooming(_formel);
  2909. } else if (e.data.allScreen && e.data.allScreen == "6") {
  2910. // var _formel = document.getElementById("study");
  2911. //如果最大化了,那么就把他缩小
  2912. // if (_formel.ismaximize) {
  2913. // return;
  2914. // }
  2915. // U.UF.F.windowZooming(_formel);
  2916. // U.UF.F.topWindow(_formel);
  2917. } else if (e.data.allScreen && e.data.allScreen == "4") {
  2918. // var _formel = document.getElementById("studyDetail");
  2919. //如果最大化了,那么就把他缩小
  2920. // if (_formel.ismaximize) {
  2921. // return;
  2922. // }
  2923. // U.UF.F.windowZooming(_formel);
  2924. // U.UF.F.topWindow(_formel);
  2925. } else if (e.data.allScreen && e.data.allScreen == "5") {
  2926. // var _formel = document.getElementById("studentStudy");
  2927. // if (_formel.ismaximize) {
  2928. // return;
  2929. // }
  2930. // U.UF.F.windowZooming(_formel);
  2931. // U.UF.F.topWindow(_formel);
  2932. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  2933. var _formel = document.getElementById("study");
  2934. // if (_formel.ismaximize) {
  2935. // return;
  2936. // }
  2937. // U.UF.F.windowZooming(_formel);
  2938. U.UF.F.topWindow(_formel);
  2939. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  2940. var _formel = document.getElementById("studentIndex");
  2941. U.UF.F.windowZooming(_formel);
  2942. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  2943. var _formel = document.getElementById("studyDetailS");
  2944. U.UF.F.windowZooming(_formel);
  2945. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  2946. var _formel = document.getElementById("studioIndex");
  2947. U.UF.F.windowZooming(_formel);
  2948. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  2949. var _formel = document.getElementById("studyDetailStudio");
  2950. U.UF.F.windowZooming(_formel);
  2951. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  2952. var _formel = document.getElementById("studyDetailStudio");
  2953. U.UF.F.windowZooming(_formel);
  2954. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  2955. var _formel = document.getElementById("studyDetailNT");
  2956. U.UF.F.windowZooming(_formel);
  2957. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  2958. var _formel = document.getElementById("studyDetailS");
  2959. U.UF.F.windowZooming(_formel);
  2960. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  2961. var _formel = document.getElementById("studyDetailS");
  2962. U.UF.F.topWindow(_formel);
  2963. } else if (e.data.tools && e.data.tools == "1") {
  2964. // U.MD.D.I.openApplication("whiteboard")
  2965. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2966. } else if (e.data.tools && e.data.tools == "2") {
  2967. U.MD.D.I.openApplication("note")
  2968. } else if (e.data.tools && e.data.tools == "3") {
  2969. // U.MD.D.I.openApplication("mind")
  2970. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2971. } else if (e.data.tools && e.data.tools == "4") {
  2972. U.MD.D.I.openApplication("investigation")
  2973. } else if (e.data.tools && e.data.tools == "6") {
  2974. // U.MD.D.I.openApplication("doc")
  2975. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2976. } else if (e.data.tools && e.data.tools == "7") {
  2977. // U.MD.D.I.openApplication("mindNetwork")
  2978. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2979. } else if (e.data.tools && e.data.tools == "8") {
  2980. U.MD.D.I.openApplication("library")
  2981. } else if (e.data.tools && e.data.tools == "17") {
  2982. U.MD.D.I.openApplication("stuLibrary")
  2983. } else if (e.data.tools && e.data.tools == "18") {
  2984. U.MD.D.I.openApplication("train")
  2985. } else if (e.data.tools && e.data.tools == "21") {
  2986. U.MD.D.I.openApplication("program")
  2987. } else if (e.data.tools && e.data.tools == "22") {
  2988. U.MD.D.I.openApplication("AIprogram2")
  2989. } else if (e.data.tools && e.data.tools == "23") {
  2990. U.MD.D.I.openApplication("Pythonprogram")
  2991. } else if (e.data.tools && e.data.tools == "24") {
  2992. U.MD.D.I.openApplication("AIprogram")
  2993. } else if (e.data.tools && e.data.tools == "25") {
  2994. U.MD.D.I.openApplication("sys")
  2995. } else if (e.data.tools && e.data.tools == "26") {
  2996. // U.MD.D.I.openApplication("courseDesign")
  2997. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2998. } else if (e.data.tools && e.data.tools == "31") {
  2999. U.MD.D.I.openApplication("netWorkPanel")
  3000. } else if (e.data.tools && e.data.tools == "32") {
  3001. U.MD.D.I.openApplication("codeEdit")
  3002. } else if (e.data.tools && e.data.tools == "57") {
  3003. U.MD.D.I.openApplication("CocoPi")
  3004. } else if (e.data.tools && e.data.tools == "63") {
  3005. U.MD.D.I.openApplication("Wood")
  3006. } else if (e.data.tools && e.data.tools == "58") {
  3007. U.MD.D.I.openApplication("car")
  3008. } else if (e.data.tools && e.data.tools == "59") {
  3009. U.MD.D.I.openApplication("lineSearch")
  3010. } else if (e.data.tools && e.data.tools == "60") {
  3011. U.MD.D.I.openApplication("deepLearning")
  3012. } else if (e.data.tools && e.data.tools == "61") {
  3013. U.MD.D.I.openApplication("allHistory")
  3014. } else if (e.data.tools && e.data.tools == "28") {
  3015. U.MD.D.I.openApplication("translation")
  3016. } else if (e.data.tools && e.data.tools == "37") {
  3017. U.MD.D.I.openApplication("mohe")
  3018. } else if (e.data.tools && e.data.tools == "38") {
  3019. U.MD.D.I.openApplication("24game")
  3020. } else if (e.data.tools && e.data.tools == "39") {
  3021. U.MD.D.I.openApplication("GeoGebra")
  3022. } else if (e.data.tools && e.data.tools == "43") {
  3023. U.MD.D.I.openApplication("studentEvaluate")
  3024. } else if (e.data.tools && e.data.tools == "44") {
  3025. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3026. } else if (e.data.tools && e.data.tools == "46") {
  3027. U.MD.D.I.openApplication("project")
  3028. } else if (e.data.tools && e.data.tools == "71") {
  3029. U.MD.D.I.openApplication("aigptCourse")
  3030. } else if (e.data.tools && e.data.tools == "1s") {
  3031. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3032. } else if (e.data.tools && e.data.tools == "3s") {
  3033. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3034. } else if (e.data.tools && e.data.tools == "6s") {
  3035. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3036. } else if (e.data.tools && e.data.tools == "1studio") {
  3037. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3038. } else if (e.data.tools && e.data.tools == "3studio") {
  3039. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3040. } else if (e.data.tools && e.data.tools == "6studio") {
  3041. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3042. } else if (e.data.tools && e.data.tools == "3y") {
  3043. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3044. } else if (e.data.tools && e.data.tools == "1y") {
  3045. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3046. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3047. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3048. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3049. U.MD.D.I.openApplication("AIAnalyse")
  3050. } else if (e.data.tools && e.data.tools == "1teacher") {
  3051. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3052. } else if (e.data.tools && e.data.tools == "3teacher") {
  3053. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3054. } else if (e.data.tools && e.data.tools == "7teacher") {
  3055. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3056. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3057. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3058. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3059. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3060. } else if (e.data.tools && e.data.tools == "1E") {
  3061. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3062. } else if (e.data.tools && e.data.tools == "3E") {
  3063. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3064. } else if (e.data.tools && e.data.tools == "57y") {
  3065. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3066. } else if (e.data.tools && e.data.tools == "57u") {
  3067. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3068. } else if (e.data.tools && e.data.tools == "57teacher") {
  3069. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3070. } else if (e.data.tools && e.data.tools == "64") {
  3071. U.MD.D.I.openApplication("AIChat")
  3072. } else if (e.data.tools && e.data.tools == "66") {
  3073. U.MD.D.I.openApplication("formulaEdi")
  3074. } else if (e.data.tools && e.data.tools == "67") {
  3075. U.MD.D.I.openApplication("molStr")
  3076. } else if (e.data.tools && e.data.tools == "68") {
  3077. U.MD.D.I.openApplication("timeAxis")
  3078. } else if (e.data.tools && e.data.tools == "openCourse") {
  3079. let _data = {
  3080. typea: e.data.typea || '',
  3081. typeb: e.data.typeb || '',
  3082. typed: e.data.typed || '',
  3083. }
  3084. U.MD.D.I.openInApplication("index", _data)
  3085. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3086. let _data = {
  3087. classid: e.data.classid || '',
  3088. }
  3089. U.MD.D.I.openInApplication("dataClass", _data)
  3090. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3091. let _data = {
  3092. cid: e.data.cid || '',
  3093. gid: e.data.gid || '',
  3094. }
  3095. U.MD.D.I.openInApplication("opencCscl", _data)
  3096. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3097. U.MD.D.I.openApplication("dataBoardTest")
  3098. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3099. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3100. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3101. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3102. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3103. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3104. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3105. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3106. }else if (e.data.tools && e.data.tools == "loginSz") {
  3107. U.MD.D.I.openInApplication("loginSz")
  3108. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3109. if($('#classroom_observation_board')[0]){
  3110. // U.UF.F.closeWindow($('#classroom_observation_board'))
  3111. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3112. }
  3113. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3114. }
  3115. });
  3116. U.MD.D.I.selectUser = function () {
  3117. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3118. if (res.value[0].length > 0) {
  3119. US.userInfo = res.value[0][0];
  3120. $(".userName")[0].innerHTML = US.userInfo.username;
  3121. }
  3122. }, [], { "type": "GET", "withCredentials": true });
  3123. }
  3124. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3125. var _userinfo = US.userInfo, //登录用户信息
  3126. _userid = US.userInfo.userid, //登录用户id
  3127. _oid = _userinfo.organizeid,
  3128. _type = US.userInfo.type,
  3129. _org = US.userInfo.org,
  3130. _role = US.userInfo.role,
  3131. _classId = US.userInfo.classid;
  3132. if (_type == 4) {
  3133. tType = 4
  3134. }
  3135. switch (str) {
  3136. case "studyDetailNT": //无终端模式
  3137. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3138. setTimeout(() => {
  3139. U.MD.U.L.login();
  3140. }, 2000);
  3141. } else {
  3142. _formdiv = new U.UF.UI.form(
  3143. "课程详情",
  3144. $$("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 }), {
  3145. "id": "studyDetailNT",
  3146. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3147. "onresize": function () { }
  3148. }, {
  3149. closecallback: function () { }
  3150. }, { "style": { "height": "36px" } }).form; //创建窗体
  3151. _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); } }
  3152. break;
  3153. }
  3154. case "studyDetail":
  3155. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3156. setTimeout(() => {
  3157. U.MD.U.L.login();
  3158. }, 2000);
  3159. } else {
  3160. _formdiv = new U.UF.UI.form(
  3161. "课程详情",
  3162. $$("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 }), {
  3163. "id": "studyDetail",
  3164. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3165. "onresize": function () { }
  3166. }, {
  3167. closecallback: function () { }
  3168. }, { "style": { "height": "36px" } }).form; //创建窗体
  3169. _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); } }
  3170. break;
  3171. }
  3172. case "studyDetailTrain":
  3173. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3174. setTimeout(() => {
  3175. U.MD.U.L.login();
  3176. }, 2000);
  3177. } else {
  3178. _formdiv = new U.UF.UI.form(
  3179. "培训详情",
  3180. $$("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 }), {
  3181. "id": "studyDetailTrain",
  3182. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3183. "onresize": function () { }
  3184. }, {
  3185. closecallback: function () { }
  3186. }, { "style": { "height": "36px" } }).form; //创建窗体
  3187. _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); } }
  3188. break;
  3189. }
  3190. case "studyDetailS":
  3191. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3192. setTimeout(() => {
  3193. U.MD.U.L.login();
  3194. }, 2000);
  3195. } else {
  3196. _formdiv = new U.UF.UI.form(
  3197. "项目详情",
  3198. $$("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 }), {
  3199. "id": "studyDetailS",
  3200. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3201. "onresize": function () { }
  3202. }, {
  3203. closecallback: function () { }
  3204. }, { "style": { "height": "36px" } }).form; //创建窗体
  3205. _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); } }
  3206. break;
  3207. }
  3208. case "studyDetailStudio":
  3209. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3210. setTimeout(() => {
  3211. U.MD.U.L.login();
  3212. }, 2000);
  3213. } else {
  3214. _formdiv = new U.UF.UI.form(
  3215. "工作详情",
  3216. $$("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 }), {
  3217. "id": "studyDetailStudio",
  3218. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3219. "onresize": function () { }
  3220. }, {
  3221. closecallback: function () { }
  3222. }, { "style": { "height": "36px" } }).form; //创建窗体
  3223. _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); } }
  3224. break;
  3225. }
  3226. case "studyDetailS5":
  3227. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3228. setTimeout(() => {
  3229. U.MD.U.L.login();
  3230. }, 2000);
  3231. } else {
  3232. _formdiv = new U.UF.UI.form(
  3233. "项目详情",
  3234. $$("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 }), {
  3235. "id": "studyDetailS",
  3236. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3237. "onresize": function () { }
  3238. }, {
  3239. closecallback: function () { }
  3240. }, { "style": { "height": "36px" } }).form; //创建窗体
  3241. _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); } }
  3242. break;
  3243. }
  3244. case "studyDetailGM":
  3245. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3246. setTimeout(() => {
  3247. U.MD.U.L.login();
  3248. }, 2000);
  3249. } else {
  3250. _formdiv = new U.UF.UI.form(
  3251. "课程详情",
  3252. $$("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 }), {
  3253. "id": "studyDetail",
  3254. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3255. "onresize": function () { }
  3256. }, {
  3257. closecallback: function () { }
  3258. }, { "style": { "height": "36px" } }).form; //创建窗体
  3259. _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); } }
  3260. break;
  3261. }
  3262. case "hanUrl":
  3263. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3264. setTimeout(() => {
  3265. U.MD.U.L.login();
  3266. }, 2000);
  3267. } else {
  3268. _formdiv = new U.UF.UI.form(
  3269. "汉字宫",
  3270. $$("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" }), {
  3271. "id": "hanUrl",
  3272. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3273. "onresize": function () { }
  3274. }, {
  3275. closecallback: function () { }
  3276. }, { "style": { "height": "36px" } }).form; //创建窗体
  3277. _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); } }
  3278. break;
  3279. }
  3280. case "index":
  3281. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3282. setTimeout(() => {
  3283. U.MD.U.L.login();
  3284. }, 2000);
  3285. } else {
  3286. _formdiv = new U.UF.UI.form(
  3287. "课程中心",
  3288. $$("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 }), {
  3289. "id": "study",
  3290. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3291. "onresize": function () { }
  3292. }, {
  3293. closecallback: function () { }
  3294. }, { "style": { "height": "36px" } }).form; //创建窗体
  3295. _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); } }
  3296. break;
  3297. }
  3298. case "dataClass":
  3299. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3300. setTimeout(() => {
  3301. U.MD.U.L.login();
  3302. }, 2000);
  3303. } else {
  3304. _formdiv = new U.UF.UI.form(
  3305. "数据报告",
  3306. $$("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 }), {
  3307. "id": "dataClass",
  3308. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3309. "onresize": function () { }
  3310. }, {
  3311. closecallback: function () { }
  3312. }, { "style": { "height": "36px" } }).form; //创建窗体
  3313. _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); } }
  3314. break;
  3315. }
  3316. case "opencCscl":
  3317. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3318. setTimeout(() => {
  3319. U.MD.U.L.login();
  3320. }, 2000);
  3321. } else {
  3322. _formdiv = new U.UF.UI.form(
  3323. "协同建构",
  3324. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  3325. "id": "futureClass",
  3326. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3327. "onresize": function () { }
  3328. }, {
  3329. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3330. }, { "style": { "height": "36px" } }).form; //创建窗体
  3331. _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); } }
  3332. break;
  3333. }
  3334. case "openCourseUpdate":
  3335. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3336. setTimeout(() => {
  3337. U.MD.U.L.login();
  3338. }, 2000);
  3339. } else {
  3340. _formdiv = new U.UF.UI.form(
  3341. "课程管理",
  3342. $$("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 }), {
  3343. "id": "openCourseUpdate",
  3344. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3345. "onresize": function () { }
  3346. }, {
  3347. closecallback: function () { }
  3348. }, { "style": { "height": "36px" } }).form; //创建窗体
  3349. break;
  3350. }
  3351. case "openNewCourseUpdate":
  3352. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3353. setTimeout(() => {
  3354. U.MD.U.L.login();
  3355. }, 2000);
  3356. } else {
  3357. _formdiv = new U.UF.UI.form(
  3358. "课程管理",
  3359. $$("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 }), {
  3360. "id": "openCourseUpdate",
  3361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3362. "onresize": function () { }
  3363. }, {
  3364. closecallback: function () { }
  3365. }, { "style": { "height": "36px" } }).form; //创建窗体
  3366. break;
  3367. }
  3368. case "openCourseEUpdate":
  3369. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3370. setTimeout(() => {
  3371. U.MD.U.L.login();
  3372. }, 2000);
  3373. } else {
  3374. _formdiv = new U.UF.UI.form(
  3375. "课程管理",
  3376. $$("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 }), {
  3377. "id": "openCourseUpdate",
  3378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3379. "onresize": function () { }
  3380. }, {
  3381. closecallback: function () { }
  3382. }, { "style": { "height": "36px" } }).form; //创建窗体
  3383. break;
  3384. }
  3385. case "openCourseNewUpdate":
  3386. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3387. setTimeout(() => {
  3388. U.MD.U.L.login();
  3389. }, 2000);
  3390. } else {
  3391. _formdiv = new U.UF.UI.form(
  3392. "课程管理",
  3393. $$("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 }), {
  3394. "id": "openCourseUpdate",
  3395. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3396. "onresize": function () { }
  3397. }, {
  3398. closecallback: function () { }
  3399. }, { "style": { "height": "36px" } }).form; //创建窗体
  3400. break;
  3401. }
  3402. case "inviteLoginSz":
  3403. _formdiv = new U.UF.UI.form(
  3404. "随机码登录",
  3405. $$("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 }), {
  3406. "id": "loginSz",
  3407. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3408. "onresize": function () { }
  3409. }, {
  3410. closecallback: function () { }
  3411. }, { "style": { "height": "36px" } }).form; //创建窗体
  3412. break;
  3413. case "loginSz":
  3414. _formdiv = new U.UF.UI.form(
  3415. "教师登录",
  3416. $$("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" }), {
  3417. "id": "loginSz",
  3418. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3419. "onresize": function () { }
  3420. }, {
  3421. closecallback: function () { }
  3422. }, { "style": { "height": "36px" } }).form; //创建窗体
  3423. break;
  3424. case "teacher":
  3425. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3426. setTimeout(() => {
  3427. U.MD.U.L.login();
  3428. }, 2000);
  3429. } else {
  3430. _formdiv = new U.UF.UI.form(
  3431. "教师管理",
  3432. $$("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 }), {
  3433. "id": "teacher",
  3434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3435. "onresize": function () { }
  3436. }, {
  3437. closecallback: function () { }
  3438. }, { "style": { "height": "36px" } }).form; //创建窗体
  3439. break;
  3440. }
  3441. case "dataBoardSZArea":
  3442. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3443. setTimeout(() => {
  3444. U.MD.U.L.login();
  3445. }, 2000);
  3446. } else {
  3447. _formdiv = new U.UF.UI.form(
  3448. "综合数据看板",
  3449. $$("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 }), {
  3450. "id": "dataBoardSZArea",
  3451. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3452. "onresize": function () { }
  3453. }, {
  3454. closecallback: function () { }
  3455. }, { "style": { "height": "36px" } }).form; //创建窗体
  3456. break;
  3457. }
  3458. case "dataBoardSZCity":
  3459. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3460. setTimeout(() => {
  3461. U.MD.U.L.login();
  3462. }, 2000);
  3463. } else {
  3464. _formdiv = new U.UF.UI.form(
  3465. "综合数据看板",
  3466. $$("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 }), {
  3467. "id": "dataBoardSZCity",
  3468. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3469. "onresize": function () { }
  3470. }, {
  3471. closecallback: function () { }
  3472. }, { "style": { "height": "36px" } }).form; //创建窗体
  3473. break;
  3474. }
  3475. case "classroom_observation_board":
  3476. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3477. setTimeout(() => {
  3478. U.MD.U.L.login();
  3479. }, 2000);
  3480. } else {
  3481. _formdiv = new U.UF.UI.form(
  3482. "课堂观察",
  3483. $$("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 }), {
  3484. "id": "classroom_observation_board",
  3485. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3486. "onresize": function () { }
  3487. }, {
  3488. closecallback: function () { }
  3489. }, { "style": { "height": "36px" } }).form; //创建窗体
  3490. break;
  3491. }
  3492. }
  3493. }
  3494. U.MD.D.I.openApplication = function (str, obj, info) {
  3495. obj = obj || {};
  3496. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3497. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3498. _userinfo = US.userInfo, //登录用户信息
  3499. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3500. _oid = obj.organizeid || _userinfo.organizeid,
  3501. _type = US.userInfo.type,
  3502. _org = US.userInfo.org,
  3503. _role = US.userInfo.role,
  3504. _classId = US.userInfo.classid,
  3505. _TscreenType = 1
  3506. _screenType = 2,
  3507. _SscreenType = 3;
  3508. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3509. return;
  3510. }
  3511. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3512. switch (str) {
  3513. case "studnetProject": //好友打开
  3514. _formdiv = new U.UF.UI.form(
  3515. "我的项目",
  3516. $$("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 }), {
  3517. "id": "studnetProject",
  3518. "style": { "width": "70%", "height": "90%", "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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3524. break;
  3525. case "studentEvaluate": //好友打开
  3526. _formdiv = new U.UF.UI.form(
  3527. "我的评价",
  3528. $$("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 }), {
  3529. "id": "studentEvaluate",
  3530. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3531. "onresize": function () { }
  3532. }, {
  3533. closecallback: function () { }
  3534. }, { "style": { "height": "36px" } }).form; //创建窗体
  3535. _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); } }
  3536. break;
  3537. case "my":
  3538. _formdiv = new U.UF.UI.form(
  3539. "我的资料",
  3540. $$("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 }), {
  3541. "id": "my",
  3542. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3543. "onresize": function () { }
  3544. }, {
  3545. closecallback: function () { }
  3546. }, { "style": { "height": "36px" } }).form; //创建窗体
  3547. _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); } }
  3548. break;
  3549. case "program":
  3550. _formdiv = new U.UF.UI.form(
  3551. "编程平台",
  3552. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3553. "id": "program",
  3554. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3555. "onresize": function () { }
  3556. }, {
  3557. closecallback: function () { }
  3558. }, { "style": { "height": "36px" } }).form; //创建窗体
  3559. _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); } }
  3560. break;
  3561. case "library":
  3562. _formdiv = new U.UF.UI.form(
  3563. "素材库",
  3564. $$("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 }), {
  3565. "id": "library",
  3566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3567. "onresize": function () { }
  3568. }, {
  3569. closecallback: function () { }
  3570. }, { "style": { "height": "36px" } }).form; //创建窗体
  3571. _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); } }
  3572. break;
  3573. case "whiteboard":
  3574. _formdiv = new U.UF.UI.form(
  3575. "电子白板",
  3576. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3577. "id": "whiteboard",
  3578. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3579. "onresize": function () { }
  3580. }, {
  3581. closecallback: function () { }
  3582. }, { "style": { "height": "36px" } }).form; //创建窗体
  3583. _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); } }
  3584. break;
  3585. case "investigation":
  3586. _formdiv = new U.UF.UI.form(
  3587. "问卷调查",
  3588. $$("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 }), {
  3589. "id": "investigation",
  3590. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3591. "onresize": function () { }
  3592. }, {
  3593. closecallback: function () { }
  3594. }, { "style": { "height": "36px" } }).form; //创建窗体
  3595. _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); } }
  3596. break;
  3597. case "note":
  3598. _formdiv = new U.UF.UI.form(
  3599. "便签分类",
  3600. $$("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 }), {
  3601. "id": "note",
  3602. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3603. "onresize": function () { }
  3604. }, {
  3605. closecallback: function () { }
  3606. }, { "style": { "height": "36px" } }).form; //创建窗体
  3607. _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); } }
  3608. break;
  3609. // case "score":
  3610. // _formdiv = new U.UF.UI.form(
  3611. // "量规评分",
  3612. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3613. // "id": "score",
  3614. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3615. // "onresize": function() {}
  3616. // }, {
  3617. // closecallback: function() {}
  3618. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3619. // _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); } }
  3620. // break;
  3621. case "mind":
  3622. _formdiv = new U.UF.UI.form(
  3623. "思维导图",
  3624. $$("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"
  3625. "id": "mind",
  3626. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3627. "onresize": function () { }
  3628. }, {
  3629. closecallback: function () { }
  3630. }, { "style": { "height": "36px" } }).form; //创建窗体
  3631. _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); } }
  3632. break;
  3633. case "doc":
  3634. // U.MD.D.I.isRoom();
  3635. _formdiv = new U.UF.UI.form(
  3636. "协同文档",
  3637. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3638. "id": "doc",
  3639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3640. "onresize": function () { }
  3641. }, {
  3642. closecallback: function () { }
  3643. }, { "style": { "height": "36px" } }).form; //创建窗体
  3644. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3645. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3646. // })
  3647. _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); } }
  3648. break;
  3649. case "studentStudy":
  3650. _formdiv = new U.UF.UI.form(
  3651. "课程中心",
  3652. $$("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
  3653. "id": "studentStudy",
  3654. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3655. "onresize": function () { }
  3656. }, {
  3657. closecallback: function () { }
  3658. }, { "style": { "height": "36px" } }).form; //创建窗体
  3659. _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); } }
  3660. break;
  3661. case "train": //好友打开
  3662. _formdiv = new U.UF.UI.form(
  3663. "训练平台",
  3664. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3665. "id": "train",
  3666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3667. "onresize": function () { }
  3668. }, {
  3669. closecallback: function () { }
  3670. }, { "style": { "height": "36px" } }).form; //创建窗体
  3671. _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); } }
  3672. break;
  3673. case "mindNetwork": //好友打开
  3674. _formdiv = new U.UF.UI.form(
  3675. "思维网格",
  3676. $$("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 }), {
  3677. "id": "mindNetwork",
  3678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3679. "onresize": function () { }
  3680. }, {
  3681. closecallback: function () { }
  3682. }, { "style": { "height": "36px" } }).form; //创建窗体
  3683. _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); } }
  3684. break;
  3685. case "studentClassRoom": //好友打开
  3686. _formdiv = new U.UF.UI.form(
  3687. "实时课堂",
  3688. $$("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 }), {
  3689. "id": "studentClassRoom",
  3690. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3691. "onresize": function () { }
  3692. }, {
  3693. closecallback: function () { }
  3694. }, { "style": { "height": "36px" } }).form; //创建窗体
  3695. _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); } }
  3696. setTimeout(() => {
  3697. U.UF.F.windowZooming(_formdiv)
  3698. }, 0);
  3699. break;
  3700. }
  3701. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3702. switch (str) {
  3703. case "studnetProject": //好友打开
  3704. _formdiv = new U.UF.UI.form(
  3705. "我的项目",
  3706. $$("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 }), {
  3707. "id": "studnetProject",
  3708. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3709. "onresize": function () { }
  3710. }, {
  3711. closecallback: function () { }
  3712. }, { "style": { "height": "36px" } }).form; //创建窗体
  3713. _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); } }
  3714. break;
  3715. case "studentEvaluate": //好友打开
  3716. _formdiv = new U.UF.UI.form(
  3717. "我的评价",
  3718. $$("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 }), {
  3719. "id": "studentEvaluate",
  3720. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3721. "onresize": function () { }
  3722. }, {
  3723. closecallback: function () { }
  3724. }, { "style": { "height": "36px" } }).form; //创建窗体
  3725. _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); } }
  3726. break;
  3727. case "my":
  3728. _formdiv = new U.UF.UI.form(
  3729. "我的资料",
  3730. $$("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 }), {
  3731. "id": "my",
  3732. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3733. "onresize": function () { }
  3734. }, {
  3735. closecallback: function () { }
  3736. }, { "style": { "height": "36px" } }).form; //创建窗体
  3737. _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); } }
  3738. break;
  3739. case "program":
  3740. _formdiv = new U.UF.UI.form(
  3741. "编程平台",
  3742. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3743. "id": "program",
  3744. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3745. "onresize": function () { }
  3746. }, {
  3747. closecallback: function () { }
  3748. }, { "style": { "height": "36px" } }).form; //创建窗体
  3749. _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); } }
  3750. break;
  3751. case "library":
  3752. _formdiv = new U.UF.UI.form(
  3753. "素材库",
  3754. $$("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 }), {
  3755. "id": "library",
  3756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3757. "onresize": function () { }
  3758. }, {
  3759. closecallback: function () { }
  3760. }, { "style": { "height": "36px" } }).form; //创建窗体
  3761. _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); } }
  3762. break;
  3763. case "whiteboard":
  3764. _formdiv = new U.UF.UI.form(
  3765. "电子白板",
  3766. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3767. "id": "whiteboard",
  3768. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3769. "onresize": function () { }
  3770. }, {
  3771. closecallback: function () { }
  3772. }, { "style": { "height": "36px" } }).form; //创建窗体
  3773. _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); } }
  3774. break;
  3775. case "investigation":
  3776. _formdiv = new U.UF.UI.form(
  3777. "问卷调查",
  3778. $$("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 }), {
  3779. "id": "investigation",
  3780. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3781. "onresize": function () { }
  3782. }, {
  3783. closecallback: function () { }
  3784. }, { "style": { "height": "36px" } }).form; //创建窗体
  3785. _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); } }
  3786. break;
  3787. case "note":
  3788. _formdiv = new U.UF.UI.form(
  3789. "便签分类",
  3790. $$("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 }), {
  3791. "id": "note",
  3792. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3793. "onresize": function () { }
  3794. }, {
  3795. closecallback: function () { }
  3796. }, { "style": { "height": "36px" } }).form; //创建窗体
  3797. _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); } }
  3798. break;
  3799. // case "score":
  3800. // _formdiv = new U.UF.UI.form(
  3801. // "量规评分",
  3802. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3803. // "id": "score",
  3804. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3805. // "onresize": function() {}
  3806. // }, {
  3807. // closecallback: function() {}
  3808. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3809. // _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); } }
  3810. // break;
  3811. case "mind":
  3812. _formdiv = new U.UF.UI.form(
  3813. "思维导图",
  3814. $$("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"
  3815. "id": "mind",
  3816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3817. "onresize": function () { }
  3818. }, {
  3819. closecallback: function () { }
  3820. }, { "style": { "height": "36px" } }).form; //创建窗体
  3821. _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); } }
  3822. break;
  3823. case "doc":
  3824. // U.MD.D.I.isRoom();
  3825. _formdiv = new U.UF.UI.form(
  3826. "协同文档",
  3827. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3828. "id": "doc",
  3829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3830. "onresize": function () { }
  3831. }, {
  3832. closecallback: function () { }
  3833. }, { "style": { "height": "36px" } }).form; //创建窗体
  3834. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3835. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3836. })
  3837. _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); } }
  3838. break;
  3839. case "train": //好友打开
  3840. _formdiv = new U.UF.UI.form(
  3841. "训练平台",
  3842. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3843. "id": "train",
  3844. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3845. "onresize": function () { }
  3846. }, {
  3847. closecallback: function () { }
  3848. }, { "style": { "height": "36px" } }).form; //创建窗体
  3849. _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); } }
  3850. break;
  3851. case "studentStudy":
  3852. _formdiv = new U.UF.UI.form(
  3853. "课程中心",
  3854. $$("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
  3855. "id": "studentStudy",
  3856. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3857. "onresize": function () { }
  3858. }, {
  3859. closecallback: function () { }
  3860. }, { "style": { "height": "36px" } }).form; //创建窗体
  3861. _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); } }
  3862. break;
  3863. case "mindNetwork": //好友打开
  3864. _formdiv = new U.UF.UI.form(
  3865. "思维网格",
  3866. $$("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 }), {
  3867. "id": "mindNetwork",
  3868. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3869. "onresize": function () { }
  3870. }, {
  3871. closecallback: function () { }
  3872. }, { "style": { "height": "36px" } }).form; //创建窗体
  3873. _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); } }
  3874. break;
  3875. case "studentClassRoom": //好友打开
  3876. _formdiv = new U.UF.UI.form(
  3877. "实时课堂",
  3878. $$("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 }), {
  3879. "id": "studentClassRoom",
  3880. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3881. "onresize": function () { }
  3882. }, {
  3883. closecallback: function () { }
  3884. }, { "style": { "height": "36px" } }).form; //创建窗体
  3885. _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); } }
  3886. setTimeout(() => {
  3887. U.UF.F.windowZooming(_formdiv)
  3888. }, 0);
  3889. break;
  3890. }
  3891. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3892. //选择应用处理
  3893. switch (str) {
  3894. case "project": //好友打开
  3895. _formdiv = new U.UF.UI.form(
  3896. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  3897. $$("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 }), {
  3898. "id": "project",
  3899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3900. "onresize": function () { }
  3901. }, {
  3902. closecallback: function () { }
  3903. }, { "style": { "height": "36px" } }).form; //创建窗体
  3904. _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); } }
  3905. break;
  3906. case "student":
  3907. _formdiv = new U.UF.UI.form(
  3908. "学生管理",
  3909. $$("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 }), {
  3910. "id": "student",
  3911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3912. "onresize": function () { }
  3913. }, {
  3914. closecallback: function () { }
  3915. }, { "style": { "height": "36px" } }).form; //创建窗体
  3916. _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); } }
  3917. break;
  3918. case "evaluate":
  3919. _formdiv = new U.UF.UI.form(
  3920. "学生评价",
  3921. $$("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 }), {
  3922. "id": "evaluate",
  3923. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3924. "onresize": function () { }
  3925. }, {
  3926. closecallback: function () { }
  3927. }, { "style": { "height": "36px" } }).form; //创建窗体
  3928. _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); } }
  3929. break;
  3930. case "sys":
  3931. _formdiv = new U.UF.UI.form(
  3932. "目标管理",
  3933. $$("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 }), {
  3934. "id": "sys",
  3935. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3936. "onresize": function () { }
  3937. }, {
  3938. closecallback: function () { }
  3939. }, { "style": { "height": "36px" } }).form; //创建窗体
  3940. _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); } }
  3941. break;
  3942. case "courseDesign":
  3943. _formdiv = new U.UF.UI.form(
  3944. "项目设计",
  3945. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  3946. "id": "courseDesign",
  3947. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3948. "onresize": function () { }
  3949. }, {
  3950. closecallback: function () { }
  3951. }, { "style": { "height": "36px" } }).form; //创建窗体
  3952. _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); } }
  3953. break;
  3954. case "program":
  3955. _formdiv = new U.UF.UI.form(
  3956. "编程平台",
  3957. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3958. "id": "program",
  3959. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3960. "onresize": function () { }
  3961. }, {
  3962. closecallback: function () { }
  3963. }, { "style": { "height": "36px" } }).form; //创建窗体
  3964. _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); } }
  3965. break;
  3966. case "class":
  3967. _formdiv = new U.UF.UI.form(
  3968. "班级管理",
  3969. $$("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 }), {
  3970. "id": "class",
  3971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3972. "onresize": function () { }
  3973. }, {
  3974. closecallback: function () { }
  3975. }, { "style": { "height": "36px" } }).form; //创建窗体
  3976. _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); } }
  3977. break;
  3978. case "Grade":
  3979. _formdiv = new U.UF.UI.form(
  3980. "年级管理",
  3981. $$("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 }), {
  3982. "id": "Grade",
  3983. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3984. "onresize": function () { }
  3985. }, {
  3986. closecallback: function () { }
  3987. }, { "style": { "height": "36px" } }).form; //创建窗体
  3988. _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); } }
  3989. break;
  3990. case "teacherOffice":
  3991. _formdiv = new U.UF.UI.form(
  3992. "教研室",
  3993. $$("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 }), {
  3994. "id": "teacherOffice",
  3995. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3996. "onresize": function () { }
  3997. }, {
  3998. closecallback: function () { }
  3999. }, { "style": { "height": "36px" } }).form; //创建窗体
  4000. _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); } }
  4001. break;
  4002. case "my":
  4003. _formdiv = new U.UF.UI.form(
  4004. "我的资料",
  4005. $$("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 }), {
  4006. "id": "my",
  4007. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4008. "onresize": function () { }
  4009. }, {
  4010. closecallback: function () { }
  4011. }, { "style": { "height": "36px" } }).form; //创建窗体
  4012. _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); } }
  4013. break;
  4014. case "notice":
  4015. _formdiv = new U.UF.UI.form(
  4016. "通知公告",
  4017. $$("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 }), {
  4018. "id": "notice",
  4019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4020. "onresize": function () { }
  4021. }, {
  4022. closecallback: function () { }
  4023. }, { "style": { "height": "36px" } }).form; //创建窗体
  4024. _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); } }
  4025. break;
  4026. case "library":
  4027. _formdiv = new U.UF.UI.form(
  4028. "素材库",
  4029. $$("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 }), {
  4030. "id": "library",
  4031. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4032. "onresize": function () { }
  4033. }, {
  4034. closecallback: function () { }
  4035. }, { "style": { "height": "36px" } }).form; //创建窗体
  4036. _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); } }
  4037. break;
  4038. case "whiteboard":
  4039. _formdiv = new U.UF.UI.form(
  4040. "电子白板",
  4041. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4042. "id": "whiteboard",
  4043. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4044. "onresize": function () { }
  4045. }, {
  4046. closecallback: function () { }
  4047. }, { "style": { "height": "36px" } }).form; //创建窗体
  4048. _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); } }
  4049. break;
  4050. case "investigation":
  4051. _formdiv = new U.UF.UI.form(
  4052. "问卷调查",
  4053. $$("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 }), {
  4054. "id": "investigation",
  4055. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4056. "onresize": function () { }
  4057. }, {
  4058. closecallback: function () { }
  4059. }, { "style": { "height": "36px" } }).form; //创建窗体
  4060. _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); } }
  4061. break;
  4062. case "note":
  4063. _formdiv = new U.UF.UI.form(
  4064. "便签分类",
  4065. $$("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 }), {
  4066. "id": "note",
  4067. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4068. "onresize": function () { }
  4069. }, {
  4070. closecallback: function () { }
  4071. }, { "style": { "height": "36px" } }).form; //创建窗体
  4072. _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); } }
  4073. break;
  4074. // case "score":
  4075. // _formdiv = new U.UF.UI.form(
  4076. // "量规评分",
  4077. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4078. // "id": "score",
  4079. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4080. // "onresize": function() {}
  4081. // }, {
  4082. // closecallback: function() {}
  4083. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4084. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4085. // break;
  4086. case "mind":
  4087. _formdiv = new U.UF.UI.form(
  4088. "思维导图",
  4089. $$("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"
  4090. "id": "mind",
  4091. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4092. "onresize": function () { }
  4093. }, {
  4094. closecallback: function () { }
  4095. }, { "style": { "height": "36px" } }).form; //创建窗体
  4096. _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); } }
  4097. break;
  4098. case "doc":
  4099. // U.MD.D.I.isRoom();
  4100. _formdiv = new U.UF.UI.form(
  4101. "协同文档",
  4102. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4103. "id": "doc",
  4104. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4105. "onresize": function () { }
  4106. }, {
  4107. closecallback: function () { }
  4108. }, { "style": { "height": "36px" } }).form; //创建窗体
  4109. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4110. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4111. })
  4112. _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); } }
  4113. break;
  4114. case "study":
  4115. _formdiv = new U.UF.UI.form(
  4116. "课程中心",
  4117. $$("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
  4118. "id": "study",
  4119. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4120. "onresize": function () { }
  4121. }, {
  4122. closecallback: function () { }
  4123. }, { "style": { "height": "36px" } }).form; //创建窗体
  4124. _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); } }
  4125. break;
  4126. case "mindNetwork": //好友打开
  4127. _formdiv = new U.UF.UI.form(
  4128. "思维网格",
  4129. $$("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 }), {
  4130. "id": "mindNetwork",
  4131. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4132. "onresize": function () { }
  4133. }, {
  4134. closecallback: function () { }
  4135. }, { "style": { "height": "36px" } }).form; //创建窗体
  4136. _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); } }
  4137. break;
  4138. case "train": //好友打开
  4139. _formdiv = new U.UF.UI.form(
  4140. "训练平台",
  4141. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4142. "id": "mindNetwork",
  4143. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4144. "onresize": function () { }
  4145. }, {
  4146. closecallback: function () { }
  4147. }, { "style": { "height": "36px" } }).form; //创建窗体
  4148. _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); } }
  4149. break;
  4150. case "teacherClassRoom": //好友打开
  4151. _formdiv = new U.UF.UI.form(
  4152. "实时课堂",
  4153. $$("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 }), {
  4154. "id": "teacherClassRoom",
  4155. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4156. "onresize": function () { }
  4157. }, {
  4158. closecallback: function () { }
  4159. }, { "style": { "height": "36px" } }).form; //创建窗体
  4160. _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); } }
  4161. setTimeout(() => {
  4162. U.UF.F.windowZooming(_formdiv)
  4163. }, 0);
  4164. break;
  4165. }
  4166. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4167. switch (str) {
  4168. case "project": //好友打开
  4169. _formdiv = new U.UF.UI.form(
  4170. "课程管理",
  4171. $$("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 }), {
  4172. "id": "project",
  4173. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4174. "onresize": function () { }
  4175. }, {
  4176. closecallback: function () { }
  4177. }, { "style": { "height": "36px" } }).form; //创建窗体
  4178. _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); } }
  4179. break;
  4180. case "evaluate":
  4181. _formdiv = new U.UF.UI.form(
  4182. "学生评价",
  4183. $$("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 }), {
  4184. "id": "evaluate",
  4185. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4186. "onresize": function () { }
  4187. }, {
  4188. closecallback: function () { }
  4189. }, { "style": { "height": "36px" } }).form; //创建窗体
  4190. _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); } }
  4191. break;
  4192. case "notice":
  4193. _formdiv = new U.UF.UI.form(
  4194. "通知公告",
  4195. $$("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 }), {
  4196. "id": "notice",
  4197. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4198. "onresize": function () { }
  4199. }, {
  4200. closecallback: function () { }
  4201. }, { "style": { "height": "36px" } }).form; //创建窗体
  4202. _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); } }
  4203. break;
  4204. case "stuLibrary":
  4205. _formdiv = new U.UF.UI.form(
  4206. "学习资料",
  4207. $$("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 }), {
  4208. "id": "stuLibrary",
  4209. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4210. "onresize": function () { }
  4211. }, {
  4212. closecallback: function () { }
  4213. }, { "style": { "height": "36px" } }).form; //创建窗体
  4214. _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); } }
  4215. break;
  4216. case "program":
  4217. _formdiv = new U.UF.UI.form(
  4218. "编程平台",
  4219. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4220. "id": "program",
  4221. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4222. "onresize": function () { }
  4223. }, {
  4224. closecallback: function () { }
  4225. }, { "style": { "height": "36px" } }).form; //创建窗体
  4226. _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); } }
  4227. break;
  4228. case "whiteboard":
  4229. _formdiv = new U.UF.UI.form(
  4230. "电子白板",
  4231. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4232. "id": "whiteboard",
  4233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4234. "onresize": function () { }
  4235. }, {
  4236. closecallback: function () { }
  4237. }, { "style": { "height": "36px" } }).form; //创建窗体
  4238. _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); } }
  4239. break;
  4240. case "investigation":
  4241. _formdiv = new U.UF.UI.form(
  4242. "问卷调查",
  4243. $$("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 }), {
  4244. "id": "investigation",
  4245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4246. "onresize": function () { }
  4247. }, {
  4248. closecallback: function () { }
  4249. }, { "style": { "height": "36px" } }).form; //创建窗体
  4250. _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); } }
  4251. break;
  4252. case "mind":
  4253. _formdiv = new U.UF.UI.form(
  4254. "思维导图",
  4255. $$("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"
  4256. "id": "mind",
  4257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4258. "onresize": function () { }
  4259. }, {
  4260. closecallback: function () { }
  4261. }, { "style": { "height": "36px" } }).form; //创建窗体
  4262. _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); } }
  4263. break;
  4264. case "doc":
  4265. // U.MD.D.I.isRoom();
  4266. _formdiv = new U.UF.UI.form(
  4267. "协同文档",
  4268. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4269. "id": "doc",
  4270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4271. "onresize": function () { }
  4272. }, {
  4273. closecallback: function () { }
  4274. }, { "style": { "height": "36px" } }).form; //创建窗体
  4275. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4276. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4277. })
  4278. _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); } }
  4279. break;
  4280. case "study":
  4281. _formdiv = new U.UF.UI.form(
  4282. "课程中心",
  4283. $$("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
  4284. "id": "study",
  4285. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4286. "onresize": function () { }
  4287. }, {
  4288. closecallback: function () { }
  4289. }, { "style": { "height": "36px" } }).form; //创建窗体
  4290. _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); } }
  4291. break;
  4292. case "mindNetwork": //好友打开
  4293. _formdiv = new U.UF.UI.form(
  4294. "思维网格",
  4295. $$("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 }), {
  4296. "id": "mindNetwork",
  4297. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4298. "onresize": function () { }
  4299. }, {
  4300. closecallback: function () { }
  4301. }, { "style": { "height": "36px" } }).form; //创建窗体
  4302. _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); } }
  4303. break;
  4304. case "train": //好友打开
  4305. _formdiv = new U.UF.UI.form(
  4306. "训练平台",
  4307. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4308. "id": "train",
  4309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4310. "onresize": function () { }
  4311. }, {
  4312. closecallback: function () { }
  4313. }, { "style": { "height": "36px" } }).form; //创建窗体
  4314. _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); } }
  4315. break;
  4316. case "sys":
  4317. _formdiv = new U.UF.UI.form(
  4318. "目标管理",
  4319. $$("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 }), {
  4320. "id": "sys",
  4321. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4322. "onresize": function () { }
  4323. }, {
  4324. closecallback: function () { }
  4325. }, { "style": { "height": "36px" } }).form; //创建窗体
  4326. _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); } }
  4327. break;
  4328. case "courseDesign":
  4329. _formdiv = new U.UF.UI.form(
  4330. "项目设计",
  4331. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4332. "id": "courseDesign",
  4333. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4334. "onresize": function () { }
  4335. }, {
  4336. closecallback: function () { }
  4337. }, { "style": { "height": "36px" } }).form; //创建窗体
  4338. _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); } }
  4339. break;
  4340. }
  4341. } else if (!_type) {
  4342. switch (str) {
  4343. case "my":
  4344. _formdiv = new U.UF.UI.form(
  4345. "我的资料",
  4346. $$("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 }), {
  4347. "id": "my",
  4348. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4349. "onresize": function () { }
  4350. }, {
  4351. closecallback: function () { }
  4352. }, { "style": { "height": "36px" } }).form; //创建窗体
  4353. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4354. break;
  4355. }
  4356. }
  4357. switch (str) {
  4358. // AIprogram2 AI体验 aihub.cocorobo.cn
  4359. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4360. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4361. case "formulaEdi": //公式编辑
  4362. _formdiv = new U.UF.UI.form(
  4363. "公式编辑",
  4364. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4365. "id": "formulaEdi",
  4366. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4367. "onresize": function () { }
  4368. }, {
  4369. closecallback: function () { }
  4370. }, { "style": { "height": "36px" } }).form; //创建窗体
  4371. _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); } }
  4372. break;
  4373. case "molStr": //分子结构
  4374. _formdiv = new U.UF.UI.form(
  4375. "分子结构",
  4376. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4377. "id": "molStr",
  4378. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4379. "onresize": function () { }
  4380. }, {
  4381. closecallback: function () { }
  4382. }, { "style": { "height": "36px" } }).form; //创建窗体
  4383. _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); } }
  4384. break;
  4385. case "timeAxis": //时间轴
  4386. _formdiv = new U.UF.UI.form(
  4387. "时间轴",
  4388. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4389. "id": "timeAxis",
  4390. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4391. "onresize": function () { }
  4392. }, {
  4393. closecallback: function () { }
  4394. }, { "style": { "height": "36px" } }).form; //创建窗体
  4395. _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); } }
  4396. break;
  4397. case "AIprogram2": //AI体验
  4398. _formdiv = new U.UF.UI.form(
  4399. "AI体验",
  4400. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4401. "id": "AIprogram2",
  4402. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4403. "onresize": function () { }
  4404. }, {
  4405. closecallback: function () { }
  4406. }, { "style": { "height": "36px" } }).form; //创建窗体
  4407. _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); } }
  4408. break;
  4409. case "Pythonprogram": //python编程
  4410. _formdiv = new U.UF.UI.form(
  4411. "Python编程",
  4412. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4413. "id": "Pythonprogram",
  4414. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4415. "onresize": function () { }
  4416. }, {
  4417. closecallback: function () { }
  4418. }, { "style": { "height": "36px" } }).form; //创建窗体
  4419. _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); } }
  4420. break;
  4421. case "AIprogram": //ai编程
  4422. _formdiv = new U.UF.UI.form(
  4423. "AI编程平台",
  4424. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4425. "id": "AIprogram",
  4426. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4427. "onresize": function () { }
  4428. }, {
  4429. closecallback: function () { }
  4430. }, { "style": { "height": "36px" } }).form; //创建窗体
  4431. _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); } }
  4432. break;
  4433. case "CocoPi": //CocoPi
  4434. _formdiv = new U.UF.UI.form(
  4435. "CocoPi",
  4436. $$("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" }), {
  4437. "id": "CocoPi",
  4438. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4439. "onresize": function () { }
  4440. }, {
  4441. closecallback: function () { }
  4442. }, { "style": { "height": "36px" } }).form; //创建窗体
  4443. _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); } }
  4444. break;
  4445. case "Wood": //Wood
  4446. _formdiv = new U.UF.UI.form(
  4447. "海龟编程",
  4448. $$("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/" }), {
  4449. "id": "Wood",
  4450. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4451. "onresize": function () { }
  4452. }, {
  4453. closecallback: function () { }
  4454. }, { "style": { "height": "36px" } }).form; //创建窗体
  4455. _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); } }
  4456. break;
  4457. case "car": //模拟驾驶
  4458. _formdiv = new U.UF.UI.form(
  4459. "模拟驾驶",
  4460. $$("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/" }), {
  4461. "id": "car",
  4462. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4463. "onresize": function () { }
  4464. }, {
  4465. closecallback: function () { }
  4466. }, { "style": { "height": "36px" } }).form; //创建窗体
  4467. _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); } }
  4468. break;
  4469. case "lineSearch": //路径搜索
  4470. _formdiv = new U.UF.UI.form(
  4471. "路径搜索",
  4472. $$("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/" }), {
  4473. "id": "lineSearch",
  4474. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4475. "onresize": function () { }
  4476. }, {
  4477. closecallback: function () { }
  4478. }, { "style": { "height": "36px" } }).form; //创建窗体
  4479. _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); } }
  4480. break;
  4481. case "deepLearning": //深度学习
  4482. _formdiv = new U.UF.UI.form(
  4483. "深度学习",
  4484. $$("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/#" }), {
  4485. "id": "deepLearning",
  4486. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4487. "onresize": function () { }
  4488. }, {
  4489. closecallback: function () { }
  4490. }, { "style": { "height": "36px" } }).form; //创建窗体
  4491. _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); } }
  4492. break;
  4493. case "allHistory": //深度学习
  4494. _formdiv = new U.UF.UI.form(
  4495. "全历史",
  4496. $$("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/" }), {
  4497. "id": "allHistory",
  4498. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4499. "onresize": function () { }
  4500. }, {
  4501. closecallback: function () { }
  4502. }, { "style": { "height": "36px" } }).form; //创建窗体
  4503. _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); } }
  4504. break;
  4505. case "chatPDF": //ai编程
  4506. _formdiv = new U.UF.UI.form(
  4507. "chatPDF",
  4508. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4509. "id": "chatPDF",
  4510. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4511. "onresize": function () { }
  4512. }, {
  4513. closecallback: function () { }
  4514. }, { "style": { "height": "36px" } }).form; //创建窗体
  4515. _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); } }
  4516. break;
  4517. case "resources": //国家教育
  4518. _formdiv = new U.UF.UI.form(
  4519. "国家教育",
  4520. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4521. "id": "resources",
  4522. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4523. "onresize": function () { }
  4524. }, {
  4525. closecallback: function () { }
  4526. }, { "style": { "height": "36px" } }).form; //创建窗体
  4527. _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); } }
  4528. break;
  4529. case "codeEdit": //源码编辑
  4530. _formdiv = new U.UF.UI.form(
  4531. "源码编辑",
  4532. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4533. "id": "codeEdit",
  4534. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4535. "onresize": function () { }
  4536. }, {
  4537. closecallback: function () { }
  4538. }, { "style": { "height": "36px" } }).form; //创建窗体
  4539. _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); } }
  4540. break; //
  4541. case "MindMap": //MindMap
  4542. _formdiv = new U.UF.UI.form(
  4543. "MindMap",
  4544. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4545. "id": "MindMap",
  4546. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4547. "onresize": function () { }
  4548. }, {
  4549. closecallback: function () { }
  4550. }, { "style": { "height": "36px" } }).form; //创建窗体
  4551. _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); } }
  4552. break;
  4553. case "netWorkPanel": //netWorkPanel
  4554. _formdiv = new U.UF.UI.form(
  4555. "netWorkPanel",
  4556. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4557. "id": "netWorkPanel",
  4558. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4559. "onresize": function () { }
  4560. }, {
  4561. closecallback: function () { }
  4562. }, { "style": { "height": "36px" } }).form; //创建窗体
  4563. _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); } }
  4564. break;
  4565. case "GeoGebra": //GeoGebra
  4566. _formdiv = new U.UF.UI.form(
  4567. "GeoGebra",
  4568. $$("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" }), {
  4569. "id": "GeoGebra",
  4570. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4571. "onresize": function () { }
  4572. }, {
  4573. closecallback: function () { }
  4574. }, { "style": { "height": "36px" } }).form; //创建窗体
  4575. _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); } }
  4576. break;
  4577. case "translation": //翻译
  4578. _formdiv = new U.UF.UI.form(
  4579. "翻译",
  4580. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4581. "id": "translation",
  4582. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4583. "onresize": function () { }
  4584. }, {
  4585. closecallback: function () { }
  4586. }, { "style": { "height": "36px" } }).form; //创建窗体
  4587. _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); } }
  4588. break;
  4589. case "mohe": //魔盒
  4590. _formdiv = new U.UF.UI.form(
  4591. "魔盒识字",
  4592. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4593. "id": "mohe",
  4594. "style": { "width": "375px", "height": "667px", "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/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4600. break;
  4601. case "24game": //24点
  4602. _formdiv = new U.UF.UI.form(
  4603. "24点",
  4604. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4605. "id": "24game",
  4606. "style": { "width": "375px", "height": "667px", "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/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4612. break;
  4613. case "case":
  4614. _formdiv = new U.UF.UI.form(
  4615. "课程进展",
  4616. $$("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 }), {
  4617. "id": "case",
  4618. "style": { "width": "90%", "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/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4624. break;
  4625. case "snf":
  4626. _formdiv = new U.UF.UI.form(
  4627. "赛诺梵",
  4628. $$("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" }), {
  4629. "id": "snf",
  4630. "style": { "width": "90%", "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/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4636. break;
  4637. case "hanFamily":
  4638. _formdiv = new U.UF.UI.form(
  4639. "汉字家族",
  4640. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4641. "id": "hanFamily",
  4642. "style": { "width": "90%", "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/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4648. break;
  4649. case "hanClassics":
  4650. _formdiv = new U.UF.UI.form(
  4651. "国学经典",
  4652. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4653. "id": "hanClassics",
  4654. "style": { "width": "90%", "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/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4660. break;
  4661. case "hanTraining":
  4662. _formdiv = new U.UF.UI.form(
  4663. "笔画训练",
  4664. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4665. "id": "hanTraining",
  4666. "style": { "width": "90%", "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/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4672. break;
  4673. case "hanClass":
  4674. _formdiv = new U.UF.UI.form(
  4675. "书法课堂",
  4676. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4677. "id": "hanClass",
  4678. "style": { "width": "90%", "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/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4684. break;
  4685. case "han":
  4686. _formdiv = new U.UF.UI.form(
  4687. "汉字宫",
  4688. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4689. "id": "han",
  4690. "style": { "width": "90%", "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/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4696. break;
  4697. case "projectGM": //课程管理
  4698. _formdiv = new U.UF.UI.form(
  4699. "课程管理",
  4700. $$("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 }), {
  4701. "id": "projectGM",
  4702. "style": { "width": "90%", "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/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4708. break;
  4709. case "studyGM": //课程中心
  4710. _formdiv = new U.UF.UI.form(
  4711. "课程中心",
  4712. $$("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
  4713. "id": "study",
  4714. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4720. break;
  4721. // studentGM
  4722. case "studentGM": //学生管理
  4723. _formdiv = new U.UF.UI.form(
  4724. "学生管理",
  4725. $$("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 }), {
  4726. "id": "studentGM",
  4727. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4728. "onresize": function () { }
  4729. }, {
  4730. closecallback: function () { }
  4731. }, { "style": { "height": "36px" } }).form; //创建窗体
  4732. _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); } }
  4733. break;
  4734. case "evaluateGM": //学生评价
  4735. _formdiv = new U.UF.UI.form(
  4736. "学生评价",
  4737. $$("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 }), {
  4738. "id": "evaluateGM",
  4739. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4740. "onresize": function () { }
  4741. }, {
  4742. closecallback: function () { }
  4743. }, { "style": { "height": "36px" } }).form; //创建窗体
  4744. _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); } }
  4745. break;
  4746. // classGM
  4747. case "classGM": //班级管理
  4748. _formdiv = new U.UF.UI.form(
  4749. "班级管理",
  4750. $$("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 }), {
  4751. "id": "classGM",
  4752. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4753. "onresize": function () { }
  4754. }, {
  4755. closecallback: function () { }
  4756. }, { "style": { "height": "36px" } }).form; //创建窗体
  4757. _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); } }
  4758. break;
  4759. // dataGM
  4760. case "dataGM":
  4761. _formdiv = new U.UF.UI.form(
  4762. "我的资料",
  4763. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  4764. "id": "dataGM",
  4765. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4766. "onresize": function () { }
  4767. }, {
  4768. closecallback: function () { }
  4769. }, { "style": { "height": "36px" } }).form; //创建窗体
  4770. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4771. break;
  4772. // caseGM
  4773. case "caseGM": //课程进展
  4774. _formdiv = new U.UF.UI.form(
  4775. "课程进展",
  4776. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4777. "id": "caseGM",
  4778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4779. "onresize": function () { }
  4780. }, {
  4781. closecallback: function () { }
  4782. }, { "style": { "height": "36px" } }).form; //创建窗体
  4783. _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); } }
  4784. break;
  4785. // meterialGM
  4786. case "meterialGM": //素材库
  4787. _formdiv = new U.UF.UI.form(
  4788. "素材库",
  4789. $$("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 }), {
  4790. "id": "meterialGM",
  4791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4792. "onresize": function () { }
  4793. }, {
  4794. closecallback: function () { }
  4795. }, { "style": { "height": "36px" } }).form; //创建窗体
  4796. _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); } }
  4797. break;
  4798. // evaluateSGM
  4799. case "evaluateSGM": //我的评价
  4800. _formdiv = new U.UF.UI.form(
  4801. "我的评价",
  4802. $$("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 }), {
  4803. "id": "evaluateSGM",
  4804. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4805. "onresize": function () { }
  4806. }, {
  4807. closecallback: function () { }
  4808. }, { "style": { "height": "36px" } }).form; //创建窗体
  4809. _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); } }
  4810. break;
  4811. case "jupyter": //jupyter
  4812. _formdiv = new U.UF.UI.form(
  4813. "jupyter",
  4814. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  4815. "id": "jupyter",
  4816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4817. "onresize": function () { }
  4818. }, {
  4819. closecallback: function () { }
  4820. }, { "style": { "height": "36px" } }).form; //创建窗体
  4821. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4822. break;
  4823. case "number": //数字实验室
  4824. _formdiv = new U.UF.UI.form(
  4825. "数字实验室",
  4826. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  4827. "id": "number",
  4828. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4829. "onresize": function () { }
  4830. }, {
  4831. closecallback: function () { }
  4832. }, { "style": { "height": "36px" } }).form; //创建窗体
  4833. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4834. break;
  4835. case "studentCourse": //项目管理 学生
  4836. _formdiv = new U.UF.UI.form(
  4837. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4838. $$("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 }), {
  4839. "id": "studentCourse",
  4840. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4841. "onresize": function () { }
  4842. }, {
  4843. closecallback: function () { }
  4844. }, { "style": { "height": "36px" } }).form; //创建窗体
  4845. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4846. break;
  4847. case "studentCourseS": //项目管理 老师
  4848. _formdiv = new U.UF.UI.form(
  4849. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4850. $$("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 }), {
  4851. "id": "studentCourseS",
  4852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4853. "onresize": function () { }
  4854. }, {
  4855. closecallback: function () { }
  4856. }, { "style": { "height": "36px" } }).form; //创建窗体
  4857. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4858. break;
  4859. case "studentIndex": //项目中心
  4860. _formdiv = new U.UF.UI.form(
  4861. "项目中心",
  4862. $$("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 }), {
  4863. "id": "studentIndex",
  4864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4865. "onresize": function () { }
  4866. }, {
  4867. closecallback: function () { }
  4868. }, { "style": { "height": "36px" } }).form; //创建窗体
  4869. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4870. break;
  4871. case "CaseDesignS":
  4872. _formdiv = new U.UF.UI.form(
  4873. "项目进展",
  4874. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4875. "id": "case",
  4876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4877. "onresize": function () { }
  4878. }, {
  4879. closecallback: function () { }
  4880. }, { "style": { "height": "36px" } }).form; //创建窗体
  4881. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4882. break;
  4883. case "tcStudent": //腾讯学生管理
  4884. _formdiv = new U.UF.UI.form(
  4885. "学生管理",
  4886. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4887. "id": "tcStudent",
  4888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4889. "onresize": function () { }
  4890. }, {
  4891. closecallback: function () { }
  4892. }, { "style": { "height": "36px" } }).form; //创建窗体
  4893. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4894. break;
  4895. case "tcSchool": //腾讯学校管理
  4896. _formdiv = new U.UF.UI.form(
  4897. "学校管理",
  4898. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4899. "id": "tcSchool",
  4900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4901. "onresize": function () { }
  4902. }, {
  4903. closecallback: function () { }
  4904. }, { "style": { "height": "36px" } }).form; //创建窗体
  4905. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4906. break;
  4907. case "tcTeacher": //腾讯学校管理
  4908. _formdiv = new U.UF.UI.form(
  4909. "教师管理",
  4910. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4911. "id": "tcTeacher",
  4912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4913. "onresize": function () { }
  4914. }, {
  4915. closecallback: function () { }
  4916. }, { "style": { "height": "36px" } }).form; //创建窗体
  4917. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4918. break;
  4919. case "tcData": //腾讯我的资料
  4920. _formdiv = new U.UF.UI.form(
  4921. "我的资料",
  4922. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4923. "id": "tcData",
  4924. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4925. "onresize": function () { }
  4926. }, {
  4927. closecallback: function () { }
  4928. }, { "style": { "height": "36px" } }).form; //创建窗体
  4929. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4930. break;
  4931. case "tcNotice": //腾讯消息通知
  4932. _formdiv = new U.UF.UI.form(
  4933. "消息通知",
  4934. $$("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 }), {
  4935. "id": "tcNotice",
  4936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4937. "onresize": function () { }
  4938. }, {
  4939. closecallback: function () { }
  4940. }, { "style": { "height": "36px" } }).form; //创建窗体
  4941. _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); } }
  4942. break;
  4943. case "myReport": //好友打开
  4944. _formdiv = new U.UF.UI.form(
  4945. "我的评价",
  4946. $$("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 }), {
  4947. "id": "myReport",
  4948. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4949. "onresize": function () { }
  4950. }, {
  4951. closecallback: function () { }
  4952. }, { "style": { "height": "36px" } }).form; //创建窗体
  4953. _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); } }
  4954. break;
  4955. case "learnAna": //好友打开
  4956. _formdiv = new U.UF.UI.form(
  4957. "学习分析",
  4958. $$("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 }), {
  4959. "id": "learnAna",
  4960. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4961. "onresize": function () { }
  4962. }, {
  4963. closecallback: function () { }
  4964. }, { "style": { "height": "36px" } }).form; //创建窗体
  4965. _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); } }
  4966. break;
  4967. case "AIChat": //AI共创
  4968. _formdiv = new U.UF.UI.form(
  4969. "AI共创",
  4970. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  4971. "id": "AIChat",
  4972. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  4973. "onresize": function () { }
  4974. }, {
  4975. istop: true,
  4976. closecallback: function () { $("#aichat_icon").remove(); },
  4977. narrowcallback: function () {
  4978. if (!$("#aichat_icon")[0]) {
  4979. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  4980. }
  4981. },
  4982. }, { "style": { "height": "36px" } }).form; //创建窗体
  4983. _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); } }
  4984. break;
  4985. case "ainew": //AI共创
  4986. _formdiv = new U.UF.UI.form(
  4987. "AI协同",
  4988. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  4989. "id": "ainew",
  4990. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4991. "onresize": function () { }
  4992. }, {
  4993. closecallback: function () { }
  4994. }, { "style": { "height": "36px" } }).form; //创建窗体
  4995. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4996. break;
  4997. case "gpt4": //gpt4
  4998. _formdiv = new U.UF.UI.form(
  4999. "AI助手",
  5000. $$("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 }), {
  5001. "id": "gpt4",
  5002. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5003. "onresize": function () { }
  5004. }, {
  5005. closecallback: function () { }
  5006. }, { "style": { "height": "36px" } }).form; //创建窗体
  5007. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5008. break;
  5009. case "aigpt": //gpt4
  5010. _formdiv = new U.UF.UI.form(
  5011. "AI助手+",
  5012. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5013. "id": "aigpt",
  5014. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5015. "onresize": function () { }
  5016. }, {
  5017. closecallback: function () { }
  5018. }, { "style": { "height": "36px" } }).form; //创建窗体
  5019. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigpt.png)" }, "name": "AI助手+", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5020. break;
  5021. case "futureClass": //AI共创
  5022. _formdiv = new U.UF.UI.form(
  5023. "协同建构",
  5024. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  5025. "id": "synergyCourse",
  5026. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5027. "onresize": function () { }
  5028. }, {
  5029. closecallback: function () {
  5030. $("iframe", _formdiv)[0].contentWindow.loginout();
  5031. }
  5032. }, { "style": { "height": "36px" } }).form; //创建窗体
  5033. _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); } }
  5034. break;
  5035. case "aiagent": //ai agent
  5036. _formdiv = new U.UF.UI.form(
  5037. "AI Agent",
  5038. $$("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" }), {
  5039. "id": "AIAgent",
  5040. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5041. "onresize": function () { }
  5042. }, {
  5043. closecallback: function () { }
  5044. }, { "style": { "height": "36px" } }).form; //创建窗体
  5045. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5046. break;
  5047. case "dataBoard": //数据看板
  5048. _formdiv = new U.UF.UI.form(
  5049. "数据看板",
  5050. $$("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 }), {
  5051. "id": "dataBoard",
  5052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5053. "onresize": function () { }
  5054. }, {
  5055. closecallback: function () { }
  5056. }, { "style": { "height": "36px" } }).form; //创建窗体
  5057. _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); } }
  5058. break;
  5059. case "dataBoardSies": //数据融合
  5060. _formdiv = new U.UF.UI.form(
  5061. "数据融合",
  5062. $$("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 }), {
  5063. "id": "dataBoardSies",
  5064. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5065. "onresize": function () { }
  5066. }, {
  5067. closecallback: function () { }
  5068. }, { "style": { "height": "36px" } }).form; //创建窗体
  5069. _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); } }
  5070. break;
  5071. case "dataBoardNew": //数据看板
  5072. _formdiv = new U.UF.UI.form(
  5073. "综合看板",
  5074. $$("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 }), {
  5075. "id": "dataBoardNew",
  5076. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5077. "onresize": function () { }
  5078. }, {
  5079. closecallback: function () { }
  5080. }, { "style": { "height": "36px" } }).form; //创建窗体
  5081. _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); } }
  5082. break;
  5083. case "dataBoardTest": //数据看板
  5084. _formdiv = new U.UF.UI.form(
  5085. "评测看板",
  5086. $$("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 }), {
  5087. "id": "dataBoardTest",
  5088. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5089. "onresize": function () { }
  5090. }, {
  5091. closecallback: function () { }
  5092. }, { "style": { "height": "36px" } }).form; //创建窗体
  5093. _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); } }
  5094. break;
  5095. case "AIAnalyse": //AI共创
  5096. _formdiv = new U.UF.UI.form(
  5097. "AI分析",
  5098. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5099. "id": "AIAnalyse",
  5100. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5101. "onresize": function () { }
  5102. }, {
  5103. closecallback: function () { }
  5104. }, { "style": { "height": "36px" } }).form; //创建窗体
  5105. _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); } }
  5106. break;
  5107. case "studioCourse": //AI共创
  5108. _formdiv = new U.UF.UI.form(
  5109. "工作管理",
  5110. $$("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 }), {
  5111. "id": "studioCourse",
  5112. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5113. "onresize": function () { }
  5114. }, {
  5115. closecallback: function () { }
  5116. }, { "style": { "height": "36px" } }).form; //创建窗体
  5117. _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); } }
  5118. break;
  5119. case "studioIndex": //AI共创
  5120. _formdiv = new U.UF.UI.form(
  5121. "工作中心",
  5122. $$("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 }), {
  5123. "id": "studioIndex",
  5124. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5125. "onresize": function () { }
  5126. }, {
  5127. closecallback: function () { }
  5128. }, { "style": { "height": "36px" } }).form; //创建窗体
  5129. _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); } }
  5130. break;
  5131. case "source":
  5132. _formdiv = new U.UF.UI.form(
  5133. "教学资源",
  5134. $$("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 }), {
  5135. "id": "source",
  5136. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5137. "onresize": function () { }
  5138. }, {
  5139. closecallback: function () { }
  5140. }, { "style": { "height": "36px" } }).form; //创建窗体
  5141. _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); } }
  5142. break;
  5143. case "testTeacher":
  5144. _formdiv = new U.UF.UI.form(
  5145. "教师管理",
  5146. $$("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 }), {
  5147. "id": "testTeacher",
  5148. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5149. "onresize": function () { }
  5150. }, {
  5151. closecallback: function () { }
  5152. }, { "style": { "height": "36px" } }).form; //创建窗体
  5153. _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); } }
  5154. break;
  5155. case "testStudent":
  5156. _formdiv = new U.UF.UI.form(
  5157. "教师中心",
  5158. $$("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 }), {
  5159. "id": "testStudent",
  5160. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5161. "onresize": function () { }
  5162. }, {
  5163. closecallback: function () { }
  5164. }, { "style": { "height": "36px" } }).form; //创建窗体
  5165. _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); } }
  5166. break;
  5167. case "testTeacherSies":
  5168. _formdiv = new U.UF.UI.form(
  5169. "教师管理",
  5170. $$("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 }), {
  5171. "id": "testTeacherSies",
  5172. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5173. "onresize": function () { }
  5174. }, {
  5175. closecallback: function () { }
  5176. }, { "style": { "height": "36px" } }).form; //创建窗体
  5177. _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); } }
  5178. break;
  5179. case "testStudentSies":
  5180. _formdiv = new U.UF.UI.form(
  5181. "教师中心",
  5182. $$("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 }), {
  5183. "id": "testStudentSies",
  5184. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5185. "onresize": function () { }
  5186. }, {
  5187. closecallback: function () { }
  5188. }, { "style": { "height": "36px" } }).form; //创建窗体
  5189. _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); } }
  5190. break;
  5191. case "ytpbl": //消息通知
  5192. _formdiv = new U.UF.UI.form(
  5193. "案例征集",
  5194. $$("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 }), {
  5195. "id": "ytpbl",
  5196. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5197. "onresize": function () { }
  5198. }, {
  5199. closecallback: function () { }
  5200. }, { "style": { "height": "36px" } }).form; //创建窗体
  5201. _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); } }
  5202. // 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");
  5203. break;
  5204. case "aiCourseResource": //人工智能窗体
  5205. _formdiv = new U.UF.UI.form(
  5206. false,
  5207. $$("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 }), {
  5208. "id": "aiCourseResource",
  5209. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5210. "onresize": function () { },
  5211. "isdrag": false,
  5212. }, {
  5213. closecallback: function () { }
  5214. }, { "style": { "height": "36px" } }).form; //创建窗体
  5215. _taskbar = ''
  5216. break;
  5217. case "szdjgCocooroboX": //图形化编程
  5218. _formdiv = new U.UF.UI.form(
  5219. "图形化编程",
  5220. $$("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" }), {
  5221. "id": "szdjgCocooroboX",
  5222. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5223. "onresize": function () { }
  5224. }, {
  5225. closecallback: function () { }
  5226. }, { "style": { "height": "36px" } }).form; //创建窗体
  5227. _taskbar = ''
  5228. break;
  5229. case "szdjgPython": //python编程
  5230. _formdiv = new U.UF.UI.form(
  5231. "Python编程",
  5232. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  5233. "id": "szdjgPython",
  5234. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5235. "onresize": function () { }
  5236. }, {
  5237. closecallback: function () { }
  5238. }, { "style": { "height": "36px" } }).form; //创建窗体
  5239. _taskbar = ''
  5240. break;
  5241. case "Record":
  5242. _formdiv = new U.UF.UI.form(
  5243. "观察记录",
  5244. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5245. "id": "Record",
  5246. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5247. "onresize": function () { }
  5248. }, {
  5249. closecallback: function () { }
  5250. }, { "style": { "height": "36px" } }).form; //创建窗体
  5251. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5252. break;
  5253. case "aigptCourse":
  5254. _formdiv = new U.UF.UI.form(
  5255. "AI智能体",
  5256. $$("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' }), {
  5257. "id": "aigptCourse",
  5258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5259. "onresize": function () { }
  5260. }, {
  5261. closecallback: function () { }
  5262. }, { "style": { "height": "36px" } }).form; //创建窗体
  5263. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5264. break;
  5265. case "classroomObservation":
  5266. _formdiv = new U.UF.UI.form(
  5267. "课堂观察",
  5268. $$("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 }), {
  5269. "id": "classroomObservation",
  5270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5271. "onresize": function () { }
  5272. }, {
  5273. closecallback: function () { }
  5274. }, { "style": { "height": "36px" } }).form; //创建窗体
  5275. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5276. break;
  5277. case "pblCourse":
  5278. _formdiv = new U.UF.UI.form(
  5279. "学生pbl",
  5280. $$("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 }), {
  5281. "id": "pblCourse",
  5282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5283. "onresize": function () { }
  5284. }, {
  5285. closecallback: function () { }
  5286. }, { "style": { "height": "36px" } }).form; //创建窗体
  5287. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5288. break;
  5289. }
  5290. //U.MD.D.I.openClick(str);
  5291. //如果有任务栏信息
  5292. if (_taskbar) {
  5293. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5294. }
  5295. }
  5296. // U.MD.D.I.openClick = function(str){
  5297. // var click = '';
  5298. // switch(str){
  5299. // case 'friend':
  5300. // click = '我的好友';
  5301. // break;
  5302. // case 'domain':
  5303. // click = '域名管理';
  5304. // break;
  5305. // case 'disk':
  5306. // click = '我的云盘';
  5307. // break;
  5308. // case 'word':
  5309. // click = 'Word';
  5310. // break;
  5311. // case 'excel':
  5312. // click = 'Execl';
  5313. // break;
  5314. // case 'txt':
  5315. // click = '文本文件';
  5316. // break;
  5317. // case 'lookupFriend':
  5318. // click = '查找好友';
  5319. // break;
  5320. // case 'ftp':
  5321. // click = 'FTP';
  5322. // break;
  5323. // case 'group':
  5324. // click = '群组';
  5325. // break;
  5326. // case 'set':
  5327. // click = '我的设置';
  5328. // break;
  5329. // case 'systemSet':
  5330. // click = '系统设置';
  5331. // break;
  5332. // case 'boomYun':
  5333. // click = '互联办公';
  5334. // break;
  5335. // case 'xz':
  5336. // click = '云端下载';
  5337. // break;
  5338. // case 'client':
  5339. // click = '有思浏览器';
  5340. // break;
  5341. // case 'backEndProgramming':
  5342. // click = '在线后台编程';
  5343. // break;
  5344. // case 'frontEndProgramming':
  5345. // click = '在线前端编程';
  5346. // break;
  5347. // default: break;
  5348. // }
  5349. // if(U.MD.D.I.Ip && click){
  5350. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5351. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5352. // })
  5353. // }
  5354. // }
  5355. /**
  5356. *函数作用:ajax简易函数,使用post格式
  5357. *@param url {data} 后台地址
  5358. *@param data {data} 参数json
  5359. *@param fn {data} 回调函数
  5360. *
  5361. */
  5362. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5363. // var xhr = new XMLHttpRequest();
  5364. // xhr.open("GET",url,true);
  5365. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5366. // xhr.onreadystatechange = function(){
  5367. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5368. // fn.call(this,xhr.responseText);
  5369. // }
  5370. // };
  5371. // xhr.send();
  5372. // }
  5373. /*判断是否是内网IP*/
  5374. // U.MD.D.I.isInnerIPFn = function(str){
  5375. // var curPageUrl = str;
  5376. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5377. // curPageUrl =curPageUrl.replace(reg1,'');
  5378. // // console.log('curPageUrl-1 '+curPageUrl);
  5379. // var reg2 = /\:+/g;//替换冒号为一点
  5380. // curPageUrl =curPageUrl.replace(reg2,'.');
  5381. // // console.log('curPageUrl-2 '+curPageUrl);
  5382. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5383. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5384. // if(curPageUrl[2] != '16'){
  5385. // return ipAddress;
  5386. // }else{
  5387. // return false;
  5388. // }
  5389. // }
  5390. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5391. // //compatibility for firefox and chrome
  5392. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5393. // var pc = new myPeerConnection({
  5394. // iceServers: []
  5395. // }),
  5396. // noop = function() {},
  5397. // localIPs = {},
  5398. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5399. // key;
  5400. // function iterateIP(ip) {
  5401. // if (!localIPs[ip]) onNewIP(ip);
  5402. // localIPs[ip] = true;
  5403. // }
  5404. // //create a bogus data channel
  5405. // pc.createDataChannel("");
  5406. // // create offer and set local description
  5407. // pc.createOffer().then(function(sdp) {
  5408. // sdp.sdp.split('\n').forEach(function(line) {
  5409. // if (line.indexOf('candidate') < 0) return;
  5410. // line.match(ipRegex).forEach(iterateIP);
  5411. // });
  5412. // pc.setLocalDescription(sdp, noop, noop);
  5413. // }).catch(function(reason) {
  5414. // // An error occurred, so handle the failure to connect
  5415. // });
  5416. // //sten for candidate events
  5417. // pc.onicecandidate = function(ice) {
  5418. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5419. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5420. // };
  5421. // }
  5422. // U.MD.D.I.getUserIpBool = function(callback){
  5423. // U.MD.D.I.getUserIP(function(ip){
  5424. // alert("Got IP! :" + ip);
  5425. // });
  5426. //}
  5427. //#endregion
  5428. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5429. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5430. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5431. _userinfo = US.userInfo, //登录用户信息
  5432. _userid = US.userInfo.userid //登录用户id
  5433. let _iframe;
  5434. let _cid = cid,
  5435. _stage = stage,
  5436. _task = task,
  5437. _tool = tool;
  5438. var _jie = $$("div", {
  5439. "style": {
  5440. "position": "absolute",
  5441. "bottom": "50px",
  5442. "right": "50px",
  5443. "zIndex": "9999",
  5444. "backgroundColor": "#2268bc",
  5445. "color": "#fff",
  5446. "padding": "12px 20px",
  5447. "cursor": "pointer",
  5448. "borderRadius": "4px",
  5449. },
  5450. "innerHTML": "提交作业"
  5451. })
  5452. let aTool = ''
  5453. let _loading = document.createElement('div')
  5454. _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;"
  5455. // _loading.id = "";
  5456. let _lchild = document.createElement('div')
  5457. let _limg = document.createElement('img')
  5458. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5459. _limg.style = "width: 26px;margin-right: 10px;"
  5460. _lchild.appendChild(_limg)
  5461. let _lspan = document.createElement('span')
  5462. _lspan.innerHTML = "上传中..."
  5463. _lchild.appendChild(_lspan)
  5464. _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%);"
  5465. _loading.appendChild(_lchild)
  5466. var _box = $$('div', {
  5467. "style": {
  5468. "position": "relative",
  5469. "width": "100%",
  5470. "height": "100%",
  5471. },
  5472. })
  5473. _box.appendChild(_loading)
  5474. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5475. switch (str) {
  5476. case "whiteboard":
  5477. aTool = 1;
  5478. _iframe = $$("iframe", {
  5479. "frameborder": "no",
  5480. "border": "0",
  5481. "scrolling ": "no",
  5482. "style": {
  5483. "cssText": "border:0;width:100%;height:100%"
  5484. },
  5485. "src": "https://beta.iwb.cocorobo.cn/"
  5486. })
  5487. _box.appendChild(_iframe);
  5488. _box.appendChild(_jie);
  5489. _formdiv = new U.UF.UI.form(
  5490. "电子白板",
  5491. _box, {
  5492. "id": "whiteboard" + cid + stage + task + tool,
  5493. "style": {
  5494. "width": "90%",
  5495. "height": "90%",
  5496. "overflow": 'hidden'
  5497. },
  5498. "onresize": function () { }
  5499. }, {
  5500. closecallback: function () { }
  5501. }, {
  5502. "style": {
  5503. "height": "36px"
  5504. }
  5505. }).form; //创建窗体
  5506. _taskbar = {
  5507. "id": str + _formdiv.id,
  5508. "style": {
  5509. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5510. },
  5511. "name": "电子白板",
  5512. "forms": _formdiv,
  5513. "click": function () {
  5514. U.MD.D.I.openApplication(str, obj, info);
  5515. }
  5516. }
  5517. break;
  5518. case "mind":
  5519. aTool = 3;
  5520. _iframe = $$("iframe", {
  5521. "frameborder": "no",
  5522. "border": "0",
  5523. "scrolling ": "no",
  5524. "style": {
  5525. "cssText": "border:0;width:100%;height:100%"
  5526. },
  5527. "src": "/kityminder-editor/dist/index.html"
  5528. })
  5529. _box.appendChild(_iframe);
  5530. _box.appendChild(_jie);
  5531. _formdiv = new U.UF.UI.form(
  5532. "思维导图",
  5533. _box, { //"/jsmind/example/demo.html"
  5534. "id": "mind" + cid + stage + task + tool,
  5535. "style": {
  5536. "width": "90%",
  5537. "height": "90%",
  5538. "overflow": 'hidden'
  5539. },
  5540. "onresize": function () { }
  5541. }, {
  5542. closecallback: function () { }
  5543. }, {
  5544. "style": {
  5545. "height": "36px"
  5546. }
  5547. }).form; //创建窗体
  5548. _taskbar = {
  5549. "id": str + _formdiv.id,
  5550. "style": {
  5551. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5552. },
  5553. "name": "思维导图",
  5554. "forms": _formdiv,
  5555. "click": function () {
  5556. U.MD.D.I.openApplication(str, obj, info);
  5557. }
  5558. }
  5559. break;
  5560. case "MindMap":
  5561. aTool = 3;
  5562. _iframe = $$("iframe", {
  5563. "frameborder": "no",
  5564. "border": "0",
  5565. "scrolling ": "no",
  5566. "style": {
  5567. "cssText": "border:0;width:100%;height:100%"
  5568. },
  5569. "src": "//cloud.cocorobo.cn/mind/"
  5570. })
  5571. _box.appendChild(_iframe);
  5572. _box.appendChild(_jie);
  5573. _formdiv = new U.UF.UI.form(
  5574. "思维导图",
  5575. _box, { //"/jsmind/example/demo.html"
  5576. "id": "mind" + cid + stage + task + tool,
  5577. "style": {
  5578. "width": "90%",
  5579. "height": "90%",
  5580. "overflow": 'hidden'
  5581. },
  5582. "onresize": function () { }
  5583. }, {
  5584. closecallback: function () { }
  5585. }, {
  5586. "style": {
  5587. "height": "36px"
  5588. }
  5589. }).form; //创建窗体
  5590. _taskbar = {
  5591. "id": str + _formdiv.id,
  5592. "style": {
  5593. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5594. },
  5595. "name": "思维导图",
  5596. "forms": _formdiv,
  5597. "click": function () {
  5598. U.MD.D.I.openApplication(str, obj, info);
  5599. }
  5600. }
  5601. break;
  5602. case "doc":
  5603. aTool = 6;
  5604. _iframe = $$("iframe", {
  5605. "frameborder": "no",
  5606. "border": "0",
  5607. "scrolling ": "no",
  5608. "style": {
  5609. "cssText": "border:0;width:100%;height:100%"
  5610. },
  5611. "src": "/Office/Word/WordEditArea.htm"
  5612. })
  5613. _box.appendChild(_iframe);
  5614. _box.appendChild(_jie);
  5615. _formdiv = new U.UF.UI.form(
  5616. "协同文档",
  5617. _box, {
  5618. "id": "doc" + cid + stage + task + tool,
  5619. "style": {
  5620. "width": "90%",
  5621. "height": "90%",
  5622. "overflow": 'hidden'
  5623. },
  5624. "onresize": function () { }
  5625. }, {
  5626. closecallback: function () { }
  5627. }, {
  5628. "style": {
  5629. "height": "36px"
  5630. }
  5631. }).form; //创建窗体
  5632. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5633. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5634. })
  5635. _taskbar = {
  5636. "id": str + _formdiv.id,
  5637. "style": {
  5638. "backgroundImage": "url(/img/icon/doc.png)"
  5639. },
  5640. "name": "协同文档",
  5641. "forms": _formdiv,
  5642. "click": function () {
  5643. U.MD.D.I.openApplication(str, obj, info);
  5644. }
  5645. }
  5646. break;
  5647. case "mindNetwork": //好友打开
  5648. aTool = 7;
  5649. _iframe = $$("iframe", {
  5650. "webkitallowfullscreen": "",
  5651. "mozallowfullscreen": "",
  5652. "allowfullscreen": "",
  5653. "frameborder": "no",
  5654. "border": "0",
  5655. "scrolling ": "no",
  5656. "style": {
  5657. "cssText": "border:0; width:100%; height:100%;"
  5658. },
  5659. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5660. })
  5661. _box.appendChild(_iframe);
  5662. _box.appendChild(_jie);
  5663. _formdiv = new U.UF.UI.form(
  5664. "思维网格",
  5665. _box, {
  5666. "id": "mindNetwork" + cid + stage + task + tool,
  5667. "style": {
  5668. "width": "90%",
  5669. "height": "90%",
  5670. "overflow": 'hidden'
  5671. },
  5672. "onresize": function () { }
  5673. }, {
  5674. closecallback: function () { }
  5675. }, {
  5676. "style": {
  5677. "height": "36px"
  5678. }
  5679. }).form; //创建窗体
  5680. _taskbar = {
  5681. "id": str + _formdiv.id,
  5682. "style": {
  5683. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5684. },
  5685. "name": "思维网格",
  5686. "forms": _formdiv,
  5687. "click": function () {
  5688. U.MD.D.I.openApplication(str, obj, info);
  5689. }
  5690. }
  5691. break;
  5692. case "courseDesign":
  5693. _iframe = $$("iframe", {
  5694. "webkitallowfullscreen": "",
  5695. "mozallowfullscreen": "",
  5696. "allowfullscreen": "",
  5697. "frameborder": "no",
  5698. "border": "0",
  5699. "scrolling ": "no",
  5700. "style": {
  5701. "cssText": "border:0; width:100%; height:100%;"
  5702. },
  5703. "src": "/course-design-vue"
  5704. })
  5705. _box.appendChild(_iframe);
  5706. _box.appendChild(_jie);
  5707. _formdiv = new U.UF.UI.form(
  5708. "项目设计",
  5709. _box, {
  5710. "id": "courseDesign" + cid + stage + task + tool,
  5711. "style": {
  5712. "width": "90%",
  5713. "height": "90%",
  5714. "overflow": 'hidden'
  5715. },
  5716. "onresize": function () { }
  5717. }, {
  5718. closecallback: function () { }
  5719. }, {
  5720. "style": {
  5721. "height": "36px"
  5722. }
  5723. }).form; //创建窗体
  5724. _taskbar = {
  5725. "id": str + _formdiv.id,
  5726. "style": {
  5727. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5728. },
  5729. "name": "项目设计",
  5730. "forms": _formdiv,
  5731. "click": function () {
  5732. U.MD.D.I.openApplication(str, obj, info);
  5733. }
  5734. }
  5735. break;
  5736. }
  5737. const script1 = document.createElement("script");
  5738. script1.type = "text/javascript";
  5739. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5740. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5741. const script2 = document.createElement("script");
  5742. script2.type = "text/javascript";
  5743. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5744. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5745. const script3 = document.createElement("script");
  5746. script3.type = "text/javascript";
  5747. script3.charset = "UTF-8";
  5748. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5749. const script4 = document.createElement("script");
  5750. script4.type = "text/javascript";
  5751. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5752. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5753. if (_iframe) {
  5754. if (str == 'doc') {
  5755. _iframe = _formdiv.querySelector('iframe')
  5756. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5757. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5758. _iframe.contentWindow.document.body.appendChild(script1);
  5759. _iframe.contentWindow.document.body.appendChild(script2);
  5760. // _iframe.contentWindow.document.body.appendChild(script3);
  5761. _iframe.contentWindow.document.body.appendChild(script4);
  5762. })
  5763. if (onloadListener) {
  5764. _iframe.contentDocument.location.reload()
  5765. } else {
  5766. _iframe.contentDocument.location.reload()
  5767. }
  5768. } else if (str == 'courseDesign') {
  5769. U.UF.DL.iframeLoad(_iframe, function () {
  5770. // _iframe.contentWindow.U.MD.O.W.load();
  5771. // _iframe.contentWindow.document.body.appendChild(script1);
  5772. _iframe.contentWindow.document.body.appendChild(script2);
  5773. _iframe.contentWindow.document.body.appendChild(script4);
  5774. })
  5775. } else if (str == 'mind') {
  5776. _iframe = _formdiv.querySelector('iframe')
  5777. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5778. //
  5779. _iframe.contentWindow.document.body.appendChild(script1);
  5780. _iframe.contentWindow.document.body.appendChild(script2);
  5781. _iframe.contentWindow.document.body.appendChild(script4);
  5782. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5783. })
  5784. if (onloadListener) {
  5785. _iframe.contentDocument.location.reload()
  5786. } else {
  5787. _iframe.contentDocument.location.reload()
  5788. }
  5789. } else if (str == 'whiteboard') {
  5790. _iframe = _formdiv.querySelector('iframe')
  5791. let onloadListener = _iframe.onload = () => {
  5792. _iframe.contentWindow.document.body.appendChild(script1);
  5793. _iframe.contentWindow.document.body.appendChild(script2);
  5794. _iframe.contentWindow.document.body.appendChild(script4);
  5795. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5796. };
  5797. if (onloadListener) {
  5798. _iframe.contentDocument.location.reload()
  5799. } else {
  5800. _iframe.contentDocument.location.reload()
  5801. }
  5802. } else {
  5803. _iframe.onload = () => {
  5804. _iframe.contentWindow.document.body.appendChild(script1);
  5805. _iframe.contentWindow.document.body.appendChild(script2);
  5806. // _iframe.contentWindow.document.body.appendChild(script3);
  5807. _iframe.contentWindow.document.body.appendChild(script4);
  5808. };
  5809. }
  5810. _jie.onclick = async () => {
  5811. let text = ''
  5812. if (aTool == 1) {
  5813. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5814. } else if (aTool == 6) {
  5815. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5816. } else if (aTool == 3) {
  5817. text = await U.MD.D.I.getEditorContent(_iframe);
  5818. }
  5819. _loading.style.display = 'flex'
  5820. console.log(_loading);
  5821. var _ajs = _iframe.contentWindow.document.createElement("script");
  5822. _ajs.type = "text/javascript";
  5823. _ajs.innerHTML =
  5824. // 'console.log(' + _loading + ');\n' +
  5825. 'var _js = document.createElement("script");\n' +
  5826. '_js.type="text/javascript";\n' +
  5827. '_js.charset="UTF-8";\n' +
  5828. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5829. "_js.onload = function(){\n" +
  5830. ' var a = document.getElementsByTagName("img")\n' +
  5831. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5832. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5833. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5834. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5835. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5836. "beforeUpload_shishi(file," +
  5837. "'" +
  5838. _userid +
  5839. "'" +
  5840. ", " +
  5841. "'" +
  5842. _cid +
  5843. "'" +
  5844. ", " +
  5845. "'" +
  5846. _stage +
  5847. "'" +
  5848. ", " +
  5849. "'" +
  5850. _task +
  5851. "'" +
  5852. ", " +
  5853. "'" +
  5854. _tool +
  5855. "'" +
  5856. ", " +
  5857. "'" +
  5858. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  5859. "'" +
  5860. ", " +
  5861. "'" +
  5862. aTool +
  5863. "'" +
  5864. ", " +
  5865. "`" +
  5866. text +
  5867. "`" +
  5868. ")\n" +
  5869. " });\n" +
  5870. "}\n" +
  5871. "document.head.appendChild(_js);\n";
  5872. _iframe.contentWindow.document.head.appendChild(_ajs);
  5873. }
  5874. }
  5875. //U.MD.D.I.openClick(str);
  5876. //如果有任务栏信息
  5877. // if (_taskbar) {
  5878. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5879. // }
  5880. }
  5881. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  5882. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5883. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5884. _userinfo = US.userInfo, //登录用户信息
  5885. _userid = US.userInfo.userid //登录用户id
  5886. let _iframe;
  5887. let _cid = cid,
  5888. _stage = stage,
  5889. _task = task,
  5890. _tool = tool;
  5891. var _jie = $$("div", {
  5892. "style": {
  5893. "position": "absolute",
  5894. "bottom": "50px",
  5895. "right": "50px",
  5896. "zIndex": "9999",
  5897. "backgroundColor": "#2268bc",
  5898. "color": "#fff",
  5899. "padding": "12px 20px",
  5900. "cursor": "pointer",
  5901. "borderRadius": "4px",
  5902. },
  5903. "innerHTML": "提交作业"
  5904. })
  5905. let aTool = ''
  5906. let _loading = document.createElement('div')
  5907. _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;"
  5908. // _loading.id = "";
  5909. let _lchild = document.createElement('div')
  5910. let _limg = document.createElement('img')
  5911. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5912. _limg.style = "width: 26px;margin-right: 10px;"
  5913. _lchild.appendChild(_limg)
  5914. let _lspan = document.createElement('span')
  5915. _lspan.innerHTML = "上传中..."
  5916. _lchild.appendChild(_lspan)
  5917. _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%);"
  5918. _loading.appendChild(_lchild)
  5919. var _box = $$('div', {
  5920. "style": {
  5921. "position": "relative",
  5922. "width": "100%",
  5923. "height": "100%",
  5924. },
  5925. })
  5926. _box.appendChild(_loading)
  5927. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  5928. switch (str) {
  5929. case "whiteboard":
  5930. aTool = 1;
  5931. _iframe = $$("iframe", {
  5932. "frameborder": "no",
  5933. "border": "0",
  5934. "scrolling ": "no",
  5935. "style": {
  5936. "cssText": "border:0;width:100%;height:100%"
  5937. },
  5938. "src": "https://beta.iwb.cocorobo.cn/"
  5939. })
  5940. _box.appendChild(_iframe);
  5941. _box.appendChild(_jie);
  5942. _formdiv = new U.UF.UI.form(
  5943. "电子白板",
  5944. _box, {
  5945. "id": "whiteboard" + cid + stage + task + tool,
  5946. "style": {
  5947. "width": "90%",
  5948. "height": "90%",
  5949. "overflow": 'hidden'
  5950. },
  5951. "onresize": function () { }
  5952. }, {
  5953. closecallback: function () { }
  5954. }, {
  5955. "style": {
  5956. "height": "36px"
  5957. }
  5958. }).form; //创建窗体
  5959. _taskbar = {
  5960. "id": str + _formdiv.id,
  5961. "style": {
  5962. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5963. },
  5964. "name": "电子白板",
  5965. "forms": _formdiv,
  5966. "click": function () {
  5967. U.MD.D.I.openApplication(str, obj, info);
  5968. }
  5969. }
  5970. break;
  5971. case "mind":
  5972. aTool = 3;
  5973. _iframe = $$("iframe", {
  5974. "frameborder": "no",
  5975. "border": "0",
  5976. "scrolling ": "no",
  5977. "style": {
  5978. "cssText": "border:0;width:100%;height:100%"
  5979. },
  5980. "src": "/kityminder-editor/dist/index.html"
  5981. })
  5982. _box.appendChild(_iframe);
  5983. _box.appendChild(_jie);
  5984. _formdiv = new U.UF.UI.form(
  5985. "思维导图",
  5986. _box, { //"/jsmind/example/demo.html"
  5987. "id": "mind" + cid + stage + task + tool,
  5988. "style": {
  5989. "width": "90%",
  5990. "height": "90%",
  5991. "overflow": 'hidden'
  5992. },
  5993. "onresize": function () { }
  5994. }, {
  5995. closecallback: function () { }
  5996. }, {
  5997. "style": {
  5998. "height": "36px"
  5999. }
  6000. }).form; //创建窗体
  6001. _taskbar = {
  6002. "id": str + _formdiv.id,
  6003. "style": {
  6004. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6005. },
  6006. "name": "思维导图",
  6007. "forms": _formdiv,
  6008. "click": function () {
  6009. U.MD.D.I.openApplication(str, obj, info);
  6010. }
  6011. }
  6012. break;
  6013. case "MindMap":
  6014. aTool = 3;
  6015. _iframe = $$("iframe", {
  6016. "frameborder": "no",
  6017. "border": "0",
  6018. "scrolling ": "no",
  6019. "style": {
  6020. "cssText": "border:0;width:100%;height:100%"
  6021. },
  6022. "src": "//cloud.cocorobo.cn/mind/"
  6023. })
  6024. _box.appendChild(_iframe);
  6025. _box.appendChild(_jie);
  6026. _formdiv = new U.UF.UI.form(
  6027. "思维导图",
  6028. _box, { //"/jsmind/example/demo.html"
  6029. "id": "mind" + cid + stage + task + tool,
  6030. "style": {
  6031. "width": "90%",
  6032. "height": "90%",
  6033. "overflow": 'hidden'
  6034. },
  6035. "onresize": function () { }
  6036. }, {
  6037. closecallback: function () { }
  6038. }, {
  6039. "style": {
  6040. "height": "36px"
  6041. }
  6042. }).form; //创建窗体
  6043. _taskbar = {
  6044. "id": str + _formdiv.id,
  6045. "style": {
  6046. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6047. },
  6048. "name": "思维导图",
  6049. "forms": _formdiv,
  6050. "click": function () {
  6051. U.MD.D.I.openApplication(str, obj, info);
  6052. }
  6053. }
  6054. break;
  6055. case "doc":
  6056. aTool = 6;
  6057. _iframe = $$("iframe", {
  6058. "frameborder": "no",
  6059. "border": "0",
  6060. "scrolling ": "no",
  6061. "style": {
  6062. "cssText": "border:0;width:100%;height:100%"
  6063. },
  6064. "src": "/Office/Word/WordEditArea.htm"
  6065. })
  6066. _box.appendChild(_iframe);
  6067. _box.appendChild(_jie);
  6068. _formdiv = new U.UF.UI.form(
  6069. "协同文档",
  6070. _box, {
  6071. "id": "doc" + cid + stage + task + tool,
  6072. "style": {
  6073. "width": "90%",
  6074. "height": "90%",
  6075. "overflow": 'hidden'
  6076. },
  6077. "onresize": function () { }
  6078. }, {
  6079. closecallback: function () { }
  6080. }, {
  6081. "style": {
  6082. "height": "36px"
  6083. }
  6084. }).form; //创建窗体
  6085. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6086. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6087. })
  6088. _taskbar = {
  6089. "id": str + _formdiv.id,
  6090. "style": {
  6091. "backgroundImage": "url(/img/icon/doc.png)"
  6092. },
  6093. "name": "协同文档",
  6094. "forms": _formdiv,
  6095. "click": function () {
  6096. U.MD.D.I.openApplication(str, obj, info);
  6097. }
  6098. }
  6099. break;
  6100. case "mindNetwork": //好友打开
  6101. aTool = 7;
  6102. _iframe = $$("iframe", {
  6103. "webkitallowfullscreen": "",
  6104. "mozallowfullscreen": "",
  6105. "allowfullscreen": "",
  6106. "frameborder": "no",
  6107. "border": "0",
  6108. "scrolling ": "no",
  6109. "style": {
  6110. "cssText": "border:0; width:100%; height:100%;"
  6111. },
  6112. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6113. })
  6114. _box.appendChild(_iframe);
  6115. _box.appendChild(_jie);
  6116. _formdiv = new U.UF.UI.form(
  6117. "思维网格",
  6118. _box, {
  6119. "id": "mindNetwork" + cid + stage + task + tool,
  6120. "style": {
  6121. "width": "90%",
  6122. "height": "90%",
  6123. "overflow": 'hidden'
  6124. },
  6125. "onresize": function () { }
  6126. }, {
  6127. closecallback: function () { }
  6128. }, {
  6129. "style": {
  6130. "height": "36px"
  6131. }
  6132. }).form; //创建窗体
  6133. _taskbar = {
  6134. "id": str + _formdiv.id,
  6135. "style": {
  6136. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6137. },
  6138. "name": "思维网格",
  6139. "forms": _formdiv,
  6140. "click": function () {
  6141. U.MD.D.I.openApplication(str, obj, info);
  6142. }
  6143. }
  6144. break;
  6145. case "courseDesign":
  6146. _iframe = $$("iframe", {
  6147. "webkitallowfullscreen": "",
  6148. "mozallowfullscreen": "",
  6149. "allowfullscreen": "",
  6150. "frameborder": "no",
  6151. "border": "0",
  6152. "scrolling ": "no",
  6153. "style": {
  6154. "cssText": "border:0; width:100%; height:100%;"
  6155. },
  6156. "src": "/course-design-vue"
  6157. })
  6158. _box.appendChild(_iframe);
  6159. _box.appendChild(_jie);
  6160. _formdiv = new U.UF.UI.form(
  6161. "项目设计",
  6162. _box, {
  6163. "id": "courseDesign" + cid + stage + task + tool,
  6164. "style": {
  6165. "width": "90%",
  6166. "height": "90%",
  6167. "overflow": 'hidden'
  6168. },
  6169. "onresize": function () { }
  6170. }, {
  6171. closecallback: function () { }
  6172. }, {
  6173. "style": {
  6174. "height": "36px"
  6175. }
  6176. }).form; //创建窗体
  6177. _taskbar = {
  6178. "id": str + _formdiv.id,
  6179. "style": {
  6180. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6181. },
  6182. "name": "项目设计",
  6183. "forms": _formdiv,
  6184. "click": function () {
  6185. U.MD.D.I.openApplication(str, obj, info);
  6186. }
  6187. }
  6188. break;
  6189. }
  6190. const script1 = document.createElement("script");
  6191. script1.type = "text/javascript";
  6192. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6193. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6194. const script2 = document.createElement("script");
  6195. script2.type = "text/javascript";
  6196. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6197. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6198. const script3 = document.createElement("script");
  6199. script3.type = "text/javascript";
  6200. script3.charset = "UTF-8";
  6201. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6202. const script4 = document.createElement("script");
  6203. script4.type = "text/javascript";
  6204. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6205. script4.src = window.origin + "/js/Common/jietu2E.js";
  6206. if (_iframe) {
  6207. if (str == 'doc') {
  6208. _iframe = _formdiv.querySelector('iframe')
  6209. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6210. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6211. _iframe.contentWindow.document.body.appendChild(script1);
  6212. _iframe.contentWindow.document.body.appendChild(script2);
  6213. // _iframe.contentWindow.document.body.appendChild(script3);
  6214. _iframe.contentWindow.document.body.appendChild(script4);
  6215. })
  6216. if (onloadListener) {
  6217. _iframe.contentDocument.location.reload()
  6218. } else {
  6219. _iframe.contentDocument.location.reload()
  6220. }
  6221. } else if (str == 'courseDesign') {
  6222. U.UF.DL.iframeLoad(_iframe, function () {
  6223. // _iframe.contentWindow.U.MD.O.W.load();
  6224. // _iframe.contentWindow.document.body.appendChild(script1);
  6225. _iframe.contentWindow.document.body.appendChild(script2);
  6226. _iframe.contentWindow.document.body.appendChild(script4);
  6227. })
  6228. } else if (str == 'mind') {
  6229. _iframe = _formdiv.querySelector('iframe')
  6230. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6231. //
  6232. _iframe.contentWindow.document.body.appendChild(script1);
  6233. _iframe.contentWindow.document.body.appendChild(script2);
  6234. _iframe.contentWindow.document.body.appendChild(script4);
  6235. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6236. })
  6237. if (onloadListener) {
  6238. _iframe.contentDocument.location.reload()
  6239. } else {
  6240. _iframe.contentDocument.location.reload()
  6241. }
  6242. } else if (str == 'whiteboard') {
  6243. _iframe = _formdiv.querySelector('iframe')
  6244. let onloadListener = _iframe.onload = () => {
  6245. _iframe.contentWindow.document.body.appendChild(script1);
  6246. _iframe.contentWindow.document.body.appendChild(script2);
  6247. _iframe.contentWindow.document.body.appendChild(script4);
  6248. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6249. };
  6250. if (onloadListener) {
  6251. _iframe.contentDocument.location.reload()
  6252. } else {
  6253. _iframe.contentDocument.location.reload()
  6254. }
  6255. } else {
  6256. _iframe.onload = () => {
  6257. _iframe.contentWindow.document.body.appendChild(script1);
  6258. _iframe.contentWindow.document.body.appendChild(script2);
  6259. // _iframe.contentWindow.document.body.appendChild(script3);
  6260. _iframe.contentWindow.document.body.appendChild(script4);
  6261. };
  6262. }
  6263. _jie.onclick = async () => {
  6264. let text = ''
  6265. if (aTool == 1) {
  6266. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6267. } else if (aTool == 6) {
  6268. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6269. } else if (aTool == 3) {
  6270. text = await U.MD.D.I.getEditorContent(_iframe);
  6271. }
  6272. _loading.style.display = 'flex'
  6273. console.log(_loading);
  6274. var _ajs = _iframe.contentWindow.document.createElement("script");
  6275. _ajs.type = "text/javascript";
  6276. _ajs.innerHTML =
  6277. // 'console.log(' + _loading + ');\n' +
  6278. 'var _js = document.createElement("script");\n' +
  6279. '_js.type="text/javascript";\n' +
  6280. '_js.charset="UTF-8";\n' +
  6281. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6282. "_js.onload = function(){\n" +
  6283. ' var a = document.getElementsByTagName("img")\n' +
  6284. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6285. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6286. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6287. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6288. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6289. "beforeUpload_shishi(file," +
  6290. "'" +
  6291. _userid +
  6292. "'" +
  6293. ", " +
  6294. "'" +
  6295. _cid +
  6296. "'" +
  6297. ", " +
  6298. "'" +
  6299. _stage +
  6300. "'" +
  6301. ", " +
  6302. "'" +
  6303. _task +
  6304. "'" +
  6305. ", " +
  6306. "'" +
  6307. _tool +
  6308. "'" +
  6309. ", " +
  6310. "'" +
  6311. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6312. "'" +
  6313. ", " +
  6314. "'" +
  6315. aTool +
  6316. "'" +
  6317. ", " +
  6318. "`" +
  6319. text +
  6320. "`" +
  6321. ")\n" +
  6322. " });\n" +
  6323. "}\n" +
  6324. "document.head.appendChild(_js);\n";
  6325. _iframe.contentWindow.document.head.appendChild(_ajs);
  6326. }
  6327. }
  6328. //U.MD.D.I.openClick(str);
  6329. //如果有任务栏信息
  6330. // if (_taskbar) {
  6331. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6332. // }
  6333. }
  6334. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6335. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6336. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6337. _userid = student.userid, //登录用户id
  6338. _username = student.student //用户名字
  6339. let _iframe;
  6340. let _cid = cid,
  6341. _stage = stage,
  6342. _task = task,
  6343. _tool = tool;
  6344. var _jie = $$("div", {
  6345. "style": {
  6346. "position": "absolute",
  6347. "bottom": "50px",
  6348. "right": "50px",
  6349. "zIndex": "9999",
  6350. "backgroundColor": "#2268bc",
  6351. "color": "#fff",
  6352. "padding": "12px 20px",
  6353. "cursor": "pointer",
  6354. "borderRadius": "4px",
  6355. },
  6356. "innerHTML": "提交作业"
  6357. })
  6358. let aTool = ''
  6359. let _loading = document.createElement('div')
  6360. _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;"
  6361. // _loading.id = "";
  6362. let _lchild = document.createElement('div')
  6363. let _limg = document.createElement('img')
  6364. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6365. _limg.style = "width: 26px;margin-right: 10px;"
  6366. _lchild.appendChild(_limg)
  6367. let _lspan = document.createElement('span')
  6368. _lspan.innerHTML = "上传中..."
  6369. _lchild.appendChild(_lspan)
  6370. _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%);"
  6371. _loading.appendChild(_lchild)
  6372. var _box = $$('div', {
  6373. "style": {
  6374. "position": "relative",
  6375. "width": "100%",
  6376. "height": "100%",
  6377. },
  6378. })
  6379. _box.appendChild(_loading)
  6380. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6381. switch (str) {
  6382. case "whiteboard":
  6383. aTool = 1;
  6384. _iframe = $$("iframe", {
  6385. "frameborder": "no",
  6386. "border": "0",
  6387. "scrolling ": "no",
  6388. "style": {
  6389. "cssText": "border:0;width:100%;height:100%"
  6390. },
  6391. "src": "https://beta.iwb.cocorobo.cn/"
  6392. })
  6393. _box.appendChild(_iframe);
  6394. _box.appendChild(_jie);
  6395. _formdiv = new U.UF.UI.form(
  6396. "电子白板-" + _username,
  6397. _box, {
  6398. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6399. "style": {
  6400. "width": "90%",
  6401. "height": "90%",
  6402. "overflow": 'hidden'
  6403. },
  6404. "onresize": function () { }
  6405. }, {
  6406. closecallback: function () { }
  6407. }, {
  6408. "style": {
  6409. "height": "36px"
  6410. }
  6411. }).form; //创建窗体
  6412. _taskbar = {
  6413. "id": str + _formdiv.id,
  6414. "style": {
  6415. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6416. },
  6417. "name": "电子白板",
  6418. "forms": _formdiv,
  6419. "click": function () {
  6420. U.MD.D.I.openApplication(str, obj, info);
  6421. }
  6422. }
  6423. break;
  6424. case "mind":
  6425. aTool = 3;
  6426. _iframe = $$("iframe", {
  6427. "frameborder": "no",
  6428. "border": "0",
  6429. "scrolling ": "no",
  6430. "style": {
  6431. "cssText": "border:0;width:100%;height:100%"
  6432. },
  6433. "src": "/kityminder-editor/dist/index.html"
  6434. })
  6435. _box.appendChild(_iframe);
  6436. _box.appendChild(_jie);
  6437. _formdiv = new U.UF.UI.form(
  6438. "思维导图-" + _username,
  6439. _box, { //"/jsmind/example/demo.html"
  6440. "id": "mind" + cid + stage + task + tool + _userid,
  6441. "style": {
  6442. "width": "90%",
  6443. "height": "90%",
  6444. "overflow": 'hidden'
  6445. },
  6446. "onresize": function () { }
  6447. }, {
  6448. closecallback: function () { }
  6449. }, {
  6450. "style": {
  6451. "height": "36px"
  6452. }
  6453. }).form; //创建窗体
  6454. _taskbar = {
  6455. "id": str + _formdiv.id,
  6456. "style": {
  6457. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6458. },
  6459. "name": "思维导图",
  6460. "forms": _formdiv,
  6461. "click": function () {
  6462. U.MD.D.I.openApplication(str, obj, info);
  6463. }
  6464. }
  6465. break;
  6466. case "MindMap":
  6467. aTool = 3;
  6468. _iframe = $$("iframe", {
  6469. "frameborder": "no",
  6470. "border": "0",
  6471. "scrolling ": "no",
  6472. "style": {
  6473. "cssText": "border:0;width:100%;height:100%"
  6474. },
  6475. "src": "//cloud.cocorobo.cn/mind/"
  6476. })
  6477. _box.appendChild(_iframe);
  6478. _box.appendChild(_jie);
  6479. _formdiv = new U.UF.UI.form(
  6480. "思维导图-" + _username,
  6481. _box, { //"/jsmind/example/demo.html"
  6482. "id": "mind" + cid + stage + task + tool + _userid,
  6483. "style": {
  6484. "width": "90%",
  6485. "height": "90%",
  6486. "overflow": 'hidden'
  6487. },
  6488. "onresize": function () { }
  6489. }, {
  6490. closecallback: function () { }
  6491. }, {
  6492. "style": {
  6493. "height": "36px"
  6494. }
  6495. }).form; //创建窗体
  6496. _taskbar = {
  6497. "id": str + _formdiv.id,
  6498. "style": {
  6499. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6500. },
  6501. "name": "思维导图",
  6502. "forms": _formdiv,
  6503. "click": function () {
  6504. U.MD.D.I.openApplication(str, obj, info);
  6505. }
  6506. }
  6507. break;
  6508. case "doc":
  6509. aTool = 6;
  6510. _iframe = $$("iframe", {
  6511. "frameborder": "no",
  6512. "border": "0",
  6513. "scrolling ": "no",
  6514. "style": {
  6515. "cssText": "border:0;width:100%;height:100%"
  6516. },
  6517. "src": "/Office/Word/WordEditArea.htm"
  6518. })
  6519. _box.appendChild(_iframe);
  6520. _box.appendChild(_jie);
  6521. _formdiv = new U.UF.UI.form(
  6522. "协同文档-" + _username,
  6523. _box, {
  6524. "id": "doc" + cid + stage + task + tool + _userid,
  6525. "style": {
  6526. "width": "90%",
  6527. "height": "90%",
  6528. "overflow": 'hidden'
  6529. },
  6530. "onresize": function () { }
  6531. }, {
  6532. closecallback: function () { }
  6533. }, {
  6534. "style": {
  6535. "height": "36px"
  6536. }
  6537. }).form; //创建窗体
  6538. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6539. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6540. })
  6541. _taskbar = {
  6542. "id": str + _formdiv.id,
  6543. "style": {
  6544. "backgroundImage": "url(/img/icon/doc.png)"
  6545. },
  6546. "name": "协同文档",
  6547. "forms": _formdiv,
  6548. "click": function () {
  6549. U.MD.D.I.openApplication(str, obj, info);
  6550. }
  6551. }
  6552. break;
  6553. case "mindNetwork": //好友打开
  6554. aTool = 7;
  6555. _iframe = $$("iframe", {
  6556. "webkitallowfullscreen": "",
  6557. "mozallowfullscreen": "",
  6558. "allowfullscreen": "",
  6559. "frameborder": "no",
  6560. "border": "0",
  6561. "scrolling ": "no",
  6562. "style": {
  6563. "cssText": "border:0; width:100%; height:100%;"
  6564. },
  6565. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6566. })
  6567. _box.appendChild(_iframe);
  6568. _box.appendChild(_jie);
  6569. _formdiv = new U.UF.UI.form(
  6570. "思维网格-" + _username,
  6571. _box, {
  6572. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6573. "style": {
  6574. "width": "90%",
  6575. "height": "90%",
  6576. "overflow": 'hidden'
  6577. },
  6578. "onresize": function () { }
  6579. }, {
  6580. closecallback: function () { }
  6581. }, {
  6582. "style": {
  6583. "height": "36px"
  6584. }
  6585. }).form; //创建窗体
  6586. _taskbar = {
  6587. "id": str + _formdiv.id,
  6588. "style": {
  6589. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6590. },
  6591. "name": "思维网格",
  6592. "forms": _formdiv,
  6593. "click": function () {
  6594. U.MD.D.I.openApplication(str, obj, info);
  6595. }
  6596. }
  6597. break;
  6598. case "courseDesign":
  6599. _iframe = $$("iframe", {
  6600. "webkitallowfullscreen": "",
  6601. "mozallowfullscreen": "",
  6602. "allowfullscreen": "",
  6603. "frameborder": "no",
  6604. "border": "0",
  6605. "scrolling ": "no",
  6606. "style": {
  6607. "cssText": "border:0; width:100%; height:100%;"
  6608. },
  6609. "src": "/course-design-vue"
  6610. })
  6611. _box.appendChild(_iframe);
  6612. _box.appendChild(_jie);
  6613. _formdiv = new U.UF.UI.form(
  6614. "项目设计-" + _username,
  6615. _box, {
  6616. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6617. "style": {
  6618. "width": "90%",
  6619. "height": "90%",
  6620. "overflow": 'hidden'
  6621. },
  6622. "onresize": function () { }
  6623. }, {
  6624. closecallback: function () { }
  6625. }, {
  6626. "style": {
  6627. "height": "36px"
  6628. }
  6629. }).form; //创建窗体
  6630. _taskbar = {
  6631. "id": str + _formdiv.id,
  6632. "style": {
  6633. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6634. },
  6635. "name": "项目设计",
  6636. "forms": _formdiv,
  6637. "click": function () {
  6638. U.MD.D.I.openApplication(str, obj, info);
  6639. }
  6640. }
  6641. break;
  6642. }
  6643. const script1 = document.createElement("script");
  6644. script1.type = "text/javascript";
  6645. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6646. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6647. const script2 = document.createElement("script");
  6648. script2.type = "text/javascript";
  6649. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6650. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6651. const script3 = document.createElement("script");
  6652. script3.type = "text/javascript";
  6653. script3.charset = "UTF-8";
  6654. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6655. const script4 = document.createElement("script");
  6656. script4.type = "text/javascript";
  6657. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6658. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6659. if (_iframe) {
  6660. if (str == 'doc') {
  6661. _iframe = _formdiv.querySelector('iframe')
  6662. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6663. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6664. _iframe.contentWindow.document.body.appendChild(script1);
  6665. _iframe.contentWindow.document.body.appendChild(script2);
  6666. // _iframe.contentWindow.document.body.appendChild(script3);
  6667. _iframe.contentWindow.document.body.appendChild(script4);
  6668. })
  6669. if (onloadListener) {
  6670. _iframe.contentDocument.location.reload()
  6671. } else {
  6672. _iframe.contentDocument.location.reload()
  6673. }
  6674. } else if (str == 'courseDesign') {
  6675. U.UF.DL.iframeLoad(_iframe, function () {
  6676. // _iframe.contentWindow.U.MD.O.W.load();
  6677. // _iframe.contentWindow.document.body.appendChild(script1);
  6678. _iframe.contentWindow.document.body.appendChild(script2);
  6679. _iframe.contentWindow.document.body.appendChild(script4);
  6680. })
  6681. } else if (str == 'mind') {
  6682. _iframe = _formdiv.querySelector('iframe')
  6683. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6684. //
  6685. _iframe.contentWindow.document.body.appendChild(script1);
  6686. _iframe.contentWindow.document.body.appendChild(script2);
  6687. _iframe.contentWindow.document.body.appendChild(script4);
  6688. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6689. })
  6690. if (onloadListener) {
  6691. _iframe.contentDocument.location.reload()
  6692. } else {
  6693. _iframe.contentDocument.location.reload()
  6694. }
  6695. } else if (str == 'whiteboard') {
  6696. _iframe = _formdiv.querySelector('iframe')
  6697. let onloadListener = _iframe.onload = () => {
  6698. _iframe.contentWindow.document.body.appendChild(script1);
  6699. _iframe.contentWindow.document.body.appendChild(script2);
  6700. _iframe.contentWindow.document.body.appendChild(script4);
  6701. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6702. };
  6703. if (onloadListener) {
  6704. _iframe.contentDocument.location.reload()
  6705. } else {
  6706. _iframe.contentDocument.location.reload()
  6707. }
  6708. } else {
  6709. _iframe.onload = () => {
  6710. _iframe.contentWindow.document.body.appendChild(script1);
  6711. _iframe.contentWindow.document.body.appendChild(script2);
  6712. // _iframe.contentWindow.document.body.appendChild(script3);
  6713. _iframe.contentWindow.document.body.appendChild(script4);
  6714. };
  6715. }
  6716. _jie.onclick = async () => {
  6717. let text = ''
  6718. if (aTool == 1) {
  6719. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6720. } else if (aTool == 6) {
  6721. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6722. } else if (aTool == 3) {
  6723. text = await U.MD.D.I.getEditorContent(_iframe);
  6724. }
  6725. _loading.style.display = 'flex'
  6726. console.log(_loading);
  6727. var _ajs = _iframe.contentWindow.document.createElement("script");
  6728. _ajs.type = "text/javascript";
  6729. _ajs.innerHTML =
  6730. // 'console.log(' + _loading + ');\n' +
  6731. 'var _js = document.createElement("script");\n' +
  6732. '_js.type="text/javascript";\n' +
  6733. '_js.charset="UTF-8";\n' +
  6734. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6735. "_js.onload = function(){\n" +
  6736. ' var a = document.getElementsByTagName("img")\n' +
  6737. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6738. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6739. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6740. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6741. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6742. "beforeUpload_shishi(file," +
  6743. "'" +
  6744. _userid +
  6745. "'" +
  6746. ", " +
  6747. "'" +
  6748. _cid +
  6749. "'" +
  6750. ", " +
  6751. "'" +
  6752. _stage +
  6753. "'" +
  6754. ", " +
  6755. "'" +
  6756. _task +
  6757. "'" +
  6758. ", " +
  6759. "'" +
  6760. _tool +
  6761. "'" +
  6762. ", " +
  6763. "'" +
  6764. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  6765. "'" +
  6766. ", " +
  6767. "'" +
  6768. aTool +
  6769. "'" +
  6770. ", " +
  6771. "`" +
  6772. text +
  6773. "`" +
  6774. ")\n" +
  6775. " });\n" +
  6776. "}\n" +
  6777. "document.head.appendChild(_js);\n";
  6778. _iframe.contentWindow.document.head.appendChild(_ajs);
  6779. }
  6780. }
  6781. }
  6782. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  6783. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6784. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6785. _userid = student.userid, //登录用户id
  6786. _username = student.student //用户名字
  6787. let _iframe;
  6788. let _cid = cid,
  6789. _stage = stage,
  6790. _task = task,
  6791. _tool = tool;
  6792. var _jie = $$("div", {
  6793. "style": {
  6794. "position": "absolute",
  6795. "bottom": "50px",
  6796. "right": "50px",
  6797. "zIndex": "9999",
  6798. "backgroundColor": "#2268bc",
  6799. "color": "#fff",
  6800. "padding": "12px 20px",
  6801. "cursor": "pointer",
  6802. "borderRadius": "4px",
  6803. },
  6804. "innerHTML": "提交作业"
  6805. })
  6806. let aTool = ''
  6807. let _loading = document.createElement('div')
  6808. _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;"
  6809. // _loading.id = "";
  6810. let _lchild = document.createElement('div')
  6811. let _limg = document.createElement('img')
  6812. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6813. _limg.style = "width: 26px;margin-right: 10px;"
  6814. _lchild.appendChild(_limg)
  6815. let _lspan = document.createElement('span')
  6816. _lspan.innerHTML = "上传中..."
  6817. _lchild.appendChild(_lspan)
  6818. _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%);"
  6819. _loading.appendChild(_lchild)
  6820. var _box = $$('div', {
  6821. "style": {
  6822. "position": "relative",
  6823. "width": "100%",
  6824. "height": "100%",
  6825. },
  6826. })
  6827. _box.appendChild(_loading)
  6828. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  6829. switch (str) {
  6830. case "whiteboard":
  6831. aTool = 1;
  6832. _iframe = $$("iframe", {
  6833. "frameborder": "no",
  6834. "border": "0",
  6835. "scrolling ": "no",
  6836. "style": {
  6837. "cssText": "border:0;width:100%;height:100%"
  6838. },
  6839. "src": "https://beta.iwb.cocorobo.cn/"
  6840. })
  6841. _box.appendChild(_iframe);
  6842. _box.appendChild(_jie);
  6843. _formdiv = new U.UF.UI.form(
  6844. "电子白板-" + _username,
  6845. _box, {
  6846. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6847. "style": {
  6848. "width": "90%",
  6849. "height": "90%",
  6850. "overflow": 'hidden'
  6851. },
  6852. "onresize": function () { }
  6853. }, {
  6854. closecallback: function () { }
  6855. }, {
  6856. "style": {
  6857. "height": "36px"
  6858. }
  6859. }).form; //创建窗体
  6860. _taskbar = {
  6861. "id": str + _formdiv.id,
  6862. "style": {
  6863. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6864. },
  6865. "name": "电子白板",
  6866. "forms": _formdiv,
  6867. "click": function () {
  6868. U.MD.D.I.openApplication(str, obj, info);
  6869. }
  6870. }
  6871. break;
  6872. case "mind":
  6873. aTool = 3;
  6874. _iframe = $$("iframe", {
  6875. "frameborder": "no",
  6876. "border": "0",
  6877. "scrolling ": "no",
  6878. "style": {
  6879. "cssText": "border:0;width:100%;height:100%"
  6880. },
  6881. "src": "/kityminder-editor/dist/index.html"
  6882. })
  6883. _box.appendChild(_iframe);
  6884. _box.appendChild(_jie);
  6885. _formdiv = new U.UF.UI.form(
  6886. "思维导图-" + _username,
  6887. _box, { //"/jsmind/example/demo.html"
  6888. "id": "mind" + cid + stage + task + tool + _userid,
  6889. "style": {
  6890. "width": "90%",
  6891. "height": "90%",
  6892. "overflow": 'hidden'
  6893. },
  6894. "onresize": function () { }
  6895. }, {
  6896. closecallback: function () { }
  6897. }, {
  6898. "style": {
  6899. "height": "36px"
  6900. }
  6901. }).form; //创建窗体
  6902. _taskbar = {
  6903. "id": str + _formdiv.id,
  6904. "style": {
  6905. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6906. },
  6907. "name": "思维导图",
  6908. "forms": _formdiv,
  6909. "click": function () {
  6910. U.MD.D.I.openApplication(str, obj, info);
  6911. }
  6912. }
  6913. break;
  6914. case "MindMap":
  6915. aTool = 3;
  6916. _iframe = $$("iframe", {
  6917. "frameborder": "no",
  6918. "border": "0",
  6919. "scrolling ": "no",
  6920. "style": {
  6921. "cssText": "border:0;width:100%;height:100%"
  6922. },
  6923. "src": "//cloud.cocorobo.cn/mind/"
  6924. })
  6925. _box.appendChild(_iframe);
  6926. _box.appendChild(_jie);
  6927. _formdiv = new U.UF.UI.form(
  6928. "思维导图-" + _username,
  6929. _box, { //"/jsmind/example/demo.html"
  6930. "id": "mind" + cid + stage + task + tool + _userid,
  6931. "style": {
  6932. "width": "90%",
  6933. "height": "90%",
  6934. "overflow": 'hidden'
  6935. },
  6936. "onresize": function () { }
  6937. }, {
  6938. closecallback: function () { }
  6939. }, {
  6940. "style": {
  6941. "height": "36px"
  6942. }
  6943. }).form; //创建窗体
  6944. _taskbar = {
  6945. "id": str + _formdiv.id,
  6946. "style": {
  6947. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6948. },
  6949. "name": "思维导图",
  6950. "forms": _formdiv,
  6951. "click": function () {
  6952. U.MD.D.I.openApplication(str, obj, info);
  6953. }
  6954. }
  6955. break;
  6956. case "doc":
  6957. aTool = 6;
  6958. _iframe = $$("iframe", {
  6959. "frameborder": "no",
  6960. "border": "0",
  6961. "scrolling ": "no",
  6962. "style": {
  6963. "cssText": "border:0;width:100%;height:100%"
  6964. },
  6965. "src": "/Office/Word/WordEditArea.htm"
  6966. })
  6967. _box.appendChild(_iframe);
  6968. _box.appendChild(_jie);
  6969. _formdiv = new U.UF.UI.form(
  6970. "协同文档-" + _username,
  6971. _box, {
  6972. "id": "doc" + cid + stage + task + tool + _userid,
  6973. "style": {
  6974. "width": "90%",
  6975. "height": "90%",
  6976. "overflow": 'hidden'
  6977. },
  6978. "onresize": function () { }
  6979. }, {
  6980. closecallback: function () { }
  6981. }, {
  6982. "style": {
  6983. "height": "36px"
  6984. }
  6985. }).form; //创建窗体
  6986. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6987. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6988. })
  6989. _taskbar = {
  6990. "id": str + _formdiv.id,
  6991. "style": {
  6992. "backgroundImage": "url(/img/icon/doc.png)"
  6993. },
  6994. "name": "协同文档",
  6995. "forms": _formdiv,
  6996. "click": function () {
  6997. U.MD.D.I.openApplication(str, obj, info);
  6998. }
  6999. }
  7000. break;
  7001. case "mindNetwork": //好友打开
  7002. aTool = 7;
  7003. _iframe = $$("iframe", {
  7004. "webkitallowfullscreen": "",
  7005. "mozallowfullscreen": "",
  7006. "allowfullscreen": "",
  7007. "frameborder": "no",
  7008. "border": "0",
  7009. "scrolling ": "no",
  7010. "style": {
  7011. "cssText": "border:0; width:100%; height:100%;"
  7012. },
  7013. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7014. })
  7015. _box.appendChild(_iframe);
  7016. _box.appendChild(_jie);
  7017. _formdiv = new U.UF.UI.form(
  7018. "思维网格-" + _username,
  7019. _box, {
  7020. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7021. "style": {
  7022. "width": "90%",
  7023. "height": "90%",
  7024. "overflow": 'hidden'
  7025. },
  7026. "onresize": function () { }
  7027. }, {
  7028. closecallback: function () { }
  7029. }, {
  7030. "style": {
  7031. "height": "36px"
  7032. }
  7033. }).form; //创建窗体
  7034. _taskbar = {
  7035. "id": str + _formdiv.id,
  7036. "style": {
  7037. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7038. },
  7039. "name": "思维网格",
  7040. "forms": _formdiv,
  7041. "click": function () {
  7042. U.MD.D.I.openApplication(str, obj, info);
  7043. }
  7044. }
  7045. break;
  7046. case "courseDesign":
  7047. _iframe = $$("iframe", {
  7048. "webkitallowfullscreen": "",
  7049. "mozallowfullscreen": "",
  7050. "allowfullscreen": "",
  7051. "frameborder": "no",
  7052. "border": "0",
  7053. "scrolling ": "no",
  7054. "style": {
  7055. "cssText": "border:0; width:100%; height:100%;"
  7056. },
  7057. "src": "/course-design-vue"
  7058. })
  7059. _box.appendChild(_iframe);
  7060. _box.appendChild(_jie);
  7061. _formdiv = new U.UF.UI.form(
  7062. "项目设计-" + _username,
  7063. _box, {
  7064. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7065. "style": {
  7066. "width": "90%",
  7067. "height": "90%",
  7068. "overflow": 'hidden'
  7069. },
  7070. "onresize": function () { }
  7071. }, {
  7072. closecallback: function () { }
  7073. }, {
  7074. "style": {
  7075. "height": "36px"
  7076. }
  7077. }).form; //创建窗体
  7078. _taskbar = {
  7079. "id": str + _formdiv.id,
  7080. "style": {
  7081. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7082. },
  7083. "name": "项目设计",
  7084. "forms": _formdiv,
  7085. "click": function () {
  7086. U.MD.D.I.openApplication(str, obj, info);
  7087. }
  7088. }
  7089. break;
  7090. }
  7091. const script1 = document.createElement("script");
  7092. script1.type = "text/javascript";
  7093. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7094. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7095. const script2 = document.createElement("script");
  7096. script2.type = "text/javascript";
  7097. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7098. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7099. const script3 = document.createElement("script");
  7100. script3.type = "text/javascript";
  7101. script3.charset = "UTF-8";
  7102. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7103. const script4 = document.createElement("script");
  7104. script4.type = "text/javascript";
  7105. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7106. script4.src = window.origin + "/js/Common/jietu2E.js";
  7107. if (_iframe) {
  7108. if (str == 'doc') {
  7109. _iframe = _formdiv.querySelector('iframe')
  7110. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7111. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7112. _iframe.contentWindow.document.body.appendChild(script1);
  7113. _iframe.contentWindow.document.body.appendChild(script2);
  7114. // _iframe.contentWindow.document.body.appendChild(script3);
  7115. _iframe.contentWindow.document.body.appendChild(script4);
  7116. })
  7117. if (onloadListener) {
  7118. _iframe.contentDocument.location.reload()
  7119. } else {
  7120. _iframe.contentDocument.location.reload()
  7121. }
  7122. } else if (str == 'courseDesign') {
  7123. U.UF.DL.iframeLoad(_iframe, function () {
  7124. // _iframe.contentWindow.U.MD.O.W.load();
  7125. // _iframe.contentWindow.document.body.appendChild(script1);
  7126. _iframe.contentWindow.document.body.appendChild(script2);
  7127. _iframe.contentWindow.document.body.appendChild(script4);
  7128. })
  7129. } else if (str == 'mind') {
  7130. _iframe = _formdiv.querySelector('iframe')
  7131. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7132. //
  7133. _iframe.contentWindow.document.body.appendChild(script1);
  7134. _iframe.contentWindow.document.body.appendChild(script2);
  7135. _iframe.contentWindow.document.body.appendChild(script4);
  7136. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7137. })
  7138. if (onloadListener) {
  7139. _iframe.contentDocument.location.reload()
  7140. } else {
  7141. _iframe.contentDocument.location.reload()
  7142. }
  7143. } else if (str == 'whiteboard') {
  7144. _iframe = _formdiv.querySelector('iframe')
  7145. let onloadListener = _iframe.onload = () => {
  7146. _iframe.contentWindow.document.body.appendChild(script1);
  7147. _iframe.contentWindow.document.body.appendChild(script2);
  7148. _iframe.contentWindow.document.body.appendChild(script4);
  7149. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7150. };
  7151. if (onloadListener) {
  7152. _iframe.contentDocument.location.reload()
  7153. } else {
  7154. _iframe.contentDocument.location.reload()
  7155. }
  7156. } else {
  7157. _iframe.onload = () => {
  7158. _iframe.contentWindow.document.body.appendChild(script1);
  7159. _iframe.contentWindow.document.body.appendChild(script2);
  7160. // _iframe.contentWindow.document.body.appendChild(script3);
  7161. _iframe.contentWindow.document.body.appendChild(script4);
  7162. };
  7163. }
  7164. _jie.onclick = async () => {
  7165. let text = ''
  7166. if (aTool == 1) {
  7167. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7168. } else if (aTool == 6) {
  7169. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7170. } else if (aTool == 3) {
  7171. text = await U.MD.D.I.getEditorContent(_iframe);
  7172. }
  7173. _loading.style.display = 'flex'
  7174. console.log(_loading);
  7175. var _ajs = _iframe.contentWindow.document.createElement("script");
  7176. _ajs.type = "text/javascript";
  7177. _ajs.innerHTML =
  7178. // 'console.log(' + _loading + ');\n' +
  7179. 'var _js = document.createElement("script");\n' +
  7180. '_js.type="text/javascript";\n' +
  7181. '_js.charset="UTF-8";\n' +
  7182. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7183. "_js.onload = function(){\n" +
  7184. ' var a = document.getElementsByTagName("img")\n' +
  7185. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7186. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7187. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7188. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7189. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7190. "beforeUpload_shishi(file," +
  7191. "'" +
  7192. _userid +
  7193. "'" +
  7194. ", " +
  7195. "'" +
  7196. _cid +
  7197. "'" +
  7198. ", " +
  7199. "'" +
  7200. _stage +
  7201. "'" +
  7202. ", " +
  7203. "'" +
  7204. _task +
  7205. "'" +
  7206. ", " +
  7207. "'" +
  7208. _tool +
  7209. "'" +
  7210. ", " +
  7211. "'" +
  7212. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7213. "'" +
  7214. ", " +
  7215. "'" +
  7216. aTool +
  7217. "'" +
  7218. ", " +
  7219. "`" +
  7220. text +
  7221. "`" +
  7222. ")\n" +
  7223. " });\n" +
  7224. "}\n" +
  7225. "document.head.appendChild(_js);\n";
  7226. _iframe.contentWindow.document.head.appendChild(_ajs);
  7227. }
  7228. }
  7229. }
  7230. U.MD.D.I.getEditorContent = function (iframe) {
  7231. return new Promise((resolve, reject) => {
  7232. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7233. console.log(content);
  7234. resolve(content)
  7235. });
  7236. });
  7237. }
  7238. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7239. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7240. // if (res.value[0].length > 0) {
  7241. // // resolve(res.value[0][0].text);
  7242. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7243. // $(fileInput).val('');
  7244. // });
  7245. // }
  7246. // }, [], { "type": "GET", "withCredentials": true });
  7247. var xmlhttp;
  7248. var Mac, Sn, DeviceId
  7249. if (window.XMLHttpRequest) {
  7250. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7251. xmlhttp = new XMLHttpRequest();
  7252. } else {
  7253. // IE6, IE5 浏览器执行代码
  7254. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7255. }
  7256. xmlhttp.onreadystatechange = function () {
  7257. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7258. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7259. // resolve(res.value[0][0].text);
  7260. if (type == '2') {
  7261. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7262. } else if (type == '3') {
  7263. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7264. }
  7265. } else {
  7266. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7267. }
  7268. }
  7269. }
  7270. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7271. xmlhttp.send();
  7272. }
  7273. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7274. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7275. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7276. _userinfo = US.userInfo, //登录用户信息
  7277. _userid = US.userInfo.userid //登录用户id
  7278. let _iframe;
  7279. let _cid = cid,
  7280. _stage = stage,
  7281. _task = task,
  7282. _tool = tool;
  7283. var _jie = $$("div", {
  7284. "style": {
  7285. "position": "absolute",
  7286. "bottom": "50px",
  7287. "right": "50px",
  7288. "zIndex": "9999",
  7289. "backgroundColor": "#2268bc",
  7290. "color": "#fff",
  7291. "padding": "12px 20px",
  7292. "cursor": "pointer",
  7293. "borderRadius": "4px",
  7294. },
  7295. "innerHTML": "确认并提交"
  7296. })
  7297. let aTool = ''
  7298. let _loading = document.createElement('div')
  7299. _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;"
  7300. // _loading.id = "";
  7301. let _lchild = document.createElement('div')
  7302. let _limg = document.createElement('img')
  7303. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7304. _limg.style = "width: 26px;margin-right: 10px;"
  7305. _lchild.appendChild(_limg)
  7306. let _lspan = document.createElement('span')
  7307. _lspan.innerHTML = "上传中..."
  7308. _lchild.appendChild(_lspan)
  7309. _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%);"
  7310. _loading.appendChild(_lchild)
  7311. var _box = $$('div', {
  7312. "style": {
  7313. "position": "relative",
  7314. "width": "100%",
  7315. "height": "100%",
  7316. },
  7317. })
  7318. _box.appendChild(_loading)
  7319. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7320. switch (str) {
  7321. case "whiteboard":
  7322. aTool = 1;
  7323. _iframe = $$("iframe", {
  7324. "frameborder": "no",
  7325. "border": "0",
  7326. "scrolling ": "no",
  7327. "style": {
  7328. "cssText": "border:0;width:100%;height:100%"
  7329. },
  7330. "src": "https://beta.iwb.cocorobo.cn/"
  7331. })
  7332. _box.appendChild(_iframe);
  7333. _box.appendChild(_jie);
  7334. _formdiv = new U.UF.UI.form(
  7335. "电子白板",
  7336. _box, {
  7337. "id": "whiteboards" + cid + stage + task + tool,
  7338. "style": {
  7339. "width": "90%",
  7340. "height": "90%",
  7341. "overflow": 'hidden'
  7342. },
  7343. "onresize": function () { }
  7344. }, {
  7345. closecallback: function () { }
  7346. }, {
  7347. "style": {
  7348. "height": "36px"
  7349. }
  7350. }).form; //创建窗体
  7351. _taskbar = {
  7352. "id": str + _formdiv.id,
  7353. "style": {
  7354. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7355. },
  7356. "name": "电子白板",
  7357. "forms": _formdiv,
  7358. "click": function () {
  7359. U.MD.D.I.openApplication(str, obj, info);
  7360. }
  7361. }
  7362. break;
  7363. case "mind":
  7364. aTool = 3;
  7365. _iframe = $$("iframe", {
  7366. "frameborder": "no",
  7367. "border": "0",
  7368. "scrolling ": "no",
  7369. "style": {
  7370. "cssText": "border:0;width:100%;height:100%"
  7371. },
  7372. "src": "/kityminder-editor/dist/index.html"
  7373. });
  7374. _box.appendChild(_iframe);
  7375. _box.appendChild(_jie);
  7376. _formdiv = new U.UF.UI.form(
  7377. "思维导图",
  7378. _box, { //"/jsmind/example/demo.html"
  7379. "id": "minds" + cid + stage + task + tool,
  7380. "style": {
  7381. "width": "90%",
  7382. "height": "90%",
  7383. "overflow": 'hidden'
  7384. },
  7385. "onresize": function () { }
  7386. }, {
  7387. closecallback: function () { }
  7388. }, {
  7389. "style": {
  7390. "height": "36px"
  7391. }
  7392. }).form; //创建窗体
  7393. _taskbar = {
  7394. "id": str + _formdiv.id,
  7395. "style": {
  7396. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7397. },
  7398. "name": "思维导图",
  7399. "forms": _formdiv,
  7400. "click": function () {
  7401. U.MD.D.I.openApplication(str, obj, info);
  7402. }
  7403. }
  7404. break;
  7405. case "doc":
  7406. aTool = 6;
  7407. _iframe = $$("iframe", {
  7408. "frameborder": "no",
  7409. "border": "0",
  7410. "scrolling ": "no",
  7411. "style": {
  7412. "cssText": "border:0;width:100%;height:100%"
  7413. },
  7414. "src": "/Office/Word/WordEditArea.htm"
  7415. })
  7416. _box.appendChild(_iframe);
  7417. _box.appendChild(_jie);
  7418. _formdiv = new U.UF.UI.form(
  7419. "协同文档",
  7420. _box, {
  7421. "id": "docs" + cid + stage + task + tool,
  7422. "style": {
  7423. "width": "90%",
  7424. "height": "90%",
  7425. "overflow": 'hidden'
  7426. },
  7427. "onresize": function () { }
  7428. }, {
  7429. closecallback: function () { }
  7430. }, {
  7431. "style": {
  7432. "height": "36px"
  7433. }
  7434. }).form; //创建窗体
  7435. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7436. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7437. })
  7438. _taskbar = {
  7439. "id": str + _formdiv.id,
  7440. "style": {
  7441. "backgroundImage": "url(/img/icon/doc.png)"
  7442. },
  7443. "name": "协同文档",
  7444. "forms": _formdiv,
  7445. "click": function () {
  7446. U.MD.D.I.openApplication(str, obj, info);
  7447. }
  7448. }
  7449. break;
  7450. }
  7451. const script1 = document.createElement("script");
  7452. script1.type = "text/javascript";
  7453. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7454. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7455. const script2 = document.createElement("script");
  7456. script2.type = "text/javascript";
  7457. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7458. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7459. const script3 = document.createElement("script");
  7460. script3.type = "text/javascript";
  7461. script3.charset = "UTF-8";
  7462. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7463. const script4 = document.createElement("script");
  7464. script4.type = "text/javascript";
  7465. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7466. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7467. if (_iframe) {
  7468. if (str == 'doc') {
  7469. _iframe = _formdiv.querySelector('iframe')
  7470. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7471. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7472. _iframe.contentWindow.document.body.appendChild(script1);
  7473. _iframe.contentWindow.document.body.appendChild(script2);
  7474. // _iframe.contentWindow.document.body.appendChild(script3);
  7475. _iframe.contentWindow.document.body.appendChild(script4);
  7476. })
  7477. if (onloadListener) {
  7478. _iframe.contentDocument.location.reload()
  7479. } else {
  7480. _iframe.contentDocument.location.reload()
  7481. }
  7482. } else if (str == 'mind') {
  7483. _iframe = _formdiv.querySelector('iframe')
  7484. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7485. _iframe.contentWindow.document.body.appendChild(script1);
  7486. _iframe.contentWindow.document.body.appendChild(script2);
  7487. _iframe.contentWindow.document.body.appendChild(script4);
  7488. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7489. })
  7490. if (onloadListener) {
  7491. _iframe.contentDocument.location.reload()
  7492. } else {
  7493. _iframe.contentDocument.location.reload()
  7494. }
  7495. } else {
  7496. _iframe.onload = () => {
  7497. _iframe.contentWindow.document.body.appendChild(script1);
  7498. _iframe.contentWindow.document.body.appendChild(script2);
  7499. // _iframe.contentWindow.document.body.appendChild(script3);
  7500. _iframe.contentWindow.document.body.appendChild(script4);
  7501. };
  7502. }
  7503. _jie.onclick = async () => {
  7504. let text = ''
  7505. if (aTool == 6) {
  7506. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7507. } else if (aTool == 3) {
  7508. text = await U.MD.D.I.getEditorContent(_iframe);
  7509. }
  7510. _loading.style.display = 'flex'
  7511. console.log(_loading);
  7512. var _ajs = _iframe.contentWindow.document.createElement("script");
  7513. _ajs.type = "text/javascript";
  7514. _ajs.innerHTML =
  7515. // 'console.log(' + _loading + ');\n' +
  7516. 'var _js = document.createElement("script");\n' +
  7517. '_js.type="text/javascript";\n' +
  7518. '_js.charset="UTF-8";\n' +
  7519. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7520. "_js.onload = function(){\n" +
  7521. ' var a = document.getElementsByTagName("img")\n' +
  7522. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7523. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7524. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7525. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7526. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7527. "beforeUpload_shishi(file," +
  7528. "'" +
  7529. _userid +
  7530. "'" +
  7531. ", " +
  7532. "'" +
  7533. _cid +
  7534. "'" +
  7535. ", " +
  7536. "'" +
  7537. _stage +
  7538. "'" +
  7539. ", " +
  7540. "'" +
  7541. _task +
  7542. "'" +
  7543. ", " +
  7544. "'" +
  7545. _tool +
  7546. "'" +
  7547. ", " +
  7548. "'" +
  7549. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7550. "'" +
  7551. ", " +
  7552. "'" +
  7553. aTool +
  7554. "'" +
  7555. ", " +
  7556. "`" +
  7557. text +
  7558. "`" +
  7559. ")\n" +
  7560. " });\n" +
  7561. "}\n" +
  7562. "document.head.appendChild(_js);\n";
  7563. _iframe.contentWindow.document.head.appendChild(_ajs);
  7564. }
  7565. }
  7566. //U.MD.D.I.openClick(str);
  7567. //如果有任务栏信息
  7568. // if (_taskbar) {
  7569. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7570. // }
  7571. }
  7572. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7573. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7574. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7575. _userinfo = US.userInfo, //登录用户信息
  7576. _userid = US.userInfo.userid //登录用户id
  7577. let _iframe;
  7578. let _cid = cid,
  7579. _stage = stage,
  7580. _task = task,
  7581. _tool = tool;
  7582. var _jie = $$("div", {
  7583. "style": {
  7584. "position": "absolute",
  7585. "bottom": "50px",
  7586. "right": "50px",
  7587. "zIndex": "9999",
  7588. "backgroundColor": "#2268bc",
  7589. "color": "#fff",
  7590. "padding": "12px 20px",
  7591. "cursor": "pointer",
  7592. "borderRadius": "4px",
  7593. },
  7594. "innerHTML": "确认并提交"
  7595. })
  7596. let aTool = ''
  7597. let _loading = document.createElement('div')
  7598. _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;"
  7599. // _loading.id = "";
  7600. let _lchild = document.createElement('div')
  7601. let _limg = document.createElement('img')
  7602. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7603. _limg.style = "width: 26px;margin-right: 10px;"
  7604. _lchild.appendChild(_limg)
  7605. let _lspan = document.createElement('span')
  7606. _lspan.innerHTML = "上传中..."
  7607. _lchild.appendChild(_lspan)
  7608. _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%);"
  7609. _loading.appendChild(_lchild)
  7610. var _box = $$('div', {
  7611. "style": {
  7612. "position": "relative",
  7613. "width": "100%",
  7614. "height": "100%",
  7615. },
  7616. })
  7617. _box.appendChild(_loading)
  7618. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7619. switch (str) {
  7620. case "whiteboard":
  7621. aTool = 1;
  7622. _iframe = $$("iframe", {
  7623. "frameborder": "no",
  7624. "border": "0",
  7625. "scrolling ": "no",
  7626. "style": {
  7627. "cssText": "border:0;width:100%;height:100%"
  7628. },
  7629. "src": "https://beta.iwb.cocorobo.cn/"
  7630. })
  7631. _box.appendChild(_iframe);
  7632. _box.appendChild(_jie);
  7633. _formdiv = new U.UF.UI.form(
  7634. "电子白板",
  7635. _box, {
  7636. "id": "whiteboards" + cid + stage + task + tool,
  7637. "style": {
  7638. "width": "90%",
  7639. "height": "90%",
  7640. "overflow": 'hidden'
  7641. },
  7642. "onresize": function () { }
  7643. }, {
  7644. closecallback: function () { }
  7645. }, {
  7646. "style": {
  7647. "height": "36px"
  7648. }
  7649. }).form; //创建窗体
  7650. _taskbar = {
  7651. "id": str + _formdiv.id,
  7652. "style": {
  7653. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7654. },
  7655. "name": "电子白板",
  7656. "forms": _formdiv,
  7657. "click": function () {
  7658. U.MD.D.I.openApplication(str, obj, info);
  7659. }
  7660. }
  7661. break;
  7662. case "mind":
  7663. aTool = 3;
  7664. _iframe = $$("iframe", {
  7665. "frameborder": "no",
  7666. "border": "0",
  7667. "scrolling ": "no",
  7668. "style": {
  7669. "cssText": "border:0;width:100%;height:100%"
  7670. },
  7671. "src": "/kityminder-editor/dist/index.html"
  7672. });
  7673. _box.appendChild(_iframe);
  7674. _box.appendChild(_jie);
  7675. _formdiv = new U.UF.UI.form(
  7676. "思维导图",
  7677. _box, { //"/jsmind/example/demo.html"
  7678. "id": "minds" + cid + stage + task + tool,
  7679. "style": {
  7680. "width": "90%",
  7681. "height": "90%",
  7682. "overflow": 'hidden'
  7683. },
  7684. "onresize": function () { }
  7685. }, {
  7686. closecallback: function () { }
  7687. }, {
  7688. "style": {
  7689. "height": "36px"
  7690. }
  7691. }).form; //创建窗体
  7692. _taskbar = {
  7693. "id": str + _formdiv.id,
  7694. "style": {
  7695. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7696. },
  7697. "name": "思维导图",
  7698. "forms": _formdiv,
  7699. "click": function () {
  7700. U.MD.D.I.openApplication(str, obj, info);
  7701. }
  7702. }
  7703. break;
  7704. case "doc":
  7705. aTool = 6;
  7706. _iframe = $$("iframe", {
  7707. "frameborder": "no",
  7708. "border": "0",
  7709. "scrolling ": "no",
  7710. "style": {
  7711. "cssText": "border:0;width:100%;height:100%"
  7712. },
  7713. "src": "/Office/Word/WordEditArea.htm"
  7714. })
  7715. _box.appendChild(_iframe);
  7716. _box.appendChild(_jie);
  7717. _formdiv = new U.UF.UI.form(
  7718. "协同文档",
  7719. _box, {
  7720. "id": "docs" + cid + stage + task + tool,
  7721. "style": {
  7722. "width": "90%",
  7723. "height": "90%",
  7724. "overflow": 'hidden'
  7725. },
  7726. "onresize": function () { }
  7727. }, {
  7728. closecallback: function () { }
  7729. }, {
  7730. "style": {
  7731. "height": "36px"
  7732. }
  7733. }).form; //创建窗体
  7734. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7735. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7736. })
  7737. _taskbar = {
  7738. "id": str + _formdiv.id,
  7739. "style": {
  7740. "backgroundImage": "url(/img/icon/doc.png)"
  7741. },
  7742. "name": "协同文档",
  7743. "forms": _formdiv,
  7744. "click": function () {
  7745. U.MD.D.I.openApplication(str, obj, info);
  7746. }
  7747. }
  7748. break;
  7749. }
  7750. const script1 = document.createElement("script");
  7751. script1.type = "text/javascript";
  7752. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7753. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7754. const script2 = document.createElement("script");
  7755. script2.type = "text/javascript";
  7756. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7757. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7758. const script3 = document.createElement("script");
  7759. script3.type = "text/javascript";
  7760. script3.charset = "UTF-8";
  7761. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7762. const script4 = document.createElement("script");
  7763. script4.type = "text/javascript";
  7764. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7765. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  7766. if (_iframe) {
  7767. if (str == 'doc') {
  7768. _iframe = _formdiv.querySelector('iframe')
  7769. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7770. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7771. _iframe.contentWindow.document.body.appendChild(script1);
  7772. _iframe.contentWindow.document.body.appendChild(script2);
  7773. // _iframe.contentWindow.document.body.appendChild(script3);
  7774. _iframe.contentWindow.document.body.appendChild(script4);
  7775. })
  7776. if (onloadListener) {
  7777. _iframe.contentDocument.location.reload()
  7778. } else {
  7779. _iframe.contentDocument.location.reload()
  7780. }
  7781. } else if (str == 'mind') {
  7782. _iframe = _formdiv.querySelector('iframe')
  7783. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7784. _iframe.contentWindow.document.body.appendChild(script1);
  7785. _iframe.contentWindow.document.body.appendChild(script2);
  7786. _iframe.contentWindow.document.body.appendChild(script4);
  7787. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7788. })
  7789. if (onloadListener) {
  7790. _iframe.contentDocument.location.reload()
  7791. } else {
  7792. _iframe.contentDocument.location.reload()
  7793. }
  7794. } else {
  7795. _iframe.onload = () => {
  7796. _iframe.contentWindow.document.body.appendChild(script1);
  7797. _iframe.contentWindow.document.body.appendChild(script2);
  7798. // _iframe.contentWindow.document.body.appendChild(script3);
  7799. _iframe.contentWindow.document.body.appendChild(script4);
  7800. };
  7801. }
  7802. _jie.onclick = async () => {
  7803. let text = ''
  7804. if (aTool == 6) {
  7805. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7806. } else if (aTool == 3) {
  7807. text = await U.MD.D.I.getEditorContent(_iframe);
  7808. }
  7809. _loading.style.display = 'flex'
  7810. console.log(_loading);
  7811. var _ajs = _iframe.contentWindow.document.createElement("script");
  7812. _ajs.type = "text/javascript";
  7813. _ajs.innerHTML =
  7814. // 'console.log(' + _loading + ');\n' +
  7815. 'var _js = document.createElement("script");\n' +
  7816. '_js.type="text/javascript";\n' +
  7817. '_js.charset="UTF-8";\n' +
  7818. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7819. "_js.onload = function(){\n" +
  7820. ' var a = document.getElementsByTagName("img")\n' +
  7821. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7822. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7823. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7824. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7825. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7826. "beforeUpload_shishi(file," +
  7827. "'" +
  7828. _userid +
  7829. "'" +
  7830. ", " +
  7831. "'" +
  7832. _cid +
  7833. "'" +
  7834. ", " +
  7835. "'" +
  7836. _stage +
  7837. "'" +
  7838. ", " +
  7839. "'" +
  7840. _task +
  7841. "'" +
  7842. ", " +
  7843. "'" +
  7844. _tool +
  7845. "'" +
  7846. ", " +
  7847. "'" +
  7848. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  7849. "'" +
  7850. ", " +
  7851. "'" +
  7852. aTool +
  7853. "'" +
  7854. ", " +
  7855. "`" +
  7856. text +
  7857. "`" +
  7858. ")\n" +
  7859. " });\n" +
  7860. "}\n" +
  7861. "document.head.appendChild(_js);\n";
  7862. _iframe.contentWindow.document.head.appendChild(_ajs);
  7863. }
  7864. }
  7865. //U.MD.D.I.openClick(str);
  7866. //如果有任务栏信息
  7867. // if (_taskbar) {
  7868. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7869. // }
  7870. }
  7871. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  7872. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7873. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7874. _userinfo = US.userInfo, //登录用户信息
  7875. _userid = US.userInfo.userid //登录用户id
  7876. let _iframe;
  7877. let _cid = cid,
  7878. _stage = stage,
  7879. _task = task,
  7880. _tool = tool;
  7881. var _jie = $$("div", {
  7882. "style": {
  7883. "position": "absolute",
  7884. "bottom": "50px",
  7885. "right": "50px",
  7886. "zIndex": "9999",
  7887. "backgroundColor": "#2268bc",
  7888. "color": "#fff",
  7889. "padding": "12px 20px",
  7890. "cursor": "pointer",
  7891. "borderRadius": "4px",
  7892. },
  7893. "innerHTML": "上传模板"
  7894. })
  7895. let aTool = ''
  7896. let _loading = document.createElement('div')
  7897. _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;"
  7898. // _loading.id = "";
  7899. let _lchild = document.createElement('div')
  7900. let _limg = document.createElement('img')
  7901. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7902. _limg.style = "width: 26px;margin-right: 10px;"
  7903. _lchild.appendChild(_limg)
  7904. let _lspan = document.createElement('span')
  7905. _lspan.innerHTML = "上传中..."
  7906. _lchild.appendChild(_lspan)
  7907. _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%);"
  7908. _loading.appendChild(_lchild)
  7909. var _box = $$('div', {
  7910. "style": {
  7911. "position": "relative",
  7912. "width": "100%",
  7913. "height": "100%",
  7914. },
  7915. })
  7916. _box.appendChild(_loading)
  7917. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  7918. switch (str) {
  7919. case "whiteboard":
  7920. aTool = 1;
  7921. _iframe = $$("iframe", {
  7922. "frameborder": "no",
  7923. "border": "0",
  7924. "scrolling ": "no",
  7925. "style": {
  7926. "cssText": "border:0;width:100%;height:100%"
  7927. },
  7928. "src": "https://beta.iwb.cocorobo.cn/"
  7929. })
  7930. _box.appendChild(_iframe);
  7931. _box.appendChild(_jie);
  7932. _formdiv = new U.UF.UI.form(
  7933. "电子白板",
  7934. _box, {
  7935. "id": "whiteboards_Yu" + cid + stage + task + tool,
  7936. "style": {
  7937. "width": "90%",
  7938. "height": "90%",
  7939. "overflow": 'hidden'
  7940. },
  7941. "onresize": function () { }
  7942. }, {
  7943. closecallback: function () { }
  7944. }, {
  7945. "style": {
  7946. "height": "36px"
  7947. }
  7948. }).form; //创建窗体
  7949. _taskbar = {
  7950. "id": str + _formdiv.id,
  7951. "style": {
  7952. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7953. },
  7954. "name": "电子白板",
  7955. "forms": _formdiv,
  7956. "click": function () {
  7957. U.MD.D.I.openApplication(str, obj, info);
  7958. }
  7959. }
  7960. break;
  7961. case "mind":
  7962. aTool = 3;
  7963. _iframe = $$("iframe", {
  7964. "frameborder": "no",
  7965. "border": "0",
  7966. "scrolling ": "no",
  7967. "style": {
  7968. "cssText": "border:0;width:100%;height:100%"
  7969. },
  7970. "src": "/kityminder-editor/dist/index.html"
  7971. });
  7972. _box.appendChild(_iframe);
  7973. _box.appendChild(_jie);
  7974. _formdiv = new U.UF.UI.form(
  7975. "思维导图",
  7976. _box, { //"/jsmind/example/demo.html"
  7977. "id": "minds_Yu" + cid + stage + task + tool,
  7978. "style": {
  7979. "width": "90%",
  7980. "height": "90%",
  7981. "overflow": 'hidden'
  7982. },
  7983. "onresize": function () { }
  7984. }, {
  7985. closecallback: function () { }
  7986. }, {
  7987. "style": {
  7988. "height": "36px"
  7989. }
  7990. }).form; //创建窗体
  7991. _taskbar = {
  7992. "id": str + _formdiv.id,
  7993. "style": {
  7994. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7995. },
  7996. "name": "思维导图",
  7997. "forms": _formdiv,
  7998. "click": function () {
  7999. U.MD.D.I.openApplication(str, obj, info);
  8000. }
  8001. }
  8002. break;
  8003. case "doc":
  8004. aTool = 6;
  8005. _iframe = $$("iframe", {
  8006. "frameborder": "no",
  8007. "border": "0",
  8008. "scrolling ": "no",
  8009. "style": {
  8010. "cssText": "border:0;width:100%;height:100%"
  8011. },
  8012. "src": "/Office/Word/WordEditArea.htm"
  8013. })
  8014. _box.appendChild(_iframe);
  8015. _box.appendChild(_jie);
  8016. _formdiv = new U.UF.UI.form(
  8017. "协同文档",
  8018. _box, {
  8019. "id": "docs_Yu" + cid + stage + task + tool,
  8020. "style": {
  8021. "width": "90%",
  8022. "height": "90%",
  8023. "overflow": 'hidden'
  8024. },
  8025. "onresize": function () { }
  8026. }, {
  8027. closecallback: function () { }
  8028. }, {
  8029. "style": {
  8030. "height": "36px"
  8031. }
  8032. }).form; //创建窗体
  8033. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8034. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8035. })
  8036. _taskbar = {
  8037. "id": str + _formdiv.id,
  8038. "style": {
  8039. "backgroundImage": "url(/img/icon/doc.png)"
  8040. },
  8041. "name": "协同文档",
  8042. "forms": _formdiv,
  8043. "click": function () {
  8044. U.MD.D.I.openApplication(str, obj, info);
  8045. }
  8046. }
  8047. break;
  8048. case "CocoPi":
  8049. aTool = 57;
  8050. _iframe = $$("iframe", {
  8051. "allowpaymentrequest": "allowpaymentrequest",
  8052. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8053. "webkitallowfullscreen": "",
  8054. "mozallowfullscreen": "",
  8055. "frameborder": "no",
  8056. "border": "0",
  8057. "scrolling ": "no",
  8058. "style": {
  8059. "cssText": "border:0;width:100%;height:100%"
  8060. },
  8061. "src": "https://pi.cocorobo.cn/"
  8062. })
  8063. _box.appendChild(_iframe);
  8064. _box.appendChild(_jie);
  8065. _formdiv = new U.UF.UI.form(
  8066. "CocoPi",
  8067. _box, {
  8068. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8069. "style": {
  8070. "width": "90%",
  8071. "height": "90%",
  8072. "overflow": 'hidden'
  8073. },
  8074. "onresize": function () { }
  8075. }, {
  8076. closecallback: function () { }
  8077. }, {
  8078. "style": {
  8079. "height": "36px"
  8080. }
  8081. }).form; //创建窗体
  8082. _taskbar = {
  8083. "id": str + _formdiv.id,
  8084. "style": {
  8085. "backgroundImage": "url(/img/icon/cocopi.png)"
  8086. },
  8087. "name": "CocoPi",
  8088. "forms": _formdiv,
  8089. "click": function () {
  8090. U.MD.D.I.openApplication(str, obj, info);
  8091. }
  8092. }
  8093. break;
  8094. }
  8095. if (_iframe) {
  8096. if (str == 'doc') {
  8097. _iframe = _formdiv.querySelector('iframe')
  8098. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8099. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8100. })
  8101. if (onloadListener) {
  8102. _iframe.contentDocument.location.reload()
  8103. } else {
  8104. _iframe.contentDocument.location.reload()
  8105. }
  8106. } else if (str == 'mind') {
  8107. _iframe = _formdiv.querySelector('iframe')
  8108. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8109. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8110. })
  8111. if (onloadListener) {
  8112. _iframe.contentDocument.location.reload()
  8113. } else {
  8114. _iframe.contentDocument.location.reload()
  8115. }
  8116. } else if (str == 'whiteboard') {
  8117. _iframe = _formdiv.querySelector('iframe')
  8118. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8119. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8120. })
  8121. if (onloadListener) {
  8122. _iframe.contentDocument.location.reload()
  8123. } else {
  8124. _iframe.contentDocument.location.reload()
  8125. }
  8126. } else if (str == 'CocoPi') {
  8127. _iframe = _formdiv.querySelector('iframe')
  8128. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8129. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8130. })
  8131. if (onloadListener) {
  8132. _iframe.contentDocument.location.reload()
  8133. } else {
  8134. _iframe.contentDocument.location.reload()
  8135. }
  8136. } else {
  8137. _iframe.onload = () => { };
  8138. }
  8139. _jie.onclick = async () => {
  8140. let text = ''
  8141. let type = '2'
  8142. if (aTool == 1) {
  8143. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8144. type = '3'
  8145. } else if (aTool == 6) {
  8146. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8147. type = '1'
  8148. } else if (aTool == 3) {
  8149. text = await U.MD.D.I.getEditorContent(_iframe);
  8150. type = '2'
  8151. } else if (aTool == 57) {
  8152. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8153. type = '4'
  8154. }
  8155. _loading.style.display = 'flex'
  8156. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8157. }
  8158. }
  8159. //U.MD.D.I.openClick(str);
  8160. //如果有任务栏信息
  8161. // if (_taskbar) {
  8162. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8163. // }
  8164. }
  8165. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8166. var xmlhttp;
  8167. var Mac, Sn, DeviceId
  8168. if (window.XMLHttpRequest) {
  8169. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8170. xmlhttp = new XMLHttpRequest();
  8171. } else {
  8172. // IE6, IE5 浏览器执行代码
  8173. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8174. }
  8175. xmlhttp.onreadystatechange = function () {
  8176. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8177. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8178. // resolve(res.value[0][0].text);
  8179. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8180. }
  8181. }
  8182. }
  8183. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8184. xmlhttp.send();
  8185. }
  8186. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8187. var xmlhttp;
  8188. var Mac, Sn, DeviceId
  8189. if (window.XMLHttpRequest) {
  8190. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8191. xmlhttp = new XMLHttpRequest();
  8192. } else {
  8193. // IE6, IE5 浏览器执行代码
  8194. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8195. }
  8196. xmlhttp.onreadystatechange = function () {
  8197. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8198. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8199. // resolve(res.value[0][0].text);
  8200. if (type == '2') {
  8201. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8202. } else if (type == '3') {
  8203. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8204. } else if (type == '4') {
  8205. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8206. }
  8207. } else {
  8208. if (type == '2') {
  8209. iframe.contentWindow.editor.minder.importData('json', '')
  8210. } else if (type == '3') {
  8211. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8212. } else if (type == '4') {
  8213. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8214. }
  8215. }
  8216. }
  8217. }
  8218. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8219. xmlhttp.send();
  8220. }
  8221. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8222. var xmlhttp;
  8223. var Mac, Sn, DeviceId
  8224. if (window.XMLHttpRequest) {
  8225. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8226. xmlhttp = new XMLHttpRequest();
  8227. } else {
  8228. // IE6, IE5 浏览器执行代码
  8229. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8230. }
  8231. xmlhttp.onreadystatechange = function () {
  8232. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8233. if (xmlhttp.response) {
  8234. // resolve(res.value[0][0].text);
  8235. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8236. // $(fileInput).val('');
  8237. // });
  8238. span.innerHTML = '上传成功'
  8239. setTimeout(() => {
  8240. loading.style.display = 'none'
  8241. }, 1000);
  8242. }
  8243. }
  8244. }
  8245. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8246. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8247. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8248. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8249. // 设置请求头,表示请求体的编码格式
  8250. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8251. // 设置请求体,使用url-encoded格式的数据
  8252. }
  8253. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8254. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8255. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8256. _userinfo = US.userInfo, //登录用户信息
  8257. _userid = US.userInfo.userid //登录用户id
  8258. let _iframe;
  8259. let _cid = cid,
  8260. _stage = stage,
  8261. _task = task,
  8262. _tool = tool;
  8263. var _jie = $$("div", {
  8264. "style": {
  8265. "position": "absolute",
  8266. "bottom": "50px",
  8267. "right": "50px",
  8268. "zIndex": "9999",
  8269. "backgroundColor": "#2268bc",
  8270. "color": "#fff",
  8271. "padding": "12px 20px",
  8272. "cursor": "pointer",
  8273. "borderRadius": "4px",
  8274. },
  8275. "innerHTML": "提交作业"
  8276. })
  8277. let aTool = ''
  8278. let _loading = document.createElement('div')
  8279. _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;"
  8280. // _loading.id = "";
  8281. let _lchild = document.createElement('div')
  8282. let _limg = document.createElement('img')
  8283. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8284. _limg.style = "width: 26px;margin-right: 10px;"
  8285. _lchild.appendChild(_limg)
  8286. let _lspan = document.createElement('span')
  8287. _lspan.innerHTML = "上传中..."
  8288. _lchild.appendChild(_lspan)
  8289. _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%);"
  8290. _loading.appendChild(_lchild)
  8291. var _box = $$('div', {
  8292. "style": {
  8293. "position": "relative",
  8294. "width": "100%",
  8295. "height": "100%",
  8296. },
  8297. })
  8298. _box.appendChild(_loading)
  8299. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8300. switch (str) {
  8301. case "CocoPi":
  8302. aTool = 57;
  8303. _iframe = $$("iframe", {
  8304. "allowpaymentrequest": "allowpaymentrequest",
  8305. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8306. "webkitallowfullscreen": "",
  8307. "mozallowfullscreen": "",
  8308. "frameborder": "no",
  8309. "border": "0",
  8310. "scrolling ": "no",
  8311. "style": {
  8312. "cssText": "border:0;width:100%;height:100%"
  8313. },
  8314. "src": "https://pi.cocorobo.cn/"
  8315. })
  8316. _box.appendChild(_iframe);
  8317. _box.appendChild(_jie);
  8318. _formdiv = new U.UF.UI.form(
  8319. "CocoPi",
  8320. _box, {
  8321. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8322. "style": {
  8323. "width": "90%",
  8324. "height": "90%",
  8325. "overflow": 'hidden'
  8326. },
  8327. "onresize": function () { }
  8328. }, {
  8329. closecallback: function () { }
  8330. }, {
  8331. "style": {
  8332. "height": "36px"
  8333. }
  8334. }).form; //创建窗体
  8335. _taskbar = {
  8336. "id": str + _formdiv.id,
  8337. "style": {
  8338. "backgroundImage": "url(/img/icon/cocopi.png)"
  8339. },
  8340. "name": "CocoPi",
  8341. "forms": _formdiv,
  8342. "click": function () {
  8343. U.MD.D.I.openApplication(str, obj, info);
  8344. }
  8345. }
  8346. break;
  8347. }
  8348. if (_iframe) {
  8349. if (str == 'CocoPi') {
  8350. _iframe = _formdiv.querySelector('iframe')
  8351. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8352. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8353. })
  8354. if (onloadListener) {
  8355. _iframe.contentDocument.location.reload()
  8356. } else {
  8357. _iframe.contentDocument.location.reload()
  8358. }
  8359. }
  8360. _jie.onclick = async () => {
  8361. let text = ''
  8362. if (aTool == 57) {
  8363. text = _iframe.contentWindow.getLoadXmlStr()
  8364. }
  8365. _loading.style.display = 'flex'
  8366. console.log(_loading);
  8367. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8368. _loading.style.display = 'none'
  8369. let _div = document.createElement('div')
  8370. _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;"
  8371. let _inner = document.createElement('div')
  8372. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8373. _inner.innerHTML = "上传成功"
  8374. _div.appendChild(_inner)
  8375. _iframe.contentWindow.window.document.body.appendChild(_div)
  8376. _div.onclick = () => {
  8377. _iframe.contentWindow.window.document.body.removeChild(_div)
  8378. }
  8379. setTimeout(() => {
  8380. _iframe.contentWindow.window.document.body.removeChild(_div)
  8381. }, 1000);
  8382. }, [], { "type": "POST", "withCredentials": true });
  8383. }
  8384. }
  8385. }
  8386. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8387. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8388. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8389. _userid = student.userid, //登录用户id
  8390. _username = student.student //用户名字
  8391. let _iframe;
  8392. let _cid = cid,
  8393. _stage = stage,
  8394. _task = task,
  8395. _tool = tool;
  8396. var _jie = $$("div", {
  8397. "style": {
  8398. "position": "absolute",
  8399. "bottom": "50px",
  8400. "right": "50px",
  8401. "zIndex": "9999",
  8402. "backgroundColor": "#2268bc",
  8403. "color": "#fff",
  8404. "padding": "12px 20px",
  8405. "cursor": "pointer",
  8406. "borderRadius": "4px",
  8407. },
  8408. "innerHTML": "提交作业"
  8409. })
  8410. let aTool = ''
  8411. let _loading = document.createElement('div')
  8412. _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;"
  8413. // _loading.id = "";
  8414. let _lchild = document.createElement('div')
  8415. let _limg = document.createElement('img')
  8416. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8417. _limg.style = "width: 26px;margin-right: 10px;"
  8418. _lchild.appendChild(_limg)
  8419. let _lspan = document.createElement('span')
  8420. _lspan.innerHTML = "上传中..."
  8421. _lchild.appendChild(_lspan)
  8422. _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%);"
  8423. _loading.appendChild(_lchild)
  8424. var _box = $$('div', {
  8425. "style": {
  8426. "position": "relative",
  8427. "width": "100%",
  8428. "height": "100%",
  8429. },
  8430. })
  8431. _box.appendChild(_loading)
  8432. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8433. switch (str) {
  8434. case "CocoPi":
  8435. aTool = 57;
  8436. _iframe = $$("iframe", {
  8437. "allowpaymentrequest": "allowpaymentrequest",
  8438. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8439. "webkitallowfullscreen": "",
  8440. "mozallowfullscreen": "",
  8441. "frameborder": "no",
  8442. "border": "0",
  8443. "scrolling ": "no",
  8444. "style": {
  8445. "cssText": "border:0;width:100%;height:100%"
  8446. },
  8447. "src": "https://pi.cocorobo.cn/"
  8448. })
  8449. _box.appendChild(_iframe);
  8450. _box.appendChild(_jie);
  8451. _formdiv = new U.UF.UI.form(
  8452. "CocoPi-" + _username,
  8453. _box, {
  8454. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8455. "style": {
  8456. "width": "90%",
  8457. "height": "90%",
  8458. "overflow": 'hidden'
  8459. },
  8460. "onresize": function () { }
  8461. }, {
  8462. closecallback: function () { }
  8463. }, {
  8464. "style": {
  8465. "height": "36px"
  8466. }
  8467. }).form; //创建窗体
  8468. _taskbar = {
  8469. "id": str + _formdiv.id,
  8470. "style": {
  8471. "backgroundImage": "url(/img/icon/cocopi.png)"
  8472. },
  8473. "name": "CocoPi",
  8474. "forms": _formdiv,
  8475. "click": function () {
  8476. U.MD.D.I.openApplication(str, obj, info);
  8477. }
  8478. }
  8479. break;
  8480. }
  8481. if (_iframe) {
  8482. if (str == 'CocoPi') {
  8483. _iframe = _formdiv.querySelector('iframe')
  8484. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8485. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8486. })
  8487. if (onloadListener) {
  8488. _iframe.contentDocument.location.reload()
  8489. } else {
  8490. _iframe.contentDocument.location.reload()
  8491. }
  8492. }
  8493. _jie.onclick = async () => {
  8494. let text = ''
  8495. if (aTool == 57) {
  8496. text = _iframe.contentWindow.getLoadXmlStr()
  8497. }
  8498. _loading.style.display = 'flex'
  8499. console.log(_loading);
  8500. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8501. _loading.style.display = 'none'
  8502. let _div = document.createElement('div')
  8503. _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;"
  8504. let _inner = document.createElement('div')
  8505. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8506. _inner.innerHTML = "上传成功"
  8507. _div.appendChild(_inner)
  8508. _iframe.contentWindow.window.document.body.appendChild(_div)
  8509. _div.onclick = () => {
  8510. _iframe.contentWindow.window.document.body.removeChild(_div)
  8511. }
  8512. setTimeout(() => {
  8513. _iframe.contentWindow.window.document.body.removeChild(_div)
  8514. }, 1000);
  8515. }, [], { "type": "POST", "withCredentials": true });
  8516. }
  8517. }
  8518. }
  8519. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8520. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8521. if (res.value[0].length > 0) {
  8522. if (atool == 57) {
  8523. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8524. }
  8525. } else {
  8526. if (atool == 57) {
  8527. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8528. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8529. }
  8530. }
  8531. }, [], { "type": "POST", "withCredentials": true });
  8532. }